/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #2d2d2d;
  overflow-x: hidden;
  padding-top: 0;
  font-size: 18px;
  line-height: 1.66;
}

a {
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 500;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.66;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 0;
  font-size: 0;
  border: 0;
  background-color: #fff;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 9;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev:before {
  content: "\f104";
  font-size: 20px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next:before {
  content: "\f105";
  font-size: 20px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.slick-arrow.slick-disabled {
  opacity: 0.2;
}
.slick-slide {
  padding: 0 15px;
}
.slick-dots button {
    font-size: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    line-height: 0;
    border: none;
    background-color: #d3c0a780;
    transition: all ease 0.4s;
    position: relative;
}
ul.slick-dots li {
  display: block;
  text-align: center;
}
.slick-dots .slick-active button {
  background-color: #000;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 100px 0;
    overflow: hidden;
	position:relative;
	z-index:1;
}
.btn_bx {
  margin-top: 50px;
  text-align: center;
}
.section-title span {
  margin: 0px 0 16px;
  color: #2d2d2d;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
}

.section-title h1,
.section-title h2 {
  position: relative;
  color: #2d2d2d;
  text-transform: math-auto;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.38;
}
.section-title p {
  margin: 0 auto 0 auto;
}

.common-btn {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 100px;
    background-color: transparent;
    color: #2d2d2d;
    padding: 12px 20px;
    outline: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
}
.common-btn::after {
  content: "";
  position: absolute;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  width: 0;
  height: 120%;
  left: -10%;
  bottom: -10%;
  background: #d3c0a7;
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
}
.common-btn span {
  position: relative;
  z-index: 1;
}
.common-btn:hover::after {
  width: 120%;
}
.common-btn:hover {
  color: #000;
  border-color: #d3c0a7;
}

.gold-border-btn {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-align: center;
    border-bottom: 2px solid #d3c0a7;
    color: #2d2d2d;
    padding: 5px 40px;
    outline: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
}
.gold-border-btn:hover{
	color: #2d2d2d;
}


.white-btn {
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100px;
    background-color: #fff;
    color: #2d2d2d;
    padding: 9px 20px;
    outline: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
	font-size: 16px;
}
.white-btn::after {
  content: "";
  position: absolute;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  width: 0;
  height: 120%;
  left: -10%;
  bottom: -10%;
  background: #fff;
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
}
.white-btn span {
  position: relative;
  z-index: 1;
}
.white-btn:hover::after {
  width: 120%;
}
.white-btn:hover {
    color: #000000;
    border-color: #fff;
}



.black-btn {
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 100px;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 20px;
    outline: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
}
.black-btn::after {
  content: "";
  position: absolute;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  width: 0;
  height: 120%;
  left: -10%;
  bottom: -10%;
  background: #fff;
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
}
.black-btn span {
  position: relative;
  z-index: 1;
}
.black-btn:hover::after {
  width: 120%;
}
.black-btn:hover {
    color: #000000;
    border-color: #fff;
}
/*--------------------------------------------------------------
 # call-buton Css
--------------------------------------------------------------*/
.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #ffeb33;
  width: 4rem;
  height: 4rem;
  padding: 0rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 2.2rem;
}
.call-buton .cc-calto-action-ripple:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 0 rgba(255, 235, 51, 0.2), 0 0 0 5px rgba(255, 235, 51, 0.2),
      0 0 0 10px rgba(255, 235, 51, 0.2);
    box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 0 rgba(255, 235, 51, 0.2), 0 0 0 5px rgba(255, 235, 51, 0.2),
      0 0 0 10px rgba(255, 235, 51, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 5px rgba(255, 235, 51, 0.2), 0 0 0 10px rgba(255, 235, 51, 0.2),
      0 0 0 20px rgba(255, 235, 51, 0);
    box-shadow: 0 4px 10px rgba(236, 24, 24, 0.2),
      0 0 0 5px rgba(255, 235, 51, 0.2), 0 0 0 10px rgba(255, 235, 51, 0.2),
      0 0 0 20px rgba(255, 235, 51, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 0 rgba(255, 235, 51, 0.2), 0 0 0 5px rgba(255, 235, 51, 0.2),
      0 0 0 10px rgba(255, 235, 51, 0.2);
    box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 0 rgba(255, 235, 51, 0.2), 0 0 0 5px rgba(255, 235, 51, 0.2),
      0 0 0 10px rgba(255, 235, 51, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 5px rgba(255, 235, 51, 0.2), 0 0 0 10px rgba(255, 235, 51, 0.2),
      0 0 0 20px rgba(255, 235, 51, 0);
    box-shadow: 0 4px 10px rgba(255, 235, 51, 0.2),
      0 0 0 5px rgba(255, 235, 51, 0.2), 0 0 0 10px rgba(255, 235, 51, 0.2),
      0 0 0 20px rgba(255, 235, 51, 0);
  }
}

span.num {
  position: absolute;
  color: #ec8b00;
  left: -30%;
  bottom: -50%;
}

/*--------------------------------------------------------------
# header top css
--------------------------------------------------------------*/


.logo-bx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
}

.header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

/* Basic dropdown container */
.header-top-col .dropdown {
  position: relative;
  list-style: none;
}

/* The clickable area */
.header-top-col .dropdown-toggle {
  display: flex;
  align-items: center;
  color: #2d2d2d;
  text-decoration: none;
}
.header-top-col .dropdown li {
  margin-right: 0 !important;
}
/* Dropdown menu hidden by default */
.header-top-col .dropdown-menu {
  display: none;
  border: none;
  padding: 0;
  z-index: 10;
  position: absolute;
  background: #fff;
  right: 0;
  top: 100%;
  -webkit-box-shadow: 0 8px 10px rgba(190, 190, 190, 0.341);
  box-shadow: 0 8px 10px rgba(190, 190, 190, 0.341);
  border-radius: 10px;
  font-size: 16px;
  min-width: 166px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  max-height: 200px !important;
  overflow-y: scroll;
}
.header-top-col .dropdown span.header-top-link-icon i.fa-globe {
  color: #da3545;
  margin-right: 5px;
}
/* Menu links */
.header-top-col .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #2b2b2b;
  text-decoration: none;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #cccccc73;
}

.header-top-col .dropdown-menu li a:hover {
  background-color: #ccdef2;
  color: #2b2b2b;
}
.header-top-col .dropdown-menu li a:hover:after {
  background-size: 0;
}

/* Show dropdown on hover */
.header-top-col .dropdown:hover .dropdown-menu {
  display: block;
}
.header-top-col .dropdown-toggle::after {
  display: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-address a {
  color: #ffffff;
  font-weight: 600;
  margin-right: 25px;
}
.top-address a i {
  padding-right: 5px;
  color: #ffffff;
}
.top-contact ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-contact ul li a {
  background: transparent;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.top-contact ul li a:hover {
  background: #2d2d2d;
  border: 1px solid #2d2d2d;
  color: #ffffff;
}
.top-head-sec {
  padding: 7px 0 7px 0;
  background: #fff;
}
.header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
}

.header {
  z-index: 997;
  position: sticky;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
  background: #ffffff;
}
header.header.sticky .top-head-sec {
  display: none;
}
.bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.logo img {
  max-width: 200px;
  transition: all 0.5s;
}
.right-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 1rem;
}
.right-btn a.common-btn {
  margin-right: 0;
}
.header-bottom {
  position: relative;
  padding: 5px 0;
  background-color: #000;
}

