@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
/*----Variable-------*/
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Hind", sans-serif;
  color: #3e454c;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
body.overflowY-hidden {
  overflow-y: hidden;
}

p,
span,
ul li {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-family: "Mulish", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.list li {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.3;
}
ul.list li::before {
  content: "\f00c";
  position: relative;
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-right: 10px;
  color: #b48b3c;
}

a {
  text-decoration: none;
}

.primary-btn {
  font-size: 12px;
  display: inline-block;
  padding: 10px 20px;
  outline: 3px solid #ead3b3;
  color: #000;
  border: none;
  background-color: #fff;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.primary-btn:hover {
  color: #fff;
  background-color: #b48b3c;
}

.secondary-btn {
  font-size: 12px;
  display: inline-block;
  padding: 10px 20px;
  outline: 3px solid #b48b3c;
  color: #b48b3c;
  border: none;
  background-color: #fff;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.secondary-btn:hover {
  color: #fff;
  background-color: #b48b3c;
}

.main-heading {
  font-size: 24px;
  color: #b48b3c;
  font-weight: normal;
  letter-spacing: 3px;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 22px;
  font-weight: 300;
  color: #b48b3c;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.heading-wrap {
  margin-bottom: 65px;
  text-align: center;
}
.heading-wrap .main-heading {
  margin-bottom: 0;
}
.heading-wrap .text {
  font-size: 16px;
  font-weight: normal;
  color: #3e454c;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.large-heading {
  font-size: 50px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 55px;
}

.mini-heading {
  font-size: 18px;
  font-weight: 600;
}

.space {
  padding: 100px 0;
}

.bg {
  background-color: #f7f7f7;
}

.bold-txt {
  font-weight: 600;
}

.mini-container {
  width: 75%;
  margin: auto;
}

.large-container {
  width: 80%;
  margin: auto;
}

.res-msg {
  font-size: 17px;
  color: #fff;
  text-align: center;
}

/*------- Header -------*/
header {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 20px 50px;
}
header.sticky {
  position: fixed;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.051);
  z-index: 99;
  background-color: #1b456e;
  width: 100%;
  padding: 10px 40px;
  animation: 1s forwards smoothScroll;
}
header.sticky .navbar-holder .logo img {
  height: 42px;
}
header.sticky .navbar-holder .logo .brand {
  font-size: 12px;
}
header nav .navbar-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .navbar-holder .hamburger {
  display: none;
}
header nav .navbar-holder .logo {
  display: flex;
  align-items: end;
}
header nav .navbar-holder .logo img {
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s ease-in-out;
}
header nav .navbar-holder .logo .brand {
  font-size: 15px;
  font-weight: 500;
  color: #b48b3c;
  margin: 0;
  text-transform: uppercase;
}
header nav .navbar-holder .navbarnav .navbar-list {
  display: flex;
  align-items: center;
  gap: 55px;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item {
  position: relative;
  padding: 15px 0;
  margin-bottom: 0;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s ease-in;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link.active {
  color: #b48b3c;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link:hover {
  color: #b48b3c;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu {
  position: absolute;
  z-index: 99;
  height: auto;
  max-height: none;
  overflow: visible;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: -10%;
  margin-top: 20px;
  transform: scale(0.85);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 650ms ease;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu .dropdown-item {
  border-bottom: 1px solid rgba(204, 204, 204, 0.425);
  margin: 0;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu .dropdown-item .nav-link {
  color: #000;
  padding: 15px 22px;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu .dropdown-item .nav-link:hover {
  color: #b48b3c;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu .dropdown-item:hover {
  background-color: rgba(201, 149, 232, 0.1882352941);
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdown-link {
  position: relative;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdown-link::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  padding-left: 10px;
}
header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdown-link.active::before {
  transform: rotate(180deg);
  padding: 0 12px 0 0;
}

.contact-header header {
  position: relative;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.051);
  padding: 10px 50px;
}
.contact-header header.sticky {
  position: fixed;
}
.contact-header header.sticky nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link {
  color: #fff;
}
.contact-header header.sticky nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu .dropdown-item .nav-link {
  color: #000;
}
.contact-header header nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link {
  color: #000;
}

@keyframes smoothScroll {
  0% {
    will-change: transform;
    transform: translateY(-10px);
  }
  100% {
    will-change: transform;
    transform: translateY(0);
  }
}
/*------- end -------*/
/*------- Hero slider -------*/
.hero-section {
  height: 99.5vh;
  position: relative;
}
.hero-section .owl-carousel {
  height: 100%;
}
.hero-section .owl-stage,
.hero-section .owl-item,
.hero-section .banner-item,
.hero-section .owl-stage-outer {
  height: 100%;
}
.hero-section .owl-item {
  position: relative;
}
.hero-section .owl-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.hero-section .owl-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .owl-dots {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.hero-section .owl-dots .owl-dot span {
  display: block;
  height: 15px;
  width: 5px;
  background: #fff !important;
  border-radius: 1rem;
}
.hero-section .owl-dots .owl-dot.active {
  border: 3px solid #fff;
  padding: 10px 12px !important;
  border-radius: 3rem;
}

/*------- end -------*/
.intro-section {
  position: relative;
}
.intro-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 6px;
  right: 0;
  height: 160px;
  width: 180px;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.intro-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -70px;
  height: 190px;
  width: 250px;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.intro-section .content-holder {
  width: 80%;
  margin: auto;
  text-align: center;
}
.intro-section .content-holder .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}

.about-intro-section .intro-card {
  padding: 0 5px;
  display: flex;
}
.about-intro-section .intro-card.second-card {
  margin-top: 50px;
}
.about-intro-section .intro-card:hover .img-holder img {
  transform: scale(1.2);
}
.about-intro-section .intro-card:hover .content .title::before {
  width: 0%;
}
.about-intro-section .intro-card .img-holder {
  width: 50%;
  overflow: hidden;
  border-radius: 7px;
}
.about-intro-section .intro-card .img-holder img {
  transition: all 0.3s linear;
}
.about-intro-section .intro-card .content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-section .intro-card .content .title {
  font-size: 25px;
  font-weight: 400;
  color: #b48b3c;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.about-intro-section .intro-card .content .title::before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  top: -30px;
  display: inline-block;
  background-color: rgba(51, 51, 51, 0.14);
  width: 100%;
  height: 20px;
  line-height: 0;
  transition: all 0.3s linear;
}
.about-intro-section .intro-card .content .title span {
  font-size: 13px;
  font-weight: 600;
  color: #3e454c;
  display: block;
}
.about-intro-section .intro-card .content p {
  font-size: 14px;
}
.about-intro-section .intro-card .content p .more-content {
  display: none;
}

.why-choose-us .content-wrapper {
  padding: 0 70px 0 110px;
}
.why-choose-us .content-wrapper .primary-btn {
  margin-top: 20px;
}

.award-section .left-img {
  position: relative;
}
.award-section .left-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -160px;
  height: 185px;
  width: 192px;
  background: url(https://wpocean.com/html/tf/loveme/assets/images/about/shape.png) no-repeat center;
  background-size: contain;
}
.award-section .left-img .img-box {
  padding: 15px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.award-section .left-img .img-box img {
  border: 15px solid #b48b3c;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
}
.award-section .content-holder {
  padding-left: 60px;
}
.award-section .content-holder .bold-text {
  font-weight: 700;
}
.award-section .content-holder .img-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}
.award-section .content-holder .img-wrap .img-col {
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 20px;
}
.award-section .content-holder .img-wrap .img-col img {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: none;
}
.award-section .content-holder .img-wrap .content-col {
  border-left: 2px solid #deb65a;
  padding-left: 20px;
}
.award-section .content-holder p {
  text-align: justify;
}

.counter-section {
  background: url(../images/bg/award-count-bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  padding: 130px 0;
}
.counter-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.counter-section .mini-container {
  position: relative;
  z-index: 1;
}
.counter-section .main-heading {
  color: #fff;
  text-align: center;
}
.counter-section .counter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 70px;
}
.counter-section .counter-wrapper .count-holder {
  text-align: center;
}
.counter-section .counter-wrapper .count-holder .count {
  font-size: 30px;
  color: #b48b3c;
  margin-bottom: 20px;
}
.counter-section .counter-wrapper .count-holder .title {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
}

.service-section .heading-wrap {
  margin-bottom: 100px;
}
.service-section .service-box-wrapper {
  width: 85%;
  margin: auto;
  position: relative;
}
.service-section .service-box-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 2px;
  background: #b48b3c;
}
.service-section .service-box-wrapper::after {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  height: 45px;
  width: 45px;
  background: #b48b3c;
  color: #fff;
  padding: 7px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-section .service-box-wrapper .service-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.service-section .service-box-wrapper .service-box.right .img-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #b48b3c;
  transform: translate(-50%, -100%);
  outline: 1px solid #b48b3c;
  outline-offset: 3px;
}
.service-section .service-box-wrapper .service-box.right .img-col .img-holder {
  padding-left: 90px;
}
.service-section .service-box-wrapper .service-box.right .img-col .img-holder::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -70px;
  height: 335px;
  width: 310px;
  background: url(../images/service/right-shape.png) no-repeat center;
  background-size: contain;
  transform: rotate(20deg);
}
.service-section .service-box-wrapper .service-box.right .content-holder {
  padding-right: 90px;
  text-align: right;
}
.service-section .service-box-wrapper .service-box.left .img-col::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #b48b3c;
  transform: translate(50%, 100%);
  outline: 1px solid #b48b3c;
  outline-offset: 3px;
}
.service-section .service-box-wrapper .service-box.left .img-holder {
  padding-right: 90px;
  margin-left: auto;
}
.service-section .service-box-wrapper .service-box.left .img-holder::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -50px;
  height: 335px;
  width: 310px;
  background: url(../images/service/left-shape.png) no-repeat center;
  background-size: contain;
  transform: rotate(40deg);
}
.service-section .service-box-wrapper .service-box.left .content-holder {
  padding-left: 90px;
}
.service-section .service-box-wrapper .service-box .content-holder {
  width: 50%;
}
.service-section .service-box-wrapper .service-box .img-col {
  width: 50%;
  position: relative;
}
.service-section .service-box-wrapper .service-box .img-col .img-holder {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.service-section .service-box-wrapper .service-box .img-col .img-holder img {
  height: 400px;
  width: 230px;
  border-radius: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border: 3px solid #b48b3c;
}

.why-choose-us {
  position: relative;
  overflow: hidden;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(https://img.freepik.com/premium-photo/watercolor-seamless-pattern-background-with-forget-me-nots-white-background_625501-201.jpg?w=740) repeat center;
  background-size: 15%;
  opacity: 0.2;
}
.why-choose-us .heading-wrap {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  padding: 20px;
}
.why-choose-us .why-choose-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 20px;
}
.why-choose-us .why-choose-card-wrapper .why-choose-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 35px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 10px rgba(51, 117, 211, 0.1);
}
.why-choose-us .why-choose-card-wrapper .why-choose-card img {
  margin-bottom: 35px;
  transition: all 0.3s linear;
}
.why-choose-us .why-choose-card-wrapper .why-choose-card .sub-heading {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 15px;
  position: relative;
  text-transform: capitalize;
}
.why-choose-us .why-choose-card-wrapper .why-choose-card .sub-heading::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  border-top: 2px solid #000;
  transition: all 0.3s linear;
}
.why-choose-us .why-choose-card-wrapper .why-choose-card p {
  text-align: justify;
  margin-bottom: 0;
}
.why-choose-us .why-choose-card-wrapper .why-choose-card:hover img {
  transform: translateY(-10px);
}
.why-choose-us .why-choose-card-wrapper .why-choose-card:hover .sub-heading::after {
  width: 30px;
}

