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

body {
  background: #FCFBFA;
  position: relative;
  font-family: "Nunito Sans", sans-serif;
}

.video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.line-button-wrap .line-button {
  text-decoration: none;
  color: #686056;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.line-button-wrap .line-button::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 25px;
  background: #49433b;
  color: #49433b;
}
.line-button-wrap .line-button::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -40px;
  height: 1px;
  width: calc(100% + 40px);
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.line-button-wrap .line-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.line-button-wrap .line-button:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: right;
}
.line-button-wrap .line-button:hover {
  color: #49433b;
}

.menu {
  position: absolute;
  top: -700px;
  left: 0;
  width: 100%;
  height: 700px;
  background: #EAE3D9;
  z-index: 11;
  opacity: 0;
  transition: top 0.8s cubic-bezier(0.58, 0.02, 0, 0.98), opacity 0.8s ease;
}
.menu .menu-dropdown-right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 400px;
}
@media (max-width: 768px) {
  .menu .menu-dropdown-right-column {
    height: auto;
    flex-direction: row-reverse;
    align-items: start;
  }
}
.menu.open {
  opacity: 1;
  top: 0;
}
.menu .close-btn {
  background: transparent;
  font-size: 4rem;
  border: none;
  text-decoration: none;
  color: #686056;
}
.menu .close-btn:hover {
  cursor: pointer;
}
.menu .nav-link {
  font-size: 30px;
  color: #49433b;
  letter-spacing: 2px;
}
.menu .nav-link:hover {
  color: #686056;
}
.menu .menu-social img {
  width: 40px;
  margin-right: 10px;
}
.menu .menu-logo img {
  width: 100px;
}
.menu .menu-footer {
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.5411764706);
}
.menu .menu-footer span {
  font-size: 14px;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .menu {
    min-height: 70vh;
    top: -1000px;
  }
  .menu .flex-column {
    align-items: center;
    margin-bottom: 30px;
  }
}

.header {
  background: #FCFBFA;
  z-index: 13;
}

.active {
  text-decoration: underline !important;
  font-weight: bold;
}

.header-top {
  padding: 15px 0;
}
.header-top a {
  font-size: 14px;
  color: black;
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
}
.header-top span {
  margin: 0 3px;
  font-size: 14px;
}
.header-top .material-symbols-outlined {
  font-size: 20px;
  color: #000;
}

.header-main {
  padding: 20px 0;
}
.header-main .logo img {
  width: 150px;
  position: relative;
  top: -10px;
}
@media (max-width: 768px) {
  .header-main .logo img {
    width: 100px;
  }
}
.header-main .appoint {
  padding: 15px 40px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  color: #353b48;
  border-radius: 30px;
  background: #FFE5CA;
}
.header-main .menu-right .nav-link {
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  color: rgba(53, 59, 72, 0.6588235294);
}
.header-main .menu-right .nav-item .button {
  border-radius: 30px;
  padding: 10px 30px;
  margin-left: 20px;
  background: #e1b12c;
  border: 1px solid #d8cdc3;
  color: #FFF;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}
.header-main .menu-right .nav-item .button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFF;
  z-index: 0;
  transition: height 0.5s ease;
}
.header-main .menu-right .nav-item .button span {
  position: relative;
  z-index: 2;
  color: #FFF;
  transition: color 0.5s ease;
}
.header-main .menu-right .nav-item .button:hover {
  color: #000;
}
.header-main .menu-right .nav-item .button:hover::before {
  height: 100%;
}
.header-main .menu-right .nav-item .button:hover span {
  color: #000;
}
.header-main .menu-right .nav-item:first-child .nav-link {
  color: #353b48;
}
.header-main .hamburger {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #d8cdc3;
  z-index: 12;
  background: #e1b12c;
}
.header-main .hamburger::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFF;
  z-index: 0;
  transition: height 0.4s ease;
}
.header-main .hamburger svg {
  position: relative;
  z-index: 1;
  transition: stroke 0.3s ease;
  stroke: #000000 !important;
}
.header-main .hamburger:hover::before {
  height: 100%;
}
.header-main .hamburger:hover svg {
  stroke: #000000 !important;
  fill: #000;
}
@media (max-width: 768px) {
  .header-main .sm-left {
    display: flex;
    justify-content: end;
    padding-right: 20px;
  }
  .header-main .sm-right {
    display: flex;
    justify-content: start !important;
    padding-left: 10px;
  }
}