.header-phone a {
  color: #2d2d2d;
  display: inline-block;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2d2d2d),
    to(#2d2d2d)
  );
  background: linear-gradient(#2d2d2d, #2d2d2d);
  background-size: 100% 2px;
  background-position: 0 94%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.35s, color 0.3s;
  transition: background-size 0.35s, color 0.3s;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.header-phone a:hover {
  background-size: 0 2px;
  background-position: 100% 94%;
}

.header-refer a {
  color: #fff;
  font-weight: 600;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#fff)
  );
  background: linear-gradient(#fff, #fff);
  background-size: 100% 2px;
  background-position: 0 94%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.35s, color 0.3s;
  transition: background-size 0.35s, color 0.3s;
}
.header-refer a:hover {
  background-size: 0 2px;
  background-position: 100% 94%;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1270px) {
  .navbar {
    padding: 0;
    margin: 0;
    position: inherit;
  }
  .navbar ul:not(.menu) {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
  }

  .navbar li {
    position: inherit;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 0;
  }

.navbar a.nav-item, .navbar a.nav-item:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

  .navbar a.nav-item i,
  .navbar a.nav-item:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a.nav-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a.nav-item:hover:before,
  .navbar li:hover > a.nav-item:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a.nav-item:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a.nav-item {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: #fff;
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

/*--------------------------------------------------------------
 # Sidebar Css
--------------------------------------------------------------*/
.nav-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2d2d2d;
}
.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  padding: 50px 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
.side-bar .inner {
  padding: 40px 20px 0 0;
}
@media (max-width: 991px) {
  .side-bar .inner {
    padding: 40px 0 0 0;
  }
}
.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 25px;
}
.side_bar_menu ul li a {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}
.side_bar_menu ul li a:hover {
  color: #2d2d2d;
}
.side_bar_menu ul li {
  margin-bottom: 25px;
}
.side_bar_location h4 {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 30px;
  text-transform: capitalize;
  margin: 25px 0;
}

.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 150px;
  margin-left: 0;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  opacity: 1;
  transition-delay: 0.7s;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area .shape {
  height: 10px;
  width: 10px;
  line-height: 10px;
  transform: rotate(45deg);
  margin: 0 6px;
  background: var(--color-primary);
  display: block;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li {
  list-style: none;
  margin: 0 5px;
  color: #fff;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li a {
  width: 40px;
  height: 40px;
  border: 1px solid #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
}
.side-bar
  .inner-main-wrapper-desk
  .inner-content
  .footer
  .social-area
  li
  a:hover {
  color: #fff;
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}
.side-bar.header-one {
  background-color: #ffffff;
}
.side-bar button:hover {
  background-color: #d3c0a7;
  border-color: #d3c0a7;
}
.side-bar.show {
  right: 0;
  overflow-y: auto;
}
.side-bar button {
  max-width: 100%;
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background: #2d2d2d;
  padding: 6px;
  border: 1px solid #2d2d2d;
}
.side-bar button i {
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#side_bar_overlay.bgshow {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}
#side_bar_overlay {
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}
.burger-icon {
  width: 30px;
  cursor: pointer;
}
.burger-icon span {
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: background-color 0.3s ease-in, opacity 0.3s ease-in,
    transform 0.3s ease-in;
  width: 83.33333333%;
  background: #2d2d2d;
  transition: all 400ms ease-in-out;
  margin-inline: auto;
}
/* .burger-icon span:nth-child(1) {
} */

/* .burger-icon span:nth-child(2) {
    width: 100%;
} */
/* .burger-icon span:nth-child(3) {
    width: 58.33333333%;
} */
/* .burger-icon span:nth-child(1) {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.burger-icon span:nth-child(2) {
    width: 100%;
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
.burger-icon span:nth-child(3) {
    width: 58.33333333%;
    transition: all 100ms ease-in-out;
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
} */

@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

.side_bar_cn {
  margin-bottom: 25px;
}
.side_bar_address {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2d2d2d30;
}
.side_bar_address h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #2d2d2d;
}
.side_bar_address a {
  color: #2d2d2d;
}
.side_bar_address p {
  margin: 0;
}

/*--------------------------------------------------------------
 # Banner new css
--------------------------------------------------------------*/
.banner-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.banner-sticky-con {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.banner-sticky-bx h1 {
    font-size: 78px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 8px;
}
.banner-sticky-bx {
    max-width: 660px;
}
.banner-sticky-bx p {
    color: #fff;
    font-weight: 500;
}
.banner-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}


/*--------------------------------------------------------------
	Service Section new
--------------------------------------------------------------*/
.service-section {
    background-image: url('../../assets/images/17.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	position:relative;
	z-index:1;
}
.section-head .section-title {
    margin-bottom: 25px;
}
.section-head {
    max-width: 450px;
}
.section-head a.common-btn {
    margin-top: 25px;
}
.flip-card {
    width: 100%;
    height: 420px;
    perspective: 1000px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
}

/* Front */
.flip-card-front {
  background: #000;
  color: #fff;
  padding: 40px 25px;
  text-align: center;
}

.flip-card-front .icon {
    margin-bottom: 20px;
    max-width: 50px;
    margin-inline: auto;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.flip-card-front h3 {
    margin-bottom: 15px;
    font-size: 20px;
    max-width: 90%;
	color:#fff;
}

/* Back */
.flip-card-back {
  transform: rotateY(180deg);
  position: relative;
}

.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back a {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
}
.flip-card-front .icon svg {
    fill: #fff;
}

.flip-card-front .icon svg {
    max-height: 50px;
    margin: 0 auto;
    width: 50px;
}




/*--------------------------------------------------------------
 # location new
--------------------------------------------------------------*/
        .hero {
            background: url('https://via.placeholder.com/1600x600') no-repeat center/cover;
            color: #fff;
            padding: 120px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
        }

        /* Section spacing */
        section {
            padding: 60px 0;
        }

        /* Feature box */
        .feature-box {
			text-align: center;
			padding: 25px;
			border-radius: 10px;
			transition: 0.3s;
			background: #ffffff;
		}

        .feature-box:hover {
            transform: translateY(-5px);
            background: #e9ecef;
        }

        .cta {
			background: #000000;
			color: white;
			text-align: center;
			padding: 50px 20px;
			border-radius: 10px;
		}

.beauty-slider .slick-dots .slick-active button {
    background-color: #d3c0a7;
}
/*--------------------------------------------------------------
 # location new
--------------------------------------------------------------*/

.location-sec-new {
    position: relative;
    background: #fff;
}
.location-head {
    margin-bottom: 50px;
}
.location-sec-new .container {
    max-width: 1382px;
}

.location_left_side {
    max-width: 585px;
    margin-left: auto;
}

.location-section-new .section-title {
    margin-bottom: 50px;
}

.location-section-new .location-card {
    position: relative;
    text-align: center;
    height: 100%;
    transition: all 0.5s;
    padding-bottom: 40px;
    z-index: 1;
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    color: #ffff;
}
.location-features .section-title {
    margin-bottom: 5px;
}
.location-section-new .background-image,
.location-section-new [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.location-section-new .background-image:before {
    position: absolute;
    content: "";
    background: rgb(31 68 139 / 92%);
    z-index: -1;
    height: 100%;
    width: 100%;
    left: 0;
    border-radius: 18px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    top: 0;
}

.location-section-new .location-card .box-icon {
    background-color: #ffffff;
    text-align: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    height: 400px;
    overflow: hidden;
}

.location-section-new .location-card .box-icon img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.5s;
}

.location_cn h3 {
    font-size: 18px;
    display: block;
    margin: 0;
    color: #fff;
}

.location_cn a {
    display: none;
}

.ser_bx_slider {
    padding: 0 60px;
}

.location_cn {
    margin-inline: auto;
    position: absolute;
    text-align: center;
    padding-bottom: 15px;
    bottom: 0;
    display: block;
    width: 100%;
    z-index: 2;
}

.box-icon:before {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
    width: 100%;
    height: 20%;
    transition: 0.5s ease;
    content: "";
    z-index: 1;
}


/* .location-card.transform_bottom {
    transform: translateY(40px);
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 2s infinite  alternate;
} */

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


/* .location-card {
    -webkit-animation: mover-2 1s infinite  alternate;
    animation: mover-2 2s infinite  alternate;
} */

@-webkit-keyframes mover-2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.location-section-new .box-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.location-section-new .location-card .box-title {
    margin-bottom: 4px;
    min-height: 50px;
}

.location-section-new .location-card .box-title a {
    color: #000;
}

.location-section-new .location-card:hover .box-icon {
    background-color: white;
}

.location-section-new .location-card:hover .box-title {
    color: #fff;
}

.location-section-new .location-card:hover .box-text {
    color: white;
}

.location-section-new .location-card:hover .box-icon img {
    transform: scale(1.1);
}

.location-section-new .location-card:hover .th-btn {
    color: #000 !important;
    -webkit-box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
    background: #ec1c23;
}

.location-section-new .location-card:hover:after {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.location-section-new .location-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: transparent;
    border-radius: 18px;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.location-section-new .location-card .th-btn {
    background: #ec1c23;
    color: #000;
    border-radius: 0;
    font-size: 16px;
}

.location-section-new .location-card .th-btn:hover {
    color: #000;
}

.location-section-new .location-card .box-text {
    margin-bottom: 22px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    line-height: 1.4;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
    color: #fff;
}

.location-section-new .th-btn.btn-sm {
    padding: 10px 27px;
    min-width: 140px;
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}

.location-section-new .ser_bx_new .row {
    row-gap: 30px;
    justify-content: center;
}

.location-section-new .bg {
    bottom: 0;
    left: -50%;
    opacity: 0.5;
    position: absolute;
    right: -50%;
    top: 0;
    z-index: 0;
}

.location-section-new .container {
    position: relative;
    z-index: 1;
}

.location-section-new {
    overflow: hidden;
    padding: 70px 0;
    /*  background-image: url(../../assets-new/images/P6220763.jpg);
    background-size: cover;
    background-attachment: fixed; */
    position: relative;
    background: #0047ab;
}


/* .location-section-new:before {
    content: '';
    background: rgb(240 245 255 / 90%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
} */

.location-section-new .section-title h3 {
    background: #ec1c23;
}

.location-section-new .bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.location-section-new .btn_bx {
    margin-top: 0;
}

.location-section-new .bg3 {
    animation-duration: 5s;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

.location_tab .tabs {
    width: 100%;
    background-color: #000000;
    border-radius: 0;
    display: flex;
    height: 100%;
}

.location_tab_left {
    padding: 5px;
    overflow: auto;
    width: 100%;
}

.location_tab ul#tabs-nav {
    list-style: none;
    margin: 0;
    padding: 5px;
}

.location_tab #tabs-content {
    width: 100%;
    height: 100%;
}

.location_tab ul#tabs-nav li {
    font-weight: 400;
    margin-right: 2px;
    padding: 8px 10px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    background: #ededed;
    margin-bottom: 10px;
    border: 1px solid #cccccc52;
    height: 100%;
    z-index: 9;
    position: relative;
}

.location_tab ul#tabs-nav li:last-child {
    margin-bottom: 0;
}

.location_tab ul#tabs-nav li:hover,
.location_tab ul#tabs-nav li.active {
    background-color: #000000;
    box-shadow: 0 0 7px #ccc;
    border-color: #000000;
}