.service-widget {
  display: grid;
  grid-template-columns: 60% 40%;
}
.service-widget .service-detail-wrapper p {
  margin-bottom: 20px;
}
.service-widget .service-detail-wrapper .sub-heading {
  font-size: 22px;
  font-weight: 500;
  color: #636266;
  margin-bottom: 20px;
  padding-top: 20px;
  letter-spacing: 0;
}
.service-widget .recent-blog-wrapper {
  padding-left: 120px;
}
.service-widget .recent-blog-wrapper .main-heading {
  margin-bottom: 20px;
}
.service-widget .recent-blog-wrapper .service-card {
  margin-bottom: 35px;
}
.service-widget .recent-blog-wrapper .service-card:last-child {
  margin-bottom: 0;
}

.service-card {
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.0784313725);
}
.service-card .card-head {
  position: relative;
}
.service-card .card-head img {
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.service-card .card-head .article-box {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.0784313725);
}
.service-card .card-head .article-box span {
  font-size: 14px;
  font-weight: 400;
  color: #3e454c;
  text-transform: capitalize;
}
.service-card .card-body {
  padding: 20px 60px 20px 0;
}
.service-card .card-body .card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 10px;
}
.service-card .card-body p {
  margin-bottom: 0;
}
.service-card .card-footer {
  border-top: 2px solid #d9d9d9;
  padding-top: 18px;
}
.service-card .card-footer .secondary-btn {
  width: 100%;
  text-align: center;
}

