:root {
    --beige: #E9EAD6;
    --dark-beige: #DFE0C9;
    --pink: #FC748D;
    --light-pink: #FFBDCF;
    --blue: #9BC7EA;
    --orange: #FFC05A;
    --light-orange: #F9DDAB;
    --purple: #8D6481;
  }
  
  /* navigation css */
  .navbar-expand {
    @each $breakpoint in map-keys($grid-breakpoints) {
      $next: breakpoint-next($breakpoint, $grid-breakpoints);
      $infix: breakpoint-infix($next, $grid-breakpoints);
      
      // Styling for navbar-expand
      &#{$infix} {
  
        .navbar-nav .nav-item{
          margin-right: 5px;
        }
        .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover, .navbar-nav .nav-link.show{
          background-color: rgba(var(--#{$prefix}primary-rgb), 0.08);
          border-radius: $border-radius;
        }
  
        // Navbar styling for all screen sizes
        // Custom dropdown toggle icon
        .dropdown-toggle:after {
          content: "\F282";
          font-family: $bi-font-family;
          margin-left: 0.35rem;
          font-weight: 900;
          font-size: 0.8rem;
          vertical-align: middle;
          border: none;
        }
  
        // Dropdown link styling
        .dropdown .dropdown-link{
          display: block;
          width: 100%;
          padding: var(--#{$prefix}dropdown-item-padding-y) var(--#{$prefix}dropdown-item-padding-x) !important;
          clear: both;
          border-radius: $border-radius;
          margin-bottom: 0.3rem;
          font-weight: $font-weight-normal;
          &:hover,&:focus,&:active{
            color: var(--#{$prefix}dropdown-link-hover-color);
            background: var(--#{$prefix}dropdown-link-hover-bg);
          }
        }
  
        // Navbar styling for navbar expand >
        @include media-breakpoint-up($next) {
          
          .navbar-brand .navbar-brand-item {
            height: $navbar-brand-height;
            display: block;
            width: auto;
          }
  
          // Custom dropdown toggle icon
          .dropdown.dropend .dropdown-toggle:after {
            content: "\F285";
            font-family: $bi-font-family;
            right: 1rem;
            font-size: 0.7rem;
            line-height: 2.2;
          }
          .dropdown.dropstart .dropdown-toggle:before{
            content: "\F284";
            margin-right: 0;
            font-family: $bi-font-family;
            right: 1rem;
            font-size: 0.8rem;
            line-height: 2.2;
            position: absolute;
          }
  
          // Dropdown menu custom size
          .dropdown-menu-size-md{
            min-width: 22rem;
          }
          .dropdown-menu-size-lg{
            min-width: 30rem;
          }
          .dropdown-menu-size-xl{
            min-width: 45rem;
          }
          //Dropdown menu custom center
          .dropdown-menu.dropdown-menu-center.dropdown-menu-size-xl {
            left: -20.5rem;
          }
          //Dropdown menu custom center
          .dropdown-menu.dropdown-menu-center.dropdown-menu-size-lg {
            left: -17.5rem;
          }
  
          // Dropdown hover slide animation
          .navbar-nav .dropdown > .dropdown-menu{
            animation-name: slideInUp;
            animation-duration: 300ms;
          }
  
          @keyframes slideInUp {
            from {
                transform: translateY(10px);
            }
  
            to {
                transform: translateY(0);
            }
          }        
  
          // Navbar bottom line
          &.navbar-divider{
            border-bottom: $border-width $border-style $dropdown-divider-bg;
          }
  
          .dropdown-menu .dropdown-toggle:after {
            position: absolute;
          }
  
        }
  
        // Navbar styling for navbar collapse <
        @include media-breakpoint-down($next) {
  
          
        .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover, .navbar-nav .nav-link.show{
          background-color: transparent !important;
        }
  
          // Dropdown mega menu on responsive
          .dropdown-fullwidth {
            position: relative;
            .dropdown-menu {
              margin: 0;
              max-width: 100%;
            }
          }
          
          .navbar-brand .navbar-brand-item {
            height: $navbar-mobile-brand-height;
          }
          .navbar-brand {
            padding: $navbar-mobile-brand-padding-y 0;
          }
          .navbar-nav-scroll {
            max-height: var(--#{$variable-prefix}scroll-height, 65vh);
          }
  
          // Navbar collapse in position
          .navbar-collapse {
            box-shadow: 0px 10px 30px rgba(83, 88, 93, .4);
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            background: var(--#{$prefix}body-bg);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
  
            .navbar-nav .nav-item {
              border-bottom: 1px solid var(--#{$prefix}border-color);
              padding: 8px 20px;
            }
            .navbar-nav .nav-item .nav-link{
              padding: 0.25rem 0;
            }
          }
  
          // Dropdown menu size
          .dropdown-menu-size-md{
            min-width: 100%;
          }
          .dropdown-menu-size-lg{
            min-width: 100%;
          }
          .dropdown-menu-size-xl{
            min-width: 100%;
          }
  
          // Dropdown toggle icon
          .navbar-collapse .navbar-nav .dropdown-toggle::after {
            position: absolute;
            right: 15px;
          }
          .navbar-collapse .navbar-nav .dropdown-toggle::before {
            position: absolute;
            right: 15px;
          }
          .dropdown.dropstart .dropdown-toggle:before {
            content: "ï„‡";
            font-family: $bi-font-family;
            margin-left: 0.35rem;
            margin-right: 0;
            font-weight: 900;
            font-size: 0.8rem;
            vertical-align: middle;
            border: none;
          }
  
          //Toggler icon
          .navbar-toggler {
            &:focus {
              box-shadow: none;
            }
          }
  
          //Offcanvas body
          .offcanvas-body{
            padding: 1rem 0.875rem;
          }
          .offcanvas-body .navbar-nav .nav-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 8px 0;
          }
  
          // Dropdown toggle icon
          .offcanvas-body .navbar-nav .dropdown-toggle::after {
            position: absolute;
          }
  
          // Responsive Dropdown menu design
          .navbar-nav .dropdown-menu{
            border: 1px solid var(--bs-border-color);
            margin-top: 8px;
            box-shadow: none;
          }
  
          // Navbar offcanvas menu padding
          .navbar-nav.navbar-offcanvas-menu{
            .nav-item{
              padding: 0.5rem 0;
              .nav-link{
                padding: 0.25rem 0;
              }
            }
            .nav-item > .dropdown-menu {
              background: transparent;
              padding: 0;
              box-shadow: none;
              border-left: $border-style $border-width $border-color;
              border-radius: 0;
              margin-left: 8px;
            }
            .nav-item > .dropdown-menu .dropdown-item{
              &.active, &:hover{
                background: none !important;
              }
            }
          }
  
        }
      }
    }
  }
  
  .navbar-light .navbar-toggler-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 
    viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' 
    stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
  }
  
  .header-absolute {
      background: transparent;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
  }

  /*footer*/

footer {
    background-color: var(--beige);
}

.text-pink {
    color: #f47c97;
}

.ig-container{
  transform:scale(90%);
}

.ig-icon:hover{
  transform:scale(1.03);

}
  
  /*section 1*/
  header, .home-intro {
    background-color: var(--dark-beige);
  }

  .home-intro {
    display:none;
  }

  .home-breaker-2 {
    background: url(/iteration1/index/clara-juls-full.png);
    overflow: hidden;
    background: var(--dark-beige);
    height: 690px;
    max-width: 100%;
  }
  
  .clara-juls-photo {
    width: 50%;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .h1-bold {
      font-weight: 400;
      font-family: jaf-peacock, sans-serif;
      font-style: normal;
  }
  
  .description {
    font-weight: 400;
    font-family: ff-tisa-sans-web-pro, sans-serif;
    font-style: normal;
  }
  
  .clara-main {
    height: 500px;
  }
  
  .clara-sm {
    height: 300px;
  }
  
  .home-intro-button {
    padding: 8px;
    width: 280px;
    border-radius: 30px;
    background-color: var(--pink);
    font-weight: 700;
    font-family: ff-tisa-sans-web-pro, sans-serif;
    font-size: 1.5rem;
    align-self: flex-end;
    cursor: pointer;
  }
  
  .home-intro-button:hover{
    background: #FC748D;
    background: radial-gradient(circle, rgba(252, 116, 141, 1) 0%, rgba(255, 25, 68, 1) 100%);
    transform:scale(1.03);
    transition: ease 0.3s;
  }

  .home-breaker-6 .home-intro-button{
    background-color: #FC8600;
  }

  .home-breaker-6 .home-intro-button:hover{
    background: radial-gradient(circle,rgba(255, 201, 140, 1) 0%, rgba(230, 110, 5, 1) 100%);
  }

  .home-breaker-7{
    background: var(--beige);
  }
  
  /*section 2*/
  
  .carousel-breaker {
    background: linear-gradient(90deg, #57afd5, #63b4d9, #6fb9de,
    #7bbfe2, #87c4e6, #94cae9, #a1d0ed, #aed6f0)
  }
  
  .carousel-inner {
    height: 415px;      
    overflow: hidden;    
  }

  .carousel-wrapper {
    height: 100%;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .carousel-item {
    cursor: pointer;
  }
  
  .carousel-item img {
    object-fit: contain; 
    max-height: 100%; 
    max-width: 100%;
    max-height: 280px;
  }

  .carousel-caption {
    bottom: -6.75rem;
  }
  
  .home-breaker-3 {
    background: var(--pink);
  }

  .home-breaker-3 .pau {
    background: url(/iteration1/index/pau-full.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }

  .pau-full {
    transform: scale(200%);
  }
  
  /*section 3*/
  .home-breaker-4 {
    background: var(--light-pink);
    padding-top:40px;
    padding-bottom:40px;
  }
  
  .chat-window-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 50px;
  
    transform: scale(1.2);
  }
  
  .chat-window {
    background-color: var(--beige);
    min-width: 400px;
    height: 450px;
    border-radius: 35px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .chat-window-image {
    background-color: var(--pink);
    min-width: 400px;
    height: 450px;
    border-radius: 35px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  

/* SIDE EFFECTS for all contraceptive pages */

.side-effects { /* BLUE PAGES */
background: #deeafc;
background: linear-gradient(180deg, rgba(222, 234, 252, 1) 0%, rgba(185, 220, 255, 1) 100%);
}


/* CONTRACEPTIVES MAIN PAGE */


.contraceptive-list a{
  color: #1f161d;
}

.contraceptive-list a:hover{
  color: #4f2145;
} 

.contra-b1{
    background-color: var(--beige);
  }

.contraceptive-list{
    padding-top: 10px;
    margin-top: -200px;
    transform: scale(75%);
  }

.contra-desc{
    max-width: 800px;
    font-size: 20px;
    margin: 0 auto;

}

.hr-contra-pink {
  border: none;
  height: 4px; 
  background-color: var(--pink);
  width: 50%; 
  margin: 3rem auto; 
}

.contra-card {
  height: 700px;
  padding: 20px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;

  transition: outline 0.3s ease, transform 0.3s ease;
}

.contra-card:hover {
  outline: 10px solid var(--pink);
  outline-offset: 5px;
  transform: scale(1.02);
  transition: outline 0.3s ease, transform 0.3s ease;
}

.contra-card.blue-card:hover {
  outline: 10px solid var(--blue);
}

.contra-card img {
  max-height: 500px;
  width: 12em;
  object-fit: contain;
  margin-bottom: 10px;
}

.mini-pills img{
  transform:scale(105%);
}
/* Odd items */
.contraceptive-list > div:nth-child(odd) .contra-card {
  background: linear-gradient(135deg, #ffe8e0, #ffb3ba);
}

/* Even items */
.contraceptive-list > div:nth-child(even) .contra-card {
  background: linear-gradient(135deg, #e0f7ff, #b3d8ff);
}

.bcp{
  transform: scale(105%);
}

/* dictionary */

.dictionary {
  margin-top: -150px;
}

/* PINK PAGES (usage sections are blue) */

.contra-pink-page {
  background: rgb(255,204,204);
  background: linear-gradient(0deg, rgba(255,204,204,1) 62%, rgba(243,249,255,1) 100%);
}

.blue-usage-bg {
  background: rgb(190,224,255);
  background: radial-gradient(circle, rgba(190,224,255,1) 0%, rgba(255,239,246,1) 100%);
}

.mini-pills .side-effects{
background: #fae6e6;
background: linear-gradient(180deg, rgba(250, 230, 230, 1) 0%, rgba(252, 204, 204, 1) 100%);
}

/* BLUE PAGES (usage sections are pink) */

.contra-blue-page{
  background: rgb(183,219,255);
  background: linear-gradient(0deg, rgba(183,219,255,1) 62%, rgba(255,243,247,1) 100%);
  }

  .pink-usage-bg {
    background: rgb(251,216,217);
    background: radial-gradient(circle, rgba(251,216,217,1) 0%, rgba(245,249,255,1) 100%);
  }
  

  /* CONTRACEPTIVE PAGES SHARED FORMAT */

.contra-page-shared {
  display: flex;
  justify-content: center;      
  align-items: center;         
  gap: 40px;                    
  padding: 40px;              
  margin: 0 auto;               
}

.contra-page-shared img {
  width: 400px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contra-page-shared img:hover {
  transform: scale(1.03);
}

.contra-shared-subdiv {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  max-width: 500px;
}

.contra-short-info {
  max-width: 700px;

  font-weight: 400;
  font-family: ff-tisa-sans-web-pro, sans-serif;
  font-style: normal;
}

.doctors-notes-container {
  background-color: #fffaef;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: fit-content;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctors-notes-container:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.notes-title {
  background-color: #fffaef;
  padding: 2rem 1.5rem;
}

.notes-paragraph {
  background-color: #f8bbd0; /* light pink */
  padding: 2rem;
  max-width: 600px;
}

.notes-paragraph-blue {
  background-color: var(--blue);
  padding: 2rem;
  max-width: 600px;
}

.doctors-notes {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Condom Page */ 

.contra-short-info .row {
  align-items: center;
  font-size: 1rem;
  border-top: 3px solid #000 !important;
}

.contra-short-info .col-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.contra-short-info .col-4:last-child {
  padding-right: 2rem; /* Adjust until aligned with the longest line */
}

.circle-number {
  width: 48px;
  height: 48px;
  background-color: #ffcdd2;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b4-usage-container {
  background-color: #ffcdd2;
  padding: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.usage-step {
  background-color: white;
  border-radius: 20px;
  width: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.usage-step:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Initially hide content and show overlay */
.usage-content {
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;  /* <-- centers the circle horizontally */
  justify-content: start;
  gap: 1rem;
}

.usage-overlay {
  background: #A1D2EA;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.circle-number-overlay {
  font-size: 80px;
  color: #40a1d1;
  font-weight: bold;

  font-weight: 400;
  font-family: jaf-peacock, sans-serif;
  font-style: normal;
}

/* On hover (desktop) */
.usage-step:hover .usage-overlay {
  opacity: 0;
}

.usage-step:hover .usage-content {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile click: reveal class */
.usage-step.reveal .usage-overlay {
  opacity: 0;
}

.usage-step.reveal .usage-content {
  opacity: 1;
  pointer-events: auto;
}


.circle-number {
  width: 40px;
  height: 40px;
  background-color: #f48fb1;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-text {
  font-size: 1rem;
  text-align: center;
  color: #bf2e5f;
}

/*mythbusters*/

/* BIRTH CONTROL PILLS PAGE */

.bcp-step:hover{
  transform: scale(1.05);
  transition: transform 0.2s ease;
}


.pill-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;

  background-color: #f8aebe;
  color: black;
  border-radius: 2rem;
  width: 350px;
}

.pill-number {
  background-color: #f8aebe; /* soft pink */
  color: black;
  font-weight: bold;
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-text {
  padding: 0.75rem 1rem;
  flex: 1;
}

/** bcp 21 and 21 day steps**/
.pill-packet-wrapper {
  margin-top: 2rem;
}

.pill-packet {
  border-radius: 20px;
  overflow: hidden;
  width: 280px;
  min-height: 320px; /* Ensure same height for all cards */
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.pill-packet:hover{
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.packet-header {
  background-color: #fff8f0;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.packet-body {
  background-color: #9BC7EA;
  color: #000;
  padding: 1rem;
  flex-grow: 1; /* Makes body stretch to fill the space equally */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers the text vertically inside the pink area */
}

/* mini pill page */

.pop-step:hover{
  transform: scale(1.05);
  transition: transform 0.2s ease;
}


.pop-pill-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;

  background-color: #9BC7EA;
  color: black;
  border-radius: 2rem;
  width: 350px;
}

.pop-pill-number {
  background-color: #9BC7EA; /* soft pink */
  color: black;
  font-weight: bold;
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/**Emergency Contraceptives**/
.ec-box {
  display: flex;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ec-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ec-num {
  background-color: #FFF8F0; 
  color: #212529;
  font-weight: bold;
  font-size: 2rem;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.ec-text {
  background-color: #F8BBD0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.yuzpe-link{
  text-decoration: none;
  color: black;
}

.yuzpe-link:hover{
  text-decoration: none;
  color: rgb(194, 124, 136);
  transition: ease 0.3;
}

.yuzpe-link:active{
  text-decoration: none;
  color: var(--pink);
}


/** Implants **/

.pink-insertion-section {
  padding-bottom: 3rem;
}

.pink-steps-wrapper {
  width: 90%;
  max-width: 800px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pink-step-box {
  display: flex;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
}

.pink-step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pink-step-number {
  background-color: #FFFAEF; 
  color: #000;
  font-weight: bold;
  font-size: 2rem;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.pink-step-text {
  background-color: #F8BBD0; 
  color: #000;
  padding: 1.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

/** Calendar Method **/

.calendar-bg-wrapper {
  border-radius: 1.5rem;
  padding: 0.25rem;
  position: relative;
  z-index: 0;
}

.calendar-box {
  display: flex;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.calendar-box-width {
  width: 300px;
  max-width: 100%;
}


.calendar-box:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.calendar-num {
  background-color: #FFFAEF;
  color: #000;
  font-weight: bold;
  font-size: 2rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.calendar-title {
  background-color: #9BC7EA;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  flex: 1;
}

.calendar-dropdown-content {
  background-color: #FFFAEF;
  border-radius: 0 0 1.5rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.calendar-dropdown-content.open {
  max-height: 300px;
  padding-bottom: 1rem;
}

/* ABOUT*/

.about-logo{
  width: 300px; 
  margin-bottom: 1rem;
}

.about-container {
  background-color: #2D2D2D; 
  width: 600px; 
  padding: 1.5rem; 

  border-radius: 40px; 
  border:3px solid #EB1C79; 

  text-align: center; 
  color: #F2F2F2;
}

.about-us .about-container{
  background-color: #FFDDE7;
  color: #323232; 

  border-radius: 40px; 
  border:3px solid #323232; 

  text-align: center; 
}

.the-team .about-container{
  width: 500px;
}

.references .about-container{
  background-color: #d6edff;
}

  .indiv-chat-parent {
    display: flex;
    flex-direction: column;
  
    gap: 30px;
    flex: 1;
  }

  .indiv-chat-parent h4 {
    display: flex;
    justify-content: center;
    align-content: center;
    transform: scale(70%);
  }

  
  .juls-window, .isa-window, .pau-window, .sally-window {
    background-color: var(--dark-beige);
    width: 100%;
    height: 80px;
    border-radius: 30px;
    transition: background-color 0.3s ease; 
  }
  
  .juls-window:hover {
    background-color: var(--blue);
    cursor: pointer;
  }

  .pau-window:hover {
    background-color: var(--pink);
    cursor: pointer;
  }
  
  .sally-window:hover {
    background-color: var(--purple);
    cursor: pointer;
  }
  
  .isa-window:hover {
    background-color: var(--orange);
    cursor: pointer;
  }
  
  .actual-chat-bg {
    align-self: flex-end;
    background-color: var(--dark-beige);
    height: 400px;
    border-radius: 30px;
    z-index: 1;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  
  .actual-chat-bg.juls-bg {
    background-image: url("/iteration1/index/juls-main.png"), linear-gradient(40deg, rgba(212,237,249,1) 18%, rgba(167,205,224,1) 50%, rgba(54,85,120,1) 100%);
    background-color: var(--light-pink) !important;
  }
  
  .actual-chat-bg.pau-bg {
    background-image: url("/iteration1/index/pau-main.png"), linear-gradient(40deg, rgba(252,228,195,1) 18%, rgba(236,160,154,1) 50%, rgba(232,111,138,1) 100%);
    background-color: var(--purple) !important;
  }
  
  .actual-chat-bg.isa-bg {
    background-image: url("/iteration1/index/isa-main.png");
    background-color: var(--orange) !important;
  }
  
  .actual-chat-bg.sally-bg {
    background-image: url("/iteration1/index/sally-main.png"), linear-gradient(40deg, rgba(251,245,249,1) 18%, rgba(217,162,206,1) 50%, rgba(147,92,154,1) 100%);;
    background-color: var(--blue) !important;
  }
  
  /*section 5*/
  .home-breaker-5 {
    background: radial-gradient(circle at center, #dea3cc, #b36ca8, #955a90);
  }
  
  /*section 6*/
  .home-breaker-6 {
    background: url('/iteration1/index/isa-full.png'), var(--orange);
    overflow: hidden;

  height: 100%;
  background-position: bottom;
  background-size: cover;
}
  /*footer*/
  footer {
    background-color: var(--beige);
  }


.juls-speech, .pau-speech, .sally-speech {
  display: none;
  padding-top: 5em;
}

.speech-bubble {
	position: relative;
	background: #DED7C5;
	border-radius: .4em;
  opacity: 0.9;
  padding: 0.5em;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 2em;
  margin-top: 2em;
  margin-left: 3em;
}

.speech-bubble.left:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-left-color: #DED7C5;
  border-right: 0;
  border-bottom: 0;
  margin-top: -10.5px;
  margin-right: -25px;
}

.speech-bubble.left {
  padding-left: 1em;
}

.speech-bubble.right:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 39px solid transparent;
	border-right-color: #DED7C5;
	border-left: 0;
	border-bottom: 0;
	margin-top: -9px;
	margin-left: -36px;
}

.floating-notes {
  opacity: 0.7;
  margin-top: 3em;
}

.floating-notes .card-body {
  color: black;
  background: #F9DDAC !important;
  border: none;
}

.pq-button {
  cursor: pointer;
}

  /* ABOUT PAGE */

  .caly, .kat, .xachi {
    width: 200px; 
    margin-bottom: 1rem; 
    border-radius: 10%;"
    }


@media only screen and (max-width: 600px) {
  .chat-window {
    min-width: 100%;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  } 
  .chat-window-image {
    min-width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
  }

  .home-breaker-2 {
    height: 850px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
  }

  .home-breaker-2 p {
    width: 300px;
  }

  .clara-juls-photo {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .home-breaker-3 .pau {
    background: url(/iteration1/index/pau-full.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;

    height: 600px;
  }
  

  .home-breaker-6{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;

    height:500px;
  }

  /* contraceptives page */

  .contra-desc{
    max-width: 300px;
    font-size: 15px;
  }


  /* individual contraceptive pages */
  .contra-page-shared{
    display: flex;
    flex-direction: column;
  }

  .contra-page-shared img{
    width: 250px;
  }

  .contra-short-info {
    width: 300px;
  }

  /*
  .doctors-notes-container {
    width: 300px;
    height: 100px;
  }*/

  /* ABOUT PAGE */

  .about-logo {
    width: 200px;
  }

  .about-container {
    max-width: 300px;
    height: 700px;
  }

  .references {
    overflow: hidden;
    height: 700px;
  }

  .references p {
    width: 200px;
  }
  
}

.breaker-sec {
  min-height: 750px
}

.breaker-sec .breaker-sub {
  width: 600px;
}

.width-desc {
  width: 50%;
}

@media only screen and (max-width: 576px) {
  .doctors-notes {
    font-size: 1.5rem;
  }

  .pop-pill-step {
    width: 250px;
  }

  .pop-pill-step,
  .pill-step {
    width: 250px;
  }

  .contra-short-info .description,
  .blue-usage-bg .description {
      width: 100% !important;
      text-align: center !important;
  }

  .blue-usage-bg .description {
      padding-right: 1.5rem;
      padding-left: 1.5rem;
  }

  .ec-steps .ec-box {
    width: 100% !important;
  }

  .breaker-sec {
    min-height: 0;
  }

  .breaker-sec .breaker-sub {
    width: auto;
  }

  .width-desc {
    width: 100%;
  }
}