.location_tab ul#tabs-nav li.active a {
    color: #fff;
}

.location_tab #tabs-nav li a {
    text-decoration: none;
    color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.loc-head h3 {
    font-weight: 400;
    margin-right: 2px;
    border-radius: 5px 5px 5px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    justify-content: space-between;
    font-size: 25px;
}

.loc-head p {
    margin: 0;
}

.note_text .section-title b {
    font-family: initial;
}

.loc-ic {
    display: inline-block;
    margin-left: 0;
}

.loc-ic .icon {
    position: relative;
    top: 0;
    left: 0.125em;
    width: 2.25em;
    height: 4ex;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.loc-ic .icon-circle {
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.location_tab ul#tabs-nav li.active :where(h3,
    p) {
    color: #fff;
}

.location_tab ul#tabs-nav li.active .icon-arrow {
    stroke: #fff;
}

.location_tab ul#tabs-nav li.active .icon-circle {
    stroke: #fff;
    stroke-dashoffset: 0;
}

.location_tab ul#tabs-nav li.active a {
    color: #fff;
}

.location_tab #tabs-nav li a:hover .icon {
    transform: translate3d(0.125em, 0, 0);
}

.location_tab #tabs-nav li a:hover .icon-circle {
    stroke: #fff;
    stroke-dashoffset: 0;
}

.location_tab #tabs-nav li a:hover .icon-arrow {
    stroke: #fff;
}

.loc-head {
    width: calc(100% - 220px);
}

.location_tab #tabs-nav li a span {
    margin-right: 10px;
}

.location_tab #tabs-nav li a span img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.location_tab .tab-content {
    padding: 40px;
    background-color: #fff;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.location-sec-new .location_head .section-title {
    margin-bottom: 25px;
}

.location-sec-new .location_head p {
    color: #000;
}


.location_tab ul#tabs-nav li.active .loc-head p {
    color: #fff;
}
.location-card-bx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	gap:30px;
}

.inner-slider .slick-slide {
    padding: 0;
}


.location-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-card .inner-slider img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-card .content {
    padding: 15px;
}

.location-card .content h4 {
    margin: 0;
    font-size: 18px;
}

.location-card .content p,
.location-card .content a,
.location-card .content a {
    margin: 5px 0 0;
    color: #666;
}
/*--------------------------------------------------------------
# world-leading Section
--------------------------------------------------------------*/
.world-leading-section {
    background: #000;
    position: relative;
    z-index: 1;
}
.world-leading-cn p{
	color:#fff;
}