.strip-banner {
  background: url(../images/bg/strip-bg.jpg) no-repeat 50% 80%;
  background-size: cover;
  padding: 50px 0 65px;
}
.strip-banner .heading-box {
  text-align: center;
}
.strip-banner .heading-box .title {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
  text-transform: capitalize;
}
.strip-banner .heading-box .mini-text {
  font-size: 30px;
  font-weight: 400;
  color: #b48b3c;
  letter-spacing: 3px;
  position: relative;
}
.strip-banner .heading-box .mini-text::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 18px;
  border-top: 1px solid #fff;
}
.strip-banner p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 0;
  padding-left: 20px;
}

.gallery-section .gallery-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
}
.gallery-section .gallery-card.middle {
  height: 100%;
  width: 100%;
}
.gallery-section .gallery-card.equal {
  height: 300px;
}
.gallery-section .gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: all 1.5s ease;
}
.gallery-section .gallery-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}
.gallery-section .gallery-card:hover img {
  transform: scale(1.2);
}
.gallery-section .gallery-card:hover::before {
  visibility: visible;
  opacity: 1;
}

.view-all-wrap {
  padding: 60px 0 0;
}

.view-all-cta {
  font-size: 15px;
  color: #3e454c;
  text-align: center;
  display: block;
  letter-spacing: 1px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}
