.main {
  &__title {
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 100px;
    margin-top: 20px;

    @media (max-width: $h-media-y) {
      font-size: 40px;
    }
    @media (max-height: $h-media-x) {
      margin-bottom: 20px;
    }
  }

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

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

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

    &-container {
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        display: block;
      }
    }

    &-block {
      position: relative;
      z-index: 4;
      display: flex;
      align-items: center;

      &:last-child {
        margin-left: auto;

        img {
          margin-left: 20px;
        }
      }

      &:first-child {
        img {
          margin-right: 20px;
        }
      }


      h2 {
        max-width: 200px;
        color: $c-white;
        text-align: left;
        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-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;
  }
}