.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;
    margin-bottom: 105px;

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

    &-container {
      width: 170px;
      height: 170px;
      border-radius: 40px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.00) 95.29%);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;

      img {
        display: block;
      }

      @media (max-width: $h-media-y) {
        width: 150px;
        height: 150px;
      }
    }

    &-block {
      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;
      }
    }
  }

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