.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;
  text-decoration: underline;
}
.menu .menu-social img {
  width: 40px;
  margin-right: 10px;
}
.menu .menu-logo img {
  width: 100px;
}
.menu .menu-footer {
  padding: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.5411764706);
}
.menu .menu-footer span {
  font-size: 14px;
  margin-right: 30px;
}
.menu .menu-footer img {
  width: 18px;
}
@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 img {
  width: 18px;
}
.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;
  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;
  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 50px;
  background: #EAE3D9;
}
footer .footer-logo img {
  width: 300px;
  margin-bottom: 20px;
}
footer .footer-logo p {
  font-size: 16px;
}
footer .footer-nav .nav-link {
  color: #2f3640;
}
footer .footer-nav img {
  width: 18px;
}
footer .social {
  display: flex;
  align-items: start;
}
footer .social a {
  color: #000;
  outline: none;
  display: flex;
  align-items: center; /* optional, helps vertically align if needed */
}
footer .social a:active, footer .social a:focus {
  outline: none;
}
footer .social img {
  width: 30px;
  margin-right: 10px;
  display: block;
}
@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 .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;
}
@media (max-width: 768px) {
  #contact-page .info-col {
    margin-bottom: 100px;
    text-align: center;
  }
}

#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;
}
@media (max-width: 768px) {
  #page-header h3 {
    text-align: center;
  }
}

.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;
  margin-bottom: 50px;
}
#dental-tourism-page .dtp-hero-text a {
  color: #686056;
  font-size: 1.5rem;
}
#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;
}
#dental-tourism-page .apartment-images .gallery-thumb {
  width: 100px;
}

/**#################################################################################################
######################### GALLERY PAGE ######################################################*/
#gallery-page {
  min-height: 60vh;
  padding: 50px 0 100px 0;
  background-color: #FCFBFA;
}
#gallery-page h4 {
  color: #686056;
  margin: 30px 0 40px 0;
}
#gallery-page .col-lg-12 {
  margin-bottom: 10px;
}
#gallery-page .col-lg-12 .image-item {
  margin-left: 5px;
}
#gallery-page .col-lg-12 .image-item p {
  margin-bottom: 5px;
  color: #686056;
}
#gallery-page .col-lg-12 .image-item a {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  overflow: hidden;
}
#gallery-page .col-lg-12 .image-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#gallery-page .col-lg-12 .image-item .gallery-thumb {
  width: 100%;
  max-height: 300px;
}
#gallery-page .col-lg-12 .image-item .large-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  overflow: hidden;
}
#gallery-page .col-lg-12 .image-item .large-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#gallery-page .col-lg-12 .image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 5px;
  grid-auto-flow: dense;
}
#gallery-page .col-lg-12 .image-gallery a {
  display: block;
}
#gallery-page .col-lg-12 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;
}

.social-call {
  margin-bottom: 20px;
}
.social-call img {
  width: 30px;
}
.social-call span {
  color: #67625c;
}/*# sourceMappingURL=styles.css.map */