  .hero-header.home img {
  max-width: 500px;
}
@media all and (max-width: 700px) {
  .hero-header img,
  .hero-header.home img {
    max-width: 100%;
    height: auto;
  }
  .hero-header .col_last,
  .hero-header .col_last.nobottommargin {
    margin-bottom: 0 !important;
  }
  .ratings-section {
    flex-direction: column;
  }
}

/* Culture Cards Popups*/
.popup {
  height: 100vh;
  width: 100%;
  z-index: 300;
  display: flex;
  justify-content: center;
  top: 0;
  position: absolute;
}
.popup::before{
  content: ' ';  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  position: fixed;
}
.popup button{
  background-color: #582c83;
  color:white;
  border-radius: 6px;
  border: none;
  padding: 6px;
}

.popup.closed {
  display: none;
}

.popup .popup_container .popup_content,
.popup .popup_container .testimonal {
  padding: 2em;
}

.popup .popup_container {
  background: white;
  max-width: 900px;
  margin-top: 100px;
  border-radius: 10px;
  height: 40vh;
  position: fixed;
  display: inline-table;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 17px -10px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0 10px 17px -10px rgba(0, 0, 0, 0.68);
  box-shadow: 0 10px 17px -10px rgba(0, 0, 0, 0.68);
}


.popup_close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.popup .popup_container .testimonal {
  color: white;
  background-color: #582c83;
  display: flex;
}
.popup .popup_container .testimonal img {
  float: left;
  width: 150px;
  margin-right: 2em;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid white;
  flex: 1;
}
.popup .popup_container .testimonal > div {
  flex: 4;
}

@media all and (max-width: 700px) {
  .popup .popup_container {
    margin: 0.5rem;
    font-size: 0.8em;
  }
  .popup{
    width: 95vw;
  }
  .popup .popup_container .testimonal{
    flex-direction: column-reverse;
    
  }
  .popup .popup_container .testimonal blockquote{
    font-size: 1em !important;
    border: none;
    padding: 0 !important;
  }
  .popup .popup_container .testimonal img{
    margin-top: 2rem;
  }
}

.culture-cards-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.culture-cards-container .culture-card {
  flex: 1;
  margin: 1rem;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-radius: 8px;
  padding: 1.5em 1em;
  cursor: pointer;
  color: white;
}

.culture-cards-container .culture-card h3 {
  font-size: 36px;
}

.culture-cards-container .culture-card h3,
.culture-cards-container .culture-card p {
  margin-bottom: 0.25em;
}

#collab.culture-card {
  background-color: #582c83;
}

#collab.culture-card h3 {
  color: #fec10d;
}

#authentic.culture-card {
  background-color: #fec10d;
}

#dynamic.culture-card {
  background-color: #84bd00;
}

#empowered.culture-card {
  background-color: #ff9800;
}

.image-gallery {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.image-gallery img {
  max-height: 180px;
  border-radius: 0.3em;
}

@media all and (max-width: 700px) {
  .benefits {
    flex-direction: column;
    align-items: center;
  }
  .benefits .toggle {
    padding: 1em;
  }
}

/* history timeline The actual timeline (the vertical ruler) */
.history_timeline {
  position: relative;
  margin: 0 auto;
  display: flex;
  height: 375px;
}

/* The actual timeline (the vertical ruler) */
.history_timeline::after {
  content: "";
  position: absolute;
  height: 6px;
  background-color: #d67f00;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -3px;
}

/* Container around content */
.timeline_container {
  padding: 0.5em;
  position: relative;
  background-color: inherit;
  height: 50%;
}
.timeline_container strong {
  color: #d67f00;
  font-size: 1.25em;
}

/* The circles on the timeline */
.timeline_container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: white;
  border: 4px solid #d67f00;
  border-radius: 50%;
  z-index: 1;
}
.timeline_container.timeline_bottom::after {
  top: -0.7em;
  right: 25%;
}
.timeline_container.timeline_top::after {
  bottom: -0.7em;
  left: 25%;
}

/* Place the container to the left */
.timeline_top {
  align-self: flex-start;
  margin-right: -5em;
}

/* Place the container to the right */
.timeline_bottom {
  align-self: flex-end;
  margin-left: -5em;
}
.timeline_bottom .timeline_content {
  margin-top: 2em;
}

/* Add arrows to the left container (pointing right) */
.timeline_top::before {
  content: " ";
  height: 3.5em;
  position: absolute;
  bottom: 10px;
  width: 6px;
  background-color: #d67f00;
  z-index: 0;
  left: 30%;
}

/* Add arrows to the right container (pointing left) */
.timeline_bottom::before {
  content: " ";
  height: 2.5em;
  position: absolute;
  top: 10px;
  width: 6px;
  background-color: #d67f00;
  z-index: 0;
  right: 30%;
}

/* The actual content */
.timeline_content {
  padding: 1em;
  font-size: 0.8em;
  background-color: white;
  position: relative;
  border-radius: 0.5em;
  max-width: 300px;
  text-align: left;
}
.timeline_content strong {
  font-size: 1.25rem;
}
.timeline_content p {
  margin-bottom: 0.5em;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 975px) {
  .history_timeline {
    height: auto;
    width: 100%;
    flex-direction: column;
  }

  .history_timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background-color: #d67f00;
    top: 0;
    right: 0;
    left: 50%;
    margin-top: -3px;
  }
  .timeline_content {
    padding: 0.75em;
    font-size: 1em;
    max-width: 80%;
  }
  .timeline_bottom .timeline_content {
    margin-top: 0;
  }
  .timeline_top::before,
  .timeline_bottom::before {
    content: " ";
    width: 2.5em;
    position: absolute;
    top: 2em;
    height: 6px;
    background-color: #d67f00;
    z-index: 0;
    left: 1.75em;
  }
  .timeline_container.timeline_bottom::after,
  .timeline_container.timeline_top::after {
    top: 1.5em;
    left: 1.1em;
  }

  /* Place the timelime to the left */
  .history_timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline_container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline_container::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #d67f00;
    border-radius: 50%;
    z-index: 1;
  }

  /* Make sure all circles are at the same spot */
  .timeline_bottom::after,
  .timeline_top::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .timeline_bottom {
    left: 0;
  }
}

sub, sup{
  font-size: 0.6rem !important;
}
small sub, small sup, .disclosure sup{
  font-size: 0.6rem !important;
}