@font-face {
  font-family: Montserrat;
  src: url(./img/Montserrat-Italic-VariableFont_wght.ttf) format("ttf"),
    url(./img/Montserrat-VariableFont_wght.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  font-family: Montserrat;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

body,
html {
  margin: 0;
  padding: 0;
  height: auto;
  background-color: #111111;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 67px auto;
  padding: 0 40px;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 83px;
}

.header__socials {
  cursor: pointer;
  z-index: 5;
}

.tg {
  margin-left: 30px;
}

.main-content {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 0;
}

.main-content__title {
  font-size: 54px;
  color: white;
  margin-bottom: 33px;
}

.main-content__title span {
  color: #edb500;
}

.main-content__subtitle {
  color: white;
  font-size: 40px;
  margin-bottom: 86px;
}

.main-content__btn-wrapper {
  margin-bottom: 61px;
}

.main-content__btn {
  position: relative;
  padding: 31px 92px;
  font-size: 52px;
  border-radius: 60px;
  font-weight: 700;
  background: linear-gradient(90deg, #ee751f 0%, #f9bf02 50%, #ee751f 100%);
  color: black;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 30px 10px rgba(255, 153, 0, 0.6);
  transition: 0.3s ease;
}

.main-content__btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid #eaee0f8a;
  border-radius: 50px;
  z-index: 0;
}

.main-content__img img {
  position: absolute;
  top: -33%;
  right: -6%;
  z-index: -1;
}

.main-content__btn:hover {
  transform: scale(1.05); /* Небольшое увеличение */
  transition: background 0.3s ease, transform 0.3s ease; /* Плавный переход для обоих свойств */
}

.benefits {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.benefits__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__img {
  margin-bottom: 46px;
}

.benefits__text {
  color: white;
  font-size: 32px;
  text-align: center;
}

.feedback {
  display: flex;
  justify-content: space-between;
}

.feedback__card {
  max-width: 380px;
  border-radius: 16px;
  background-color: #1d1d1d;
  padding: 37px 37px 26px 37px;
}

.name {
  color: white;
  font-size: 22px;
  padding-top: 5px;
}

.feedback__card-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feedback__card-bottom {
  color: white;
  padding-top: 25px;
  font-size: 20px;
}

@media (max-width: 650px) {
  .container {
    margin: 23px auto;
  }
  .logo {
    width: 153px;
  }
  .fb,
  .tg {
    width: 38px;
  }
  .main-content__img img {
    top: -12%;
    right: -13%;
    width: 274px;
  }
  .header {
    margin-bottom: 30px;
  }
  .main-content__title {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 200px;
  }
  .main-content__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .main-content__btn {
    font-size: 32px;
    padding: 15px 30px;
    box-shadow: none;
  }
  .main-content__btn-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
  .money {
    width: 23px;
    height: 31px;
  }
  .ball {
    width: 49px;
    height: 31px;
  }
  .prezent {
    width: 29px;
    height: 31px;
  }
  .benefits {
    margin-bottom: 30px;
  }
  .benefits__img {
    margin-bottom: 15px;
  }
  .benefits__text {
    font-size: 16px;
  }
  .feedback {
    flex-direction: column;
    gap: 15px;
  }
  .main-content-wrapper {
    width: 100%;
  }
  .avatar {
    width: 50px;
  }
  .name {
    font-size: 20px;
  }
  .stars {
    width: 118px;
  }
  .feedback__card {
    padding: 26px 25px 26px 25px;
  }
}
