.hero {
  color: white;
}

.select {
  font-size: 20px;
  font-weight: 700;
  line-height: 18px;
  position: relative;
  color: #B8B8B8;
  font-weight: 400;
}

.select:focus {
  outline: none;
}

.select .outer {
  cursor: pointer;
  height: 58px;
  padding: 8px 32px 8px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  font-size: 20px;
  box-sizing: border-box;
  justify-content: space-between;
  background-color: black;
  border: solid 1px white;
  border-radius: 58px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: box-shadow 150ms;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.select:hover .outer {
}

.select .outer img {
  margin-top: 0px;
  transition: transform 150ms;
}

.select .options {
  position: absolute;
  background-color: black;
  border-radius: 29px;
  min-width: 100%;
  max-width: 130%;
  width: 270px;
  box-sizing: border-box;
  padding: 12px 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  display: flex;
  white-space: nowrap;
  top: 57px;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  transition: opacity 150ms, transform 150ms;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}
.select .options:has(> *) {
  border: solid 1px white;
}

.select:focus .options, .select:focus-within .options {
  pointer-events: all !important;
  opacity: 1;
  transform: translate(-50%, 0px);
}
.select:focus .outer,
.select .outer:hover {
  background-color: #111;
}


.select:focus .outer img, .select:focus-within .outer img {
  transform: rotate(180deg) translateY(2px);
}

.select:focus-within {
  pointer-events: none !important;
}


.select:focus-within input {
  pointer-events: all !important;
}


.select .options a {
  text-decoration: none;
  color: var(--dark);
  padding: 16px 16px;
  transition: color 150ms;
  cursor: pointer;
  white-space: wrap;
  line-height: 28px;
}
.select .options a.active {
  background-color: white;
  color: black;
  pointer-events: none;
}
.select .options a:hover {
  background-color: #111;
}
.select .options a.active:hover {
  background-color: white;
}

.content-search > h3 {
  margin: 24px 0 42px;
  font-size: 32px;
  font-weight: 600;
}
.content-search .input-container {
  width: 100%;
  margin-bottom: 16px;
}
.content-search .input-container input {
  width: 100%;
  color: white;
}

.content-search {
  color: white;
}

.content-search .filters {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.content-search > p {
  margin: 22px 0 22px 24px;
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  .content-search {
    padding: 0 12px;
  }

  .content-search > p {
    margin-left: 12px;
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .select .outer {
    padding: 6px 22px;
    height: 42px;
    font-size: 16px;
  }

  .content-search .filters {
    flex-direction: column;
    gap: 18px;
    justify-content: space-between;
  }

  .select .options {
    top: 42px;
    width: 100%;
  }

  .select .options a {
    font-size: 16px;
    padding: 12px 22px;
    line-height: 22px;
  }
}

.featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 90px;
  flex-wrap: wrap;
}


.case-result {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  color: white;
  padding: 16px;
  border-radius: 30px;
  border: solid 1px white;
  align-items: center;
}
.case-result:hover {
  background-color: #111;
}

.case-result img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.case-result h3 {
  font-size: 24px;
}

.case-result p {
  font-size: 12px;
}


.options .case-result {
  grid-template-columns: 90px 1fr;
  border: none;
  border-bottom: solid 1px white;
  border-radius: 0px;
}

.options .case-result:last-child {
  border-bottom: none;
}

.input-container .options {
  padding: 0;
}



@media screen and (max-width: 1000px) {
  .featured {
    gap: 18px
  }

  .case-result {
    grid-template-columns: 100px 1fr;
    border-radius: 20px;
    gap: 18px;
  }
  .case-result h3 {
    font-size: 18px;
    margin: 0;
  }
  .case-result p {
    margin: 0;
  }
  .case-result img {
    border-radius: 15px;
  }

  .options .case-result {
    grid-template-columns: 70px 1fr;
  }
}
@media screen and (max-width: 500px) {
  .case-result {
    max-width: calc(100vw - 50px);
    box-sizing: border-box;
  }
}

.contentlab-video {
  background-color: black;
  margin-top: 0 !important;
}

.contentlab-video video {
  aspect-ratio: 16 / 9;
  border-radius: 100px;
}

.contentlab-video.white {
  background-color: transparent;
  margin-bottom: 120px;
}
.contentlab-video.white .inner{
  flex-direction: column;
  display: flex;
}
.contentlab-video.white .videoplayer {
  margin-bottom: 24px;
  margin-top: 60px;
}

.contentlab-video.white video {
  border-radius: 1000px;
  border: solid 1px black;
}
.contentlab-video.white a {
  color: white;
  background-color: black;
  padding: 12px 24px;
  border-radius: 100px;
}

.claim-pill {
  margin-top: 160px;
  margin-bottom: 160px;
  border-radius: 1000px;
  padding: 64px;
  font-size: 64px;
  text-align: center;
  border: solid 1px black
}

.claim-pill .highlight {
  color: var(--blue);
  display: inline;
}

@media screen and (max-width: 1000px) {


  .contentlab-video {
    background-color: black;
    margin-top: -220px !important;
  }
  .claim-pill {
    font-size: 32px;
    padding: 22px 0;
    border-radius: 0;
    text-align: left;
    border: none;
    border-top: solid 1px black;
    margin-bottom: 0;
  }
  .contentlab-video.white .inner {
    height: 80vw;
  }

  .contentlab-video.white {
    margin-bottom: 100px;
  }
}


section.pills {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  margin-top: 120px;
  gap: 24px;
}

section.pills .pill {
  font-size: 32px;
  background-color: black;
  color: white;
  border-radius: 100px;
  padding: 14px 38px;
  text-align: center;
}

section.pills .white {
  background-color: white;
  border: solid 1px black;
  color: black;
}

@media screen and (max-width: 1000px) {
  .contained.stats {
    margin-bottom: 100px;
  }
  section.pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 0px;
  }
  section.pills .pill {
    font-size: 18px;
    padding: 14px 28px;
  }
  section.pills .pill:nth-child(2) {
    padding: 14px 45px;
  }
}

.coberturas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  margin-bottom: 64px;
  align-items: center;
}

