.tb_hero_subtitle {
  font-size: 16px;
  color: #fff;
  letter-spacing: 10px;

  &.normal {
    font-size: 22px;
    max-width: 880px;
    letter-spacing: 0;

    @media screen and (max-width: 480px) {
      font-size: 18px;
    }
  }

  @media screen and (max-width: 768px) {
    font-size: 16px;
    letter-spacing: 6px;
  }

  @media screen and (max-width: 450px) {
    font-size: 14px;
    letter-spacing: 4px;
  }
}

.tb_hero_child {
  height: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;

  @media screen and (max-width: 980px) {
    padding: 0 20px;
  }

  .tb_hero_title {
    font-size: 85px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--headline-color);
    line-height: 51px;
    padding-bottom: 10px;
    text-align: center;

    @media screen and (max-width: 768px) {
      font-size: 50px;
    }

    @media screen and (max-width: 450px) {
      font-size: 30px;
    }
  }
}

.tb_header {
  width: 100%;
  height: fit-content;
  padding: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
  background-color: var(--primary-color);

  p.quotes {
    color: #fff;
    font-size: 18px;
    text-align: center;

    @media screen and (max-width: 480px) {
      font-size: 14px;
    }
  }

  .tb_header_item {
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    background-color: #fff;
    color: #78b8f8;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;

    &:hover {
      background-color: #78b8f8;
      color: #fff;
    }

    &.active {
      background-color: #78b8f8;
      color: #fff;
    }
  }

  .tb_subheader {
    position: absolute;
    height: 60px;
    display: flex;
    bottom: -60px;
    gap: 20px;
    justify-content: center;

    @media screen and (max-width: 480px) {
      width: 100%;
      height: 40px;
      bottom: -40px;
    }

    .tb_subheader_item {
      font-size: 23px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 300px;
      text-transform: uppercase;
      border-radius: 0 0 20px 20px;
      background-color: #fff;
      color: var(--primary-color);
      text-decoration: none;

      @media screen and (max-width: 630px) {
        font-size: 18px;
        width: 230px;
        border-radius: 0 0 15px 15px;
      }

      @media screen and (max-width: 480px) {
        font-size: 12px;
        width: 40%;
      }

      &.active {
        background-color: var(--primary-color);
        color: var(--headline-color);
        pointer-events: none;
      }

      &:hover:not(.active) {
        background-color: var(--primary-dark-color);
        color: var(--headline-color);
      }
    }
  }
}

.tb_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 10px 50px 10px;

  @media screen and (max-width: 450px) {
    padding: 50px 10px 20px 10px;
  }

  .tb_hero_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    @media screen and (max-width: 450px) {
      gap: 0;
    }
  }
}