.video-card {
    width: 100%;
    height: 326px;
    background: #000;
    overflow: hidden;
    border-radius: 0 160px 160px 0;
    max-width: 548px;
    border: 1px solid #d3c0a7;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Subtle zoom on hover */
.video-card:hover video {
  transform: scale(1.06);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
    position: relative;
    background: #ffffff;
}
.about-cn {
    text-align: center;
}
.about-img img {
    max-width: 425px;
    border-radius: 15px;
}section {
    padding: 100px 0;
    overflow: hidden;
}

.about-cn .section-title h2 {
  margin-bottom: 15px;
}
.about-cn .ab_cn p {
  margin-bottom: 15px;
}

.beauty-head .section-title p {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Beauty Section
--------------------------------------------------------------*/
.beauty-section{
	background:#000;
	position:relative;
	z-index:1;
}
.section-title.text-white h2 {
    color: #fff;
}
.beauty-section ul.slick-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.disclaimer-bx {
    text-align: center;
    margin-top: 25px;
}
.disclaimer-bx p{
    color:#fff;
	margin:0;
}
.disclaimer-bx a.white-btn {
    margin-top: 30px;
}

.world-leading-head .section-title {
	 margin-bottom:25px;
}
/*--------------------------------------------------------------
# partner Section
--------------------------------------------------------------*/
.partner-section {
    position: relative;
    z-index: 1;
    background: #fff;
}
.partner-img img {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000;
    border-radius: 10px 10px 10px 10px;
}
.partner-section ul.slick-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.partner-section .slick-dots button {
    background-color: #d3c0a799;
}
.partner-section .slick-dots .slick-active button {
    background-color: #d3c0a7;
}
.partner-section .section-title {
    margin-bottom: 25px;
}
/*--------------------------------------------------------------
 # Cta section
--------------------------------------------------------------*/
.cta-section {
    position: relative;
    background: #EDEDED;
}
.cta-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.error {
    background: red;
    display: block;
    font-size: 15px;
    padding: 0 8px;
    color: #fff;
}
/*--------------------------------------------------------------
 # Footer
--------------------------------------------------------------*/
.footer {
    background: #000;
    color: #ccc;
    position: relative;
    z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.logo span {
  font-weight: 700;
}

.logo small {
  font-size: 12px;
  letter-spacing: 2px;
}

.social a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}
.footer ul li a{
    font-size: 14px;
    color: #fff;
}

.footer p,
.footer p a {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.footer .white-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.map iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: 0;
}
.social {
    margin-top: 50px;
}
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #ffffff;
}
.mega-dropdown i {
  transition: 0.3s;
  margin-top: 7px;
}

.mega-dropdown:hover i {
  transform: rotate(180deg);
}

.mega-menu .list-item a {
  text-decoration: none;
  font-weight: 500;
  color: #000 !important;
  font-size: 18px;
  padding: 0.65em 1.35em;
  display: inline-block;
  transition: all 200ms;
}

.mega-dropdown {
  padding: 10px;
}

.submenu-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.submenu-left {
  display: inline-block;
  width: 25%;
  background-color: #000000;
}

.submenu-title-holder {
  padding: 1.56vw 4.58vw 0.78vw;
}

.submenu-left-description {
  padding-left: 4.58vw;
  padding-right: 3.39vw;
  padding-bottom: 3.39vw;
}

.submenu-title.white {
  color: #ffffff;
}

.submenu-left-description .txt-24 {
  font-size: 20px;
  white-space: normal;
  color: #fff;
  margin-bottom: 15px;
}

.btn-link.white {
  color: #ffffff !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin-top: 25px;
  display: block;
  text-decoration: none;
  font-size: 17px;
}

.btn-link.white:hover {
  color: #ffffff !important;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.btn-link:hover img {
  -webkit-animation: bounce 2s linear -0.4s;
  animation: bounce 2s linear -0.4s;
  -webkit-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}

.header-ul .header-li:hover .submenu .submenu-center,
.header-ul .header-li:hover .submenu .submenu-right {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.submenu-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.submenu-center .inline_block {
  border-right: 1px solid #dcdcdc;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.submenu-center .submenu-ul-tag li {
  display: inline-block;
  width: calc(50% - 15px);
  margin-bottom: 15px;
}

.submenu-right {
  display: inline-block;
  width: 25%;
}

.submenu-center .submenu-title-holder,
.submenu-center .submenu-default-col {
  padding: 1.56vw 3.13vw 0.78vw;
}

.submenu-center .submenu-ul-tag {
  padding-left: 3.13vw;
  padding-right: 2.29vw;
  display: block;
  white-space: normal;
}

.submenu-center .submenu-ul-tag a {
  font-size: 16px;
  margin-top: 10px;
  color: #2d2d2d !important;
  padding: 0 !important;
  display: block;
  white-space: normal;
}

.submenu-feat a.common-btn {
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  padding: 14px;
  outline: none;
  min-width: 200px;
  -webkit-transition: 350ms ease;
  transition: 350ms ease;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
}
.submenu-feat {
  padding: 30px 20px;
  padding-bottom: 2.6vw;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.radius {
  border-radius: 8px;
}

.submenu-feat-img {
  max-width: 100%;
}

.submenu-feat-img {
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

.img-wrapper.aspect-ratio-400-240 {
  padding-top: 60%;
}

.submenu-feat-img .img-wrapper {
  border-radius: 8px;
}

.img-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  font-size: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.img-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.to-be-scaled img {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.bor-bottom h2 {
  position: relative;
}

.bor-bottom h2:after {
  width: 80px;
  height: 3px;
  background: #d3c0a7;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.section-title.bor-bottom h2 {
  padding-bottom: 15px;
}


/*--------------------------------------------------------------
 # blog
--------------------------------------------------------------*/
.blog-section {
  background: #ededed;
}
.blog-card {
  transition: all 0.3s ease;
  border-radius: 5px;
  border: 1px solid #bebebe;
  background-color: #fff;
  margin: 0 auto;
  cursor: pointer;
}
.blog-card .card-body h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 25px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.blog-card .card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
a.blog-btn {
  margin-top: 50px;
  padding-top: 15px;
  display: block;
  border-top: 1px solid #bebebe;
  color: #fff;
  font-weight: 500;
}
.blog-section .container {
  max-width: 1382px;
}
.blog-card img {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: cover;
}
.blog-card .card-body {
  padding: 34px 45px 31px 38px;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/*================================================ 
	about page CSS
=================================================*/

.about-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.about-sticky-con {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.about-sticky-bx h1 {
    font-size: 65px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 50px;
}
.about-sticky-bx {
    display: grid;
    width: 100%;
    position: relative;
    grid-template-columns: 570px;
    justify-content: center;
}
.about-sticky-bx p {
    color: #fff;
    font-weight: 500;
}
.about-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}
.about-video-card {
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
    border-radius: 0 100% 100% 0;
    max-width: 640px;
    border: 0px solid #d3c0a7;
    position: absolute;
    top: -45%;
    left: 0;
}
.about-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-sticky-cn {
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-sticky-cn h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
	margin-bottom: 50px;
}
.about-section-2 {
    background: #fafcff;
    position: relative;
    z-index: 1;
}
.about-sec-2-img img {
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
}
.about-sec-2-cn .section-title {
    margin-bottom: 20px;
}
.about-sec-2-cn p {
    margin-bottom: 20px;
}
.lab-section {
    background: #ffffff;
    text-align: center;
}

.lab-images{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
}

.lab-card{
    width:320px;
    border-radius:20px;
    overflow:hidden;
}

.lab-card img{
    width:100%;
     object-fit:cover;
    display:block;
}

.lab-content p{
    max-width:1050px;
    margin:auto;
    font-size:16px;
    line-height:1.6;
    color:#000;
}
.lab-section .section-title h2 {
    margin-bottom: 15px;
    font-size: 30px;
}




.features-section{
    background:#fafcff;
}

.features-section .container{
    width:90%;
    margin:auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.feature-card{
    background:#000;
    color:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:6px;
    transition:0.3s;
}

.feature-card img {
    width: 90px;
    margin-bottom: 20px;
    filter: invert(1);
}

.feature-card h4 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    margin: 0;
    font-size: 18px;
}

.feature-card:hover{
    transform:translateY(-8px);
}









/*================================================ 
	transformative page CSS
=================================================*/

.transformative-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.transform-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.transform-head-btn {
    flex: 0 0 auto;
}

.transformative-sticky-con {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.transformative-sticky-bx h1 {
    font-size: 65px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 0;
}
.transformative-sticky-bx {
    display: grid;
    width: 100%;
    position: relative;
    grid-template-columns: 80%;
}
.transformative-sticky-bx p {
    color: #fff;
    font-weight: 500;
}
.transformative-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}





/*================================================ 
	transformative page CSS
=================================================*/

.sedation-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.sedation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.sedation-head-btn {
    flex: 0 0 auto;
}

.sedation-sticky-con {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.sedation-sticky-bx h1 {
    font-size: 65px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0;
}
.sedation-sticky-bx {
    display: grid;
    width: 100%;
    position: relative;
    grid-template-columns: 60%;
}
.sedation-sticky-bx p {
    color: #fff;
    font-weight: 500;
}
.sedation-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}
.sadation-list {
    text-align: center;
    background: #000;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
}
.sadation-list .section-title h2 {
    color: #fff;
}
.seda-benefits-sec {
    background: #F4F9FF;
}
.seda-benefits-cn ul {
    margin: 25px 0;
}
.seda-benefits-cn ul li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    margin-bottom: 15px;
}
.seda-benefits-cn ul li:before {
    content: '\f105';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #d3c0a7;
}
.service-10-sec {
    position: relative;
    background: #fff;
}
.service-10-sec .service-inner-10 {
    margin: 0;
}


/*================================================ 
	financing page CSS
=================================================*/

.financing-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.financing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
}
.financing-head-btn {
    flex: 0 0 auto;
}

.financing-sticky-con {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.financing-sticky-bx h1 {
    font-size: 65px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0;
}
.financing-sticky-bx {
    display: grid;
    width: 100%;
    position: relative;
    grid-template-columns: 50%;
}
.financing-sticky-bx p {
    color: #fff;
    font-weight: 500;
}
.financing-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}

.payment-section {
    background: #fff;
}
.payment-cards {
    display: grid;
    gap: 10px;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
}
.payment-cards .card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    min-width: 280px;
    text-align: left;
    align-items: flex-start;
    height: 100%;
}

.payment-cards .card img{
	margin-bottom:15px;
}

.payment-cards .card h3 {
    margin-bottom: 20px;
    font-size: 36px;
}

.payment-cards .card ul {
    padding-left: 0;
}

.payment-cards .card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
}
.payment-cards .card li:before {
    content: "\f0da";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 7px;
}

.payment-head.text-center {
    margin-bottom: 50px;
}

.super-box{
	background:#000;
	color:#fff;
	margin-top:40px;
	padding:35px;
	border-radius:12px;
	text-align:left;
}

.super-box p:last-child {
    margin: 0;
}
.super-box ul{
	padding-left:0;
	margin-top:10px;
}

.super-box li{
    margin-bottom: 10px;
    position: relative;
	padding-left:15px;
	font-size: 16px;
}
.super-box li:before {
    content: "\f0da";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 7px;
}
.faq-parallax{
	position:relative;
}
.faq-parallax:before {
    content: '';
    background-color: #000000;
    opacity: 0.66;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
}

.faq-parallax .container {
    position: relative;
    z-index: 1;
    color: #fff;
}
.faq-container{
	max-width:1000px;
	margin:auto;
	position:relative;
	z-index:2;
}

.faq-item{
	margin-bottom:20px;
	}

.faq-question {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #000;
}
.faq-content-section .section-title {
    margin-bottom: 50px;
}

.faq-answer{
	background:transparent;
	color:#fff;
	padding:18px 10px;
	display:none;
	font-size:16px;
}

.faq-item.active .faq-answer{
	display:block;
}

.faq-item .arrow{
	font-size:20px;
	transition:0.3s;
}

.faq-item.active .arrow{
	transform:rotate(180deg);
}

















.smile-gallery {
    background: #fff;
}
.smile-gallery .section-title{
	margin-bottom:50px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.gallery-grid img{
	width:100%;
	height:180px;
	object-fit:cover;
}

.disclaimer {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 0;
}



.servicehead-cn {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 80px;
}
.services-card {
    width: 100%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    overflow: hidden;
    text-align: center;
}
.arch-wrapper {
    margin-block-end: 20px;
}
.arch-wrapper img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}
.services-title h2,
.services-title h2 a {
	color:#000;
    margin: 0;
    font-size: 25px;
}





.main-menu li{
	position:relative;
}

.main-menu > li{
	display:inline-block;
}

.main-menu a{
	display:block;
	text-decoration:none;
	color:#fff;
	font-size: 14px;
	font-weight: 400;
}
.main-menu .menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
}
.menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: max-content;
    display: none;
    flex-direction: column;
    gap: 0 !important;
    border-top: 2px solid #fff;
}