.coberturas p {
  max-width: 450px;
  font-size: 20px;
  margin: 0;
  margin-bottom: 32px;
}

.coberturas .cta {
  background-color: black;
  text-decoration: none;
  color: white;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 100px;
  font-size: 16px;
}

.coberturas .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coberturas .image-container .pill-background {
  position: absolute;
  background-color: var(--blue);
  width: 100%;
  z-index: -1;
  border-radius: 100vw;
  aspect-ratio: 3 / 2;
}

.coberturas .rounded {
  border-radius: 100vw;
}

@media screen and (max-width: 1000px) {
  .coberturas {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 24px;
    gap: 24px;
  }
  .coberturas .image-container img {
    width: 80%;
  }
  .coberturas p {
    font-size: 16px;
  }
}


.content-types {
  background-color: #F4F4F5;

}

.content-types .format-title {
  color: var(--blue);
  padding: 24px 22px 12px;
}

.content-types .format-title h2 {
  font-size: 64px;
}
.content-types .format-badge {
  background-color: var(--blue);
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  margin-left: 6px;
}

.content-type {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 100px;
  align-items: end;
}

.content-type.reverse {
  grid-template-columns: 3fr 4fr;
}
.content-type.reverse .content p {
  font-size: 20px;
  padding-right: 0;
}

.content-type.align-start {
  align-items: start;
}

.content-type .img-container {
  border-radius: 30px;
  overflow: hidden;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.content-type .img-container img {
  width: 100%;
}

.content-type .content {
  flex: 1;
}

.content-type .content p {
  padding-right: 24px;
}

.content-type .videoplayer {
  height: auto;
  margin: 0;
}

.content-type .videoplayer.side {
  position: relative;
  left: -220px;
  width: calc(100% + 220px);
}

.content-type .videoplayer.side video {
  aspect-ratio: 5 / 2;
  border: solid 1px black;
  border-radius: 58px;
}

.content-type .videoplayer .play-button {
  width: 120px;
  height: 120px;
  padding-left: 12px;
}

.content-type .content button,
.content-type .content > a {
  display: inline-block;
  color: white;
  background-color: var(--blue);
  border: none;
  border-radius: 100px;
  padding: 6px 32px;
  font-size: 20px;
  margin-top: 24px;
  cursor: pointer;
}

.content-type .content button:hover,
.content-type .content > a:hover {
  opacity: 0.9;
}
.content-banner {
  padding-top: 0px;
  margin-top: 100px;
  margin-bottom: 120px;
}
.content-banner .banner {
  color: var(--blue);
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}
.content-banner .banner .dot {
  background-color: var(--blue);
}
.content-type .img-container.with-video {
  overflow: visible;
  border-radius: 0;
}

.content-type .img-container video {
  aspect-ratio: 14 / 9;
  border-radius: 58px;
  border: solid 1px black;
}

.content-type .content .link {
  padding: 6px 24px;
  border: solid 1px black;
  border-radius: 100px;
  margin-top: 24px;
  transition: background-color 150ms;
  color: black;
  background-color: white;
}

.content-type .content .link:hover {
  background-color: black;
  color: white;
}

@media screen and (max-width: 1000px) {
  .content-types .format-title {
    gap: 0;
    margin-top: 32px;
  }
  .content-types .format-title h2 {
    font-size: 28px;
  }
  .content-types .format-badge {
    font-size: 12px;
  }
  .content-types .format-title .formats {
    margin-top: 6px;
    margin-bottom: 12px;
    margin-left: -6px;
  }
  .content-type{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .content-type .content p {
    font-size: 16px;
    padding-right: 0;
  }
  .content-type .videoplayer.side {
    left: 0;
    width: 100%;
  }
  .content-type .videoplayer.side video,
  .content-type .img-container video {
    aspect-ratio: 16 / 9;
    border-radius: 30px;
  }
  .content-type .content button {
    font-size: 16px;
  }
  .content-banner {
    margin-top: 32px;
    margin-bottom: 0px;
  }
  .content-type.reverse .content p {
    font-size: 16px;
  }
  .content-type.reverse {
    flex-direction: column-reverse;
    margin-top: 32px;
  }
}

.timeline {
  display: flex;
  position: relative;
  gap: 24px;
  margin-bottom: 120px;
}

.timeline:before {
  content: " ";
  display: block;
  width: 200vw;
  left: -50vw;
  border-top: solid 2px var(--blue);
  position: absolute;
  top: 52px;
}

.timeline > div {
  flex: 1;
  display: grid;
  grid-template-rows: 70px auto auto 1fr;
  position: relative;
}

.timeline > div:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--blue);
  border-radius: 100px;
  position: absolute;
  top: 48px;
  left: -3px;
}

