:root {
  --base-color: #91BF29;
  --primary-color: #efec55;
  --dark-gray: #2E3844;
  --medium-gray: #7e8287;
  --light-gray: #ffece7;
  --light-medium-gray: #7e8691;
  --extra-medium-gray: #e4e4e4;
  --base-font: 'Marcellus',
  serif;
  --primary-font: 'Urbanist',
  sans-serif;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
    position: relative;
    padding: 0;
    font-family:var(--primary-font);
    overflow-x: hidden;
    margin: 0 auto;
    font-size: 17px;
}
section {
  padding-top:100px;
  padding-bottom:100px
}
.container{
    width: 100%;
    max-width: 1300px;
}
.container-fluid {
    width: 100%;
    padding: 0 40px;
}
a, a:hover {
	text-decoration:none;
    outline:none;
    color:var(--base-color);
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}
ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}

h1{
    font-family: var(--base-font);
    font-size: 52px;
    line-height:56px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 15px;
}
h2{
    font-family: var(--base-font);
    font-size: 28px;
    line-height: 28px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h3{
    font-family: var(--base-font);
    font-size:26px;
    line-height:36px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h4{
    font-family: var(--base-font);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h5{
    font-family: var(--base-font);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
h6{
    font-family: var(--base-font);
    font-size: 18px;
    line-height: 24.2px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}
p{
    font-family: var(--primary-font);
    font-size: 17px;
    line-height:30px;
    font-weight: 400;
    color: var(--medium-gray);
    margin-bottom: 20px;
    letter-spacing: 0.3;
}

.common-btn {
  font-size: 17px;
  padding: 16px 30px;
  color: #fff;
  background-color:var(--base-color);
  border-radius: 4px;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,.15);
  transform: translate3d(0,-2px,0);
  font-weight: 600;
  font-family: var(--primary-font);
  letter-spacing: .5px;
  width: auto;
  transition: all .3s ease-in-out;
}
.common-btn span {
  display: inline-flex;
  align-items: center;
}
.common-btn .btn-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform .6s 125ms cubic-bezier(.1,.75,.25,1);
    transition-delay: 125ms;
}
.common-btn:hover {
  background-color:var(--primary-color);
  color: #232120;
}
.common-btn:hover .btn-text {
  transition-delay: .1s;
  transform: translateX(23px);
}
.common-btn  .btn-arrow {
  margin-left: 6px;
  position: relative;
  transition: opacity .4s .25s,transform .6s .25s;
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(.1,.75,.25,1);
  line-height: 0;
  z-index: 3;
  display: inline-block;
  vertical-align: middle;
}
.common-btn .btn-arrow + .btn-arrow {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.common-btn:hover .btn-arrow {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}
.common-btn:hover .btn-arrow + .btn-arrow {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 225ms;
}
.image-overlay {
  position: relative;
  overflow: hidden;
}
.image-overlay::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
}
.image-overlay:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--base-color);
  border-top-color: var(--dark-gray);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* header */

.header-topbar{
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: var(--base-color);;
}
.header-topbar .contact-list {
  display: flex;
  align-items: center;
}
.header-topbar .contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-right: 20px;
}
.header-topbar .contact-list li svg {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
}
.header-topbar .contact-list li a:not(.btn) {
  color: #f4f4f4;
}
.outer-menu {
  padding: 0;
  height: 70px;
  max-height: 100px;
}
.header .mob-logo  {
  display: none;
}
.make-appointment-btn {
  position: relative;
  z-index: 151;
  height: 50px;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  color: var(--base-color);
  background-color: #fff;
  box-shadow: none;
  border: none;
}
.make-appointment-btn::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.make-appointment-btn.active::after {
  content: "\f077";
}
.social-icons li {
  margin-right: 10px;
}
.social-icons li:last-child {
  margin-right: 0;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icons li a {
  position: relative;
  z-index: 2;
  display: block;
  width: 23px;
  height: 23px;
  line-height: 23px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  color:var(--base-color);
  background-color: #fff;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.social-icons li:hover a {
  background-color: #f4f4f4;
}
.make-appointment-box {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  width: 310px;
  padding: 40px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  box-shadow: 0 5px 83px 0 rgba(9,29,62,.15);
  transition: 0.3s ease;
  transform: translateY(20px);
  text-align: center;
}
.make-appointment-box.active {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.make-appointment-box .emergency-icon svg {
font-size: 50px !important;
line-height: 1;
color:var(--base-color) !important;  
text-align: center;
margin: 0 !important;
margin-bottom: 15px !important;
}
.make-appointment-box a.phone-number {
font-size: 22px;
font-weight: 600;
margin-bottom:10px;
color:var(--base-color) !important;
display: block;
}
.make-appointment-box a.phone-number svg {
color:var(--base-color)  !important;
font-size: 24px !important;
}
.make-appointment-box a.phone-number:hover,
.make-appointment-box a.phone-number:hover svg {
color:var(--base-color)  !important;
}
.make-appointment-box p  {
color: #767676;
font-size: 13px;
line-height: 1.75;
text-align: center
}
.make-appointment-box .contact-btn {
padding-top: 24px;
color:var(--base-color)  !important;
font-size: 15px;
font-weight: 700;
text-transform: capitalize;
position: relative;
transition: all 0.3s linear;
}
.make-appointment-box .contact-btn svg {
margin-left: 7px;
color:var(--base-color) !important;
font-size: 15px !important;
}
.make-appointment-box .contact-btn:hover,
.make-appointment-box .contact-btn:hover svg {
color:var(--base-color)  !important;
}
/* header top */

/* header */
.outer-menu {
  padding: 0;
  height: 100px;
  max-height: 100px;
}
.outer-menu ul li{
  margin-right: 29px;
  position: relative;
}
.outer-menu ul li a{
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: #fff;
  line-height: 100px;
  letter-spacing: .4px;
  padding-right: 15px;
  transition: all 0.5s ease;
}
.navbar .dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.outer-menu ul li a:hover, .outer-menu ul li a.active{
  color:var(--base-color) ;
  transition: all 0.5s ease;
}
.outer-menu ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color:var(--base-color);
  transition: 0.5s ease;
}
.outer-menu ul li a.active::before,
.outer-menu ul li a:hover::before {
  width: 100%;
}
.mobile-menu {
  display: none;
}
.outer-menu img.logo {
max-height: 70px;
width: auto;
}
.navbar-nav {
  margin-left: auto;
}
.gallery-wrap {
  position: relative;
  margin-left: 30px;
  display: flex;
  align-items: center;
}
.gallery-trigger .menu-lines {
  position: relative;
  width: 25px;
  height: 14px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.gallery-trigger .menu-lines::before, .gallery-trigger .menu-lines::after {
  content: '';
  position: absolute;
  right: 0;
  width: 14px;
  height: 2px;
  display: inline-block;
  background-color: var(--base-color) ;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.gallery-trigger .menu-lines::before {
  top: 0;
}
.gallery-trigger .menu-lines::after {
  bottom: 0;
}
.gallery-trigger .menu-lines span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color:var(--base-color) ;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.gallery-trigger a {
  color: #303030;
  font-size: 15px;
  font-weight: 700;
}  
.gallery-trigger a:hover {
  color:var(--base-color) ;
}
.outer-menu ul li .submenu,
.gallery-items  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu,
.gallery-items.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li,
.gallery-items li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a,
.gallery-items li a {
  font-size: 14px;
  color:var(--base-color) ;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
}
.gallery-items li a {
    font-size: 14px !important;
    color:var(--base-color)  !important;
    font-weight: 400 !important;
    line-height: 36px !important;
  }
.outer-menu ul li .submenu li a::after,
.gallery-items li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color:var(--base-color) ;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before,
.gallery-items li a::before {
  display: none;
}
.outer-menu ul li .submenu li a:hover,
.gallery-items li a:hover {
  color:var(--base-color);
}
.outer-menu ul li .submenu li a:hover::after,
.gallery-items li a:hover:after {
  opacity: 1;
  left: -15px;
}
.gallery-items {
  top: 100%;
  display: block;
  min-width: 220px;
  width: 220px;
  box-shadow: 0 5px 83px 0 rgba(9,29,62,.15) !important;
}
  .gallery-trigger {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    height: 100px;
    color:var(--base-color) ;
    transition: 0.3s ease;
  }
  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color:transparent!important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1040;
  }
  .is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 0 !important;
    height: 80px !important;
    max-height: 80px !important;
    background-color:rgba(0,0,0,.7)!important;
    -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
    box-shadow: 0 3px 4px rgba(0,0,0,.07);
    -webkit-animation: translateHeader 0.8s;
    animation: translateHeader 0.8s;
  }
  @keyframes translateHeader {
    0% {
      opacity:0;
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      opacity:1;
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  @keyframes headerAnimation {
    0% {
      opacity:0;
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      opacity:1;
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  .is-sticky .logo {
    display: inline-block;
    width: 180px;
    margin-top: -6px;
  }
  .is-sticky.outer-menu ul li a {
    line-height: 80px;
  }
  .is-sticky .gallery-trigger {
    height: 80px;
  }
  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }

/* header */


/* banner  */

.banner {
   width: 100%;
   position: relative;  
   min-height: 430px;
   padding: 0;
}
.banner::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  background-color: rgba(0, 0, 0, 0.3)
}
.slider .parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height:800px;
  padding-bottom: 0;
  background: #173551;
}
.banner.slider .parallax-slider .swiper-slide .bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 320px 0 100px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.banner.slider .parallax-slider .swiper-slide .bg-img:before {
  width: 100%;
  height: 100%;
  background: #00000096;
  opacity: .7;
  position: absolute;
  content: "";
  top: 0;
  left:0;
  z-index: 5;
}
.banner h1 {
  color: #fff;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -3px;
  max-width: 100%;
  position: relative;
  z-index: 500;
  margin-bottom: 50px;
}
.banner h6 {
  color: #fff;
  font-family:var(--primary-font);
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .3px;
  font-weight: 400;
  margin-bottom: 35px;
  width: 100%;
  position: relative;
  z-index: 500;
}
.banner p {
  color: #fff;
  position: relative;
  z-index: 500;
}
.banner .common-btn {
  position: relative;
  z-index: 5;
}

/* awards */

.awards {
  position: relative;
  padding: 0;
  border-bottom: solid 1px #dee2e6;
}
.awards-wrap,
.award-item {
  display: flex;
  align-items: center;
}
.awards-wrap .col-md-6 {
  border-right:  solid 1px var(--extra-medium-gray);
}
.awards-wrap .col-md-6:last-child {
  border-right:none;
}
.award-item { 
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
  height: 100%;
}
.awards-wrap .col-md-6:last-child .award-item {
  padding-left: 40px;
  padding-right: 0;
}
.award-text h3 {
  font-weight: 400;
  margin-bottom: 0;
}
.award-text p {
  color: var(--medium-gray);
  margin-bottom: 0;
}
.award-icon {
  margin-right: 25px;
}
.award-icon img {
  height: 65px;
  width: auto;
}
.award-text h3 u,
.package h2 u,
.strategy h3 u {
  text-decoration: none;
  border-bottom:var(--dark-gray) solid 2px;
}
.awesome-wrap {
  width:50%;
  background-color: #fff;
  text-align: right;
  margin-top: -40px;
  position: absolute;
  left: 0;
}
.awesome-text {
  display: inline-block;
  padding: 5px 25px;
  background-color: #ffea23;
  color: var(--dark-gray);
  font-weight: 600;
  font-family: var(--primary-font);
  font-size: 15px;
  line-height: 30px;  
}

/* about */

.about {
  position: relative;
  padding: 0;
}
.about .container-fluid {
  padding: 0;
}
.about-img img {
  border-radius: 0 0 50px 0;
}
.about-wrap {
  display: flex;
  align-items: center;
}
.about-wrap .about-left,
.about-wrap .about-right {
  width: 50%;
}
.about-wrap .about-right {
  margin-left: 6%;
  width: 50%;
}
.grey-btn,
.grey-btn:hover {
  background-color: var(--dark-gray);
  color: #fff;
}
.about-text small,
.services small,
.facilities small,
.review small,
.contact small,
.featured-product h2 small,
.news small,
.service-page small,
.our-process h2 small,
.package small {
  margin-bottom: 10px;
  letter-spacing: 1px !important;
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
  background-image: linear-gradient(to right,#b9ae12,#cee943,#a8de48,#99d543,#4ea93b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--primary-font);
}

.about-text h2,
.services h2,
.facilities h2,
.review h2,
.contact h2,
.package h2,
.news h2,
.service-page h2,
.our-process h2 {
  font-weight: 400;
  color: var(--dark-gray);
  letter-spacing: -1px;
  font-size: 3.438rem;
  line-height: 3.438rem;
}
.package small  {
  text-align: center;
  display: block;
}
.about-text p {
  margin-bottom: 30px;
}
.about-bottom {
  padding-top: 4%;
  padding-bottom: 4%;
  border-bottom: solid 1px var(--extra-medium-gray);
}
.about-bottom-count,
.about-bottom-text{
  display: inline-block;
  vertical-align: top;
}
.about-bottom-count {
  padding-right: 40px;
  position: relative;
}
.about-bottom-count::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-color: var(--base-color);
}
.about-bottom-count span {
  color: var(--dark-gray);
  font-size: 26px;
  line-height: 38px;
  font-family: var(--base-font);
}
.about-bottom-text{
  padding-left: 15px;
}
.about-bottom-text h3 {
  margin-bottom: 0;
  color: var(--dark-gray);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}
.about-bottom-item {
  border-right: solid 1px var(--extra-medium-gray);
}
.about-bottom .col-md-4:last-child .about-bottom-item {
  border-right:none;
}
.about-bottom-text p {
  margin-bottom: 0;
}
.about-inner .about-img img {
  border-radius: 0 0 0 0;
}

/* featured product*/

.featured-product {
  position: relative;
  text-align: center;
  float: none;
  clear: both;
  width: 100%;
  display: table;
  background-image: linear-gradient(to bottom,#f8ebe9,#f6ebed,#f2ebf0,#eeebf1,#eaecf1);
}

.filter-menu{
  margin: 30px 0;
}
.filter-menu li{
  display: inline-block;
  padding: 10px 18px;
  background:var(--dark-gray);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.filter-menu li:hover,
.filter-menu li.current{
  background:var(--base-color);
}
.filter-item li{
  width: 50%;
  padding:8px;
  float: left;
  overflow: hidden;
}
.filter-item li.active{
  width: 50%;
  padding:8px;
  transition: all 0.5s ease;
}
.filter-item li.delete{
  width: 0%;
  padding: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}
.filter-item img{
  display: block;
  width: 100%;
  height: 100%;
}
.filter-item p {
  margin: 10px 0 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px){
  .filter-item li.active,
  .filter-item li{
      width: 33.33%;
  }
}
@media screen and (min-width:991px){
  .filter-item li.active,
  .filter-item li{
      width: 25%;
  }
}

/* Service */

.featured-product h2 small,
.our-process h2 small { 
  padding-right: 20px;
  margin-right: 25px;
  border-right: solid 2px var(--dark-gray);
  margin-bottom: 0;
}
.featured-product h2,
.our-process h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6%;
}
.featured-product h2,
.our-process h2 {
  margin-bottom: 20px;
}
.services  {
  padding: 80px 0 60px;
}
.services .common-btn {
  margin-left: auto;
}
.section-row {
  margin-bottom: 40px;
}
.service-item{
	position: relative;
    overflow: hidden;
    text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}
.service-image{
	overflow: hidden;
	border-radius: 20px;
}
.service-image a{
	position: relative;
	cursor: none;
	display: block;
}
.service-item .service-image a::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
	border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.service-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.service-item:hover .service-image img{
    transform: scale(1.1);
}
.service-body{
    position: absolute;
    bottom: 10px;
    right: 20px;
    left: 20px;
	text-align: left;
    z-index: 2;
	transform: translateY(70%);
    transition: all 0.5s ease-in-out;
}
.service-item:hover .service-body{
	transform: translateY(0%);
	bottom: 20px;
}
.service-body-title h3{
	font-size: 24px;
	font-weight: 700;
	color:#fff;
	text-transform: capitalize;
	margin-bottom: 20px;
	line-height: 1.3em;
}
.service-content{
	opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.service-item:hover .service-content{
	opacity: 1;
}
.service-body p{
	color:#fff;
}
.service-content-footer .readmore-btn,
.special-service-details .readmore-btn{
	position: relative;
	font-family: var(--base-font);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color:#fff;
	padding-right: 30px;
	transition: 0.4s ease-in-out;
}
.service-content-footer .readmore-btn:hover,
.special-service-details .readmore-btn:hover{
	color:#fff;
}
.service-content-footer .readmore-btn::after,
.special-service-details .readmore-btn::after{
	content: '';
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 0;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    transition: 0.4s ease-in-out;
}
.service-content-footer .readmore-btn:hover::after,
.special-service-details .readmore-btn:hover::after{
	filter: brightness(0) invert(1);
	right: -4px;
}
.service-footer-btn{
	text-align: center;
	margin-top: 30px;
}
.section-btn {
  text-align: end;
}
.mb-20 {
  margin-bottom: 20px;
}
.p-0 {
  padding: 0;
}
.special-services {
  position: relative;
  padding: 80px 0;
  background-color: #F3F8EC;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.special-services h2 {
  color: #fff;
}
.special-service-item{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: #fff solid 4px;
}
.special-service-image {
  width: 100%;
}
.special-service-details {
  position: absolute;
  width: 50%;
  height: 100%;
  left: auto;
  right: 0;
  top:0%;
  z-index: 5;
  padding:30px 20px;
  background-color: rgba(0, 0, 0, 0.8);
}
.special-service-details h3,
.special-service-details p,
.special-service-details .readmore-btn  {
  color: #fff;
}
.special-service-details h3 {
  line-height: 32px;
  margin-bottom: 15px;
  color: var(--base-color);
}
.special-service-details p {
  line-height: 25px;
  margin-bottom: 15px;
}
.service-inner {
  background-color: rgb(243, 248, 236);
}
.service-inner h2 {
  color: var(--dark-gray);
}
/* package */

.package {
  position: relative;
  z-index: 10;
  padding-bottom: 70px;
  background-color: #F3F8EC;
}
.package h2 {
  text-align: center;
  margin-bottom: 20px;
}
.package p {
  text-align: center;
  margin-bottom: 80px;
}
.package-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.package-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 191, 61, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  transform: scale(0.5);
  z-index: 1;
}
.package-item:hover:before {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-out 0s;
}
.package-item img {
  width: 100%;
  transition: all 0.5s ease;
}
.package-item:hover img {  
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.package-item .package-text {
  position: absolute;
  padding: 50px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.3s ease-out 0s;
  z-index: 50;
}
.package-item:hover .package-text {
  transform: scale(1);
  transition: all 0.3s ease-out 0s;
}

.package-icon {
  width: 60px;
  height: 60px;
  border:2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 60px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: all .5s ease;
  opacity: 1;
  border-radius: 50%;
  margin:auto;
  z-index: 5;
  position: relative;
  top:50%;
  transform: translate(0, -50%);
}
 
/* testimonials */

.testimonials  {
  position: relative;
} 
.testimonials h2 {
display: inline-block;
border-bottom: 1px solid var(--base-color);
padding-bottom: 15px;
font-weight: 400;
  color: #fff;
  font-size: 3.438rem;
  line-height: 3.438rem;
color: var(--base-color);
} 
.testimonials h5 {
font-size: 19px;
line-height: 28px;
margin-bottom: 30px;
}
.testimonial-meta {
  padding-top: 10px;
  display: flex !important;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
.testimonial-meta.slick-current {
  opacity: 1;
  transition: opacity 0.3s ease;
}  
.testimonial-thumb  {
position: relative;
width: 65px !important;
height: 65px;
padding: 6px;
margin-bottom: 0;
margin-right: 10px;
cursor: pointer;
border-radius: 50%;
line-height: 65px;
}
.testimonial-meta.slick-current .testimonial-thumb {
  border: 2px solid var(--base-color);
  background-color: #fff;
}
.testimonial-thumb img {
  display: block;
  border-radius: 50%;
  margin: auto;
  max-width: 117px;
}
.testimonial-meta.slick-current .testimonial-thumb::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  top: -5px;
  left: -5px;
  font-size: 12px;
  opacity: 1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  color:var(--base-color);
  background-color: #fff;
  transition: all 0.4s ease;
}
.testimonial-meta h6 {
  font-size: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
  font-weight: 700;
}
.testimonial-meta p {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 0;
}
.testimonials .slider-with-navs .slick-dots  {
  display: none !important;
}


/* footer */

footer {
  position: relative;
  padding-top: 60px;
  background-image: linear-gradient(to right,#b9ae12,#cee943,#a8de48,#99d543,#4ea93b);
}
.footer-about img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(100%);
}
.footer-about {
  margin-top: 10px;
  max-width: 265px;
}
.footer-menu {
  margin-top: 40px;
}
.footer-about p {
  color: #f9f9f9 !important;
  font-size: 14px;
  line-height: 1.75;
margin-bottom: 15px;
margin-top: 20px;
}
.footer-appointment-btn {
  color:#fff;
  font-size: 15px;
font-weight: 700;
transition: all 0.3s linear;
text-transform: capitalize;
}
.footer-appointment-btn {
  margin-left: 5px;
}
.footer-appointment-btn:hover {
  color: #f9f9f9 !important;
}
.footer-menu h4,
.footer-contact h4 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
.footer-menu ul li a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 15px;
  margin-bottom: 11px;
}
.footer-menu ul li a svg {
  margin-right: 6px;
}
.footer-menu ul li a:hover {
  color:var(--base-color);
}
.footer-contact {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  border-radius: 15px;
  background-color: #fff;
}
.footer-contact::before {
  content: "\f2a0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -30px;
  bottom: -15px;
  font-size: 170px;
  line-height: 1;
  color: rgba(40,59,106,.05);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  z-index: 0;
}
.footer-contact h4 {
  color:var(--base-color);
  border-bottom: 1px solid #33b5e5;
}
.footer-contact p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: #767676;
}
.footer-contact .phone-number,
.footer-contact .email-address {
  margin: 8px 0 10px;
  font-size: 13px;
  color:var(--base-color);
  font-weight: 700;
  display: block;
}
.footer-contact .phone-number svg,
.footer-contact .email-address svg {
 margin-right: 6px;
}
.footer-contact .phone-number:hover,
.footer-contact .email-address:hover {
  color: #767676;
}
.footer-contact .social-icons {
  margin-top: 15px;
}
.footer-contact .social-icons li a {
  position: relative;
  z-index: 2;
  display: block;
  width: 23px;
  height: 23px;
  line-height: 23px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background-color: var(--base-color);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.footer-contact .social-icons li a:hover {
  background-color:var(--base-color);
}
.footer-contact::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: var(--base-color);
}

.footer-bottom  {
  position: relative;
  padding: 18px 0;
  border-top: rgba(255, 255, 255, 0.6) solid 1px;
  margin-top: 60px;
}
.footer-bottom  p {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}
.designed {
  text-align: right;
  color: var(--base-color);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.designed a {
color: #fff;
font-weight: 600;
}
.floatingdiv {
position: fixed;
top: 45%;
right: 10px;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  background-image: linear-gradient(to right,#b9ae12,#91BF29);
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
  display: block;
  margin-bottom: 10px;
}
.floatingwhatsapp img {
  width: 28px;
  height: auto;
}
.floatingcall {    
  background-image: linear-gradient(to right,#b9ae12,#91BF29);
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
  color: #fff;
  font-size: 18px;
  display: block;
}
.floatingcall svg {
  color: #fff;
}
#scrollTopBtn {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 18px;
  border-radius: 50%;
  color: #fff;
  background-image: linear-gradient(to right,#b9ae12,#91BF29);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  border: none;
}
#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

/* inner banner */

.inner-banner {
  width: 100%;
  position: relative;
  background-position: center center;
  background-size: cover;
  padding: 180px 0 80px;
  min-height: 340px;
  text-align: center;
}
.inner-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.6);
}
.inner-banner  h1 {
 color: #fff;
 font-size: 68px;
 line-height: 68px;
 letter-spacing: -3px;
 margin-bottom: 0;
 position: relative;
 z-index: 10;
}
.banner-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center; 
}

/* about inner */

.about-inner {
  padding: 90px 0;
}
.about-inner .about-left{
  padding-right: 6%;
}

/* strategy */

.strategy {
  position: relative;
  text-align: center;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.strategy:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.strategy .col-md-2 {
  width: 20%;
  position: relative;
  z-index: 5;
}
.strategy-icon img {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
}
.strategy-item:hover .strategy-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(100%);
}
.strategy-item h5 {
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 5px;
}
.strategy-item:hover h5 {
  color: #fff;
}
.strategy h2 {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}
.strategy-item {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}
.strategy-item:hover {
  background-color:var(--base-color)
}
/* video */

.video {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}
.video:after {
  background-image: linear-gradient(to right, #2c3846, #333945, #3e393f, #584344, #e51b2c);
  opacity: .5;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
}
.video .container {
  position: relative;
  z-index: 10;
}
.video h2 {
  letter-spacing: -1px;
  color: #fff;
  font-size: 55px;
  line-height: 55px;
  text-align: center;
  width: 50%;
  margin: 0 auto 20px;
}
.video p {
  letter-spacing: .5px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  width: 50%;
  margin: 0 auto 20px;
  font-weight: 500;
}
.video p span {
  font-weight: 800;
  margin-right: 10px;
  padding: 0 10px;
  background-color: var(--base-color);
  border-radius: 4px;
  color: var(--dark-gray);
  line-height: 28px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}
.video-icon-box {  
  text-align: center;
  position: relative;
  transition: .3s;
  color: var(--medium-gray);
  display: inline-block;
  z-index: 1;
  margin-bottom: 50px; 
}
.video-icon-box > span {
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.video-icon {
  width: 85px;
  height: 85px;
  font-size: 20px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--dark-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 85px;
  margin: 0 auto;
  
  position: relative;
}
.video-icon .video-icon-sonar {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: video-icon-sonar 2s linear infinite;
}
.video-icon .video-icon-sonar  .video-icon-sonar-bfr {
  width: 135px;
  height: 135px;
  border: #dee2e6 solid 1px;
}
.video-icon .video-icon-sonar  .video-icon-sonar-bfr {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: -25px;
  left: -25px;
  z-index: -100;
}
@keyframes video-icon-sonar {
  0% {
    opacity:1;
    -webkit-transform:scale(.1);
    transform:scale(.1)
  }
  100% {
    opacity:0;
    -webkit-transform:scale(1.1);
    transform:scale(1.1)
  }
}
/* our work */

.our-work {
  padding: 80px 0 60px;
}

/* facility */

.facility-left {
  padding-right: 30px;
}
.facility-left p {
  margin-bottom: 40px;
}
.facility-right .about-service-details {
  width: 100%;
  padding: 25px 30px 25px 30px;
  text-align: left;
}
.facility-right .about-service-details p {
  margin-bottom: 0;
}

.about-service-item {
  border: var(--extra-medium-gray) solid 1px;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.5s ease;
  height: 100%;
}
.about-service-item:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: all 0.5s ease;
}


/* contact */

.contact {
  position: relative;
  padding: 90px 0 0;
}
.contact-left {
  padding-bottom: 80px;
}
.contact-left ul li {
  display: inline-block;
  vertical-align: top;
  width: 47%;
  margin-top: 30px;
}
.contact-left ul li:nth-child(2n) {
  margin-right: 0;
}
.contact-left h6 {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 80%;
  border-bottom: 1px solid var(--dark-gray);
}
.contact-left p {
  width: 75%;
  margin-bottom: 0;
}
.contact-left p span {
  color: var(--dark-gray);
  font-weight: 600;
}
.contact-left p a {
  color: var(--medium-gray);
  display: block;
}
.contact h2 {
  width: 85%;
}
.contact-form {
  padding:10% 13% 13%;
  border-radius: 10px;
  background-color: var(--dark-gray);
  box-shadow: 0 0 45px rgba(0,0,0,.09);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 475px;
  margin-left: auto;
}
.contact-form h2 {
  color: #fff;
  letter-spacing: -1px;
}
.form-feild {
  margin-bottom: 15px;
  position: relative;
}
.contact-form .form-feild input[type="text"],
.contact-form .form-feild input[type="tel"] ,
.contact-form .form-feild input[type="email"] ,
.contact-form .form-feild textarea {
  outline: none !important;
  box-shadow: none !important;
  border: none;
  border-bottom:rgba(255, 255, 255, 0.1)  solid 1px;
  padding: 10px 40px 10px 0;
  border-radius: 0;
  width: 100%;
  font-size: 16px;
  color: var(--medium-gray);
  transition: all 0.4s ease;
  background-color: transparent;
}
.contact-form .form-feild textarea {
  height: 100px;
}
.contact-form .submit-btn {
  outline: none !important;
  box-shadow: none !important;
  border: none;
  padding: 10px 20px 10px 20px;
  border-radius:6px;
  width:auto;
  font-size: 16px;
  color: var(--dark-gray);
  transition: all 0.4s ease;
  background-color: #fff;
  cursor: pointer;
  letter-spacing: .5px;
  font-weight: bold;
  margin-top: 20px;
}
.contact-form .submit-btn:hover {
  background-color: var(--base-color);
  color: var(--dark-gray);
}
.contact-form .form-feild input.error,
.contact-form .form-feild textarea.error {
  border-bottom: #dc3545  solid 1px;
}
.contact-form .form-feild .form-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 17px;
  color: var(--medium-gray);
}
.contact-form .form-feild.message .form-icon {
  top: 22px;
}
.contact-img {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #f8ebe9, #f6ebed, #f2ebf0, #eeebf1, #eaecf1);
  right: -30px;
  bottom: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-img img {
  width: auto;
  height: 85px;
}
#Header {
  display: inline-block;
}
.map {
  margin-top: -80px;
  margin-bottom: -10px;
}
.gallery-box img {
  width: 100%;
  height: auto;
}

/* service page  */

.our-process {
  padding: 70px 0;
  position: relative;
  text-align: center;
}
.our-process-title {
  margin-bottom: 40px;
}
.our-process-title p {
  max-width: 800px;
  margin: 0 auto;
}
.process-item {
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 0 15px;
}
.process-item .process-count {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  background-image: linear-gradient(to right,#2e3844,#e51b2c);
  color: #fff;
  font-weight: bold;
  line-height: 48px;
  font-size: 24px;
}
.our-process .col-lg-3:nth-child(2n+1) .process-item .process-count::before {
  position: absolute;
  display: block;
  content: '';
  background: url('../images/icon-right-up-arrow.svg') no-repeat right center;
    background-size: auto;
  top: 50%;
  right: 0;
  width: 135px;
  height: 23px;
  background-size: 100% auto;
  transform: translate(214px, -50%);
  z-index: 2;
}
.our-process .col-lg-3:nth-child(2n) .process-item .process-count::before {
  position: absolute;
  display: block;
  content: '';
  background: url('../images/icon-right-down-arrow.svg') no-repeat right center;
    background-size: auto;
  top: 50%;
  right: 0;
  width: 135px;
  height: 23px;
  background-size: 100% auto;
  transform: translate(214px, -50%);
  z-index: 2;
}
.our-process .col-lg-3:last-child .process-item .process-count::before {
  display: none;
}
.service-page {
  position: relative;
  padding: 80px 0 0;
  text-align: center;
}
.service-list-page {
  background-color: #f8f8f8;
}
.service-page p {
  max-width: 800px;
  margin: 0 auto;
}
.custom-listing {
  padding:50px 0 50px;
  position: relative;
  background-color: #f8f8f8;
}
.custom-listing.white-bg {
  background-color: #fff;
}
.service-img {
  padding-right: 30px;
  overflow: hidden;
}
.service-img img {
  transition: all 0.5s ease;
  width: 100%;
}
.service-img:hover img {
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.custom-listing .service-icon img {
  width: auto;
  height: 64px;
  margin-bottom: 20px;
}
.custom-listing .service-details ul li {
  list-style: disc;
  margin-bottom: 15px;
  margin-left: 15px;
  padding-left: 10px;
}

/*  popup */

.enquirePopup .modal-dialog .modal-content {
  border-radius: 10px;
  border: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}
.enquirePopup .modal-dialog .modal-content .modal-header {
  padding: 24px 0 18px;
  margin: 0 40px;
}
.enquirePopup .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}
.enquirePopup .modal-dialog .modal-content .modal-header .btn-close {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 0;
  opacity: 1;
}
.enquirePopup .modal-dialog .modal-content .modal-body {
  padding: 25px 40px 40px;
  position: relative;
  flex: 1 1 auto;
}
.enquirePopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
  margin-bottom: 10px;
}
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="text"],
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="tel"],
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="email"],
.enquirePopup .modal-dialog .modal-content .modal-body form select,
.enquirePopup .modal-dialog .modal-content .modal-body form textarea {
  height: 50px;
  padding: 10px 20px;
  width: 100%;
  font-size: 15px;
  border: 1px solid #707070;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  background: #fff;
  transition: all .3s;
  color: #263948;
}
.enquirePopup .modal-dialog .modal-content .modal-body form textarea {
  height: 100px;
}
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
.enquirePopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
.enquirePopup .modal-dialog .modal-content .modal-body form textarea::placeholder{
  color: #263948;
  opacity: 1;
}
.enquirePopup .common-btn {
  margin-top: 12px;
  height: 45px;
  font-size: 15px;
  width: 100%;
  border: none;
  box-shadow: none;
  outline: none !important;
}
#loom-companion-mv3 {
  display: none;
}