.button-wrap .custom-button {
  display: inline-block;
  border-radius: 30px;
  padding: 10px 50px;
  margin-left: 20px;
  background: #FCFBFA;
  border: 1px solid #d8cdc3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}
.button-wrap .custom-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #e1b12c;
  z-index: 0;
  transition: height 0.5s ease;
}
.button-wrap .custom-button span {
  position: relative;
  z-index: 2;
  color: inherit;
  transition: color 0.5s ease;
}
.button-wrap .custom-button:hover {
  color: #FFF;
}
.button-wrap .custom-button:hover::before {
  height: 100%;
}
.button-wrap .custom-button:hover span {
  color: #FFF;
}
.button-wrap:first-child .nav-link {
  color: #353b48;
}

@keyframes shimmer {
  0% {
    top: -50%;
    opacity: 0;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 150%;
    opacity: 0;
  }
}
.vertical {
  position: relative;
  top: 50px;
  width: 2px;
  background-color: #d8cdc3;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
.vertical::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, white, transparent);
  animation: shimmer 2s infinite;
}
@media (max-width: 768px) {
  .vertical {
    height: 100px;
  }
}

.horizontal {
  width: 40%;
  background-color: #d8cdc3;
  height: 1px;
  z-index: 99;
}

.divider {
  background-color: #FCFBFA;
}
.divider .container-fluid {
  height: 1px;
  background-color: #d8cdc3;
}

#hero {
  min-height: 100vh;
  padding: 100px 0;
  background-color: #FCFBFA;
}
#hero h1 {
  font-weight: 300;
}
#hero h1 span:nth-of-type(1) {
  color: #686056;
  display: block;
}
#hero h1 span:nth-of-type(2) {
  color: #9b9187;
  font-size: clamp(4.5rem, 2.5vw, 2rem);
  display: block;
}
#hero .hero-image {
  position: relative;
}
#hero .hero-image .frame {
  border: 2px solid #d8cdc3;
  position: absolute;
  top: -20px;
  left: -10px;
  width: calc(100% - 30px);
  height: calc(100% - 37px);
  z-index: 2;
}
#hero .hero-image .img-wrap {
  position: relative;
  overflow: hidden;
}
#hero .hero-image img {
  width: 100%;
  height: auto;
}
#hero .hero-image img.fade-in-bottom {
  opacity: 0;
  transform: translateY(30px) scale(1.2);
  animation: fadeInUpZoomOut 5s ease-out forwards;
}
@media (max-width: 768px) {
  #hero .hero-image {
    margin-bottom: 40px;
  }
}
#hero .hero-text {
  flex-direction: column;
}
#hero .hero-text p {
  letter-spacing: 1px;
  color: #686056;
  margin-bottom: 50px;
}
#hero .line-wrap {
  position: relative;
}

@keyframes fadeInUpZoomOut {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#about {
  min-height: 100vh;
  padding: 200px 0 200px 0;
  background-color: #FCFBFA;
}
#about .about-content h2 {
  color: #686056;
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
#about .about-content p {
  font-size: 18px;
  letter-spacing: 1px;
  color: #686056;
}
@media (max-width: 768px) {
  #about .about-content {
    margin-bottom: 50px;
  }
}
#about .about-image {
  position: relative;
}
#about .about-image .vertical {
  position: absolute;
  top: -100px;
  width: 2px;
  background-color: #d8cdc3;
  height: 300px;
  z-index: 0;
}
#about .about-image .frame {
  border: 2px solid #d8cdc3;
  position: absolute;
  top: -20px;
  left: -10px;
  width: 95%;
  height: 100%;
  z-index: 11;
}
#about .about-image img {
  width: 100%;
  position: relative;
  z-index: 10;
}
#about .line-wrap-about {
  position: relative;
}
#about .line-wrap-about .vertical-about {
  position: absolute;
  top: 100px;
}
@media (max-width: 768px) {
  #about .line-wrap-about .vertical-about {
    top: 200px;
  }
}
#about .line-button-wrap {
  padding-top: 20px;
}
@media (max-width: 768px) {
  #about .line-button-wrap {
    position: relative;
    z-index: 30;
  }
}
#about .line-button {
  padding-left: 40px;
}
#about .line-button::before {
  left: 0;
}
#about .line-button::after {
  width: 100%;
  left: 0;
}
@media (max-width: 768px) {
  #about {
    padding: 100px 0;
  }
}

