.main {
  &__title {
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    
    @media (max-width: $h-media-y) {
      font-size: 30px;
    }

    &--block {
      display: flex;
      flex-direction: column;
      align-items: center;

      img {
        display: block;
        max-width: 67px;
        object-fit: contain;
        width: 100%;
        
        @media (max-height: $h-media-x) {
          padding-top: 25px;
        }
      }
    }
  }

  &__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;

    &--title {
      color: $c-white;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 35px;
      font-style: italic;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;

      @media (max-width: $h-media-y) {
        font-size: 30px;
      }
    }
  }

  &__vs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;

    img {
      display: block;
      object-fit: contain;
      
      @media (max-width: $h-media-y) {
        max-width: 90px;
      }
    }
  }

  &__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    span {
      color: $c-white;
      font-family: "Inter", sans-serif;
      font-style: italic;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      &:nth-child(1) {
        font-size: 40px;
      }

      &:nth-child(2) {
        font-size: 20px;
      }

      &:nth-child(3) {
        font-size: 30px;
      }
    }
  }

  &__submit {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  &__btn {
    width: 100%;
    text-decoration: none;
    padding: 25px;
    border-radius: 14px;
    background: $c-green;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.50);
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
  }

  &__price {
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}