.main-menu li:hover > .menu{
	display:block;
}

.menu li {
    position: relative;
    width: 100%;
}

.menu .menu{
	top:0;
	left:100%;
}

.menu a {
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid #eee;
    width: 100%;
    margin: 0;
}
.menu a:hover {
    background: #333333;
}




.bg-grey{
	background-color:#f5f5f5;
}






.dental-section {
    background: #fff;
}
.dental-section p {
    color: #000;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}
.dental-section .dental-head {
    margin-bottom: 50px;
}

    /* ── SLIDER ── */
    .teeth-slider {
      margin-bottom: 16px;
    }

    .teeth-slider .slick-list {
      margin: 0 -6px;
    }

    .slide-item {
      padding: 0;
      outline: none;
    }

    .slide-inner {
      border-radius: 6px;
      overflow: hidden;
    }

    .slide-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .slide-inner:hover img {
      transform: scale(1.04);
    }

    .teeth-slider .slick-dots {
		display: flex;
		gap: 5px;
		justify-content: center;
		align-items: center;
	}

    .teeth-slider .slick-dots li button::before {
      font-size: 8px;
      color: #aaa;
      opacity: 0.5;
    }

    .teeth-slider .slick-dots li.slick-active button::before {
      color: #2e2a25;
      opacity: 1;
    }

    /* ── ARROWS ── */
    .teeth-slider .slick-prev,
    .teeth-slider .slick-next {
      z-index: 10;
      width: 36px;
      height: 36px;
    }

    .teeth-slider .slick-prev { left: -40px; }
    .teeth-slider .slick-next { right: -40px; }

    .teeth-slider .slick-prev::before,
    .teeth-slider .slick-next::before {
      color: #aaa;
      font-size: 22px;
    }
	
	
	
	
	.transform-services {
		background: #fafcff;
	}
	.transform-head-cn {
		max-width: 850px;
	}
	.transform-services .service-cards {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 25px;
	}
	.transform-services  .flip-card-front .icon img {
		filter: invert(1);
		max-width: 65px;
	}
	.transform-services .flip-card-front p {
		margin: 0;
	}
	
	
	
	.conatct-us-section {
		background: #fff;
	}

	.conatct-us-section .form-control {
		background: #ffffff;
		border: none;
		padding: 12px;
	}

	.conatct-us-section textarea.form-control{
		height:180px;
	}
	.contact-bx {
		background: #000000;
		padding: 25px;
		box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
		transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
		margin: 0px 0px 0px -180px;
		--e-column-margin-right: 0px;
		--e-column-margin-left: -180px;
		padding: 30px 30px 30px 30px;
		border-radius: 5px 5px 5px 5px;
	}
	.contact-section .section-title {
		margin-bottom: 20px;
	}
	.contact-section {
		display: flex;
	}
	.contact-img-bx {
		max-width: 485px;
	}
	
	
	
	
/*================================================ 
	dental page CSS
=================================================*/

.dental-sticky {
    padding: 0;
    position: sticky;
    top: 0;
}
.dental-sticky-con {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(-0%, -50%);
}
.dental-sticky-bx h1 {
    font-size: 65px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 50px;
}
.dental-sticky-bx {
    display: grid;
    width: 100%;
    position: relative;
    grid-template-columns: 920px;
    justify-content: center;
}
.dental-sticky-bx p {
    color: #000;
    font-weight: 500;
}
.dental-sticky-image img {
    height: calc(100vh - 90px);
    width: 100%;
    object-fit: cover;
}	
.dental-sticky-cn {
    text-align: center;
}
.dental-sticky-cn h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
.link-btn {
    background-color: rgba(0, 0, 0, 0);
    color: rgb(204, 183, 140) !important;
    text-decoration: none;
    white-space: normal;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: center;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 17px;
    border-color: rgba(255, 255, 255, 0.35);
    border-style: solid;
    border-width: 0px 0px 1px;
    padding-left: 25px;
    padding-right: 25px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
    border-radius: 0px;
    text-transform: uppercase;
}
.dental-bottom-cn {
    margin-top: 50px;
}	
	
	
.dental-technology{
  background:#fff;
}
.dental-technology .section-title{
    font-size: 22px;
	margin-bottom:20px;
}
.section-title.text-gold p {
	color: #d3c0a7;
}
.section-title.text-gold h2 {
	color: #d3c0a7;
}

.digital-section {
    background: #fff;
}
.digital-cn {
    display: grid;
    grid-template-columns: 45% 1fr;
    align-items: center;
    gap: 50px;
}
.digital-section .digital-image {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    border-radius: 100% 100% 0px 0px;
    overflow: hidden;
    height: 100%;
}
.digital-section .digital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.digital-content-section .section-title {
    margin-bottom: 25px;
}
.digital-content-section ul li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    margin-bottom: 15px;
}
.digital-content-section ul li:before {
    content: '\f105';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #d3c0a7;
}
.digital-section.digital-sec-2 .digital-cn {
    grid-template-columns: 1fr 45%;
}


