:root {
  --base-color: #D4A574;
  --dark-gray: #2C1810;
  --medium-gray: #333;
  --light-gray: #8f7368;
  --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, a:focus {
	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: #232120;
  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(--base-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;
}
/* 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: 60px;
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:rgba(0,0,0,.25);
    backdrop-filter: blur(35px);
    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,
    .menu-logo {
      display: none;
    }
    }

/* header */


/* banner  */

.banner {
   width: 100%;
   position: relative;
   background-position: center top;
   background-size: cover;
   padding: 150px 0 100px;
   min-height: 430px;
}
.banner h1 {
  color: #fff;
  font-size: 150px;
  line-height: 130px;
  letter-spacing: -3px;
  max-width: 540px;
}
.banner h6 {
  color: #f7f7f7;
  font-family:var(--primary-font);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .3px;
  font-weight: 400;
  margin-bottom: 35px;
  width: 60%;
  max-width: 320px;
}

/* 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: 8%;
  width: 33.3%;
}
.grey-btn,
.grey-btn:hover {
  background-color: var(--dark-gray);
  color: #fff;
}
.about-text small,
.services h2 small,
.brands h2 small,
.strategy h2 small,
.facilities small,
.beauty-services small,
.review small,
.price h2 small,
.contact 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 bottom, #2C1810, #311f17, #382822, #c4a07a, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--primary-font);
}
.about-text h2,
.services h2,
.brands h2,
.strategy h2,
.facilities h2,
.review h2,
.price h2,
.contact h2 {
  font-weight: 400;
  color: var(--dark-gray);
  letter-spacing: -1px;
  font-size: 3.438rem;
  line-height: 3.438rem;
}
.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;
}

/* Service */

.services h2 small,
.brands h2 small,
.strategy h2 small,
.price h2 small { 
  padding-right: 20px;
  margin-right: 25px;
  border-right: solid 2px var(--dark-gray);
  margin-bottom: 0;
}
.services h2,
.brands h2,
.strategy h2,
.price h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6%;
}
.service-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all .5s ease;
  will-change: transform;
}
.service-img img {
  width: 100%;
  transition: all .5s ease;
}
.service-img:hover img {
  transform: scale(1.1);
  transition: all .5s ease;
}
.service-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
  background-image: linear-gradient(to bottom, #2C1810, #311f17, #382822, #c4a07a, #D4A574);
  transition: all .5s ease;
  z-index: 1;
}
.service-img:hover::before {
  opacity: .7;
  transition: all .5s ease;
}
.service-icon {
  width: 65px;
  height: 65px;
  border:1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 65px;
  font-size: 28px;
  color: #fff;
  position: absolute;
  top:120%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s ease;
  opacity: 1;
  border-radius: 50%;
  margin-top: 0;
  z-index: 5;
}
.service-img:hover .service-icon {  
  top: 50%;
  transition: all .5s ease;
}
.service-details {
  padding: 25px;
  text-align: center;
}
.service-details h4 {
  color: var(--dark-gray);
  margin-bottom: 0;
}
.service-details p {
  color: var(--medium-gray);
  margin-bottom: 0;
}
.mb-20 {
  margin-bottom: 20px;
}
.p-0 {
  padding: 0;
}
.price-item {
  border-top: var(--extra-medium-gray) solid 1px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.5s ease;  
}
.price-item:last-child {
  border-bottom: var(--extra-medium-gray) solid 1px;
}
.price-item:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: all 0.5s ease;
}
.price-item-details {
  padding: 30px 40px;
  border-right: var(--extra-medium-gray) solid 1px;
  text-align: left;
  width: 55%;
}
.price-item-details h5,
.price-item-details p {
  margin-bottom: 0;
}
.price-item-img {
  width: 25%;
  text-align: center;
  align-items: center;
  padding: 10px;
}
.price-item-img img {
  width: 55px;
  height: 55px;
  transition: all 0.5s ease;
}
.price-item-img:hover img {
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.price-item-price {
  width: 40%;
  text-align: center;
  align-items: center;
  padding: 10px;
}
.price-item-price h2 {
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 0;
  font-size: 28px;
  line-height: 43.2px;
}
.price-item-price h2 i,
.price-item-price h2 svg {
  font-size: 24px;
}
.price-item-right {
  padding-left: 50px;
}
.price-item-left {
  padding-right: 50px;
}

/* package */

.package {
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}
.package h2 {
  text-align: center;
  margin-bottom: 80px;
}
.package-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.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;
}
.offer-rate {
  border-radius: 4px;
  font-weight: bold;
  padding: 7px 15px;
  color: var(--dark-gray);
  line-height: 24px;
  font-size: 13px;
  background-color: #fff;
  text-transform: uppercase;
  font-family: var(--primary-font);
}
.package-details-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  padding: 0 50px;
}
.package-details {
  padding-right: 15px;
}
.package-details h3 {
  font-size: 32px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 0;
}
.package-details p {
  opacity: 0.6;
  font-weight: 300;
  letter-spacing: 0.5;
  margin-bottom: 0;
  color: #fff;
}
.package-icon {
  width: 60px;
  height: 60px;
  border:2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  color: #fff;
  transition: all .5s ease;
  opacity: 1;
  border-radius: 50%;
  margin-left:auto;
  z-index: 5;
}

 /* Brands */

 .brands {
  position: relative;
 }
 .brands::after {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
  height: 140%;
  margin-top: -57%;
  background-image: linear-gradient(to bottom,#f8ebe9,#f6ebed,#f2ebf0,#eeebf1,#eaecf1);
  z-index: -1;
 }
 .brands .col-md-3 {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-bottom: rgba(35,35,35,.1)  solid 1px;
  border-right: rgba(35,35,35,.1)  solid 1px;
 }
 .brands .col-md-3:nth-last-child(1),
 .brands .col-md-3:nth-last-child(2),
 .brands .col-md-3:nth-last-child(3),
 .brands .col-md-3:nth-last-child(4)   {
  border-bottom: none;
 }
 .brands .col-md-3:nth-child(4n),
 .brands .col-md-3:last-child {
  border-right: none;
 }
.brand-item {
  transition: all 0.5s ease;
}
.brand-item:hover {
  transition: all 0.5s ease;
  opacity: 0.5;
}

/* middle banner */

.middle-banner {
  background-image: linear-gradient(to right, #D4A574, #886b49, #705639, #311f17, #2C1810);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.middle-banner .accordion {
  margin-bottom: 25px;
}
.middle-banner-text small {
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px !important;
  color: var(--base-color);
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}
.middle-banner-text {
  padding-top: 14%;
  padding-bottom: 10%;
  padding-left: 8%;
}
.middle-banner-text h2 {
  font-weight: 400;
  color: #fff;
  font-size: 3.438rem;
  line-height: 3.438rem;
}
.accordion .accordion-item  {
  background: transparent;
  border: none;
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
  border-radius: 0;
  outline: none;
}
.accordion .accordion-item:last-of-type {
  border: none;
}
.accordion .accordion-item .accordion-header .accordion-button {
  cursor: pointer;
  padding-right: 25px;
  font-weight: 500;
  font-size: 19px;
  line-height: 25px;
  color: #fff;
  background: transparent;
  outline: none !important;
  border: none !important;
  padding-left: 0;
  font-family: var(--primary-font);
  box-shadow: none;
  text-decoration: none !important;
}
.accordion .accordion-item .accordion-header {
  padding: 15px 0;
}
.accordion-body  {
  padding: 0 25px 30px 0;
}
.accordion-body .p-text {
  opacity: 0.5;
  color: #fff;
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  top: 50%;
  right:0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  background-image: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

/* 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: 85px;
  background-color:#2C1810;
}
.footer-about {
  margin-top: 40px;
  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: 30px;
}
.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 span  {
  display: inline-block;
}
.designed a {
color: #fff;
font-weight: 600;
display: inline-block;
margin-left: 5px;
}
.designed a img {
  width: auto;
  height: 20px;
}
.floatingdiv {
position: fixed;
top: 45%;
right: 10px;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  background-image: linear-gradient(to right,#2C1810,#D4A574);
  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;
    color: #fff;
  font-size: 24px;
}
.floatingwhatsapp img {
  width: 28px;
  height: auto;
}
.floatingcall {    
  background-image: linear-gradient(to right,#2C1810,#D4A574);
  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,
.floatingwhatsapp 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,#2C1810,#D4A574);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  border: none;
  padding: 0;
}
#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

/* inner banner */

.inner-banner {
  width: 100%;
  position: relative;
  background-position: center top;
  background-size: cover;
  padding: 180px 0 80px;
  min-height: 340px;
  text-align: center;
}
.inner-banner  h1 {
 color: #fff;
 font-size: 68px;
 line-height: 68px;
 letter-spacing: -3px;
 margin-bottom: 0;
}
.banner-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* about inner */
.about-inner {
  padding-bottom: 0;
  padding-top: 90px;
}
.about-inner .about-left{
  padding-right: 9%;
}
.feature-box {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 30px;
  margin-bottom: 35px;
  background-color: var(--light-gray);
  border-radius: 4px;
  text-align: left;
}
.feature-box-icon {
  margin-right: 10px;
}
.feature-box-icon img {
  height: 30px;
  width: auto;
}
.feature-box span {
  font-size: 20px;
  color: var(--dark-gray);
  font-family: var(--base-font);
  letter-spacing: -.5px;
}
.award-left h3 {
  margin-right: 10px;
  font-size: 45px;
  display: inline-block;
  vertical-align: top;
}
.ratings {
  padding:0 15px;
  border-radius: 4px;
  background-color: var(--dark-gray);
  font-size: 14px;
  color: #fff;
  line-height: 34px;
  display: inline-block;
  vertical-align: top;
}
.award-right p {
  border-left: 2px solid var(--dark-gray);
  padding-left: 25px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 24px;
}
.about-bottom-brands {
  border-bottom: 1px solid var(--extra-medium-gray);
  border-top: 1px solid var(--extra-medium-gray);
}
.brand-item h2 {
  font-weight: 400;
  letter-spacing: -1px;
  font-size: 38px;
  line-height: 38px;
  margin: 45px 0;
}
.brand-item h2 sup {
  font-size: 20px;
  color: #dc3131;
}
.about-inner .about-wrap .about-right {
  margin-left: 0;
  width: 50%;
}
.about-bottom-brands .first {
  border-right: solid 1px var(--extra-medium-gray);
}
.about-animation-img {
  left:-15px;
  top: 100px;
  transform: translate3d(0,0,100px);
  position: absolute;
}
.about-animation-img img {
  animation: float 2s linear .5s infinite alternate both;
}
@keyframes float {
  0% {
    transform:translateY(0)
  }
  50% {
    transform:translateY(5px)
  }
  100% {
    transform:translateY(10px)
  }
}
/* strategy */

.strategy {
  position: relative;
  text-align: center;
}
.strategy .col-md-3 {
  border-right: 1px solid var(--extra-medium-gray);
}
.strategy .col-md-3:last-child {
  border-right: none;
}
.strategy-icon img {
  width: 55px;
  margin:0 auto 20px;
}
.strategy-item h5 {
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 5px;
}
.strategy-item p {
  width: 70%;
  margin: 0 auto;
}
.strategy h3 {
  margin: 80px 0 0;
  letter-spacing: -.5px;
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
}
/* 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 bottom, #2C1810, #311f17, #382822, #c4a07a, #D4A574);
  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)
  }
}
/* facility */

.facility-left {
  padding-right: 30px;
}
.facility-left p {
  margin-bottom: 40px;
}
.facility-right .price-item-details {
  width: 66.6%;
  padding: 25px 15px 25px 45px;
}
.facility-right .price-item-details p {
  margin-bottom: 0;
}
.facility-right .price-item-img img {
  width: 45px;
  height: auto;
}
.facility-right .price-item-img {
  width: 33.3%;
}

/* services */
.beauty-services {
  text-align: left;
  border-bottom: 1px solid var(--extra-medium-gray);
}
.beauty-services h2 {
  width: 80%;
}
.beauty-services::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/service-bg.jpg) no-repeat center;
  z-index: -5;
  width: 220px;
  height: 210px;
}
.beauty-services .strategy-item p {
  width: 70%;
  margin: 0;
}
.beauty-services .col-md-3 {
  border: none;
  margin-bottom: 4%;
}
.beauty-services .strategy-item h5 { 
  font-weight: 500;
  font-family: var(--base-font);
}
.beauty-services .col-md-3:nth-last-child(1),
.beauty-services .col-md-3:nth-last-child(2),
.beauty-services .col-md-3:nth-last-child(3),
.beauty-services .col-md-3:nth-last-child(4) {
  margin-bottom: 0;
}

/* review */

.review h2  {
  margin-bottom: 40px;
}
.review-img {
  position: relative;
}
.review-img img.main-img {
  position: relative;
  z-index: 5;
  transition: all 0.5s ease;
  border-radius: 6px;
  animation: 2s linear 0.5s infinite alternate both float;
}
.review-bg-img {
  position: absolute;
  right: 12px;
  top: 20px;
  z-index: 1;
}
.review-img-round {
  position: absolute;
  left: -100px;
  bottom: 50px;
  z-index: 10;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,.08);
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-left {
  padding-top: 50px;
  padding-bottom: 50px;
}
.review-right {
  padding-top: 164px;
  padding-bottom: 50px;
}
.review-right h3 {
  font-size: 28px;
  line-height: 32px;
  font-weight: normal;
}
.review-icon {
  margin-bottom: 20px;
}
.review-ratings {
  color: var(--base-color);
  font-size: 16px;
  line-height: 25px;
}
.review-right h2 {
  margin-bottom: 0;
}
.review-ratings li {
  display: inline-block;
  vertical-align: top;
  margin-right: -4px;
}
.review-ratings li span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
}
.review-ratings-wrap {
  border-left: 1px solid var(--extra-medium-gray);
  margin-left: 10px;
  padding-left: 25px;
}
.review-ratings-wrap p {
  font-size: 16px;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 0;
}
.review-testimonial {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* wedding */
.wedding {
  position: relative;
}
.wedding-left-text h2 {
  letter-spacing: -1px;
  font-size: 2.813rem;
  line-height: 3.125rem;
  max-width: 90%;
}
.wedding-left-text p {
  margin-bottom: 0;
  max-width: 90%;
}
.wedding-right-img {
  width: 168px;
  height: 168px;
  margin: 0 auto;
}
.image-left {
  left: 0;
  bottom: 120px;
  position: absolute;
  z-index: -1;
  animation: 2s linear 0.5s infinite alternate both float;
  transition: all 0.5s ease;
}
.wedding-slider {
  margin-top: 80px;
  margin-right: -30vw;
}
.gallery-box {
  padding: 0;
  margin: 12px;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  text-align: center;
  background-color: var(--dark-gray);
}
.gallery-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(15px);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background-color: rgba(46, 56, 68, 0.9);
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
}
.gallery-box:hover .gallery-hover {
  transform: translateY(0);
  opacity: 1;
}
.wedding-fetures {
  border-bottom: none;
  padding-bottom: 90px;
}
.wedding-fetures .award-item {
  padding-top: 0;
  padding-bottom: 0;
}
.wedding-fetures .awards-wrap {
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
}
.wedding-fetures .awards-wrap .col-md-6 {
  display: flex;
  justify-content: center;
}
.wedding-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0,0,0,.08);
}
.wedding-img {
  overflow: hidden;
  transition: all 0.4s ease;
}
.wedding-img img {
  width: 100%;
  height: auto;
}
.wedding-item:hover .wedding-img img {
  transition: all 0.4s ease;
  transform: scale(1.1);
}
.wedding-item .wedding-details {
  background-color: #fff;
  position: relative;
}
.wedding-btn {
  top: auto;
  bottom: 52px;
  right: 40px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  line-height: 55px;
  transition: all 0.4s ease;
  background-color: var(--dark-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.wedding-btn:hover {
  background-color: var(--base-color);
  color: #fff;
}
.wedding-text {
  padding: 30px 50px;
}
.wedding-text h4 {
  font-weight: 400;
  margin-bottom: 5px;
}
.wedding-text p {
  margin-bottom: 0;
}
.wedding-rate {
  padding: 20px 30px;
  border-top: 1px solid var(--extra-medium-gray);
  color: var(--medium-gray);
}
.wedding-rate span {
  margin-right: 5px;
  color: var(--dark-gray);
  font-size: 26px;
  line-height: 38px;
  font-family: var(--base-font);
}
.wedding-theme {
  background-image: linear-gradient(to bottom, #f8ebe9, #f6ebed, #f2ebf0, #eeebf1, #eaecf1);
  position: relative;
}
.vertical-text {
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  letter-spacing: 1px;
  font-size: 15.625rem;
  line-height: 15.625rem;
  color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 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(--base-color);
  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;
  text-decoration: none !important;
}
.contact-form .submit-btn:hover {
  background-color: var(--dark-gray);
  color:#fff;
}
.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, #2C1810, #311f17, #382822, #c4a07a, #D4A574);
  right: -30px;
  bottom: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-img img {
  width: auto;
  height: 85px;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    padding: 0;
    color: red;
    font-size: 14px;
    margin: 10px 0 0;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
}
#Header {
  display: inline-block;
}
.map {
  margin-top: -80px;
  margin-bottom: -10px;
}
.services-details-img {
  padding-right: 30px;
}
.menu-logo img,
  .review-icon img {
 height: 60px;
 width: auto;
}
/* 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, .brands h2, .strategy h2, .price h2 {
    margin-bottom: 5%;
  }
  .package h2 {
    margin-bottom: 70px;
  }
  .contact,
  .about-inner {
    padding-top: 80px;
  }
  .container-fluid {
    padding: 0 30px;
  }
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .banner h1 {
    font-size: 140px;
    line-height: 120px;
  }
  .wedding-fetures {
    padding-bottom: 80px;
  }
}
@media (max-width: 1300px) {
  .about-wrap .about-right {
    margin-left: 6%;
    width: 36%;
  }
  .price-item-details {
    padding: 30px 35px; 
  }
  .award-left h3 {
    font-size: 40px;
  }
  .wedding-left-text h2 {
    font-size: 2.513rem;
    line-height: 3rem;
  }
  .review-img-round {
    bottom: 20px;
  }
  .review-right h3 {
    font-size: 26px;
    line-height: 30px;
  }
  .review-ratings-wrap {
    margin-left: 5px;
    padding-left: 19px;  
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 46px;
    line-height: 52px;
  }
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .contact,
  .about-inner {
    padding-top: 70px;
  }
  .inner-banner {
    padding: 170px 0 50px;
    min-height: 300px;
  }
  .inner-banner h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .about-text h2, 
  .services h2, 
  .brands h2, 
  .strategy h2, 
  .facilities h2, 
  .review h2, 
  .price h2, 
  .contact h2,
  .testimonials h2,
  .middle-banner-text h2 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .about-text small, 
  .services h2 small, 
  .brands h2 small, 
  .strategy h2 small, 
  .facilities small, 
  .beauty-services small, 
  .review small, 
  .price h2 small, 
  .contact small {
    font-size: 15px;
  }
  .container-fluid {
    padding: 0 15px;
  }
  p {
    font-size: 16px;
    line-height: 28px;
  }
  .contact-left p {
    width: 80%;
  }
  .map iframe {
    height: 400px !important;
  }
  .banner h1 {
    font-size: 130px;
    line-height: 110px;
  }
  .price-item-price h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .price-item-left {
    padding-right: 30px;
  }
  .price-item-right {
    padding-left: 30px;
  }
  .middle-banner-text {
    padding-top: 9%;
    padding-bottom: 5%;
    padding-left: 5%;
  }
  .accordion .accordion-item .accordion-header {
    padding: 10px 0;
  }
  .services h2, .brands h2, .strategy h2, .price h2 {
    margin-bottom: 4%;
  }
  footer {
    padding-top: 70px;
  }
  .wedding-fetures {
    padding-bottom: 70px;
  }
  .strategy h3 {
    margin-top: 70px;
  }
  .award-left h3 {
    font-size: 36px;
  }
  .ratings {
    padding: 0 10px; 
    font-size: 13px;
  }
  .video h2 {
    font-size: 55px;
    line-height: 55px;
  }
  .brand-item h2 {
    font-size: 36px;
  }
  .beauty-services .strategy-item p {
    width: 80%;
    margin: 0;
  } 
  .review-bg-img {
    right: -100px;
  }
  .review-ratings-wrap {
    margin-left: 0;
    padding-left: 10px;
  }
  .review-ratings-wrap .review-ratings {
    font-size: 14px;
    line-height: 20px;
  }
  .review-ratings-wrap p {
    font-size: 14px;
    line-height: 20px;
  }
  .review h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@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;
  }
  .price-item-left {
    padding-right: 20px;
  }
  .price-item-right {
    padding-left: 20px;
  }
  .award-item {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .about-wrap .about-right {
    margin-left: 4%;
    width: 45%;
  }
  .price-item-img {
    width: 20%;
  }
  .price-item-details {
    padding: 25px 15px 25px 25px;
  }  
  h5 {
    font-size: 19px;
    line-height: 24px;
  } 
  .package-item .package-text {
    padding: 40px;
  }
  .package-details-wrap {
    padding: 0 40px;
    bottom: 40px;
  }
  .brands .col-md-3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .middle-banner-text {
    padding-top: 40px;
    padding-bottom:40px;
    padding-left: 0;
  }
  .accordion .accordion-item .accordion-header {
    padding: 0;
  }
  .strategy h3 {
    margin-top: 60px;
  }
  .award-right p{
    padding-left: 16px;
  }
  .about-inner .about-left {
    padding-right: 5%;
  }
  .beauty-services .strategy-item p {
    width: 95%;
    margin: 0;
  }
  .wedding-left-text h2 {
    font-size: 2.2rem;
    line-height: 3rem;
    max-width: 100%;
  }
  .wedding-left-text p {
    max-width: 100%;
  }
  .wedding-slider {
    margin-top: 60px;
    margin-right: -30vw;
  }
  .awards-wrap .col-md-6:last-child .award-item {
    padding-left: 20px;
  }
  .wedding-text {
    padding: 20px 30px;
  }
}
@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;
  }
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  header {
      backdrop-filter:none;
  }
  .header .mob-logo {
    display: block;
    margin-left: 8px;
    margin-bottom: 20px;
  }
  .header .mob-logo img.logo {
    height: 40px;
    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;
  }
  .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;
    padding: 0;
  }
  .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 {
    padding-top: 60px;
  }
  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, 
  .brands h2 small, 
  .strategy h2 small, 
  .facilities small, 
  .beauty-services small, 
  .review small, 
  .price h2 small, 
  .contact small {
    font-size: 14px;
  }
  .about-text h2, 
  .services h2, 
  .brands h2, 
  .strategy h2, 
  .facilities h2, 
  .review h2, 
  .price h2, 
  .contact h2,
  .testimonials h2,
  .middle-banner-text 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,
  .price .col-md-6,
  .package  .col-md-6,
  .middle-banner .col-md-6,
  .testimonials .col-md-5, 
  .testimonials .col-md-7,
  .facilities .col-md-4,
  .facilities .col-md-8 {
    width: 100%;
  }
  .contact-form {
    margin: 0;
    max-width: 100%;
  }
  .contact-left {
    padding-bottom: 30px;
  }
  .footer-about {
    margin-top: 0;
    max-width: 100%;
  } 
  .footer-contact {
    margin-top: 30px;
  } 
  .banner h1 {
    font-size: 120px;
    line-height: 100px;
  }
  .services h2, .brands h2, .strategy h2, .price 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%;
  }
  .price-item-left {
    padding-right: 8px;
  }
  .price-item-right {
    padding-left: 8px;
  }
  .price-item-right .price-item:first-child {
    border-top: none;
  }
  .price-item-price h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  .package .col-md-6:first-child {
    margin-bottom: 30px;
  }
  .middle-banner .col-md-6:first-child {
    order: 2;
  }
  .package h2 {
    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;
  }
  .brand-item h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 35px 0;
  }
  .brand-item h2 sup {
    font-size: 16px;
  }
  .about-bottom-brands .brand-item img {
    margin: 10px 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;
  }
  .beauty-services-text,
  .review .col-md-6,
  .review .col-md-3  {
    width: 100%;
    text-align: center;
  }
  .beauty-services h2{
    width: 100%;
  }
  .beauty-services .col-md-3 {
    width: 33.33%;
    margin-bottom: 20px;
  }
  .beauty-services .col-md-3:nth-last-child(4),
  .beauty-services .col-md-3:nth-last-child(3) {
    margin-bottom: 20px;
  }
  .wedding-fetures {
    padding-bottom: 60px;
  }
  .wedding-left-text h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .wedding-slider {
    margin-top: 50px;
  }
  .wedding-fetures .awards-wrap .col-md-6:first-child {
    padding-bottom: 15px;
    margin-bottom: 15px;    
  }
  .review-left {
    padding-top: 0;
    padding-bottom: 40px;
    width: 100%;
  }
  .review-img {
    position: relative;
    display: table;
    margin: 0 auto;
  }
  .review-right {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .review-right .row {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }
  .review-icon {
    margin: 0 auto 20px;
    display: table;
  }
}
@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 {
    padding-top: 50px;
  }
  .inner-banner {
    padding: 145px 0 30px;
    min-height: 220px;
  }
  .inner-banner h1 {
    font-size: 35px;
    line-height: 35px;
  }
  .about-text h2, 
  .services h2, 
  .brands h2, 
  .strategy h2, 
  .facilities h2, 
  .review h2, 
  .price h2, 
  .contact h2,
  .testimonials h2,
  .middle-banner-text 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: 80px;
    line-height: 70px;
  }
  .services h2, .brands h2, .strategy h2, .price h2 {
    margin-bottom: 20px;
  }
  .banner h1 {
    max-width: 435px;
  }
  .services h2, .brands h2, .strategy h2, .price h2 {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .services h2 small, .brands h2 small, .strategy h2 small, .price h2 small {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    margin-bottom: 0;
    display: block;
    width: 100%;
  }
  .price-item-price h2 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .price-item-price h2 i, .price-item-price h2 svg {
    font-size: 20px;
  }
  .service-details {
    padding: 15px;
  }
  .package h2 {
    margin-bottom: 50px;
  }
  .brands .col-md-3 {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brands::after { 
    height: 200%;
    margin-top: -200%;
  }
  .brands .col-md-3:nth-last-child(3),
  .brands .col-md-3:nth-last-child(4) {   
    border-bottom: rgba(35,35,35,.1) solid 1px;
  }
  .brands .col-md-3:nth-child(2n) {   
    border-right: none;
  }
  .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;
  }
  .strategy h3 {
    margin-top: 40px;
  }  
  .about-bottom-brands .col-md-3.first {
    width: 100%;
    border: none;    
  }
  .brand-item h2 {
    margin: 25px 0 0;
    text-align: center;
  }
  .about-bottom-brands .col-md-3 {
    width: 33.3%;
  }
  .about-bottom-brands .brand-item img {
    margin: 0;
  }
  .strategy .col-md-3 {
    border-right: 1px solid var(--extra-medium-gray);
    width: 50%;
    margin-bottom: 30px;
  }
  .strategy .col-md-3:nth-child(2n) {
    border-right: none;
  }
  .strategy .col-md-3:nth-last-child(2),
  .strategy .col-md-3:last-child  {
    margin-bottom: 0;
  }
  .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%;
  }
  .strategy h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .beauty-services .col-md-3 {
    width: 50%;
    margin-bottom: 20px;
    border: none;
    text-align: center;
  }
  .wedding-fetures {
    padding-bottom: 50px;
  }
  .wedding-right-img,
  .review-img-round,
  .review-bg-img {
    display: none;
  }
  .wedding-text {
    padding: 15px 15px;
  }
  .wedding-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    bottom: 36px;
    right: 20px;
  }
  .wedding-rate {
    padding: 10px 15px;
  }
  .wedding-slider {
    margin-top: 30px;
  }
  .review-right .row .col-md-4 {
    width:33%;
  }
  .review-right .row .col-md-8 {
    width:67%;
  }
  .services-details-img {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
@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;
  }
  .award-left h3 {
    font-size: 30px;
  }
  .ratings {
    padding: 0 10px;
    font-size: 10px;
    line-height: 25px;
  }
  .award-right p {
    padding-left: 12px;
    line-height: 16px;
  }
  .service-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact,
  .about-inner {
    padding-top: 40px;
  }
  .contact-left ul li {
    margin-top: 20px;
    width: 100%;
  }
  .about-text h2, 
  .services h2, 
  .brands h2, 
  .strategy h2, 
  .facilities h2, 
  .review h2, 
  .price h2, 
  .contact h2,
  .testimonials h2,
  .middle-banner-text 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;
  }
  .wedding-fetures {
    padding-bottom: 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: 60px;
    line-height: 55px;
    max-width: 314px;
  }
  /* .price-item-price h2 {
    font-size: 1rem;
    line-height: 1rem;
  } */
  .price-item-price h2 i, .price-item-price h2 svg {
    font-size: 16px;
  }
  .package h2 {
    margin-bottom: 40px;
  }
  .banner h6 {
    font-size: 16px;
    line-height: 24px;
    width: 70%;
  }
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .award-icon {
    margin-right: 17px;
  }
  .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;
  }
  .strategy h3 {
    margin-top: 30px;
  }
  .award-left h3 {
    font-size: 25px;
  }  
  .ratings {
    padding: 0 6px;
    font-size: 8px;
    line-height: 22px;
  }
  .feature-box {
    padding: 10px 15px;
  }
  .strategy h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .video h2 {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }
  .beauty-services .col-md-3 {
    width: 100%;
  }
  .strategy .col-md-3:nth-last-child(2) {
    margin-bottom: 20px;
  }
  .testimonial-meta h6,
  .testimonial-meta p {
    font-size: 12px;
  }
}
@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;
  }
  .banner {
    padding: 120px 0 85px;
  }
  .award-icon img {
    height: 45px;
    width: auto;
  }
  .feature-box span {
    font-size: 17px;
  }
  .about-text p {
    margin-bottom: 20px;
  }
  .about-animation-img {
    top: 10px;
  }
  .strategy .col-md-3 {
    border-right:none;
    width: 100%;
    margin-bottom: 20px;
  }
  .strategy .col-md-3:nth-last-child(2) {
    margin-bottom: 20px;
  }
  .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, 
  .brands h2, 
  .strategy h2, 
  .facilities h2, 
  .review h2, 
  .price h2, 
  .contact h2,
  .testimonials h2,
  .middle-banner-text h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .about-text small, 
  .services h2 small, 
  .brands h2 small, 
  .strategy h2 small, 
  .facilities small, 
  .beauty-services small, 
  .review small, 
  .price h2 small, 
  .contact small {
    font-size: 12px;
  }
  .review-right .row .col-md-4 {
    text-align: right;
  }
}