.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #D4DEEA;
  flex-direction: column;
  height: 720px;
}

@media screen and (max-width: 992px) {
  .hero-section.open-wellness {
    height: 800px;
  }
  .hero-section.open-ancestry {
    height: 650px;
  }
  .hero-section.open-health {
    height: 730px;
  }
}

.headline {
  text-align: center;
  padding: 4rem 2rem;
}

.headline h1 {
  font-size: 40px;
}

@media screen and (min-width: 992px) {
  .hero-section {
    flex-direction: row;
  }
  .headline {
    width: 50%;
    padding-left: 10%;
    text-align: left;
  }
  .hero-section {
    height: auto;
  }
}
.hero-section .main-cta {
  border-radius: 8px; 
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgb(105,53,155);
  background: linear-gradient(90deg, rgba(105,53,155,1) 0%, rgba(86,80,212,1) 100%);
  color: white; 
  margin-top: 1rem; 
  text-transform: capitalize; 
  text-decoration: none; 
  font-weight: bold; 
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  .hero-section .main-cta {
    margin-top: 2rem;
  }
}

.headline,
.reports-wrapper {
  transition: opacity 0.5s ease-in-out;
}

.headline.fade-out {
  opacity: 0;
}


/* MAIN IMAGE */
.image-container {
  transition: transform 700ms cubic-bezier(.65,0.13,.55,.94);
  position: relative;
  margin-right: 1rem;
  width: 100%;
}

.image-container.move-left {
  transform: translateX(-100%);
}

@media screen and (min-width: 992px) {
  .image-container {
    width: 70%;
  }
  .image-container.move-left {
    transform: translateX(-75%);
  }
}

/* REPORTS */
.reports-wrapper {
  opacity: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%; 
  padding: 0 5%; 
  display: flex; 
  align-items: start; 
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .reports-wrapper {
    width: 50%;
    height: 100%; 
    align-items: center;
  }
}
.reports-wrapper.fade-in {
  opacity: 1;
  z-index: 2;
}
/* REPORTS CONTENT */
#reports-content {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  padding-top: 7rem;
}
/* REPORTS TABS */
#reports-content .nav-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: none;
  gap: 6px;
}
#reports-content .nav-tabs .nav-link {
  border-radius: 6px;
  color: #013d64;
  border: transparent;
}
#reports-content .nav-tabs .nav-link:hover {
  background: rgba(255,255,255, 0.4);
  border: transparent;
}
#reports-content .nav-tabs .nav-link.active {
  background-color: #013d64;
  color: white;
  border: transparent;
}
#reports-content .tab-content {
  width: 100%;
}
#reports-content .accordion {
  width: 100%; 
  max-width: 390px;
  margin-top: 1rem;
}

@media screen and (min-width: 992px) {
  #reports-content,
  #reports-content .tab-content,
  #reports-content .accordion {
    width: 100%; 
    max-width: 500px;
  }
  #reports-content {
    padding-top: 0;
  }
}

.mobile-category {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #092437;
  color: white;
  height: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 6rem;
  padding-left: 1rem;
  font-size: 1.1rem;
  gap: 0.75rem;
  font-weight: bold;
}
#mobile-category-image {
  border: 3px solid white; border-radius: 80px; width: 60px; height: 60px
}

@media screen and (min-width: 992px) {
  .mobile-category {
    display: none;

  }
}


/* HOTSPOTS */
/* .hotspot {
  background: rgba(255,255,255, 0.5);
  height: 3rem;
  width: 3rem;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  animation: pulse 1000ms alternate infinite;
}
.hotspot::after {
  background: #D8106E;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
} */
.hotspot {
  background: #D8106E;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  /* z-index: 2; */
}
.hotspot::after {
  content: '';
  border: 2px solid #D8106E;
  position: absolute;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 1;
  animation: pulsar 2000ms infinite ease-in-out;
}

.hotspot::before {
  content: '';
  border: 2px solid #D8106E;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  width: 32px;
  height: 32px;
  animation: pulsar 2000ms infinite 1000ms ease-in-out;
}


/* BACK BUTTON */
#backButton {
  border: none;
  background: rgba(255, 255,255, 0.7);
  border-radius: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  position: absolute;
  top: 1.4rem;
  right: 1rem;
  z-index: 5;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
#backButton:hover {
  background: rgba(255, 255,255, 0.7);
}

@media screen and (min-width: 992px) {
  #backButton {
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255,255, 0.5);
  }
}


/* BUBBLE */
.bubble {
  position: absolute;
  background-color: #092437;
  color: white;
  padding: 16px;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
  cursor: pointer;
  width: 76%;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .bubble {
    width: 100%;
    max-width: 300px;
  }
}

.bubble.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.bubble .unlock {
  display: block;
  color: #70c7e7;
  font-weight: bold;
  margin-top: 0.5rem;
  transition: colors 300ms ease-in-out;
  font-size: 16px;
  pointer-events: none;
}
.bubble:hover .unlock {
  color: #51b2d5;
}


/* ANIMATIONS */
@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}


/* ANIMATIONS */
@keyframes pulsar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.64);
    border-color: #A320AE;
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bouncing-hand {
  animation: bounce 2s ease-in-out infinite;
}