.bg-blue-light{
	background: #fafcff;
}
.dt-parallax:before {
    content: '';
    background-color: #000000;
    opacity: 0.66;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
}
.dt-parallax .container {
    position: relative;
    z-index: 1;
    color: #fff;
}
.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.service-inner-2 {
    background: #ECECEC;
    padding: 30px;
    border-radius: 5px;
    margin: 50px 0;
}
.service-body-inner ul li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
}
.service-body-inner ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}
.service-inner-3 ul {
    margin: 25px 0;
}
.service-4-img img {
    max-width: 284px;
    border-radius: 250px 250px 0 0;
    width: 100%;
}
.service-inner-8 {
    background: #000;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    margin: 40px 0;
}
.service-10-cn {
    padding: 25px;
}
.service-inner-10 {
    background: #d3c0a7;
    border-radius: 15px;
    margin: 50px 0 0;
}
.service-inner-9 .section-title {
    margin-bottom: 25px;
}
.service-inner-9 .faq-question {
    border: 1px solid #000;
    border-radius: 100px;
}
.service-inner-9 .faq-answer {
    color: #000;
}
.service-inner-10 .section-title h2 {
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 600;
}
.service-inner-3 {
    margin: 50px 0;
}
.service-recent-list {
    padding: 35px;
    background: #000;
    color: #fff;
}
.service-recent-list h3 {
    font-size: 30px;
    color: #fff;
}
.service-recent-list ul li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
}
.service-recent-list ul li:before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}
.service-recent-list ul li a{
	color:#fff;
}
.service-7-img img {
    width: 100%;
}
.service-inner-8 .section-title h2 {
    color: #ffffff;
}
ul.slick-dots li:before {
    display: none;
}
.service-slider-4 ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-inner-4 {
    background: #d3c0a7;
    padding: 25px;
    border-radius: 15px;
    margin: 50px 0;
}
.service-inner-img {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
    margin-bottom: 50px;
}
.service-inner-img .section-title {
    margin-bottom: 15px;
}
.service-inner-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 565px;
    height: 625px;
    background: #f3f3f3;
    z-index: 0;
}
.service-inner-img img {
    max-width: 565px;
    position: relative;
    z-index: 1;
    width: 100%;
}






    
/*================================================ 
	location CSS
=================================================*/

.location-section .section-title {
  margin-bottom: 50px;
}

.location-section .container-fluid {
  max-width: 1600px;
}