.timeline h3 {
  text-transform: uppercase;
  margin: 0;
  font-size: 32px;
  white-space: nowrap;
}

.timeline h2 {
  margin: -12px 0 12px;
  font-size: 32px;
  white-space: nowrap;
  color: var(--blue);
}

.timeline p {
  margin: 0;
}

.timeline .socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.timeline .socials img {
  user-select: none;
}

.timeline > .socials {
  position: absolute;
  left: 12px;
  bottom: -64px;
}

.timeline > .socials:before {
  content: none;
}

.timeline.centered > div {
  justify-content: center;
  text-align: center;
}

.timeline.centered > div:before {
  left: 50%;
}
.timeline.centered .socials {
  justify-content: center;
  margin-top: 12px;
}

@media screen and (max-width: 1000px) {
  h2.contained {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .timeline {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 64px;
    gap: 54px;
    margin-bottom: 32px;
  }
  .timeline:before {
    width: 0px;
    left: 24px;
    top: 0px;
    height: 100%;
    border-right: solid 2px var(--blue);
  }
  .timeline > div:before,
  .timeline.centered > div:before {
    top: 7px;
    left: -4px;
  }
  .timeline > div {
    padding-left: 22px;
    grid-template-rows: auto auto auto auto;
  }
  .timeline h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }
  .timeline .socials {
    margin-bottom: 12px;
  }
  .timeline.centered > div {
    justify-content: left;
    text-align: left;
  }
  .timeline.centered .socials {
    justify-content: start;
    margin-top: 12px;
  }

  .timeline h2 {
    margin: -6px 0 6px;
    font-size: 22px;
  }

}

.calendar {
  margin-top: 64px;
  margin-bottom: 220px;
}

.calendar .labels {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 40px;
  padding-right: 10px;
  font-weight: 600;
  margin-bottom: 12px;
  box-sizing: border-box;
  width: 100%;
}
.calendar-type {
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color);
  color: white;
  margin-bottom: 12px;
  border-radius: 20px;
  padding: 24px;
  height: 200px;
  box-sizing: border-box;
}
.calendar-type .title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  margin-right: 24px;
  transform: rotate(180deg);
  text-align: center;
}
.calendar-type > div {
  position: absolute;
  --offset: 0%;
  left: var(--offset);
  max-width: 100px;
  text-align: center;
  white-space: pre-line;
  transform: translateX(-50%);
}

.calendar-type.empty {
  height: 70px;
  justify-content: center;
}

.calendar-type.empty .title {
  writing-mode: initial;
  text-orientation: initial;
  transform: none;
  position: initial;
}
@media screen and (max-width: 1000px) {
  .calendar {
    padding: 0 12px;
    overflow-x: auto;
    margin-top: 24px;
    margin-bottom: 100px;
  }
  .calendar-type {
    min-width: 1000px;
    height: 100px;
    font-size: 14px;
  }
  .calendar .labels {
    min-width: 1000px;
  }
  .calendar-type.empty {
    justify-content: flex-start;
  }
}