@charset "UTF-8";

:root {
  --header-aspect-ratio: 1.5 / 1;

  --color-neutral: #646464;
}

@media (min-width: 460px) {
  :root {
    --header-aspect-ratio: 2.5 / 1;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-aspect-ratio: 3 / 1;
  }
}

html {
  font-size: 8px;
  line-height: 1.5em;
  hyphens: auto;
}

body {
  margin: 0;
  font-family: 'Roboto Flex', sans-serif;
  font-size: 2rem;
  color: var(--color-neutral);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hidden-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  aspect-ratio: var(--header-aspect-ratio);
  margin: 0 0 8rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin: 0;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto;
  translate: -50% 0;
}

.main {
  max-width: 90rem;
  margin: 0 auto 12.5rem auto;
  padding: 0 2rem;
}

.section {
  margin: 0 0 10rem 0;
}

.number {
  display: grid;
  place-items: center;
  width: 12rem;
  height: 12rem;
  margin: 0 auto 4rem auto;
  background: #f03f05;
  border-radius: 100%;
  font-size: 8rem;
  font-weight: 500;
  color: #fff;
}

.title {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 90rem;
  margin: 0 auto 5rem auto;

  img {
    width: auto;
  }

  .title__wrap {
    &:nth-child(2) {
      text-align: right;
    }
  }

  .title__spacer {
    height: 10rem;
    background: #c9b172;
  }

  .title__img-1 {
    height: 7rem;
  }

  .title__img-2 {
    height: 6rem;
  }

  .title__img-3 {
    height: 2rem;
  }

  .title__img-4 {
    height: 3.5rem;
  }
}

@media (min-width: 744px) {
  .title {
    .title__img-1 {
      height: 10rem;
    }

    .title__img-2 {
      height: 9rem;
    }

    .title__img-3 {
      height: 5rem;
    }

    .title__img-4 {
      height: 8rem;
    }
  }
}

.video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 5rem auto;
}

.attendance {
  max-width: 50rem;
  margin: 0 auto 2rem auto;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #f03f05;
  font-size: 2.5rem;
  line-height: 1.5em;
  text-align: center;
}

.attendance-2 {
  max-width: 50rem;
  margin: 0 auto 3rem auto;
  padding: 1rem 2rem;
  border-top: 1px solid #f03f05;
  border-bottom: 1px solid #f03f05;
  font-size: 2rem;
  line-height: 1.5em;
  text-align: center;
}

.dates {
  max-width: 50rem;
  margin: 0 auto 8rem auto;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem 2rem;
    padding: 2rem 0;
    font-size: 3rem;
    line-height: 1.5em;
    font-weight: 300;

    &:nth-child(1) {
      border-bottom: 1px solid #f03f05;
    }

    span:nth-child(1) {
      flex-grow: 1;
    }

    span:nth-child(2) {
      display: none;
    }
  }

  a {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    height: 5rem;
    padding: 0 2.5rem;
    background: #c9b172;
    border-radius: 5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }
}

@media (min-width: 640px) {
  .dates {
    li {
      flex-direction: row;

      span:nth-child(2) {
        display: block;
        margin: 0 1rem 0 0;
      }
    }
  }
}

.text {
  margin: 0 0 4rem 0;
  font-size: 2.2rem;
  line-height: 1.5em;
}

.text-center {
  text-align: center;
}

.text-medium {
  font-weight: 500;
}

.text-large {
  font-size: 2.5rem;
}

.list {
  margin: 0 0 4rem 0;
  font-size: 2.2rem;
  line-height: 1.5em;

  li {
    position: relative;
    padding: 0 0 0 2rem;

    &:before {
      content: '•';
      position: absolute;
      left: 0;
      top: 0;
    }
  }
}

.usps {
  margin: 0 0 4rem 0;
  padding: 2rem 4rem;
  background: #c9b172;
  font-size: 2rem;
  line-height: 1.5em;
  color: white;

  li {
    position: relative;
    padding: 0 0 0 2rem;

    &:before {
      content: '•';
      position: absolute;
      left: 0;
      top: 0;
    }
  }
}

.quote {
  position: relative;
  margin: 0 0 6rem 0;
  padding: 6rem 0 7rem 0rem;
  text-align: center;

  img {
    position: absolute;
    width: 7rem;
    height: auto;

    &:nth-child(1) {
      top: 0;
      left: 0;
    }

    &:nth-child(2) {
      bottom: 0;
      right: 0;
      rotate: 180deg;
    }
  }

  p {
    font-size: 2.25rem;
    line-height: 1.5em;
    color:#f03f05;
  }

  footer {
    font-size: 1.75rem;
    line-height: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
  }
}

@media (min-width: 640px) {
  .quote {
    padding: 1rem 8rem 2rem 8rem;
  }
}

.guides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem 6rem;
  margin: 0 0 6rem 0;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    img {
      &:nth-child(2) {
        aspect-ratio: 1 / 1;
        width: 160px;
        height: auto;
        border-radius: 100%;
      }

      &:nth-child(3) {
        width: auto;
        height: 6rem;
      }
    }
  }
}

@media (min-width: 768px) {
  .guides {
    flex-direction: row;
  }
}

.program {
  max-width: 50rem;
  margin: 0 auto 2rem auto;
  font-size: 2rem;
  line-height: 1.5em;
  text-align: center;

  li {
    border-bottom: 1px solid #f03f05;
  }

  h2 {
    font-weight: 500;
    text-transform: uppercase;
  }

  p {
    margin: 0 0 2rem 0;
  }

  strong {
    font-weight: 500;
    text-transform: uppercase;
    color: #f03f05;
  }
}

.subtitle {
  margin: 4rem 0 6rem 0;
  font-size: 2.5rem;
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #f03f05;
}

.button {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  height: 5rem;
  padding: 0 2.5rem;
  background: #c9b172;
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.footer {
  padding: 0 4rem 10rem 4rem;
}

.social {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin: 0 auto 8rem auto;

  img {
    width: 6rem;
    height: 6rem;
  }
}

.legal {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 0 auto 4rem auto;

  a {
    color: #1d1d1b;
  }
}

.copyright {
  font-size: 1.75rem;
  text-align: center;
}