.location-cn-bx {
  background-color: #ededed;
  transition: all 0.5s;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.location-img-bx {
  flex: 0 0 40%;
}

.location-cn-top h5 {
  background: #fff;
  height: 80px;
  width: 80px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.location-cn-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

.location-bottom p span {
  background: #27aadb;
  width: 45px;
  height: 45px;
  padding: 9px;
  border-radius: 100px;
  display: none;
  border: 2px solid #fff;
  box-shadow: 0 0 7px #00000070;
  flex: 0 0 45px;
}

.location-bottom p a {
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 500;
}
.location-footer {
  margin-top: 15px;
  padding-top: 15px;
  display: block;
  border-top: 1px solid #0000001a;
}

a.location-btn {
  color: #2d2d2d;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
a.location-btn:after {
  content: "";
  background: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.location-bottom p span img {
  filter: invert(1);
}

.location-bottom p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.location-bottom {
  padding: 15px;
  width: 100%;
  transition: all 0.5s;
}

.location-bottom h3 {
  font-size: 30px;
  margin: 0;
}

.location-cn-slider {
  max-height: 650px;
  overflow-y: scroll;
  padding-right: 15px;
}

.map-bx {
  height: 650px;
}

.accordion-content p {
  margin-top: 10px;
  color: #000000;
  margin-bottom: 0;
}

.accordion-content .divider-line {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.location-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* .location-footer .our-btn-blue {
    padding: 9px 18px;
    font-size: 14px;
} */

.accordion-content .divider-line::after {
  background: linear-gradient(269deg, #ffffff, transparent 60%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 30px 2px, 0px 0px, 0px 0px, 0px 0px;
  background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
}

.location-section {
  overflow: visible;
  position: relative;
}

.location-img-bx img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.location-img-slider {
  position: sticky;
  top: 150px;
}

/*--------------------------------------------------------------
 # location new
--------------------------------------------------------------*/
.service-sec-new {
  position: relative;
}
.service-sec-new .container {
  max-width: 1382px;
}
.service_left_side {
  max-width: 585px;
  margin-left: auto;
}

.service-section-new .section-title {
  margin-bottom: 50px;
}

.service-section-new .service-card {
  position: relative;
  text-align: center;
  height: 100%;
  transition: all 0.5s;
  padding-bottom: 40px;
  z-index: 1;
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: #ffff;
}

.service-section-new .background-image,
.service-section-new [data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.service-section-new .background-image:before {
  position: absolute;
  content: "";
  background: rgb(31 68 139 / 92%);
  z-index: -1;
  height: 100%;
  width: 100%;
  left: 0;
  border-radius: 18px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  top: 0;
}

.service-section-new .service-card .box-icon {
  background-color: #ffffff;
  text-align: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  height: 400px;
  overflow: hidden;
}

.service-section-new .service-card .box-icon img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all 0.5s;
}

.service_cn h3 {
  font-size: 18px;
  display: block;
  margin: 0;
  color: #fff;
}

.service_cn a {
  display: none;
}

.ser_bx_slider {
  padding: 0 60px;
}

.service_cn {
  margin-inline: auto;
  position: absolute;
  text-align: center;
  padding-bottom: 15px;
  bottom: 0;
  display: block;
  width: 100%;
  z-index: 2;
}

.box-icon:before {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 0) 100%
  );
  overflow: hidden;
  width: 100%;
  height: 20%;
  transition: 0.5s ease;
  content: "";
  z-index: 1;
}

/* .service-card.transform_bottom {
    transform: translateY(40px);
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 2s infinite  alternate;
} */
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* .service-card {
    -webkit-animation: mover-2 1s infinite  alternate;
    animation: mover-2 2s infinite  alternate;
} */
@-webkit-keyframes mover-2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10px);
  }
}

.service-section-new .box-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.service-section-new .service-card .box-title {
  margin-bottom: 4px;
  min-height: 50px;
}

.service-section-new .service-card .box-title a {
  color: #000;
}

.service-section-new .service-card:hover .box-icon {
  background-color: white;
}

.service-section-new .service-card:hover .box-title {
  color: #fff;
}

.service-section-new .service-card:hover .box-text {
  color: white;
}

.service-section-new .service-card:hover .box-icon img {
  transform: scale(1.1);
}

.service-section-new .service-card:hover .th-btn {
  color: #000 !important;
  -webkit-box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
  background: #ec1c23;
}

.service-section-new .service-card:hover:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.service-section-new .service-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  border-radius: 18px;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-section-new .service-card .th-btn {
  background: #ec1c23;
  color: #000;
  border-radius: 0;
  font-size: 16px;
}

.service-section-new .service-card .th-btn:hover {
  color: #000;
}

.service-section-new .service-card .box-text {
  margin-bottom: 22px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  line-height: 1.4;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
  color: #fff;
}

.service-section-new .th-btn.btn-sm {
  padding: 10px 27px;
  min-width: 140px;
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}

.service-section-new .ser_bx_new .row {
  row-gap: 30px;
  justify-content: center;
}

.service-section-new .bg {
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: 0;
}

.service-section-new .container {
  position: relative;
  z-index: 1;
}

.service-section-new {
  overflow: hidden;
  padding: 70px 0;
  /*  background-image: url(../../assets-new/images/P6220763.jpg);
    background-size: cover;
    background-attachment: fixed; */
  position: relative;
  background: #0047ab;
}

/* .service-section-new:before {
    content: '';
    background: rgb(240 245 255 / 90%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
} */
.service-section-new .section-title h3 {
  background: #ec1c23;
}

.service-section-new .bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.service-section-new .btn_bx {
  margin-top: 0;
}

.service-section-new .bg3 {
  animation-duration: 5s;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(25%);
  }
}

/* .service-section-new .slick-arrow {
    top: -20%;
    transform: translateY(-20%);
} */
/* .service-section-new .slick-arrow.slick-prev {
    right: 5%;
    left: auto;
} */

.service_tab .tabs {
  width: 100%;
  background-color: #000000;
  border-radius: 0;
  display: flex;
  height: 100%;
}

.service_tab_left {
  padding: 5px;
  overflow: auto;
  width: 100%;
}

.service_tab ul#tabs-nav {
  list-style: none;
  margin: 0;
  padding: 5px;
}

.service_tab #tabs-content {
  width: 100%;
  height: 100%;
}

.service_tab ul#tabs-nav li {
  font-weight: 400;
  margin-right: 2px;
  padding: 8px 10px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  background: #ededed;
  margin-bottom: 10px;
  border: 1px solid #cccccc52;
  height: 100%;
  z-index: 9;
  position: relative;
}

.service_tab ul#tabs-nav li:last-child {
  margin-bottom: 0;
}

.service_tab ul#tabs-nav li:hover,
.service_tab ul#tabs-nav li.active {
  background-color: #000000;
  box-shadow: 0 0 7px #ccc;
  border-color: #000000;
}

.service_tab ul#tabs-nav li.active a {
  color: #fff;
}

.service_tab #tabs-nav li a {
  text-decoration: none;
  color: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.loc-head h3 {
  font-weight: 400;
  margin-right: 2px;
  border-radius: 5px 5px 5px 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: space-between;
  font-size: 25px;
}

.loc-head p {
  margin: 0;
}

.note_text .section-title b {
  font-family: initial;
}
.loc-ic {
  display: inline-block;
  margin-left: 1.125em;
}

.loc-ic .icon {
  position: relative;
  top: 0;
  left: 0.125em;
  width: 2.25em;
  height: 4ex;
  color: white;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.loc-ic .icon-circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.service_tab ul#tabs-nav li.active :where(h3, p) {
  color: #fff;
}

.service_tab ul#tabs-nav li.active .icon-arrow {
  stroke: #fff;
}

.service_tab ul#tabs-nav li.active .icon-circle {
  stroke: #fff;
  stroke-dashoffset: 0;
}

