.body {
  background-color: #000;
  color: #fff;
}

/* ХЭДЭР */
.header {
  margin: 0 auto;
  height: 100vh;
  position: relative;

}
.header__navigation {
  padding: 40px 0 40px;
}
@media screen and (max-width: 780px) {
  .header__navigation {
    display: none;
  }
}
.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;
  }
}
.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;
  }
}
.sketch-img {
  display: block;
  margin: 0 auto;
  width: 400px;
  height: 400px;
}
@media screen and (max-width: 780px) {
.sketch-img {
    width: 300px; 
    height: 300px; 
  }
}
@media screen and (max-width: 480px) {
.sketch-img {
    width: 200px; 
    height: 200px;
  }
}
.header__description {
  max-width: 688px;
  margin: 0 auto;
  padding: 20px 0 30px;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .header__description {
    font-size: 26px;
    padding: 20px 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%;
  }
}

/* ВОЗМОЖНОСТИ */
.section__possibility {
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 150px;
}
@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;
}
.possibility__project-description_title {
  margin: 0 auto 100px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.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-description {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .possibility__project-description {
    flex-direction: column;
    gap: 20px;
  }
}
.project-description-item {
  width: 200px;
  height: 250px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid #fff;
  border-radius: 50px;
}
@media screen and (max-width: 1080px) {
  .project-description-item {
    width: 700px;
    height: 150px;
  }
}
@media screen and (max-width: 780px) {
  .project-description-item {
    width: 400px;
    height: auto;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .project-description-item {
    width: 280px;
    padding: 15px 15px;
    border-radius: 20px;
    font-size: 12px;
  }
}
.project-description-item:hover {
  background-image: linear-gradient( #77359A, #43A3DB);
}


/* ПРЕИМУЩЕСТВА */
.section__advantsges {
  margin: 0 auto;
}
.section__advantsges-title {
  margin: 0 auto 100px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section__advantsges-title {
    margin-bottom: 50px;
  }
}
.section__advantsges-description {
  margin: 0 auto 130px;
  width: 1000px;
  padding: 10px 150px;
  background-image: linear-gradient(90deg, #D81696, #77359A);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  border-radius: 300px;
}
@media screen and (max-width: 1080px) {
  .section__advantsges-description {
    width: 700px;
    padding: 10px 50px;
  }
}
@media screen and (max-width: 780px) {
  .section__advantsges-description {
    width: 400px;
    padding: 10px 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  .section__advantsges-description {
    width: 280px;
    padding: 10px 10px;
    border-radius: 20px;
  }
}
.section__advantsges__sfera {
  width: 980px;
  margin: 0 auto 20px;
  padding-top: 20px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .section__advantsges__sfera {
    width: 700px;
  }
}
@media screen and (max-width: 780px) {
  .section__advantsges__sfera {
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .section__advantsges__sfera {
    width: 280px;
  }
}
.section__advantsges__sfera-examples {
  margin: 0 auto 80px;
  font-size: 18px;
  text-align: center;
}
.advantsges-background{
  background-color: #000;
}
.flex-sketch {
  display: flex;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .flex-sketch {
    width: 700px;
  }
}
@media screen and (max-width: 780px) {
  .flex-sketch {
    width: 400px;
    padding: 0 10px;
  }
}
.advantsges__sferas-1 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #00D0C2);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-1 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-2 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #FF67CB);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-2 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-3 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #A805FF);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-3 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-4 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #43A3DB);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-4 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-5 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #D9D9D9);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-5 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-6 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #843687);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-6 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-7 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #D81696);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-7 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-8 {
  width: 100px;
  height: 100px;
  margin-right: 40px;
  margin-bottom: 30px;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #000000, #20E7D9);
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-8 {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.advantsges__sferas-title {
  font-size: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-title {
    width: 300px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .advantsges__sferas-title {
    width: 170px;
    font-size: 14px;
  }
}
.advantsges__sferas-item {
  width: 1000px;
  font-size: 14px;
  margin: 0 auto 30px;
  background-color: #000;
}
@media screen and (max-width: 1080px) {
  .advantsges__sferas-item {
    width: 700px;
  }
}
@media screen and (max-width: 780px) {
  .advantsges__sferas-item {
    width: 440px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .advantsges__sferas-item {
    width: 280px;
    padding: 0 10px;
  }
}
.advantsges__sferas-item:last-child {
  padding-bottom: 100px;
}
.advantages__using {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px;
  width: 1000px;
  padding: 30px 30px 30px 50px ;
  backdrop-filter: blur(10px);
  border: 5px solid white;
  border-image: linear-gradient(90deg, #D81696, #77359A);
  border-image-slice: 5;
  /* border-radius: 100px; */
}
@media screen and (max-width: 1080px) {
  .advantages__using {
    width: 700px;
    padding: 10px 10px 10px 30px ;
  }
}
@media screen and (max-width: 780px) {
  .advantages__using {
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__using {
    flex-wrap: wrap;
    width: 300px;
    padding: 10px;
    margin: 0 auto 10px;
  }
}
.advantages__using:last-child {
  margin-bottom: 120px;
}
.using-title {
  font-size: 18px;
}
@media screen and (max-width: 1080px) {
  .using-title {
    width: 260px;
    font-size: 16px;
  }
}
@media screen and (max-width: 780px) {
  .using-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .using-title {
    width: 200px;
    padding-bottom: 20px;
    text-align: center;
    margin: 0 auto;
  }
}
.using-info {
  width: 450px;
  font-size: 14px;
}
@media screen and (max-width: 1080px) {
  .using-info {
    width: 390px;
  }
}

@media screen and (max-width: 480px) {
  .using-info {
    font-size: 12px;
    width: 250px;
    text-align: center;
    margin: 0 auto;
  }
}

.reestr-po {
  width: 600px;
  padding: 20px;
  margin: 40px auto;
  background-color: #FF57D5;
  border-radius: 100px;
}


@media screen and (max-width: 600px) {
  .reestr-po {
    width: 95%;
  }
}

.po-reestr {
  color: #000;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  display: block;
}
.reestr-po:hover {
  border: 1px solid white;
}

@media screen and (max-width: 780px) {
  .po-reestr {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .po-reestr {
    font-size: 14px;
  }
}


.section__technical {
  margin: 0 auto;
  color: #000;
}
@media screen and (max-width: 1280px) {
.section__technical {
  padding: 0 10px;
  margin-top: 100px;
  }
}
.functional-requares {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 30px 50px;
  background-image: linear-gradient(45deg, #ffc0cb, #FFA6F3);
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .functional-requares {
  padding: 15px 20px;
  }
}
.functional-requares__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
.functional-requares__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
.functional-requares__title {
    font-size: 16px;
  }
}
.functional-requares__decription {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 780px) {
.functional-requares__decription {
  font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .functional-requares__decription {
  font-size: 14px;
  }
}
.functional-requares__elements {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 90px;
  padding: 30px;
}
@media screen and (max-width: 780px) {
  .functional-requares__elements {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .functional-requares__elements {
    gap: 5px;
    flex-wrap: wrap;
    padding: 10px;
  }
}
.technical-requares {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 30px 50px;
  background-image: linear-gradient(-45deg, #5de7ff, #FFA6F3);
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  .technical-requares {
  padding: 20px 40px;
  }
}
@media screen and (max-width: 1080px) {
  .technical-requares {
  padding: 20px 30px;
  }
}
@media screen and (max-width: 780px) {
  .technical-requares {
  padding: 15px 20px;
  }
}
.technical-requares__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
.technical-requares__title {
  font-size: 16px;
  }
}
.technical-requares__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
.technical-requares__wrapper {
  justify-content: space-around;
  gap: 20px;
  }
}
@media screen and (max-width: 1080px) {
.technical-requares__wrapper {
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  }
}
.technical-requares__wrapper {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 480px) {
.technical-requares__wrapper {
    justify-content: center;
  }
}
.technical-requares__operation-systems {
  max-width: 320px;
}
@media screen and (max-width: 480px) {
.technical-requares__operation-systems { 
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}

.operation-system-img{
  width: 100px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
.operation-system-img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 780px) {
.operation-system-img {
    width: 100px;
    height: 100px;
    align-self: flex-end;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
.operation-system-img {
    width: 60px;
    height: 60px;
    align-self: center;
  }
}
.operation-system {
  max-width: 190px;
  display: inline-block;
}
@media screen and (max-width: 780px) {
.operation-system {
    padding-bottom: 10px;
  }
}
.system-elements__list {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 780px) {
.system-elements__list {
    padding-top: 10px;
  }
}
.system-elements__item {
  font-size: 10px;
}
.technical-requares__browsers {
  max-width: 320px;
}
@media screen and (max-width: 480px) {
.technical-requares__browsers {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  }
}
.technical-requares__img {
  max-width: 100px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1280px) {
.technical-requares__img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 780px) {
.technical-requares__img {
    width: 100px;
    height: 100px;
    align-self: flex-end;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
.technical-requares__img {
    width: 60px;
    height: 60px;
    align-self: center;
  }
}

.working-browsers {
  display: inline-block;
  width: 190px;
}
.browsers-elements__list {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 780px) {
.browsers-elements__list {
    padding-top: 10px;
  }
}
.browsers-elements__item {
  font-size: 12px;
}
.technical-requares__images {
  max-width: 320px;
}
.images__img {
  max-width: 150px;
  padding-bottom: 20px;
}
@media screen and (max-width: 780px) {
.images__img {
  max-width: 100px;
  }
}
@media screen and (max-width: 480px) {
.images__img {
  max-width: 60px;
  }
}
.image__description {
  max-width: 310px;
  font-size: 14px;
}

.instruction-steps {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 30px 50px;
  background-image: linear-gradient(-375deg, #ff67cb, #b3f6ff);
  border-radius: 20px;
}
@media screen and (max-width: 780px) {
.instruction-steps {
  padding: 20px 20px;
  }
}
.instruction-steps__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
.instruction-steps__title {
  font-size: 16px;
  }
}
.rules__downloading {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
.rules__downloading {
  font-size: 12px;
  }
}
.downloading__html {
  padding: 8px 30px;
  background-color: #000;
  border-radius: 15px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
.downloading__html {
  font-size: 12px;
  }
}
.downloading__html__small-description {
  color: #636363;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
.downloading__html__small-description {
  font-size: 12px;
  display: block;
  }
}
.instruction-zip {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
.instruction-zip {
  font-size: 12px;
  }
}
.instruction-zip__description {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.instruction-zip__description {
  font-size: 12px;
  }
}
.instruction-zip__rearchive {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.instruction-zip__rearchive {
  font-size: 12px;
  }
}
.instruction-zip__example {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 10px;
  color: #636363;
}
@media screen and (max-width: 480px) {
.instruction-zip__example {
  font-size: 12px;
  }
}
.instruction-zip__example-btn {
  color: white;
  font-weight: 600;
  background-color: #000;
  border-radius: 10px;
  padding: 5px 8px;
}
.start-on-server {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.instruction-zip__example {
  font-size: 12px;
  }
}
.open-html-file {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.open-html-file {
  font-size: 12px;
  }
}
.open-html-file::before {
  content: url(../img/icons8-html-файл-50.png);
  margin-right: 0.4em;
}
.start-with-no-server {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.start-with-no-server {
  font-size: 12px;
  }
}
.start-in-any-browser {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
.start-in-any-browser {
  font-size: 12px;
  }
}
.fisrt-step-btn {
  color: white;
  font-size: 15px;
  background-color: #000;
  border-radius: 100%;
  padding: 5px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
.fisrt-step-btn {
  font-size: 12px;
    padding: 5px 8px;

  }
}
.fisrt-step {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
.fisrt-step {
  font-size: 12px;
    margin-bottom: 10px;

  }
}
.second-step-btn {
  color: white;
  font-size: 15px;
  background-color: #000;
  border-radius: 100%;
  padding: 5px 10px;
}
@media screen and (max-width: 480px) {
.second-step-btn {
  font-size: 12px;
  padding: 5px 8px;
  margin-bottom: 10px;
  }
}
.second-step {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
.second-step {
  font-size: 12px;

  }
}


/* ДОКУМЕНТАЦИЯ */
.section__documents {
  padding-bottom: 140px;
}
@media screen and (max-width: 1080px) {
  .section__documents {
    padding: 0 40px 140px;
  }
}
.section__documents-title {
  margin: 50px auto;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}
.documents-to-download {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  background-color: #d81696;
  margin-bottom: 15px;
  border-radius: 7px;
  text-align: center;
}

.documents-to-download:hover {
  border: 2px solid white;
}


/* ДЕМО-ВЕРСИЯ */
.section__example {
  margin: 0 auto 150px;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 480px) {
  .section__example {
    margin: 0 auto 50px;
  }
}
.example-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 280px;
}
@media screen and (max-width: 780px) {
  .example-wrap {
    gap: 100px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 780px) {
  .example-wrap {
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto 30px;
    padding: 10px;
  }
}
.example {
  font-size: 50px;
  max-width: 300px;
}
@media screen and (max-width: 780px) {
  .example {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .example {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .example-img {
    width: 80px;
  }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .popup-iframe {
    border: none;
  }

/* УЗНАТЬ СТОИМОСТЬ */
.section__price {
  margin: 0 auto;
  padding-bottom: 60px;
  background-color: #000;
}
.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;
  }
}
/* .name {
}
.email {
}
.tel {
} */
.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;

  }
}