/* thanks */
.thanks  {
  position: relative;
  padding: 180px 0 50px;
}
.thanks .common-btn  {
  margin: 0 auto !important;
  box-shadow: none;
  outline: none;
  border: none;
}


/* Media Query */

@media (max-width: 1600px) {
  section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 1400px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services h2 {
    margin-bottom: 5%;
  }
  .package p {
    margin-bottom: 70px;
  }
  .contact,
  .about-inner {
    padding-top: 80px;
  }
  .about-inner  {
    padding: 80px 0;
  }
  .container-fluid {
    padding: 0 30px;
  }
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .banner h1 {
    font-size: 90px;
    line-height:100px;
  } 
  .banner.slider .parallax-slider .swiper-slide .bg-img {
    padding: 250px 0 50px;
  }
  .slider .parallax-slider .swiper-slide {
    min-height: 750px;
  }
}
@media (max-width: 1300px) {
  .about-wrap .about-right {
    margin-left: 4%;
  } 
}
@media (max-width: 1200px) {
  h1 {
    font-size: 46px;
    line-height: 52px;
  }
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .contact,
  .about-inner,
  .service-page {
    padding-top: 70px;
  }
  .about-inner  {
    padding: 70px 0;
  } 
  .inner-banner {
    padding: 170px 0 50px;
    min-height: 300px;
  }
  .inner-banner h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .about-text h2, 
  .services h2, 
  .facilities h2, 
  .contact h2,
  .testimonials h2,
  .package h2,
  .service-page h2 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .about-text small, 
  .services h2 small, 
  .facilities small, 
  .contact small,
  .package small,
  .service-page small {
    font-size: 15px;
  }
  .container-fluid {
    padding: 0 15px;
  }
  p {
    font-size: 16px;
    line-height: 28px;
  }
  body {
    font-size: 16px;
  }
  .contact-left p {
    width: 80%;
  }
  .map iframe {
    height: 400px !important;
  }
  .banner h1 {
    font-size: 70px;
    line-height: 80px;
  }   
  .accordion .accordion-item .accordion-header {
    padding: 10px 0;
  }
  .services h2, .brands h2, .strategy h2, .price h2 {
    margin-bottom: 4%;
  }
  footer {
    padding-top: 70px;
  }
   .ratings {
    padding: 0 10px; 
    font-size: 13px;
  }
  .video h2 {
    font-size: 55px;
    line-height: 55px;
  }  
  .slider .parallax-slider .swiper-slide {
    min-height: 600px;
  }
  .banner.slider .parallax-slider .swiper-slide .bg-img {
    padding: 225px 0 50px;
  }
  .service-body-title h3 {
    font-size: 22px;
  }
  .special-service-details {
    padding: 20px 15px;
  }
  .special-service-details p {
    line-height: 22px;
    margin-bottom: 10px;
  }
  .special-services {
    padding: 70px 0;
  }
  .package {
    padding-bottom: 70px;
  }
  .custom-listing {
    padding: 50px 0 40px;
  }
  .thanks  {
    padding: 140px 0 30px;
  }
}
@media (max-width: 1100px) {
  .contact-left h6,
  .contact-left p {
    width: 85%;
  }
  .outer-menu ul li a {
    font-size: 16px;
  }
  .outer-menu ul li {
    margin-right: 20px;
  }
  .award-item {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .about-wrap .about-right {
    margin-left: 4%;
    width: 45%;
  }
  .about-service-img {
    width: 20%;
  }
  .about-service-details {
    padding: 25px 15px 25px 25px;
  } 
  h5 {
    font-size: 19px;
    line-height: 24px;
  } 
  .strategy-item h5 {
    font-size: 17px;
    line-height: 22px;
  }
  .package-item .package-text {
    padding: 40px;
  }
  .package-details-wrap {
    padding: 0 40px;
    bottom: 40px;
  }
  .accordion .accordion-item .accordion-header {
    padding: 0;
  }
  .strategy h3 {
    margin-top: 60px;
  }
  .about-inner .about-left {
    padding-right: 5%;
  }
  .awards-wrap .col-md-6:last-child .award-item {
    padding-left: 20px;
  }
  .banner.slider .parallax-slider .swiper-slide .bg-img {
    padding: 200px 0 50px;
  }
  .about-text p,
  .about-text h2 {
    margin-bottom: 10px;
  }
  .service-body {
    left: 10px;
    right: 10px;
  }
  .special-service-details h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .special-service-details p {
    font-size: 15px;
  }
  .service-img {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
  h2 {
    font-size: 26px;
    line-height: 26px;
  } 
  h3 {
    font-size: 24px;
    line-height: 24px;
  } 
  h4 {
    font-size: 20px;
    line-height: 26px;
  } 
  h5 {
    font-size: 18px;
    line-height: 24px;
  } 
  h6 {
    font-size: 16px;
    line-height: 22px;
  } 
  p {
    font-size: 15px;
    line-height: 26px;
  }
  body {
    font-size: 15px;
  }
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .header .mob-logo {
    display: block;
    margin-left: 8px;
    margin-bottom: 20px;
  }
  .header .mob-logo img.logo {
    height: 70px;
    width: auto;
  }
  .mob-social-icons.mobile-menu,
  .mobile-menu {
    display: block !important;
  }
  .mob-social-icons .social-icons {
    margin-left: 15px;
    margin-top: 15px;
  }
  .mob-social-icons .social-icons li {
    margin-right: 6px;
  }
  .mob-social-icons .social-icons li a {
    background-color:var(--base-color);
    color: #fff;
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px !important;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    padding: 0 !important;
  }
  .mob-social-icons .social-icons li a:hover {
    background-color: #222;
    color: #fff;
  }
  .outer-menu {
    padding: 0;
    height: 70px;
    max-height: 70px;
  }
  .sticky-navbar {
    background-color: rgba(0,0,0,.7);
  }
  .outer-menu .navbar-toggler{
    border: none;
    box-shadow: none;
    position: absolute;
    right: 15px;
    height: 13px;
    border-radius: 0;
    width: 23px;
    padding: 0;
    margin-top: -5px;
  }
  .outer-menu .navbar-toggler .menu-lines {
    display: inline-block;
  }
  .outer-menu .navbar-toggler .menu-lines::before, 
  .outer-menu .navbar-toggler .menu-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 23px;
    height: 1px;
    display: inline-block;
    background-color: var(--base-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .outer-menu .navbar-toggler .menu-lines::before {
    top: 0;
  }
  .outer-menu .navbar-toggler .menu-lines::after {
    top: 12px;
  }
  .outer-menu .navbar-toggler .menu-lines span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 1px;
    background-color:var(--base-color);
  }
  .outer-menu .collapse:not(.show) {
    display: block;
  }
  .outer-menu .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }
  .outer-menu .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .outer-menu .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .outer-menu .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 10px 0 20px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    transition-delay: 0s;
    transition-delay: 0.4s;
    margin: 0;
  }
  .outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }
  .outer-menu .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(.8);
    transition: all 0.4s ease;
    transition-delay: 0s;
    transition-delay: 0.5s;
    background-color: transparent;
    box-shadow: none;
  }
  .outer-menu li a {
    color: #303030;
    line-height: 35px !important;
    padding-left: 15px;
  }
  .outer-menu ul li a.active::before, 
  .outer-menu ul li a:hover::before,
  .outer-menu ul li a::before {
   display: none;
  } 
  .navbar .submenu li a {
    padding: 0;
  }
  .outer-menu ul li.dropdown:hover > .submenu {
    display: none;
  }
  .outer-menu ul li.dropdown .submenu {
    transform:none !important;
    position: static;
    float: none;
    display: none;
    padding: 0;
    box-shadow: none;
  }
  .outer-menu ul li.dropdown.open .submenu {
    visibility: visible;
    opacity: 1;
  }
  .navbar .dropdown::after {
    top: 17px;
  }
  .outer-menu .common-btn {
    display: none;
  }
  .outer-menu ul li a {
    color: var(--dark-gray);
  }
  .contact,
  .about-inner,
  .service-page {
    padding-top: 60px;
  }
  .about-inner  {
    padding: 60px 0;
  }
  footer {
    padding-top: 60px;
  }
  .inner-banner {
    padding: 150px 0 30px;
    min-height: 250px;
  }
  .inner-banner h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .about-text small, 
  .services h2 small, 
  .facilities small, 
  .contact small,
  .package small,
  .service-page small {
    font-size: 14px;
  }
  .about-text h2, 
  .services h2, 
  .facilities h2, 
  .contact h2,
  .testimonials h2,
  .package h2,
  .service-page h2 {
    font-size: 2.838rem;
    line-height: 2.838rem;
  }
  footer  .col-md-3,
  footer  .col-md-2  {
    width: 50%;
  } 
  .contact .col-md-6,
  footer  .col-md-4,
  .about-wrap .about-left, 
  .about-wrap .about-right,
  .package  .col-md-6,
  .testimonials .col-md-5, 
  .testimonials .col-md-7,
  .facilities .col-md-4,
  .facilities .col-md-8,
  .custom-listing .col-md-6 {
    width: 100%;
  }
  .service-img {
    padding-right: 0;
  }
  .contact-form {
    margin: 0;
    max-width: 100%;
  }
  .slider .parallax-slider .swiper-slide {
    min-height: 500px;
  }
  .banner.slider .parallax-slider .swiper-slide .bg-img {
    padding: 150px 0 50px;
  }
  .banner h6 {
    margin-bottom: 25px;
  }
  .contact-left {
    padding-bottom: 30px;
  }
  .footer-about {
    margin-top: 0;
    max-width: 100%;
  } 
  .footer-contact {
    margin-top: 30px;
  } 
  .banner h1 {
    font-size:60px;
    line-height: 65px;
  }
  .services h2 {
    margin-bottom: 4%;
  }
  .awards-wrap .col-md-6 {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px var(--extra-medium-gray);
  }
  .awards-wrap .col-md-6:last-child,
  .awards {
    border: none;
  }
  .about-wrap {
    display: block;
  }
  .awards-wrap .col-md-6:last-child .award-item,
  .awards-wrap .col-md-6 .award-item {
    padding-left: 0;
    padding-right: 0;
  }
  .about-wrap .about-right {
    margin-left: 0;
    padding-left: 15px;
    padding-top: 30px;
  }
  .about-bottom .row{
    justify-content: center;
  }
  .about-bottom .col-md-4 {
    width: 50%; 
    margin-bottom: 30px;
  }
  .about-bottom .col-md-4:last-child {
    margin-bottom: 0;
  }
  .about-bottom {
    padding-top: 40px;
  }
  .services .col-md-4 {
    width: 50%;
  }
  .package .col-md-6:first-child {
    margin-bottom: 30px;
  }
  .package p {
    margin-bottom: 60px;
  }
  .strategy h3 {
    margin-top: 50px;
  }
  .about-inner .about-left {
    padding-right: 0;
  }
  .about-inner .about-wrap .about-right {
    margin-left: 0;
    width: 100%;
    padding-left: 0;
  }
  .about-inner .about-img  {
    text-align: center;
  }
  .about-animation-img {
    left: 0;
  }  
  .strategy-item p {
    width: 90%;
    margin: 0 auto;
  }
  .video h2 {
    font-size: 46px;
    line-height: 46px;
    width: 70%;
  }
  .facility-left {
    padding-right: 15px;
  }
  .facility-right {
    padding-top: 40px;
  }
  .strategy h3 {
    font-size: 26px;
    line-height: 30px;
  } 
  .our-blog-item .our-blog-content {
    padding: 20px 15px 15px;
  }
  .our-blog-item .our-blog-img .b_date {
    padding: 10px 15px;
  }
  .services .common-btn {
    float: left;
  }
  .services {
    padding: 60px 0 50px;
  }
  .special-services {
    padding: 60px 0;
  }
  .special-services .col-md-6 {
    width: 100%;
  }
  .special-services .col-md-6:nth-last-child(2) {
    margin-bottom: 20px;
  }
  .package {
    padding-bottom: 50px;
  }
  .strategy .col-md-2 {
    width: 33.33%;
    position: relative;
    z-index: 5;
    margin-bottom: 20px;
  }
  .our-service .col-md-6{
    width: 33.3%;
  }
  .custom-listing {
    padding: 40px 0 30px;
  }
  .thanks  {
    padding: 100px 0 30px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 44px;
  }
  h2 {
    font-size: 25px;
    line-height: 25px;
  } 
  h3 {
    font-size: 23px;
    line-height: 23px;
  } 
  h4 {
    font-size: 19px;
    line-height: 24px;
  } 
  h5 {
    font-size: 17px;
    line-height: 22px;
  } 
  h6 {
    font-size: 15px;
    line-height: 20px;
  } 
  p {
    font-size: 14px;
    line-height: 24px;
  }
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  footer {
    padding-top: 50px;
  }
  .contact,
  .about-inner,
  .service-page {
    padding-top: 50px;
  }
  .about-inner  {
    padding: 50px 0;
  }
  .inner-banner {
    padding: 145px 0 30px;
    min-height: 220px;
  }
  .inner-banner h1 {
    font-size: 35px;
    line-height: 35px;
  }
  .about-text h2, 
  .services h2, 
  .facilities h2, 
  .contact h2,
  .testimonials h2,
  .package h2,
  .service-page h2 {
    font-size: 2.438rem;
    line-height: 2.438rem;
  }
  .contact-form {
    margin: 0 auto;
  }
  footer .col-md-3:last-child {
    width: 100%;
  }
  .footer-bottom {
    margin-top: 40px;
    text-align: center;
  }
  .designed {
    text-align: center;
  }
  .map iframe {
    height: 350px !important;
  }
  .banner h1 {
    font-size: 50px;
    line-height:55px;
  }
  .services h2 {
    margin-bottom: 20px;
  }
  .banner h1 {
    max-width: 435px;
  }
  .news h2 {
    margin-bottom: 40px;
  }
  .news .common-btn {
    float: none;
  }
  .services h2 small {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    margin-bottom: 0;
    display: block;
    width: 100%;
  }
  .service-details {
    padding: 15px;
  }
  .custom-listing .service-details {
    padding: 0;
  }
  .package p {
    margin-bottom: 50px;
  }
  .about-bottom-text h3 {
    font-size: 21px;
    line-height: 28px;
  }
  .about-bottom-count span {
    font-size: 24px;
  }
  .banner h6 {
    font-size: 18px;
    line-height: 28px;
  }
  .package-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
  .video h2 {
    font-size: 40px;
    line-height: 40px;
    width: 100%;
  }
  .video p {
    width: 100%;
    font-size: 16px;
  }
  .video p span {
    font-size: 12px;
    line-height: 24px;
  }
  .about-inner .col-md-6.award-left {
    width: 40%;
  }
  .about-inner .col-md-6.award-right {
    width: 60%;
  }
  .slider .parallax-slider .swiper-slide {
    min-height: 450px;
  }
  .banner h6 {
    margin-bottom: 20px;
  }
  .our-blog-item {
    margin-top: 30px;
  }
  .service-right {
    margin-top: 0;
  }
  .service-left .col-md-6 {
    width: 50%;
  }
  .package {
    padding-bottom: 40px;
  }
  .testimonials h5 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .service-item-left {
    margin-bottom: 20px;
  }
  .our-service .col-md-6{
    width: 50%;
  }
  .custom-listing {
    padding: 30px 0 10px;
  }
}
@media (max-width: 600px) {
  .testimonial-meta { 
    display: block !important;
    padding: 0 5px;
    text-align: center;
    margin: 0 auto;
  }
  .testimonial-thumb {
    margin: 0 auto 10px;
  }
  .about-bottom-text h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .about-bottom-count {
    padding-right: 32px;
    position: relative;
  }
  .about-bottom-count span {
    font-size: 22px;
  }
  .about-bottom-text {
    padding-left: 10px;
  }
  .package-details h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .package-item .package-text {
    padding:30px;
  }
  .package-details-wrap {
    padding: 0 30px;
    bottom: 30px;
  }
  .ratings {
    padding: 0 10px;
    font-size: 10px;
    line-height: 25px;
  }
  .service-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 24px;
  }
  .section-row {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact,
  .about-inner,
  .service-page {
    padding-top: 40px;
  }
  .about-inner  {
    padding: 40px 0;
  }
  .contact-left ul li {
    margin-top: 20px;
    width: 100%;
  }
  .about-text h2, 
  .services h2, 
  .facilities h2, 
  .contact h2,
  .testimonials h2,
  .package h2,
  .service-page h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .map iframe {
    height: 300px !important;
  }
  footer .col-md-3, footer .col-md-2 {
    width: 100%;
  }
  footer {
    padding-top: 40px;
  }
  .contact-img {
    width: 120px;
    height: 120px;
    right: -20px;
    bottom: -20px;
  }
  .contact-img img {
    width: auto;
    height: 65px;
  }
  .contact-form {
    padding: 10% 8% 13%;
  }
  .banner h1 {
    font-size: 40px;
    line-height: 45px;
    max-width: 314px;
  }
  .package p {
    margin-bottom: 40px;
  }
  .banner h6 {
    font-size: 16px;
    line-height: 24px;
    width: 70%;
  }
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .about-bottom .col-md-4 {
    width: 100%;
    margin-bottom: 15px;
  }
  .about-bottom-item {
    border-bottom: solid 1px var(--extra-medium-gray);
    border-right: none;
    padding-bottom: 15px;
  }
  .about-bottom {
    border: none;
    padding-bottom: 0;
  }
  .services .col-md-4 {
    width: 100%;
    margin-bottom: 15px;
  }
  .package-item .package-text {
    padding:15px;
  }
  .package-details-wrap {
    padding: 0 15px;
    bottom: 20px;
  }
  .ratings {
    padding: 0 6px;
    font-size: 8px;
    line-height: 22px;
  }
  .feature-box {
    padding: 10px 15px;
  }
  .video h2 {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }
  .testimonial-meta h6,
  .testimonial-meta p {
    font-size: 12px;
  }
  .slider .parallax-slider .swiper-slide {
    min-height: 400px;
  }
  .banner h6 {
    margin-bottom: 15px;
  }
  .services {
    padding: 40px 0 40px;
  }
  .special-services {
    padding: 40px 0;
  }
  .package {
    padding-bottom: 50px;
  } 
  .package {
    padding-bottom: 30px;
  }
  .special-service-details {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
  }
  .special-service-details h3 {
    font-size: 22px;
    line-height: 23px;
    margin-bottom: 10px;
  }
  .testimonials h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .strategy .col-md-2 {
    width: 50%;
    margin-bottom: 20px;
  }
  .facility-right .about-service-details {
    padding: 25px 15px 25px 15px;
  }
  .our-service .col-md-6{
    width: 100%;
  }
  .special-service-details .readmore-btn {
    font-size: 14px;
  }
  .custom-listing {
    padding: 20px 0 0;
  }
  .banner.slider .parallax-slider .swiper-slide .bg-img {
    padding: 120px 0 50px;
  }
  .banner {
    min-height: 400px;
  }
}
@media (max-width: 400px) {
  .contact-img {
    width: 80px;
    height: 80px;
    right: -20px;
    bottom: -20px;
  }
  .contact-img img {
    width: auto;
    height: 45px;
  }
  .package-details h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .price-item-img,
  .price-item-price {
    width: 100%;
  }
  .price-item-details {
    border-left: none;
    text-align: center;
    width: 100%;
    padding: 0;
  }
  
  .feature-box span {
    font-size: 17px;
  }
  .about-text p {
    margin-bottom: 20px;
  }
  .about-animation-img {
    top: 10px;
  } 
  .about-inner .col-md-6.award-left {
    width: 100%;
  }
  .about-inner .col-md-6.award-right {
    width: 100%;
  }
  .about-animation-img img {
    display: none;
  }
  .about-text h2, 
  .services h2, 
  .facilities h2, 
  .contact h2,
  .testimonials h2,
  .package h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .about-text small, 
  .services h2 small, 
  .facilities small, 
  .contact small,
  .package small {
    font-size: 12px;
  }
  .special-service-details h3 {
    margin-bottom: 5px;
  }
  .special-service-details p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 18px;
  }
 
}