.view-all-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  width: 80%;
  height: 1px;
  border-top: 1px solid #333333;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s ease-out, all ease-in-out 0.3s;
}
.view-all-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  width: 80%;
  height: 1px;
  border-top: 1px solid #333333;
  transition: transform 0.3s ease-out, all ease-in-out 0.3s;
}
.view-all-cta:hover::before {
  top: -5px;
  bottom: auto;
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.view-all-cta:hover::after {
  width: 100%;
}

.service-detail-section .service-detail-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.service-detail-section .service-detail-wrap .content-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.service-detail-section .service-detail-wrap .content-holder .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.service-detail-section .service-detail-wrap .content-holder .left-content::after {
  border-left: 15px solid #fff;
  border-right: 0px;
  right: inherit;
  left: 0px;
}
.service-detail-section .service-detail-wrap .img-holder {
  position: relative;
}
.service-detail-section .service-detail-wrap .img-holder::after {
  content: "";
  position: absolute;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #fff;
  height: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.photography-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/photography/bg.jpg) no-repeat 50% 40%;
  background-size: cover;
}
.photography-section .img-wrapper {
  position: relative;
}
.photography-section .img-wrapper img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  display: block;
  position: relative;
  z-index: 1;
  border: 8px solid #fff;
}
.photography-section .img-wrapper::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  width: 150px;
  background: url(../images/photography/couple-img-02.jpg) no-repeat center;
  background-size: cover;
  transform: rotate(-35deg);
  border: 8px solid #fff;
}
.photography-section .content-holder {
  text-align: center;
  margin-bottom: 10px;
}
.photography-section .content-holder p {
  color: #fff;
}

/*------- owl carousel -------*/
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.owl-nav button {
  height: 34px;
  width: 34px;
  background-color: #fff !important;
  border-radius: 50%;
  border: 1px solid #b48b3c !important;
  position: relative;
  transition: 0.3s ease-in;
}
.owl-nav button span {
  font-size: 35px;
  font-weight: 100;
  color: #b48b3c;
  margin-bottom: 0;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in;
}
.owl-nav button:hover {
  background-color: #b48b3c !important;
}
.owl-nav button:hover span {
  color: #fff;
}

/*------- end -------*/
/*------- student reviews -------*/
.testimonial-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/testimonial/background.jpg) no-repeat 50% 58%;
  background-size: cover;
  padding: 165px 0 100px;
}
.testimonial-section .heading-wrap {
  margin-bottom: 30px;
}
.testimonial-section .testimonial-wrap {
  padding: 50px 70px;
  width: 62%;
  margin: auto;
  background: #fff;
}
.testimonial-section .item {
  position: relative;
  border-radius: 5px;
  margin: 0 10px;
}
.testimonial-section .item .text-holder {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-section .item .text-holder::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 33px;
  bottom: -8px;
  height: 20px;
  width: 20px;
  transform: rotate(-45deg);
  box-shadow: rgba(0, 0, 0, 0.07) -2px 2px 0px;
}
.testimonial-section .item .text-holder p {
  font-size: 14px;
  line-height: 30px;
  color: #3e454c;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 25px 25px 30px;
  position: relative;
  z-index: 1;
}
.testimonial-section .item .author-detail {
  display: flex;
  align-items: center;
}
.testimonial-section .item .author-detail .img-holder {
  position: relative;
  z-index: 1;
  padding: 0 35px 10px 10px;
}
.testimonial-section .item .author-detail .img-holder .user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  outline: 1px solid #3e454c;
  outline-offset: 5px;
}
.testimonial-section .item .author-detail .name {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 1.3;
}
.testimonial-section .item .author-detail .name .design {
  font-weight: 700;
  display: block;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}
.testimonial-section .owl-dots {
  display: none;
}
.testimonial-section .owl-nav {
  margin-top: 0;
  display: flex !important;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

/*------- end -------*/
/*------- faq -------*/
.faq .faq-wrapper {
  width: 100%;
  margin: auto;
}

.accordion {
  background-color: #fff;
  margin-bottom: 22px;
  border: 1px solid #b48b3c;
}
.accordion .accordion-header {
  font-size: 16px;
  font-weight: normal;
  padding: 15px 25px;
  line-height: 1.3;
  color: #b48b3c;
  position: relative;
  cursor: pointer;
}
.accordion .accordion-header::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #b48b3c;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: ease 0.5s;
}
.accordion .accordion-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.5s;
}
.accordion .accordion-body p {
  padding: 20px 18px;
  margin: 0;
}
.accordion.active .accordion-header {
  background-color: #f7f7f7;
}
.accordion.active .accordion-header::after {
  transform: rotate(180deg);
  top: 26%;
}

