.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;
    }
  }

  &__team {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 40px;
    position: relative;

    &::before {
      position: absolute;
      opacity: 0.3;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      content: url('../image/VS.png');
    }

    @media (max-height: $h-media-x) {
      margin-bottom: 40px;
    }

    &-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;

      img {
        display: block;
      }


    }

    &-block {
      position: relative;
      z-index: 4;
      h2 {
        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;
      }

      &:not(:last-child) {
        margin-bottom: 70px;
        @media (max-width: $h-media-y) {
          margin-bottom: 40px;
        }
      }
    }
  }

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

  &__btn {
    width: 100%;
    text-decoration: none;
    padding: 25px;
    border-radius: 14px;
    background: $c-purple;
    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;
  }
}