@import url("../fonts/font-awesome/css/font-awesome.css");

/* REMINDER: if I change anything on root I must to change it on variables.css too */
:root {
  --accent-color: #3b4757;
  --sec-color: #fff;
  --title-font: "Cormorant Garamond", serif;
  --subtitle-font: "Josefin Sans", serif;

  --accent-color-op1: rgba(59, 71, 87, 0.9);
  --accent-color-op2: rgba(59, 71, 87, 0.7);
}

/* HEADER*********** */
body {
  width: 100vw !important;
  overflow-x: hidden !important;
  font-family: "Georgia", serif;
  scroll-behavior: smooth;
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-600px);
  transition: all 1s ease-out;
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

nav {
  background-color: #333;
  color: white;
  width: 100vw;
}

.cus-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -10px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cus-logo {
  width: 300px;
  z-index: 1000;
}

.cus-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  z-index: 1000;
}

.cus-nav-items {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.cus-nav-items li {
  position: relative;
}

.cus-nav-items > li > a {
  text-decoration: none;
  color: white;
  padding: 0.5rem 0;
  display: block;
}

.cus-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.cus-dropdown a {
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  transition: all 200ms ease;
}
.cus-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.551);
  color: black;
}

.cus-nav-items li:hover .cus-dropdown {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
  .cus-nav-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .cus-menu-toggle {
    position: absolute;
    top: 40px;
    right: 30px;
    display: block;
    margin-top: 0.5rem;
  }

  .cus-nav-items {
    flex-direction: column;
    width: 100%;
    background-color: #333;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .cus-nav-items.cus-open {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
  }

  .cus-nav-items li {
    width: 100%;
  }

  .cus-dropdown {
    position: static;
    background-color: #444;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .cus-nav-items li.cus-open .cus-dropdown {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  background-color: transparent;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  color: #ffffff;
}
.navbar-brand img {
  width: 200px !important;
}

.navbar-brand span {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
}

.nav-link {
  color: #ffffff !important;
  margin: 0 10px;
  font-size: 14px !important;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b30086 !important;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  border-radius: 2px !important;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  transform: translateY(0);
}

@media (min-width: 992px) {
  /* Hover dropdown only on large screens */
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  nav.navbar.navbar-expand-lg {
    background-color: #181818 !important;
  }
}
/* END HEADER*********** */

section {
  padding: 80px 10px;
}

footer {
  background: #06458a !important;
}

#hero,
#hero-about,
#hero-testimonials,
#hero-sexual-health,
#hero-podcast,
#hero-couples,
#hero-course,
#hero-individual,
#hero-contact,
#hero-blogs,
#hero-book {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  position: relative;
  width: 100%;
  height: 75vh;
  top: -40px !important;
  margin-top: -120px;
  padding-top: 120px;
  z-index: 0;
}

#hero {
  background-image: url(z-images/bg1.webp);
}
#hero-about {
  background-image: url(images/2-about-meeet-banner1b.jpg);
}
#hero-testimonials {
  background-image: url(images/7-testimonials-banner1.jpg);
}
#hero-sexual-health {
  background-image: url(images/BatSheva-2draft-long2.webp);
}
#hero-podcast {
  background-image: url(images/Podcast-Page-Cover-min.png);
}
#hero-couples {
  background-image: url(images/5-speaking-banner1.jpg);
}
#hero-course {
  background-image: url(images/Blank-2.jpg);
}
#hero-individual {
  background-image: url(images/Blank-2.jpg);
}
#hero-contact {
  background-image: url(images/8-contact-banner1.jpg);
}
#hero-blogs {
  background-image: url(images/Bat_Sheva_HiRes-9Draft.jpg);
}
#hero-book {
  background-image: url(images/Satisfaction2000x1093.jpg);
}

