.header {
  margin: 0 auto;
}
.header__navigation {
  padding: 40px 0 40px;
}
.header__navigation-list {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width: 1080px) {
  .header__navigation-list {
    gap: 40px;
  }
}
@media screen and (max-width: 780px) {
  .header__navigation-list {
    gap: 30px;
  }
}
.header__navigation-item {
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 1080px) {
  .header__navigation-item {
    font-size: 15px;
  }
}
.main-navigation:hover {
  background-color: white;
  width: 110px;
  height: 110px;
  backdrop-filter: blur(100px);
  border-radius: 50%;
}
.header__navigation-item:hover {
  background-image: linear-gradient(to right, #D81696 0%, #4995BC 100%);
  /* обрезаем фон по тексту */
  -webkit-background-clip: text;
  /* меняет цвет текста заголовка на прозрачный что бы можно было увидеть градиент*/
  -webkit-text-fill-color: transparent;
}
.header__title {
  /* margin: 0 auto; */
  padding: 70px 0;
  font-size: 50px;
  background-image: linear-gradient(#D81696, #77359A, #4995BC);
  text-align: center;
}
@media screen and (max-width: 780px) {
  .header__title {
    font-size: 42px;
    padding: 80px 50px;
  }
}
@media screen and (max-width: 480px) {
  .header__title {
    font-size: 30px;
    padding: 60px 40px;
  }
}
.cart-img {
  display: block;
  margin: 40px auto;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 780px) {
  .cart-img {
    width: 250px;
    height: 250px;  
  }
}
@media screen and (max-width: 480px) {
  .cart-img {
    width: 250px;
    height: 250px;  
  }
}
.header__description {
  max-width: 688px;
  margin: 0 auto;
  padding-top: 40px;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .header__description {
    font-size: 26px;
    padding: 30px 50px;
  }
}
@media screen and (max-width: 480px) {
  .header__description {
    font-size: 18px;
    padding: 50px 10px;
  }
}

  /* Бургер-меню - мобильная версия */
  .burger-btn {
      display: none;
      position: fixed;
      top: 30px;
      right: 30px;
      width: 40px;
      height: 30px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
      background: transparent;
      border: none;
  }
  
  .burger-line {
      width: 100%;
      height: 4px;
      background: white;
      transition: all 0.3s;
  }
  
  .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
  }
  
  .mobile-nav.active {
      opacity: 1;
      visibility: visible;
  }
  
  .mobile-nav-list {
      list-style: none;
      text-align: center;
  }
  
  .mobile-nav-item {
      margin: 25px 0;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s;
  }
  
  .mobile-nav.active .mobile-nav-item {
      transform: translateY(0);
      opacity: 1;
  }
  
  .mobile-nav-item a {
      color: white;
      text-decoration: none;
      font-size: 24px;
      transition: color 0.3s;
      padding: 10px 20px;
      display: inline-block;
  }
  
  .mobile-nav-item a:hover {
      color: #D81696;
  }
  
  /* Анимация бургера */
  .burger-btn.active .burger-line:nth-child(1) {
      transform: translateY(13px) rotate(45deg);
  }
  
  .burger-btn.active .burger-line:nth-child(2) {
      opacity: 0;
  }
  
  .burger-btn.active .burger-line:nth-child(3) {
      transform: translateY(-13px) rotate(-45deg);
  }
  
  /* Медиазапросы */
  @media (max-width: 780px) {
      /* .header__navigation {
          display: none;
      } */
      
      .burger-btn {
          display: flex;
      }
      
      /* Задержка для анимации пунктов меню */
      .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
      .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
      .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
      .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
      .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }
      
  }
  
  @media (max-width: 480px) {
    .burger-btn {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 25px;
    }

    .mobile-nav-item a {
        font-size: 20px;
    }
  }