.service_tab ul#tabs-nav li.active a {
  color: #fff;
}

.service_tab #tabs-nav li a:hover .icon {
  transform: translate3d(0.125em, 0, 0);
}

.service_tab #tabs-nav li a:hover .icon-circle {
  stroke: #fff;
  stroke-dashoffset: 0;
}

.service_tab #tabs-nav li a:hover .icon-arrow {
  stroke: #fff;
}

.loc-head {
  flex: 0 0 55%;
}

.service_tab #tabs-nav li a span {
  margin-right: 10px;
}

.service_tab #tabs-nav li a span img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.service_tab .tab-content {
  padding: 40px;
  background-color: #fff;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

.service-sec-new .service_head .section-title {
  margin-bottom: 25px;
}

.service-sec-new .service_head p {
  color: #000;
}

.service_overlay {
  padding: 10px 25px;
  height: auto;
  content: "";
  max-width: 475px;
  width: 100%;
  background: #000000b5;
  z-index: 1;
  backdrop-filter: blur(14px);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service_tab ul#tabs-nav li.active .loc-head p {
  color: #fff;
}

.service_overlay a.phone_nm {
  color: #fff;
  font-size: 25px;
  display: inline-block;
  margin-top: 4px;
}

.service_overlay h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 0;
}

.service_overlay p {
  color: #fff;
  font-size: 20px;
}

.mobile-top-bar {
  display: none;
}
#toggle-menu {
  display: none;
}

.banner-list li:first-child br{
  display: none;
}






/*--------------------------------------------------------------
 # quality css
--------------------------------------------------------------*/
.quality-section {
    background: #c0dde8;
    overflow: visible;
    position: relative;
}
.quality-section .container{
      max-width: 1320px;
}

.quality-head {
    text-align: center;
    margin-bottom: 25px;
}

.quality-head .btn-bx {
    margin-top: 50px;
}

.quality-grids:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    right: 0;
    display: none;

    background: rgb(255 255 255);
    background: linear-gradient(270deg, rgb(255 255 255) 0%, rgba(0, 0, 0, 0) 100%);
}

.quality-grids:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: none;
    width: 50%;
    height: 100%;
    left: 0;
    background: rgb(255 255 255);
    background: linear-gradient(90deg, rgb(255 255 255) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* .quality-grids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
} */
.quality-card .img-holder img {
    max-width: 60px;
    margin-bottom: 15px;
}

.quality-card {
    padding: 24px;
    background: #fff;
    min-width: 100%;
    box-shadow: 0px 0px 6px #cccccc;
    text-align: center;
    min-height: 380px;
}

.quality-card .img-holder img {
    margin-inline: auto;
}

.quality-card {
    margin: 15px 0;
}

.quality-card .details {
    height: 200px;
}

.quality-card .details h3 {
    font-size: 25px;
    position: relative;
    color: #000;
    text-transform: capitalize;
}

.quality-img {
    background: #fff;
    padding: 15px;
    box-shadow: 0px 0px 6px #ccc;
}

.team-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.limit_box {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
}

.mobile-header{
	display:none;
}

.mobmenur-container {
    background: #ccc0b4;
}
@media (max-width: 1269px) {
	.bottom-head{
		display:none;
	}
	.banner-sticky-bx {
		max-width: 460px;
	}
	.banner-sticky-bx h1 {
		font-size: 45px;
	}
	.mobile-header{
		display:block;
	}
	.desktop-header{
		display:none;
	}
	.header {
		position: absolute;
	}
	body {
		margin-top: 90px;
	}
	.header.sticky{
		position:relative;
	}
}


@media (max-width: 1024px) {
	.service-section {
		background-attachment: inherit;
	}
}

@media (max-width: 991px) {
	
	.service-inner-img:before{
		display:none;
	}
	.service-inner-2 {
		padding: 15px;
		margin: 20px 0;
	}
	.section-head {
		max-width: 100%;
	}
	.service-inner {
		margin-bottom: 25px;
	}
	.world-leading-head {
		text-align: center;
	}
	.video-card {
		margin-inline: auto;
		margin-bottom: 25px;
	}
	.world-leading-cn {
		text-align: center;
	}
	.footer-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-img {
		text-align: center;
		margin-top: 25px;
	}
	.beauty-head {
		margin-bottom: 25px;
	}
	.service-section {
		background-image: none;
		background: #fff;
	}
	.cta-head {
		flex-wrap: wrap;
		justify-content: center;
	}
	.banner-sticky, .about-sticky, .transformative-sticky, .dental-sticky, .financing-sticky, .sedation-sticky {
		padding: 0;
		position: relative;
		top: 0;
	}
	.banner-sticky-image img, .about-sticky-image img, .transformative-sticky-image img, .dental-sticky-image img, .financing-sticky-image img, .sedation-sticky-image img {
		height: auto;
		width: 100%;
		object-fit: cover;
	}
	.banner-sticky-bx h1, .about-sticky-bx h1, .transformative-sticky-bx h1, .dental-sticky-bx h1, .financing-sticky-bx h1, .sedation-sticky-bx h1 {
		font-size: 30px;
	}
	.banner-sticky-con, .financing-sticky-con, .sedation-sticky-con {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		transform: none;
		background: #000;
		padding: 25px 0;
	}
	.about-sticky-con, .transformative-sticky-con, .dental-sticky-con{
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		transform: none;
		background: #fff;
		padding: 25px 0;
	}
	.sedation-sticky-bx {
		grid-template-columns: 100%;
	}
	.seda-benefits-cn {
		margin-bottom: 25px;
	}
	.service-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-video-card {
		display: none;
	}
	.about-sec-2-cn {
		padding-top: 25px;
	}
	.lab-images {
		flex-wrap: wrap;
	}
	.features-grid {
		grid-template-columns: repeat(1,1fr);
	}
	.about-sticky-bx, .transformative-sticky-bx, .dental-sticky-bx, .financing-sticky-bx {
		display: block;
	}
	.transform-services .service-cards {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}
	.contact-img-bx{
		display:none;
	}
	.contact-bx {
  
		margin: 0;
		--e-column-margin-right: 0px;
		--e-column-margin-left: -0;
	}
	.flip-card {
		height: auto;
	}
	.dental-sticky-bx h1 {
		margin-bottom: 20px;
	}
	.dental-bottom-cn {
		margin-top: 10px;
	}
	.digital-cn {
		grid-template-columns: 1fr;
	}
	.digital-section.digital-sec-2 .digital-cn {
		grid-template-columns: 1fr;
	}
	.payment-cards {
		grid-template-columns: 1fr;
	}
	.servicehead-cn {
		grid-template-columns: 1fr;
	}
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-slider-4 {
		margin: 25px 0 0 0;
	}
	.service-recent-list {
		padding: 15px;
		margin-top: 25px;
	}
}


@media (max-width: 767px) {
	 .footer-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.section-title h1, .section-title h2 {
		font-size: 25px;
	}
	section {
		padding: 50px 0;
		overflow: hidden;
	}
	.gallery-grid {
		grid-template-columns: repeat(1,1fr);
	}
	.services-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}


@media (max-width: 575px) {
	.service-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