#section-sexual-health {
  background-image: url(images/1-home-banner2-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#about1 {
  background-image: url(images/2-about-meet-secondbanner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#sexual-health-consultations {
  background-image: url(images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#course-cta {
  background-image: url(images/1-home-banner2-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.position-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100% !important;
  min-height: 500px;
}
.position-bg-blog {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 70vh;
  top: 0;
  margin-top: -120px;
  padding-top: 120px;
}

.cus-d-flex {
  display: flex;
  align-items: stretch;
}

.course-box {
  background-image: linear-gradient(180deg, #dd38e4 0%, #7920a8 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 4rem 1.2rem;
}

/* END HEADER*********** */
.main-btns-container {
  margin-bottom: 30px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.logos-container2 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.logos-container a {
  transition: all 120ms ease-in-out;
}
.logos-container a:hover {
  transform: scale(1.1);
}

#section1 {
  background-color: white;
  background: linear-gradient(
    0deg,
    rgba(253, 253, 253, 1) 0%,
    rgba(217, 217, 205, 0.8) 50%,
    rgba(252, 252, 252, 1) 100%
  );
}

.bg-image1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: 100%;
  background: url(z-images/animations/bg.svg);
}

.custom-play-icon {
  border: 2px solid black;
  border-radius: 50%;
  padding: 1.34rem 1.5rem;
  margin-right: 0.3rem;
}

.main-btns-container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.service-text-wrapper {
  color: white;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-text {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.podcast-link a {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 17px;
  transition: all 300ms ease-in-out;
}
.podcast-link a:hover {
  color: var(--trd-color);
}
.podcast-link a:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -40px;
  background: url(assets/img/play-icon-teal.svg) center/contain no-repeat;
  width: 28px;
  height: 28px;
}

#section2-2 {
  margin-top: -150px;
}
#section2-2 .row {
  border-radius: 10px;
}
#section2-2 img,
#section2-2 #jarallax-container-1 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#section2-2 .text-container {
  padding-inline: 2rem;
}

#section3 {
  background-color: var(--accent-color);
}

#section3 .row {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(255, 255, 255, 0.171);
}

#section3 .row.team {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(0, 0, 0, 0.425);
}
#section3 .dr-gaddy-info {
  padding-inline: 2rem;
}
#section3 .team-info {
  padding-inline: 2rem;
}

.project-name {
  color: white !important;
  font-family: var(--title-font);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 300;
}

footer {
  background: url(./z-images/bg6.jpg);
  /* background-repeat: no-repeat;
    background-size: cover; */
}

.testimonial-carousel {
  background: linear-gradient(to bottom, #ff1d77, #2e87c8);
  padding: 60px 30px;
  color: #4b006e;
  text-align: center;
  font-family: Georgia, serif;
  border-radius: 12px;
}

.testimonial-carousel blockquote {
  max-width: 800px;
  margin: 0 auto !important;
  text-align: left !important;
  padding-inline: 1rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #4b006e;
}

.author {
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4b006e;
}

.bubble {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.bubble-news {
  position: absolute;
  bottom: -20px !important;
  left: 20px;
  width: 50%;
  transition: transform 1.8s ease;
  z-index: 1000;
}

.bubble2 {
  position: absolute;
  bottom: -80px;
  left: 20px;
  width: 900px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.scroll-up {
  transform: translateY(-80px);
}

.scroll-down {
  transform: translateY(80px);
}

/* GENERAL ANIMATIONS********************************** */
.custom-animation {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.custom-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
/* GENERAL ANIMATIONS********************************** */

.overlay-bg.custom {
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 50%,
    black 100%
  );
}

.procedure-item img {
  height: 30px;
  width: 30px;
  margin: 0 8px;
  margin-right: 10px;
  margin-bottom: 15px;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce-side;
}

.procedure-item {
  margin-top: 40px;
}
.procedure-item a {
  font-size: 25px;
}
.procedure-item a:hover {
  color: #747474;
}

@keyframes bounce-side {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(-5px);
  }
}

/* SERVICES************* */
.custom-service-item {
  position: relative;
  overflow: hidden;
  margin-inline: 2.5px;
  transition: all 400ms ease-in-out;
}

.custom-service-item .overlay-bg {
  opacity: 0.7;
  transition: all 700ms ease;
}

.custom-service-item:hover .overlay-bg {
  opacity: 1;
}

.testimonial {
  padding-inline: 2rem;
}

.custom-service-item img {
  transition: all 700ms ease-in-out;
}

.custom-services-item h3.service-title {
  /* margin-bottom: 50px; */
  font-weight: 400 !important;
}

.custom-service-item:hover img {
  transform: scale(1.1);
}

.nav-pills .nav-link.active {
  background-color: transparent;
  border: 1px solid #d8b454;
}

/* #service2 .background-image{
        background: url(./z-images/bg-07.jpg);
    } */
/* SERVICES************* */

#jarallax-container-0 {
  top: -20px !important;
}

/* TESTIMONIALS STYLE **********************************************  */
#testimonials .de_testi blockquote {
  margin: 0;
  border: none;
  padding: 20px 30px 30px 80px;
  background: none;
  font-style: normal;
  line-height: 1.3em;
}