#services {
  min-height: 40vh;
  background-color: #FCFBFA;
  padding: 50px 0;
  position: relative;
  z-index: 15;
  background: #EAE3D9;
}
#services .container-fluid {
  padding: 0 50px 50px 50px;
  background: #EAE3D9;
}
@media (max-width: 768px) {
  #services .container-fluid {
    padding: 0;
  }
}
#services .services-heading {
  padding: 50px 0;
  position: relative;
}
#services .services-heading h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3rem;
}
#services .services-card {
  padding: 30px;
}
#services .services-card .services-card-top {
  position: relative;
  margin-bottom: 50px;
}
#services .services-card .services-card-top::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: calc(100% - 60px);
  background: #000;
  z-index: 0;
}
#services .services-card img {
  width: 50px;
  position: relative;
  z-index: 2;
}
#services .services-card p {
  margin-bottom: 40px;
}
#services .services-card .line-button {
  padding-left: 40px;
}
#services .services-card .line-button::before {
  left: 0;
}
#services .services-card .line-button::after {
  width: 100%;
  left: 0;
}

#team {
  min-height: 100vh;
  background-color: #FCFBFA;
  padding: 100px 0 100px 0;
  position: relative;
  z-index: 2;
}
#team .team-col {
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #team .team-col {
    padding: 50px 20px 0 20px;
  }
}
#team .team-col .vertical {
  position: absolute;
  top: -100px;
  left: calc(50% - 1px);
  width: 2px;
  background-color: #d8cdc3;
  height: 300px;
  z-index: 0;
  overflow: hidden;
}
#team .team-col .vertical::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, white, transparent);
  animation: shimmer 2s infinite;
}
#team .team-content {
  margin-top: 20px;
}
#team .team-item {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#team h4 {
  color: #686056;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 1rem;
}
#team img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#team .team-image-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
#team .team-image-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(234, 227, 217, 0.862745098);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease;
  pointer-events: none;
}
#team .team-image-wrap .overlay:hover {
  cursor: pointer;
}
#team .team-image-wrap .overlay .overlay-content {
  color: #fff;
  text-align: center;
  padding: 20px;
}
#team .team-image-wrap .overlay .overlay-content .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
#team .team-image-wrap .overlay .overlay-content .btn:hover {
  background: #e1b12c;
  color: #fff;
}
#team .team-image-wrap:hover .overlay {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
#team .frame {
  border: 2px solid #d8cdc3;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#team h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3rem;
  position: relative;
  height: auto;
  display: inline-block;
}
#team h3::before {
  content: "";
  position: absolute;
  left: calc(-150% - 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 150%;
  height: 1px;
  background: #686056;
}
@media (max-width: 768px) {
  #team h3::before {
    display: none;
  }
}
@media (max-width: 768px) {
  #team {
    padding: 100px 0;
  }
}