.main:before {
    background: url(../img/logo-300.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: -1;
}


@media screen and (max-width: 1400px) {
    .main:before {
        background-size: 75%;
    }
}
@media screen and (max-width: 1080px) {
    .main:before {
        background-size: 90%;
    }
}
@media screen and (max-width: 780px) {
    .main:before {
        background-size: 110%;
    }
}
@media screen and (max-width: 480px) {
    .main:before {
        background-size: 110%;
    }
}


/* POSSIBILITY */
.section__possibility {
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 100px;
  /* background-color: black; */
}
@media screen and (max-width: 480px) {
  .section__possibility {
    padding-bottom: 50px;
  }
}
.section__possibility-title {
  margin: 0 auto 70px;
  font-size: 20px;
  color: #D81696;
  text-align: center;
}
@media screen and (max-width: 780px) {
.section__possibility-title {
    padding: 0 10px;
    }
}
.possibility__project-description_title {
  margin: 0 auto 100px;
  padding: 0 20px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .possibility__project-description_title {
    font-size: 25px;
    margin: 0 auto 80px;

  }
}
@media screen and (max-width: 480px) {
  .possibility__project-description_title {
    font-size: 20px;
    margin: 0 auto 50px;
  }
}
.section__possibility-description {
  margin: 0 auto 130px;
  width: 1000px;
  padding: 20px 147px;
  background-image: linear-gradient(90deg, #D81696, #77359A);
  font-size: 19px;
  font-weight: 400;
  text-align: center;
  border-radius: 300px;
}
@media screen and (max-width: 1080px) {
  .section__possibility-description {
    width: 700px;
    padding: 20px 30px;  
  }
}
@media screen and (max-width: 780px) {
  .section__possibility-description {
    width: 400px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 480px) {
  .section__possibility-description {
    width: 280px;
    border-radius: 40px;
  }
}
.possibility__project-wrapper {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
}
.possibility-items {
  max-width: 1200px;  
  height: 80px;
  padding-left: 50px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
    align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: white;
  background-image: linear-gradient(90deg, #D81696, #77359A);
  border-radius: 50px;
}
@media screen and (max-width: 780px) {
.possibility-items {
    font-size: 25px;
    margin-bottom: 25px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 480px) {
.possibility-items {
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 30px;
  }
}
.possibility-item-description {
  font-size: 20px;
  color: white;
  margin-bottom: 30px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0, 0.3);
}
@media screen and (max-width: 780px) {
.possibility-item-description {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
.possibility-item-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}


/* ПРЕИМУЩЕСТВА */
.section__advantages {
  margin: 0 auto;
}
.section__advantages-title {
  margin: 0 auto 100px;
  padding: 0 20px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1080px) {
.section__advantages-title {
  margin: 0 auto 70px;
  }
}
@media screen and (max-width: 780px) {
.section__advantages-title {
  margin: 0 auto 50px;
  }
}

.advantages__wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  padding: 0 30px 0 20px;
  margin: 0 auto 20px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 1080px) {
.advantages__wrapper {
    padding: 0 30px 20px 20px;
  }
}
.advantages__check {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #D81696;
    display: flex;
    align-items: center;
    justify-content: center;
  margin-right: 40px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .advantages__check {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 1080px) {
  .advantages__check {
  margin-right: 10px;
  }
}
@media screen and (max-width: 780px) {
  .advantages__check {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  }
}
.advantages__check-img {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 780px) {
.advantages__check-img {
    width: 30px;
    height: 30px;
  }
}
.check-description_title {
  font-size: 40px;
}
@media screen and (max-width: 1080px) {
  .check-description_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 780px) {
  .check-description_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 780px) {
  .check-description_title {
    font-size: 18px;
  }
}
.check-description {
  font-size: 20px;
  color: #D81696;
  font-weight: 700;
  margin-left: 70px;
}
@media screen and (max-width: 1080px) {
  .check-description {
    margin-left: 50px;
  }
}
@media screen and (max-width: 780px) {
  .check-description {
    margin-left: 30px;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .check-description {
    margin-left: 20px;
    font-size: 14px;
  }
}






/* УЗНАТЬ СТОИМОСТЬ */
.section__price {
  margin: 0 auto;
  background-color: #000;
  padding-bottom: 60px;
  padding-top: 40px;
}
.section__price-title {
  margin: 0 auto 50px;
  font-size: 70px;
  background-image: linear-gradient(to right, #ff7af4 0%, #5de7ff 100%);
  /* обрезаем фон по тексту */
  -webkit-background-clip: text;
  /* меняет цвет текста заголовка на прозрачный что бы можно было увидеть градиент*/
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 780px) {
  .section__price-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .section__price-title {
    font-size: 40px;
  }
}
.price__form {
  margin: 0 auto;
}
.requiredField {
  display: block;
  margin: 0 auto 50px;
  width: 600px;
  border-bottom: 2px solid white;
  text-align: center;
  color: white;
}
@media screen and (max-width: 780px) {
  .requiredField {
    font-size: 20px;
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .requiredField {
    font-size: 14px;
    width: 200px;
  }
}

.price__form-btn {
  display: block;
  margin: 20px auto;
  padding: 25px 95px;
  font-size: 18px;
  font-weight: 500;
  background-color: #D81696;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .price__form-btn {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 480px) {
  .price__form-btn {
    padding: 10px 10px;
    font-size: 14px;
  }
}

#price_result {
    margin: 0 auto;
    font-size: 14px;
    color: #D81696;
    text-align: center;
    width: 400px;
    padding: 15px;
    font-weight: 800;
}