#testimonials .de_testi blockquote:before {
  content: "";
  display: none;
}

#quote-section .left {
  background: url(./z-images/animations/left-quote.png) no-repeat center top;
  background-size: 30% !important;
  /* border-bottom: 1px solid #ccc; */
}
#quote-section .right {
  background: url(./z-images/animations/right-quote.png) no-repeat center bottom;
  background-size: 30% auto !important;
  /* border-top: 1px solid #ccc; */
}

#quote-section p,
#quote-section h4 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 200;
  color: black;
  /* font-family: "acumin-pro-condensed"; */
}

#quote-section p {
  font-size: 16px;
  margin-top: 40px;
  /* font-weight: 700; */
  position: relative;
}

#quote-section #testimonial-carousel-single h4 {
  font-size: 20px;
}
#quote-section #testimonial-carousel-single p {
  font-size: 12px;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgb(116, 116, 116);
}

/* TESTIMONIALS STYLE**********************************************  */

.vertical-text {
  font-family: "Hussar", sans-serif;
  writing-mode: vertical-rl; /* Texto en dirección vertical */
  transform: rotate(180);
  text-orientation: sideways; /* Orientación del texto */
  font-size: 120px;
  letter-spacing: 0.5rem;
  font-weight: 600;
  position: relative;
  opacity: 0; /* Ocultar el texto inicialmente */
  transition: opacity 1s;
  color: transparent;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.479);
  margin-left: 220px;
}

.non-surgical-container {
  height: 380px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.ns-img {
  width: 100% !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.contact-border {
  border-right: 1px solid var(--accent-color);
}

.services1-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* SECTIONS******************************************** */

.slider {
  width: 100%;
  height: 750px;
  position: relative;
}

.slides {
  display: flex;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 750px;
  display: block;
}

.description-container {
  background-color: #d1d1d11c;
  padding: 2rem;
  border-radius: 5px;
}
.description-container2 {
  border: 1px solid rgba(255, 255, 255, 0.288);
  padding: 3rem;
  border-radius: 5px;
}

.hero-mobile {
  display: none;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px 50px;
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.popup-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.popup-left {
  width: 50%;
}

.popup-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f1f1f1;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  color: black;
}

.popup-right {
  flex: 1;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 54px;
  font-weight: 100;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-left {
  display: flex;
  flex-direction: column;
}

/* BREAKPOINTS************************************************* */

/* (default from bootstrap) */
@media (max-width: 1400px) {
}

/* (default from bootstrap) */

@media (max-width: 1200px) {
}

/* (default from bootstrap) */

@media (max-width: 992px) {
  .mobile-d-none {
    display: none;
  }
  #section2-2 img,
  #section2-2 #jarallax-container-1 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .main-btns-container2 {
    flex-direction: column;
    gap: 0;
  }
  .top-header .logo {
    margin-top: 10px;
  }
  .top-header {
    position: relative !important;
  }
  header {
    top: auto;
  }
  .hero-mobile {
    display: block;
  }
  #hero,
  #hero-about,
  #hero-testimonials,
  #hero-sexual-health,
  #hero-podcast,
  #hero-couples,
  #hero-course,
  #hero-individual,
  #hero-contact,
  #hero-blogs,
  #hero-book {
    display: none;
  }
  .bubble,
  .bubble2 {
    display: none;
  }
  .popup-content {
    flex-direction: column;
    gap: 20px;
  }
  .popup-left {
    width: 100%;
  }
}

/* (default from bootstrap) */

@media (max-width: 768px) {
  .contact-border {
    border-right: none;
    border-bottom: 1px solid var(--accent-color);
  }
}

/* (default from bootstrap) */
@media (max-width: 576px) {
  header .logo {
    width: 210px;
    margin-top: 20px;
  }
  header {
    align-items: center;
  }
  .main-btns-container.btns1 {
    display: flex;
    flex-direction: column;
  }
}

/* BREAKPOINTS************************************************* */