#contact {
  height: 10vh;
  background-color: #FCFBFA;
  padding: 100px 0;
  min-height: 50vh;
  position: relative;
  z-index: 2;
}
#contact .button {
  border-radius: 30px;
  padding: 10px 30px;
  background: #e1b12c;
  border: 1px solid #d8cdc3;
  color: #FFF;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  display: inline-block;
}
#contact .button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFF;
  z-index: 0;
  transition: height 0.5s ease;
}
#contact .button span {
  position: relative;
  z-index: 2;
  color: #FFF;
  transition: color 0.5s ease;
}
#contact .button:hover {
  color: #000;
}
#contact .button:hover::before {
  height: 100%;
}
#contact .button:hover span {
  color: #000;
}
#contact h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3rem;
}
#contact p {
  color: #686056;
}
#contact .vertical {
  position: absolute;
  top: -100px;
  right: 20%;
  width: 2px;
  background-color: #d8cdc3;
  z-index: 0;
  overflow: hidden;
}
#contact .vertical::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, white, transparent);
  animation: shimmer 2s infinite;
}
footer {
  min-height: 60vh;
  padding: 100px 0;
  background: #EAE3D9;
}
footer .footer-logo img {
  width: 300px;
  margin-bottom: 50px;
}
footer .footer-logo p {
  font-size: 16px;
}
footer .footer-nav .nav-link {
  color: #2f3640;
}
footer .social img {
  width: 30px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  footer .footer-logo {
    text-align: center;
  }
  footer .footer-logo img {
    width: 150px;
    margin-bottom: 50px;
  }
  footer .footer-logo p {
    font-size: 16px;
  }
  footer .nav {
    align-items: center;
    margin-bottom: 40px;
  }
  footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.footer-bottom {
  background: #EAE3D9;
  height: 70px;
}
.footer-bottom .container-fluid {
  height: 70px;
  border-top: 1px solid #d8cdc3;
}
.footer-bottom span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6039215686);
}

/**#############################################################################################
######################### ABOUT US PAGE ######################################################*/
#about-hero {
  background-color: #FCFBFA;
  min-height: 20vh;
  padding: 100px 0;
}

#team-page {
  padding: 100px 0;
  background-color: #FCFBFA;
}
#team-page h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3.5rem;
  position: relative;
  height: auto;
  display: inline-block;
}
#team-page h3::before {
  content: "";
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%);
  width: 150%;
  height: 1px;
  background: #686056;
}
#team-page .team-col {
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
#team-page .team-content {
  margin-top: 20px;
  padding: 20px;
  transition: background 0.5s ease;
}
#team-page .team-item {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#team-page .team-item:hover img {
  transform: scale(1.05);
}
#team-page .team-item:hover .team-content {
  background: #EAE3D9;
}
#team-page .team-item h4 {
  color: #686056;
  font-weight: 300;
  margin-bottom: 40px;
  font-size: 1.5rem;
}
#team-page .team-item p {
  font-size: 16px;
  color: #686056;
}
#team-page .team-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#team-page .team-item img.nevena-team-photo {
  width: 110%;
  max-width: none;
  object-position: left 35%;
}
#team-page .team-item .team-image-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

/**#############################################################################################
######################### SERVICES PAGE ######################################################*/
#services-page {
  padding: 100px 0;
  background-color: #FCFBFA;
}
#services-page h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3.5rem;
  position: relative;
  height: auto;
  display: inline-block;
}
#services-page h3::before {
  content: "";
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  height: 1px;
  background: #686056;
}
#services-page .row {
  margin-bottom: 50px;
}
#services-page .row .col-lg-4 {
  margin-bottom: 50px;
}
#services-page .col-lg-4:nth-child(1) .spc-head {
  background-image: url("../assets/images/_DSC2598.jpg");
}
#services-page .col-lg-4:nth-child(2) .spc-head {
  background-image: url("../assets/images/_DSC0799.jpg");
}
#services-page .col-lg-4:nth-child(3) .spc-head {
  background-image: url("../assets/images/pexels-babydov-7789705.jpg");
  background-position: center top;
}
#services-page .col-lg-4:nth-child(4) .spc-head {
  background-image: url("../assets/images/IMG_1628.jpg");
}
#services-page .col-lg-4:nth-child(5) .spc-head {
  background-image: url("../assets/images/Implants-Still-an-Option-Years-after-Tooth-Loss-min.jpg");
}
#services-page .col-lg-4:nth-child(6) .spc-head {
  background-image: url("../assets/images/_DSC3154.jpg");
}
#services-page .col-lg-4:nth-child(7) .spc-head {
  background-image: url("../assets/images/s2-1.jpeg");
}
#services-page .col-lg-4:nth-child(8) .spc-head {
  background-image: url("../assets/images/lip-injections-copy.jpg");
}
#services-page .col-lg-4:nth-child(9) .spc-head {
  background-image: url("../assets/images/zdravlje.jpg");
}
#services-page .spc-head {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#services-page .spc-icon {
  position: relative;
  padding: 20px;
  background: #EAE3D9;
}
#services-page .spc-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: calc(90% - 60px);
  background: #000;
  z-index: 0;
}
#services-page img {
  width: 50px;
  position: relative;
  z-index: 2;
}
#services-page .spc-body {
  padding: 0 20px 20px 20px;
  background: #EAE3D9;
  min-height: 30vh;
}
#services-page .spc-body h4 {
  color: #686056;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#services-page .spc-body p {
  font-size: 16px;
  color: #686056;
}
#services-page .spc-body .line-button {
  padding-left: 40px;
}
#services-page .spc-body .line-button::before {
  left: 0;
}
#services-page .spc-body .line-button::after {
  width: 100%;
  left: 0;
}
#services-page .spc-body .collapse,
#services-page .spc-body .collapsing,
#services-page .spc-body .collapse .card-body,
#services-page .spc-body .collapsing .card-body {
  background-color: #EAE3D9; /* Replace with your desired color */
  border: none;
  font-size: 16px;
  color: #686056;
}
#services-page .spc-body .card-body {
  padding: 10px 0;
}