.about-us .section-wrap {
  padding-left: 150px;
  position: relative;
}
.about-us .content {
  position: relative;
  z-index: 1;
}
.about-us .content .large-text {
  font-size: 22px;
  line-height: 1.5;
  color: #b48b3c;
  margin-bottom: 35px;
  text-align: justify;
}
.about-us .content .small-text {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  color: #3e454c;
  margin-bottom: 0;
}
.about-us .content .mini-text {
  font-size: 16px;
  color: #3e454c;
  font-weight: normal;
  letter-spacing: 3px;
}
.about-us .img-holder {
  position: relative;
  height: 100%;
}
.about-us .img-holder img {
  display: block;
  margin: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.award-wrap #award-carousel .award-item img {
  width: 90px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.award-wrap .owl-nav {
  margin-top: 50px;
}

.choose-style-section .style-card {
  background: #fff;
}
.choose-style-section .style-card .card-body {
  padding: 20px 25px;
}
.choose-style-section .style-card .card-body .card-title {
  font-size: 24px;
  font-weight: 300;
  color: #b48b3c;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.contact-us-section {
  position: relative;
  overflow: hidden;
}
.contact-us-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -5px;
  right: -180px;
  height: 25%;
  width: 25%;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.contact-us-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 10px;
  left: -70px;
  height: 22%;
  width: 22%;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.contact-us-section .contact-wrapper {
  background: #1b456e;
  padding: 60px 45px;
  width: 80%;
  margin: auto;
  border-radius: 7px;
}
.contact-us-section .contact-wrapper .main-heading {
  font-size: 28px;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.contact-us-section .contact-wrapper .text {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  margin-bottom: 20px;
}
.contact-us-section .contact-wrapper .phone {
  display: block;
  margin-bottom: 25px;
}
.contact-us-section .contact-wrapper .phone a {
  font-size: 14px;
  display: inline;
  color: #fff;
  transition: all 0.3s linear;
}
.contact-us-section .contact-wrapper .phone a:hover {
  color: #b48b3c;
}
.contact-us-section .contact-wrapper .mail {
  font-size: 14px;
  text-transform: uppercase;
  color: #b48b3c;
  font-weight: 400;
  display: block;
  margin-bottom: 1.5rem;
  transition: all 0.3s linear;
}
.contact-us-section .contact-wrapper .mail:hover {
  color: #fff;
}
.contact-us-section .contact-wrapper .social-list {
  display: flex;
  margin-bottom: 30px;
}
.contact-us-section .contact-wrapper .social-list li a {
  font-size: 18px;
  width: 36px;
  height: 36px;
  float: left;
  text-align: center;
  line-height: 36px;
  position: relative;
}
.contact-us-section .contact-wrapper .social-list li a i {
  color: #b48b3c;
  transition: all 0.3s linear;
}
.contact-us-section .contact-wrapper .social-list li a:hover i {
  color: #fff;
}

/*------- end -------*/
/*------- footer -------*/
footer {
  padding: 90px 0;
  background: #f7f7f7;
}
footer .copyright-wrapper .copyright-text {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  text-transform: capitalize;
  text-align: center;
  display: block;
  margin: 0;
}
footer .copyright-wrapper .copyright-text a {
  color: #3e454c;
  font-weight: 600;
}
footer .copyright-wrapper .social-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 35px;
}
footer .copyright-wrapper .social-list li a {
  color: #000;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  position: relative;
  transition: all 0.3s linear;
}
footer .copyright-wrapper .social-list li a:hover {
  color: #b48b3c;
}

/*------- end -------*/
/*------- breadcrumb -------*/
.breadcrumb-section {
  background: url(../images/breadcrumb/breadcrumb.jpg) no-repeat 50% 52%;
  background-size: cover;
  padding: 145px 0;
}

/*------- end -------*/
/*------- Form -------*/
form .form-select {
  height: 45px;
  border: 1px solid #3e454c;
  border-radius: 5px;
}
form .form-select:focus {
  box-shadow: none;
  border: 1px solid #b48b3c;
}
form .field-wrap {
  margin-bottom: 22px;
}
form .field-wrap > .form-control {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  color: #fff;
  background: transparent;
  text-align: center;
  transition: all 0.3s linear;
}
form .field-wrap > .form-control:hover {
  border: 1px solid rgb(255, 255, 255);
}
form .field-wrap > .form-control:focus {
  box-shadow: none;
  border: 1px solid rgb(255, 255, 255);
}
form .field-wrap > .form-control:focus ~ label {
  opacity: 1;
  transform: scale(0.85) translateY(-1.6rem) translateX(0.15rem);
  background: #fff;
}
form .field-wrap > .form-control :not(:-moz-placeholder-shown) {
  padding: 10px;
}
form .field-wrap > .form-control :not(:placeholder-shown) {
  padding: 10px;
}
form .field-wrap > .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form .field-wrap > .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form .field-wrap textarea {
  color: #fff;
  height: 120px !important;
  resize: none;
  text-align: center;
  transition: all 0.3s linear;
}
form .field-wrap textarea:hover {
  border: 1px solid rgb(255, 255, 255);
}
form .field-wrap label {
  font-size: 16px !important;
  color: #000 !important;
  height: -moz-fit-content;
  height: fit-content;
  text-transform: capitalize;
  padding: 10px 10px 0 10px;
}
form .field-wrap label sup {
  top: -2px;
  font-size: 16px;
}
form .primary-btn {
  display: block;
  margin: 20px auto 0;
  color: #fff;
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

/*------- end -------*/
.sticky-whatsapp {
  position: fixed;
  left: 15px;
  bottom: 50px;
}
.sticky-whatsapp img {
  height: 55px;
}

.corporate-service {
  position: relative;
}
.corporate-service::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10px;
  right: -40px;
  height: 30%;
  width: 15%;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.corporate-service::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -20px;
  height: 15%;
  width: 20%;
  background: url(../images/service/bg.png) no-repeat;
  background-size: contain;
}
.corporate-service .img-box {
  padding: 15px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.corporate-service .img-box img {
  border: 15px solid #b48b3c;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.corporate-service .content-holder {
  padding-left: 30px;
}
.corporate-service .content-bottom {
  margin-top: 30px;
}

/*------- Media Query -------*/
@media screen and (max-width: 1280px) {
  .mini-container {
    width: 85%;
  }
  .testimonial-section {
    padding: 150px 0;
  }
  .testimonial-section .testimonial-wrap {
    width: 80%;
  }
  .award-section .content-holder {
    padding-left: 20px;
  }
  .about-us {
    padding: 80px 0;
  }
  .about-us .section-wrap {
    padding-left: 80px;
  }
  .about-us .content.space {
    padding: 0;
  }
  .corporate-service::before, .corporate-service::after {
    width: 150px;
    height: 80px;
  }
  .service-widget .recent-blog-wrapper {
    padding-left: 50px;
  }
  .service-card .card-body {
    padding: 20px 40px 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .mini-container {
    width: calc(100% - 100px);
  }
  .large-heading {
    font-size: 32px;
  }
  header nav .navbar-holder .navbarnav .navbar-list {
    gap: 40px;
  }
  .why-choose-us .content-wrapper {
    padding: 30px 0 30px 50px;
  }
  .why-choose-us .content-wrapper .primary-btn {
    margin-top: 10px;
  }
  .award-section .content-holder {
    padding-left: 0;
  }
  .award-section .content-holder .img-wrap {
    padding: 30px 0;
  }
  .award-section .content-holder .img-wrap .content-col {
    padding-left: 10px;
  }
  .award-section .content-holder .img-wrap .content-col p {
    display: inline;
    margin-bottom: 0;
  }
  .award-section .content-holder .img-wrap .img-col {
    padding-right: 10px;
  }
  .our-services::before, .our-services::after {
    height: 120px;
    width: 170px;
  }
  .our-services::before {
    top: 0;
    right: 0;
  }
  .our-services .why-choose-card-wrapper {
    gap: 10px;
  }
  .our-services .why-choose-card-wrapper .service-card {
    padding: 0;
  }
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-section .testimonial-wrap {
    padding: 50px 40px;
  }
  .about-us .section-wrap {
    padding-left: 30px;
  }
  .about-us .content .large-text {
    font-size: 18px;
  }
  .about-us .content .small-text {
    font-size: 16px;
  }
  .photography-section .heading-wrap {
    margin-bottom: 25px;
  }
  .photography-section .content-holder p {
    letter-spacing: 0;
  }
  .contact-us-section::before {
    right: -90px;
    height: 150px;
    width: 200px;
  }
  .contact-us-section::after {
    height: 150px;
    width: 190px;
  }
  .contact-us-section .contact-wrapper {
    padding: 30px 15px;
  }
  .contact-us-section .contact-wrapper .main-heading {
    font-size: 24px;
    letter-spacing: 0;
  }
  .service-card .card-body {
    padding: 20px 0;
  }
  .why-choose-us .why-choose-card-wrapper .why-choose-card {
    padding: 30px 10px;
  }
}
@media screen and (min-width: 991px) {
  header nav .navbar-holder .navbarnav .navbar-list .nav-item:hover .dropdownmenu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 991px) {
  p,
  span,
  ul li {
    margin-bottom: 10px;
  }
  .heading-wrap {
    margin-bottom: 40px;
  }
  .space {
    padding: 50px 0;
  }
  .large-heading {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .contact-header header {
    padding: 0;
  }
  header {
    padding: 0;
  }
  header.sticky {
    padding: 0;
  }
  header nav {
    padding: 20px 0;
    position: relative;
  }
  header nav .navbar-holder {
    justify-content: flex-start;
  }
  header nav .navbar-holder .hamburger {
    display: block;
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border: none;
    background: transparent;
  }
  header nav .navbar-holder .hamburger .bar {
    display: block;
    width: 30px;
    border-top: 3px solid #b48b3c;
    margin-bottom: 10px;
    transition: 0.3s all ease-in;
  }
  header nav .navbar-holder .hamburger .bar:last-child {
    margin-bottom: 0;
  }
  header nav .navbar-holder .hamburger.active {
    z-index: 10;
    right: 22%;
  }
  header nav .navbar-holder .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
  }
  header nav .navbar-holder .hamburger.active .bar:nth-child(2) {
    display: none;
  }
  header nav .navbar-holder .hamburger.active .bar:nth-child(3) {
    transform: translate(0px, -12px) rotate(135deg);
  }
  header nav .navbar-holder .navbarnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    z-index: 9;
    background: #fff;
    padding: 50px;
    height: 100vh;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    transform: translateX(-100%);
    transition: 0.3s ease-in;
  }
  header nav .navbar-holder .navbarnav.show {
    transform: translateX(0%);
  }
  header nav .navbar-holder .navbarnav.show::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50%;
    height: inherit;
    width: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }
  header nav .navbar-holder .navbarnav .navbar-list {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  header nav .navbar-holder .navbarnav .navbar-list .nav-item {
    padding: 0;
  }
  header nav .navbar-holder .navbarnav .navbar-list .nav-item .nav-link {
    font-size: 22px;
    font-weight: 600;
    color: #000;
  }
  header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu {
    left: 0;
  }
  header nav .navbar-holder .navbarnav .navbar-list .nav-item .dropdownmenu.show {
    position: relative;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  }
  .service-widget .recent-blog-wrapper {
    padding-left: 0;
  }
  .service-widget {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-widget .service-detail-wrapper .sub-heading {
    margin-bottom: 20px;
  }
  .service-widget .service-detail-wrapper p {
    margin-bottom: 15px;
  }
  .service-card {
    padding: 20px;
  }
  .intro-section::before {
    height: 120px;
    width: 120px;
  }
  .intro-section::after {
    height: 138px;
    width: 190px;
  }
  .intro-section .content-holder {
    width: 100%;
  }
  .award-section .left-img {
    display: none;
  }
  .counter-section {
    padding: 50px 0;
  }
  .counter-section .counter-wrapper {
    padding-top: 30px;
  }
  .our-services .why-choose-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .gallery-section .view-all-wrap {
    padding: 30px 0;
  }
  .testimonial-section .testimonial-wrap {
    width: 100%;
  }
  .service-section .service-box-wrapper {
    width: 100%;
  }
  .service-section .service-box-wrapper .service-box.left .content-holder {
    padding-left: 30px;
  }
  .service-section .service-box-wrapper .service-box.left .img-holder {
    padding-right: 30px;
  }
  .service-section .service-box-wrapper .service-box.right .content-holder {
    padding-right: 30px;
  }
  .service-section .service-box-wrapper .service-box.right .img-col .img-holder {
    padding-left: 30px;
  }
  .why-choose-us .content-wrapper {
    width: calc(100% - 100px);
    padding: 30px 0;
    margin: auto;
  }
  .strip-banner {
    text-align: center;
  }
  .strip-banner .heading-box {
    margin-bottom: 18px;
  }
  .strip-banner .heading-box .mini-text::after {
    bottom: -10px;
  }
  .gallery-section .gallery-card {
    margin-bottom: 20px;
  }
  .gallery-section .gallery-card.middle {
    height: calc(100% - 20px);
  }
  .about-us {
    padding: 50px 0;
  }
  .about-us .section-wrap {
    padding: 0 30px;
  }
  .about-us .section-wrap .large-text {
    margin-bottom: 15px;
  }
  .breadcrumb-section {
    padding: 100px 0;
  }
  .about-intro-section .intro-card.second-card {
    margin-top: 30px;
  }
  .our-services::before {
    height: 90px;
    width: 120px;
  }
  .our-services::after {
    height: 90px;
    width: 120px;
  }
  .our-services .why-choose-card-wrapper .service-card img {
    margin-bottom: 15px;
  }
  .corporate-service::before, .corporate-service::after {
    display: none;
  }
  .corporate-service .content-holder {
    padding: 0;
  }
  .corporate-service .img-box {
    display: none;
  }
  .corporate-service .content-bottom {
    margin-top: 10px;
  }
  .photography-section .img-wrapper {
    margin-bottom: 30px;
  }
  footer {
    padding: 50px 0;
  }
  footer .copyright-wrapper .social-list {
    padding-top: 15px;
  }
  .contact-us-section::before, .contact-us-section::after {
    display: none;
  }
  .contact-us-section .contact-wrapper {
    width: 95%;
    padding: 30px 20px;
  }
  .contact-us-section .contact-wrapper .detail-holder {
    text-align: center;
    margin: auto;
  }
  .contact-us-section .contact-wrapper .social-list {
    justify-content: center;
  }
  .why-choose-us .why-choose-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .why-choose-us .why-choose-card-wrapper .why-choose-card {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 767px) {
  .primary-btn {
    padding: 8px 16px;
  }
  .mini-container {
    width: calc(100% - 40px);
  }
  .space {
    padding: 30px 0;
  }
  .service-section .heading-wrap {
    margin-bottom: 25px;
  }
  .heading-wrap {
    margin: 0 auto 25px;
  }
  .heading-wrap::after {
    bottom: -30px;
  }
  .heading-wrap .main-heading {
    font-size: 20px;
  }
  .heading-wrap .text {
    font-size: 14px;
    letter-spacing: 0;
  }
  .main-heading {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .sub-heading {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  header nav {
    padding: 10px 0;
  }
  header nav .navbar-holder .logo img {
    width: 70px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header nav .navbar-holder .logo .brand {
    font-size: 12px !important;
    transform: translateX(-10px);
  }
  .hero-section {
    height: 70vh;
  }
  .intro-section::before, .intro-section::after {
    display: none;
  }
  .intro-section .heading-wrap.mb-5 {
    margin-bottom: 25px !important;
  }
  .counter-section .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
  }
  .counter-section .counter-wrapper .count-holder .title {
    letter-spacing: 1px;
  }
  .testimonial-section .heading-wrap {
    margin-bottom: 25px;
  }
  .testimonial-section .testimonial-wrap {
    padding: 30px 10px;
  }
  .testimonial-section .item .text-holder p {
    padding: 10px;
    line-height: 1.7;
  }
  .testimonial-section .item .author-detail .img-holder {
    padding: 0 20px 20px 0;
  }
  .testimonial-section .item .author-detail .img-holder .user-img {
    height: 60px;
    width: 60px;
  }
  .service-widget .service-detail-wrapper .sub-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }
  footer {
    padding: 30px 0;
  }
  footer .copyright-wrapper .social-list {
    padding-top: 15px;
  }
  .award-section .main-heading {
    text-align: center;
  }
  .award-section .content-holder .img-wrap {
    padding: 25px 0 10px;
  }
  .award-section .content-holder .img-wrap .img-col {
    display: none;
  }
  .service-section .service-box-wrapper::before, .service-section .service-box-wrapper::after {
    display: none;
  }
  .service-section .service-box-wrapper .service-box {
    margin-bottom: 20px;
  }
  .service-section .service-box-wrapper .service-box:last-child {
    margin-bottom: 0;
  }
  .service-section .service-box-wrapper .service-box .content-holder,
  .service-section .service-box-wrapper .service-box .img-col {
    width: 100%;
  }
  .service-section .service-box-wrapper .service-box .content-holder .img-holder img,
  .service-section .service-box-wrapper .service-box .img-col .img-holder img {
    height: 280px;
    width: 170px;
  }
  .service-section .service-box-wrapper .service-box.right .content-holder {
    text-align: center;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .service-section .service-box-wrapper .service-box.right .img-col::before {
    display: none;
  }
  .service-section .service-box-wrapper .service-box.right .img-col .img-holder {
    padding: 0;
    margin: auto;
  }
  .service-section .service-box-wrapper .service-box.right .img-col .img-holder::before {
    right: -36px;
    top: -45px;
    height: 210px;
    width: 140px;
  }
  .service-section .service-box-wrapper .service-box.left .img-col {
    order: 2;
  }
  .service-section .service-box-wrapper .service-box.left .img-col::after {
    display: none;
  }
  .service-section .service-box-wrapper .service-box.left .content-holder {
    order: 1;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .service-section .service-box-wrapper .service-box.left .img-holder {
    padding: 0;
    margin: auto;
  }
  .service-section .service-box-wrapper .service-box.left .img-holder::before {
    left: -70px;
    bottom: -45px;
    height: 250px;
    width: 140px;
    transform: rotate(50deg);
  }
  .strip-banner {
    padding: 30px 0;
  }
  .strip-banner .heading-box .title {
    font-size: 20px;
  }
  .strip-banner .heading-box .mini-text {
    font-size: 15px;
    letter-spacing: 0;
  }
  .counter-section {
    padding: 30px 0;
  }
  .counter-section .main-heading:first-child {
    margin-bottom: 0;
  }
  .counter-section .counter-wrapper {
    padding-top: 10px;
  }
  .about-intro-section .intro-card {
    flex-wrap: wrap;
  }
  .about-intro-section .intro-card .img-holder {
    width: 100%;
  }
  .about-intro-section .intro-card .img-holder img {
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 7px;
    margin: auto;
    display: block;
  }
  .about-intro-section .intro-card .content {
    width: 100%;
    padding: 0;
  }
  .about-intro-section .intro-card .content .title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .about-intro-section .intro-card .content .title::before {
    display: none;
  }
  .about-intro-section .intro-card .content .title span {
    font-size: 12px;
    margin-bottom: 0;
  }
  .about-intro-section .intro-card.second-card .img-holder {
    order: 2;
  }
  .our-services::after, .our-services::before {
    display: none;
  }
  .our-services .why-choose-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .our-services .why-choose-card-wrapper .service-card .sub-heading {
    margin-bottom: 10px;
  }
  .contact-us-section .contact-wrapper {
    width: 100%;
    padding: 30px 15px;
  }
  .contact-us-section .contact-wrapper .main-heading {
    font-size: 18px;
    margin-bottom: 0;
  }
  .contact-us-section .contact-wrapper .social-list,
  .contact-us-section .contact-wrapper .phone,
  .contact-us-section .contact-wrapper .text,
  .contact-us-section .contact-wrapper .mail {
    margin-bottom: 10px;
  }
  .about-us {
    padding: 30px 0;
  }
  .about-us .section-wrap {
    padding: 0 15px;
  }
  .about-us .section-wrap .large-text {
    font-size: 16px;
    text-align: left;
  }
  .about-us .section-wrap .small-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .why-choose-us p {
    text-align: justify;
  }
  .why-choose-us .main-heading {
    text-align: center;
  }
  .why-choose-us .content-wrapper {
    width: calc(100% - 40px);
  }
  .why-choose-us .why-choose-card-wrapper .why-choose-card {
    padding: 20px 15px;
  }
  .why-choose-us .why-choose-card-wrapper .why-choose-card img {
    margin-bottom: 20px;
  }
}
/*------- end -------*//*# sourceMappingURL=style.css.map */