.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: 25px;
    }

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

      img {
        display: block;
        max-width: 74px;
        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: 30px;
      font-style: italic;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;

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

  &__date {
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.20) 51.04%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;

    span {
      &:nth-child(1) {
        margin-right: 10px;
        color: $c-white;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 40px;
        font-style: italic;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        @media (max-width: $h-media-y) {
          font-size: 20px;
        }
      }
      &:nth-child(2) {
        color: $c-white;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-style: italic;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        @media (max-width: $h-media-y) {
          font-size: 17px;
        }
      }
    }
  }

  &__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;
      }
    }
  }

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

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

    }
  }

  &__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;
  }
}