/**#################################################################################################
######################### CONTACT PAGE ######################################################*/
#contact-page {
  padding: 100px 0;
  background: #EAE3D9;
  min-height: 50vh;
}
#contact-page .form-col {
  background: #EAE3D9;
}
#contact-page .form-col .custom-input {
  background-color: #EAE3D9;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6705882353);
  border-radius: 0;
}
#contact-page .form-col .custom-input:focus {
  box-shadow: none;
  outline: none;
}
#contact-page .form-col .line-button {
  background: #EAE3D9;
  border: none;
  left: 40px;
  margin-top: 20px;
}
#contact-page .info-col h4 {
  color: #686056;
  font-weight: 300;
  font-size: 2rem;
}
#contact-page .info-col p {
  margin-bottom: 20px;
}
#contact-page .info-col .icons {
  margin-top: 50px;
}
#contact-page .info-col .icons img {
  width: 25px;
  position: relative;
  z-index: 2;
  margin-right: 20px;
}

#page-header {
  padding: 50px 0;
  background-color: #FCFBFA;
}
#page-header h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3.5rem;
  position: relative;
  height: auto;
  display: inline-block;
}
#page-header h3::before {
  content: "";
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: 1px;
  background: #686056;
}

.map-section {
  background: #EAE3D9;
}
.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/**#################################################################################################
######################### PRICING PAGE PAGE ######################################################*/
#pricing-page {
  padding: 100px 0;
  background-color: #FCFBFA;
}
#pricing-page h3 {
  color: #686056;
  font-weight: 300;
  font-size: 3.5rem;
  position: relative;
  height: auto;
  display: inline-block;
}
#pricing-page h3::before {
  content: "";
  position: absolute;
  left: 110%;
  top: 55%;
  width: 70%;
  height: 1px;
  background: #686056;
}
#pricing-page table.table thead th {
  font-size: 2rem;
  color: #686056;
  font-weight: 300;
  background-color: #EAE3D9;
}
#pricing-page table.table tbody td {
  font-size: 20px;
  color: #686056;
  padding: 20px;
}
/**#################################################################################################
######################### DENTAL TOURISM PAGE ######################################################*/
#dental-tourism-page {
  min-height: 60vh;
  background-color: #FCFBFA;
  padding: 100px 0;
}
#dental-tourism-page .dtp-hero-image {
  position: relative;
}
#dental-tourism-page .dtp-hero-image .frame {
  border: 2px solid #d8cdc3;
  position: absolute;
  top: -20px;
  left: -10px;
  width: calc(100% - 30px);
  height: calc(100% - 60px);
  z-index: 2;
}
#dental-tourism-page .dtp-hero-image .img-wrap {
  position: relative;
  overflow: hidden;
}
#dental-tourism-page .dtp-hero-image img {
  width: 100%;
  height: auto;
}
#dental-tourism-page .dtp-hero-image img.fade-in-bottom {
  opacity: 0;
  transform: translateY(30px) scale(1.2);
  animation: fadeInUpZoomOut 5s ease-out forwards;
}
#dental-tourism-page .dtp-hero-text h1 {
  color: #686056;
  font-weight: 300;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 40px;
}
#dental-tourism-page .dtp-hero-text h1 span {
  display: block;
}
#dental-tourism-page .dtp-hero-text h4 {
  color: #686056;
  margin-bottom: 20px;
}
#dental-tourism-page .dtp-hero-text p {
  color: #686056;
}
#dental-tourism-page .dtp-hero-text ul {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 40px;
}
#dental-tourism-page .dtp-hero-text ul li {
  color: #686056;
}
#dental-tourism-page .dtp-hero-text ul li::before {
  content: "-";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#dental-tourism-page .dtp-hero-text .map-section {
  background: #EAE3D9;
}
#dental-tourism-page .dtp-hero-text .map-section iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/**#################################################################################################
######################### GALLERY PAGE ######################################################*/
#gallery-page {
  min-height: 60vh;
  padding: 50px 0 100px 0;
  background-color: #FCFBFA;
}
#gallery-page .col-lg-4 {
  margin-bottom: 10px;
}
#gallery-page .col-lg-4 .image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  grid-auto-flow: dense;
}
#gallery-page .col-lg-4 .image-gallery a {
  display: block;
}
#gallery-page .col-lg-4 .image-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
#gallery-page .col-lg-4 h5 {
  color: #686056;
  font-weight: 400;
}
#gallery-page .flex-fill:hover {
  cursor: pointer;
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in-bottom.animate {
  animation: fadeInBottom 1s ease-out forwards;
}

@keyframes fadeInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-bottom.delay-1 {
  animation-delay: 0.2s;
}

.fade-in-bottom.delay-2 {
  animation-delay: 0.3s;
}

.fade-in-bottom.delay-3 {
  animation-delay: 0.4s;
}

.fade-in-bottom.delay-4 {
  animation-delay: 0.5s;
}

.fade-in-bottom.delay-5 {
  animation-delay: 0.6s;
}

.fade-in-bottom.delay-6 {
  animation-delay: 0.7s;
}

.fade-in-bottom.delay-7 {
  animation-delay: 0.8s;
}

.frame-image-wrap {
  position: relative;
}
.frame-image-wrap .frame-image {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #d8cdc3;
}

/* Interactive before/after gallery */
#gallery-page {
  min-height: 60vh;
  padding: 70px 0 110px;
  background: #fcfbfa;
  color: #686056;
}

#gallery-page .gallery-intro {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

#gallery-page .gallery-kicker {
  display: block;
  margin-bottom: 8px;
  color: #a89175;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#gallery-page .gallery-intro h2 {
  margin: 0 0 12px;
  color: #39352f;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

#gallery-page .gallery-intro p {
  margin: 0;
  color: #777067;
  font-size: 1rem;
}

#gallery-page .before-after-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

#gallery-page .gallery-case {
  min-width: 0;
}

#gallery-page .before-after {
  --position:50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #ddd;
  border-radius: 3px;
  box-shadow: 0 14px 40px rgba(70, 61, 50, 0.12);
  cursor: ew-resize;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
}

#gallery-page .before-after:focus-visible {
  box-shadow: 0 0 0 3px #fcfbfa, 0 0 0 5px #a89175, 0 14px 40px rgba(70, 61, 50, 0.12);
}

#gallery-page .comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1.28);
  transform-origin: center;
  pointer-events: none;
}

#gallery-page .after-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  pointer-events: none;
}

#gallery-page .image-after {
  width: 100%;
  max-width: none;
  transform: translateY(var(--after-align, 0)) scale(1.28);
}

#gallery-page .comparison-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

#gallery-page .comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(70, 61, 50, 0.72);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

#gallery-page .comparison-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background: rgba(52, 48, 43, 0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

#gallery-page .label-before {
  left: 18px;
}

#gallery-page .label-after {
  right: 18px;
}

#gallery-page .case-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 3px 0;
  border-bottom: 1px solid #e5ded5;
  padding-bottom: 15px;
}

#gallery-page .case-caption h3 {
  margin: 0;
  color: #4c463f;
  font-size: 1.02rem;
  font-weight: 500;
}

#gallery-page .case-caption span {
  flex: none;
  color: #9a9084;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

#gallery-page .before-after.is-dragging .comparison-handle {
  background: #a89175;
  transform: translate(-50%, -50%) scale(1.08);
}
#gallery-page .gallery-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #ddd;
  border-radius: 3px;
  box-shadow: 0 14px 40px rgba(70, 61, 50, 0.12);
}
#gallery-page .gallery-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  #gallery-page .before-after-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  #gallery-page {
    padding: 50px 0 75px;
  }
  #gallery-page .gallery-intro {
    margin-bottom: 30px;
    padding: 0 8px;
  }
  #gallery-page .before-after-gallery {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #gallery-page .before-after,
  #gallery-page .gallery-video {
    aspect-ratio: 4/3;
  }
  #gallery-page .case-caption span {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  #gallery-page .comparison-handle {
    transition: background 0.2s ease, transform 0.2s ease;
  }
}
.tourism-contact-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.tourism-contact-apps a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tourism-contact-apps a:first-child {
  background: #7360f2;
}

.tourism-contact-apps a:last-child {
  background: #25d366;
}

.tourism-contact-apps a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(70, 61, 50, 0.15);
}

.tourism-contact-apps img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-with-icon {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.contact-with-icon img {
  width: 16px !important;
  height: 16px !important;
  -o-object-fit: contain;
     object-fit: contain;
  flex: none;
}

.header-top .contact-with-icon + .contact-with-icon {
  margin-left: 18px;
}

.menu-footer .contact-with-icon {
  color: inherit;
  font-size: 14px;
  margin-bottom: 5px;
}

footer .contact-with-icon {
  justify-content: flex-start;
}

#contact-page .contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#contact-page .contact-alert {
  margin-bottom: 28px;
  border-radius: 0;
  font-size: 0.95rem;
}

#contact-page .custom-input:invalid:not(:-moz-placeholder) {
  border-bottom-color: #9d544e;
}

#contact-page .custom-input:invalid:not(:placeholder-shown) {
  border-bottom-color: #9d544e;
}

#contact-page .custom-input:valid:not(:-moz-placeholder) {
  border-bottom-color: #63806d;
}

#contact-page .custom-input:valid:not(:placeholder-shown) {
  border-bottom-color: #63806d;
}

#contact-page .line-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 767px) {
  #contact-page .form-col .mb-3 > .row {
    display: block;
  }
  #contact-page .form-col .mb-3 > .row > .col {
    margin-bottom: 20px;
  }
}
/* Keep decorative heading rules inside the mobile viewport. */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html, body {
    overflow-x: clip;
  }
}
@media (max-width: 768px) {
  #team-page h3::before,
  #services-page h3::before,
  #page-header h3::before,
  #pricing-page h3::before {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .menu .menu-footer {
    flex-direction: column !important;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 12px;
  }
  .menu .menu-footer > div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }
  .menu .menu-footer span {
    margin-right: 0;
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .header-top{align-items:flex-start;padding:10px 0}
  .header-top>.col-11{width:calc(100% - 58px);flex:0 0 calc(100% - 58px);flex-wrap:wrap;gap:6px 12px}
  .header-top>.col-1{width:58px;flex:0 0 58px;padding-left:0}
  .header-top .contact-with-icon,.header-top .contact-with-icon+.contact-with-icon{margin-left:0;font-size:11px;line-height:1.25}
  .contact-with-icon img{width:14px!important;height:14px!important}
  .menu .menu-footer .contact-with-icon{max-width:100%;margin:0;font-size:12px;overflow-wrap:anywhere}
  footer .contact-with-icon{max-width:100%;justify-content:center;white-space:normal;text-align:left}
  .tourism-contact-apps{gap:12px;margin-top:18px}
  .tourism-contact-apps a{width:44px;height:44px}
  .tourism-contact-apps img{width:22px;height:22px}
}/*# sourceMappingURL=styles.css.map */
