section.s-1 *,
section.s-2 *,
section.s-3 *,
section.s-4 *,
section.s-5 *,
section.s-6 *,
section.s-7 *,
section.s-8 *,
section.s-9 *,
section.s-10 *,
section.s-11 *,
section.s-12 *,
section.s-13 *{
    box-sizing: border-box;
}

section.s-1{
    background: #eee;
}
section.s-1 .wrapper{
    background: url("/imgs/landing/s-1-1.jpg") no-repeat top center;
    background-size: cover;
    text-align: center;
    padding-bottom: 8rem;
    padding-top: 10rem;
}
section.s-1 .wrapper h1{
    font-size: 85px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin: 0;
}
section.s-1 .wrapper div.desc{
    font-size: 20px;
    color: white;
    max-width: 860px;
    text-align: center;
    margin: 2rem auto;
}
section.s-1 .wrapper form{
    display: grid;
    max-width: 360px;
    margin: 0 auto;
}
section.s-1 .wrapper form input{
    font-size: 18px;
    font-weight: bold;
    color: #777777;
    text-align: center;
    padding: 1rem 0;
    border-radius: 7px;
}
section.s-1 .wrapper form button{
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 1rem 0;
    border-radius: 7px;
    margin-top: 1rem;
}
section.s-1 .wrapper form button:disabled{
    opacity: .5;
}
section.s-2 .wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0.5rem;
}
section.s-2 .wrapper > div{
    width: calc((100% / 3) - 4rem);
    margin: 2rem;
}
section.s-2 .wrapper > div .img,
section.s-2 .wrapper > div .img2,
section.s-2 .wrapper > div .img3{
  display: block;
  margin-bottom: 2rem;
  opacity:0; /*Элемент полностью прозрачный (невидимый)*/
  transition: 1s; /*Скорость перехода состояния элемента*/
  animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
  animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
  animation-delay: 1s; /* Задержка перед началом */
}
section.s-2 .wrapper > div .img img,
section.s-2 .wrapper > div .img2 img,
section.s-2 .wrapper > div .img3 img{
    margin: 0 auto;
    height: 60px;
}

section.s-2 .wrapper > div .img2{
  animation-delay: 2s; /* Задержка перед началом */
}

section.s-2 .wrapper > div .img3{
  animation-delay: 3s; /* Задержка перед началом */
}

section.s-2 .wrapper > div .img-big img,
section.s-2 .wrapper > div .img2-big img,
section.s-2 .wrapper > div .img3-big img {
  margin: 0 auto;
  height: 200px;
  display: block;
}

section.s-2 .wrapper > div .img-4pic {
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
}
section.s-2 .wrapper > div .img-4pic img {
  margin: 0 auto;
  height: 100px;
  display: block;
}

@keyframes show{
0%{
opacity:0;
}
100% {
opacity:1;
}
}


section.s-2 .wrapper > div .title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
section.s-2 .wrapper > div .title strong{
    display: inline-block;
    border: 2px solid #E9AE30;
    border-radius: 7px;
    padding: 0 .4rem;
}
section.s-2 .wrapper > div .text{
    font-size: 14px;
    text-align: center;
}
section.s-3{
    background: #eee;
}
section.s-3 .wrapper{
    background: #212529 url("/imgs/landing/s-3-1.png") no-repeat center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section.s-3 .wrapper > div{
    padding: 3rem 0 3rem 7rem;
}
section.s-3 .wrapper h2{
    color: white;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 3rem;
}
section.s-3 .wrapper h2:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 97px;
    height: 5px;
    background: #E9AE30;
    border-radius: 10px;
}
section.s-3 .wrapper p{
    color: white;
    margin-bottom: 2rem;
    font-size: 20px;
}
section.s-3 .wrapper h3{
    color: white;
    text-transform: uppercase;
}
section.s-3 .wrapper ul{
    padding-left: 0;
}
section.s-3 .wrapper ul li{
    color: white;
}




section.s-31{
    background: #eee;
}
section.s-31 .wrapper{
    background: #212529 url("/imgs/landing/s-5-31.jpg") no-repeat center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section.s-31 .wrapper > div{
    padding: 3rem 0 3rem 7rem;
}
section.s-31 .wrapper h2{
    color: white;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 3rem;
}
section.s-31 .wrapper h2:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 97px;
    height: 5px;
    background: #E9AE30;
    border-radius: 10px;
}
section.s-31 .wrapper p{
    color: white;
    margin-bottom: 2rem;
    font-size: 20px;
}
section.s-31 .wrapper h3{
    color: white;
    text-transform: uppercase;
}
section.s-31 .wrapper ul{
    padding-left: 0;
}
section.s-31 .wrapper ul li{
    color: white;
}



section.s-4 .wrapper{
    background: url("/imgs/landing/s-4-1.png") no-repeat center;
    background-size: cover;
    padding: 3rem 7rem;
}
section.s-4 .wrapper > div:first-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.s-4 .wrapper > div:first-child span{
    background: #E9AE30;
    border-radius: 7px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    padding: .2rem .5rem;
    margin-bottom: 2rem;
    display: inline-block;
}
section.s-4 .wrapper > div:first-child h2{
    margin-bottom: 2rem;
}
section.s-4 .wrapper > div:first-child p{
    color: #212529;
    font-size: 20px;
    margin-bottom: 2rem;
}
section.s-4 .wrapper > h3{
    margin-top: 3rem;
}
section.s-4 .wrapper > div:last-child{
    background: #212529;
    border-radius: 14px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 2rem;
    position: relative;
}
section.s-4 .wrapper > div:last-child:before{
    content: "";
    position: absolute;
    right: 3rem;
    background: url("/imgs/landing/s-4-2.png") no-repeat center;
    width: 329px;
    height: 329px;
}
section.s-4 .wrapper > div:last-child ul li{
    color: white;
    margin-bottom: .2rem;
}
section.s-4 .wrapper > div:last-child > div:last-child{
    text-align: center;
}
section.s-4 .wrapper button{
    padding: 16px 30px;
    border-radius: 7px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    background: #E9AE30;
    border: none;
    outline: none;
    transition: .3s;
    cursor: pointer;
}
section.s-4 .wrapper button:hover{
    background: #c08916;
}
section.s-4 .wrapper button br{
    display: none;
}
section.s-5{
    background: #eee;
}
section.s-5 .wrapper{
    background: #212529 url("/imgs/landing/s-5-1.png") no-repeat center;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}
section.s-5 .wrapper > div{
    padding: 3rem 0 3rem 7rem;
}
section.s-5 .wrapper h2{
    color: white;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 3rem;
}
section.s-5 .wrapper h2:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 97px;
    height: 5px;
    background: #E9AE30;
    border-radius: 10px;
}
section.s-5 .wrapper p{
    color: white;
    margin-bottom: 2rem;
    font-size: 20px;
}
section.s-5 .wrapper h3{
    color: white;
    text-transform: uppercase;
}
section.s-5 .wrapper ul{
    padding-left: 0;
}
section.s-5 .wrapper ul li{
    color: white;
}
section.s-6 .wrapper{
    padding: 4rem 7rem;
    background: #F8F9FA;
}
section.s-6 .wrapper h2{
    text-align: center;
}
section.s-6 .wrapper .tags{
    margin-top: 3rem;
    text-align: center;
}
section.s-6 .wrapper .tags > div{
    background: #E9AE30;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    padding: .6rem 1.8rem;
    color: white;
    margin-right: 1rem;
    margin-bottom: 1rem;
    width: auto;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    transition: .2s;
    cursor: pointer;
}
section.s-6 .wrapper .tags>div:active{
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .13);
}
section.s-6 .wrapper .tags>div:hover,
section.s-6 .wrapper .tags > div.active{
    background: #212529;
}
section.s-6 .wrapper .stuff{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
section.s-6 .wrapper .stuff > div{
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    display: none;
}
section.s-6 .wrapper .stuff > div.show{
    display: block;
}
section.s-6 .wrapper .stuff > div .img{
    border-bottom: 1px solid #ececec;
    height: 240px;
    border-radius: 14px 14px 0 0;
}
section.s-6 .wrapper .stuff > div .img img{
    margin: 0 auto;
}
section.s-6 .wrapper .stuff > div > div:last-child{
    padding: 2rem;
}
section.s-6 .wrapper .stuff > div > div:last-child .title{
    font-size: 20px;
    color: #212529;
}
section.s-6 .wrapper .stuff > div > div:last-child .price{
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #212529;
    padding: .5rem 1.2rem;
    border-radius: 7px;
    display: inline-block;
    margin: 1rem 0;
}
section.s-6 .wrapper .stuff > div > div:last-child .desc{
    font-size: 14px;
    font-weight: bold;
    color: #212529;
}
section.s-6 .wrapper .propose{
    background: #FFFFFF;
    border: 2px solid #E9AE30;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    margin-top: 2rem;
}
section.s-6 .wrapper .propose .text{
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    color: #212529;
}
section.s-6 .wrapper .propose button{
    border-radius: 7px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
}
section.s-7{
    background: #eee;
}
section.s-7 .wrapper{
    background: #212529;
    padding: 4rem 7rem;
}
section.s-7 .wrapper h2{
    color: white;
    text-align: center;
}
section.s-7 .wrapper > div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    text-align: center;
    margin-top: 5rem;
}
section.s-7 .wrapper > div > div{
    overflow: hidden;
    position: relative;
}
section.s-7 .wrapper > div > div > img{
    margin: 0 auto;
}
section.s-7 .wrapper > div > div > div{
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
section.s-7 .wrapper > div > div > div.hidden{
    position: absolute;
    top: 100%;
    transition: top .3s;
    background: #e9ae30;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    font-size: 14px;
}
section.s-7 .wrapper > div > div:hover > div.hidden{
    top: 0;
}
section.s-8 .wrapper{
    padding: 3rem 7rem;
}
section.s-8 .wrapper h2{
    text-align: center;
}
  

section.s-8 .wrapper .reviews{
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 2rem;
    margin: 2rem 0;
}
section.s-8 .wrapper .reviews > div:first-child > div:first-child img{
    margin: 0 auto;
    margin-bottom: 2rem;
}
section.s-8 .wrapper .reviews > div:last-child > div:first-child{
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dddddd;
    position: relative;
}
section.s-8 .wrapper .reviews > div:last-child > div:first-child:after{
    content: "";
    position: absolute;
    bottom: -1px;
    right: -2rem;
    height: 1px;
    background: #dddddd;
    width: 2rem;
}
section.s-8 .wrapper .reviews .slider .slick-slide > div{
    font-size: 14px;
    text-align: center;
}
section.s-8 .wrapper .reviews .slider .slick-slide div.sign{
    margin-top: 1rem;
}
section.s-8 .wrapper .reviews .slider .slick-slide div.sign span{
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    display: block;
}
section.s-8 .wrapper .reviews .slider .slick-slide div.sign span:last-child{
    font-size: 11px;
    color: #777777;
}
.reviews .slick-next:before,
.reviews .slick-prev:before{
    color: transparent;
}
.reviews .slick-prev:before{
    background: url("/imgs/landing/s-8-left.svg") no-repeat center;
}
.reviews .slick-next:before{
    background: url("/imgs/landing/s-8-right.svg") no-repeat center;
}
section.s-8 .wrapper .gratefulness{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}
section.s-8 .wrapper .gratefulness a{
    text-decoration: none;
    text-align: center;
}
section.s-8 .wrapper .gratefulness a img{
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
section.s-8 .wrapper .gratefulness .title{
    font-size: 11px;
    color: #212529;
    text-decoration: none;
    text-align: center;
}



section.s-9 .wrapper{
    padding: 3rem 7rem;
    background: #F8F9FA;
    width: 1240px;
    box-sizing: border-box;
}
section.s-9 .wrapper .price-list{
    margin-top: 8rem;
}
section.s-9 .wrapper .price-list .row{
    display: grid;
    grid-template-columns: auto 166px 166px 166px 166px;
}
section.s-9 .wrapper .price-list .row > div{
    border: 1px solid #f1f1f1;
    border-left: none;
    border-top: none;
    background: white;
    padding: .5rem 1rem;
}
section.s-9 .wrapper .price-list-1>div img{
    width: 100%;
}
section.s-9 .wrapper .price-list-1>div:nth-child(1) img{
    width: auto;
}
section.s-9 .wrapper .price-list .row > div:nth-child(2){
    position: relative;
}
section.s-9 .wrapper .price-list .row > div:nth-child(2):before{
    position: absolute;
    content: "";
    left: -8px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to right,transparent 0%,rgba(0,0,0,.05) 100%);
}
section.s-9 .wrapper .price-list .row.first > div:nth-child(2):before{
    content: none;
}
section.s-9 .wrapper .price-list .row > div:last-child{
    position: relative;
}
section.s-9 .wrapper .price-list .row > div:last-child:before{
    position: absolute;
    content: "";
    right: -8px;
    top: 0;
    bottom: -1px;
    width: 8px;
    background: linear-gradient(to left,transparent 0%,rgba(0,0,0,.05) 100%);
}
section.s-9 .wrapper .price-list .row.first > div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    font-weight: bold;
    font-size: 12px;
    color: #212529;
    background: white;
    position: relative;
}
section.s-9 .wrapper .price-list .row.first > div:nth-child(3),
section.s-9 .wrapper .price-list .row.first > div:nth-child(5){
    border-radius: 0;
}
section.s-9 .wrapper .price-list .row.first > div .tooltip{
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    font-size: 11px;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: .5rem 1rem;
    background: #FDC244;
    border-radius: 7px 7px 0 0;
}
section.s-9 .wrapper .price-list .row.first > div .tooltip strong{
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #212529;
    width: 100%;
}
section.s-9 .wrapper .price-list .row.first .black{
    background: #212529;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 7px 7px 0 0;
}
section.s-9 .wrapper .price-list .row.first > div:first-child{
    border-radius: 7px 7px 0 0;
    justify-content: flex-start;
}
section.s-9 .wrapper .price-list .row:nth-child(2) > div{
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: .5rem 1rem;
}
section.s-9 .wrapper .price-list .row:nth-child(2) > div button{
    font-size: 14px;
    color: white;
    border-radius: 7px;
    padding: .5rem 1rem;
    width: 100%;
}
section.s-9 .wrapper .price-list .row:nth-child(3) > div{
    padding: 0;
}
section.s-9 .wrapper .price-list .row:nth-child(4) > div{
    font-size: 14px;
}
section.s-9 .wrapper .price-list .row:nth-child(4) > div strong{
    display: block;
    font-size: 16px;
}
section.s-9 .wrapper .price-list .row:nth-child(5) > div{
    font-size: 13px;
    color: #35393D;
}
section.s-9 .wrapper .price-list .row:nth-child(6).span{
    display: grid;
    grid-template-columns: 1fr;
}
section.s-9 .wrapper .price-list .row:nth-child(6).span > div{
    background: #212529;
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: 1rem;
}
section.s-9 .wrapper .price-list .row:nth-child(7) > div,
section.s-9 .wrapper .price-list .row:nth-child(8) > div,
section.s-9 .wrapper .price-list .row:nth-child(9) > div,
section.s-9 .wrapper .price-list .row:nth-child(10) > div,
section.s-9 .wrapper .price-list .row:nth-child(11) > div,
section.s-9 .wrapper .price-list .row:nth-child(12) > div,
section.s-9 .wrapper .price-list .row:nth-child(13) > div,
section.s-9 .wrapper .price-list .row:nth-child(14) > div{
    display: flex;
    align-items: center;
}
section.s-9 .wrapper .price-list .row:nth-child(13) > div{
    font-size: 14px;
}
section.s-9 .wrapper .price-list .row:nth-child(14) > div{
    border-bottom: 5px solid #212529;
}
section.s-9 .wrapper .price-list .row > div:nth-child(2),
section.s-9 .wrapper .price-list .row > div:nth-child(4){
    background: #F8F9FA;
}
section.s-9 .wrapper .price-list .row > div:first-child{
    color: #777777;
    font-size: 14px;
    padding: .5rem 1rem;
    background: white;
    font-weight: normal;
}
section.s-9 .wrapper .price-list-1,
section.s-9 .wrapper .price-list-2{
    display: grid;
    grid-template-columns: auto 166px 166px 166px 166px;
    gap: 1px;
}
section.s-9 .wrapper .price-list-1{
    margin-top: 8rem;
}
section.s-9 .wrapper .price-list-1 > div{
    box-shadow: 0 0 0 1px #eeeeee;
    font-size: 13px;
    color: #35393D;
    padding: 0.5rem 1rem;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(1){
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    justify-content: flex-start;
    align-items: center;
    color: #777777;
    font-size: 14px;
    padding: 0.5rem 1rem;
    background: white;
    font-weight: normal;
    box-shadow: none;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(2),
section.s-9 .wrapper .price-list-1 > div:nth-child(3),
section.s-9 .wrapper .price-list-1 > div:nth-child(4),
section.s-9 .wrapper .price-list-1 > div:nth-child(5){
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 12px;
    color: #212529;
    background: white;
    position: relative;
    box-shadow: none;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(2),
section.s-9 .wrapper .price-list-1 > div:nth-child(4){
    background: #212529;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 7px 7px 0 0;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(3) .tooltip,
section.s-9 .wrapper .price-list-1 > div:nth-child(5) .tooltip{
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    font-size: 11px;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    background: #FDC244;
    border-radius: 7px 7px 0 0;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(3) .tooltip strong,
section.s-9 .wrapper .price-list-1 > div:nth-child(5) .tooltip strong{
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #212529;
    width: 100%;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(5n + 1){
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    color: #777777;
    font-size: 14px;
    padding: 0.5rem 1rem;
    background: white;
    font-weight: normal;
    position: relative;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(5n + 1):before{
    content: "";
    position: absolute;
    left: -1px;
    top: 1px;
    bottom: 1px;
    width: 1px;
    background: white;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(7),
section.s-9 .wrapper .price-list-1 > div:nth-child(8),
section.s-9 .wrapper .price-list-1 > div:nth-child(9),
section.s-9 .wrapper .price-list-1 > div:nth-child(10){
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 0.5rem 1rem;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(7) button,
section.s-9 .wrapper .price-list-1 > div:nth-child(8) button,
section.s-9 .wrapper .price-list-1 > div:nth-child(9) button,
section.s-9 .wrapper .price-list-1 > div:nth-child(10) button{
    font-size: 14px;
    color: white;
    border-radius: 7px ;
    padding: 0.5rem 1rem;
    width: 100%;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(17),
section.s-9 .wrapper .price-list-1 > div:nth-child(18),
section.s-9 .wrapper .price-list-1 > div:nth-child(19),
section.s-9 .wrapper .price-list-1 > div:nth-child(20){
    font-size: 14px;
    padding: 0.5rem 1rem;
}
section.s-9 .wrapper .price-list-1 > div:nth-child(17) strong,
section.s-9 .wrapper .price-list-1 > div:nth-child(18) strong,
section.s-9 .wrapper .price-list-1 > div:nth-child(19) strong,
section.s-9 .wrapper .price-list-1 > div:nth-child(20) strong{
    display: block;
    font-size: 16px;
}
section.s-9 .wrapper .work-title{
    background: #212529;
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: .5rem 1rem;
}
section.s-9 .wrapper .price-list-2 > div{
    padding: .5rem 1rem;
    box-shadow: 0 0 0 1px #eeeeee;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.s-9 .wrapper .price-list-2 > div:nth-child(5n + 1){
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    color: #777777;
    font-size: 14px;
    padding: 0.5rem 1rem;
    background: white;
    font-weight: normal;
    position: relative;
}
section.s-9 .wrapper .price-list-2 > div:nth-child(5n + 1):before{
    content: "";
    position: absolute;
    left: -1px;
    top: 1px;
    bottom: 1px;
    width: 1px;
    background: white;
}
section.s-9 .wrapper .price-list-2 > div:nth-child(n + 36){
    border-bottom: 3px solid #212529;
    position: relative;
}
section.s-9 .wrapper .price-list-2 > div:nth-child(n + 36):after{
    content: "";
    position: absolute;
    right: -1px;
    width: 1px;
    bottom: -3px;
    height: 3px;
    background: #212529;
    z-index: 5;
}
section.s-10{
    background: #eee;
}
section.s-10 .wrapper{
    padding: 3rem 7rem;
    background: #212529;
}
section.s-10 .wrapper h2{
    color: white;
    margin-bottom: 2rem;
}
section.s-10 .wrapper .tabs{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
section.s-10 .wrapper .tabs > div{
    border-radius: 7px;
    border: 2px solid white;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-right: 1rem;
    padding: .45rem 1.8rem;
    padding-left: 3.5rem;
    background: url("/imgs/landing/s-10-1.svg") no-repeat left 1rem center;
    cursor: pointer;
}
section.s-10 .wrapper .tabs > div:last-child{
    background: url("/imgs/landing/s-10-2.svg") no-repeat left 1rem center;
}
section.s-10 .wrapper .tabs > div.active{
    background-color: #E9AE30;
    border-color: #E9AE30;
}
section.s-10 .wrapper .tabs-data{
    margin-bottom: 3rem;
}
section.s-10 .wrapper .tabs-data > div{
    display: none;
}
section.s-10 .wrapper .tabs-data > div button{
    padding: 16px 30px;
    border-radius: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}
section.s-10 .wrapper .tabs-data > div.active{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
section.s-10 .wrapper .tabs-data > div.active p{
    color: white;
    font-size: 20px;
    margin-bottom: 2rem;
}
section.s-10 .wrapper .tabs-data > div.active > div:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 165px 165px;
    gap: 1rem;
}
section.s-11 .wrapper{
    padding: 3rem 7rem;
}
section.s-11 .wrapper h2{
    text-align: center;
}

section.s-11 .wrapper .stuff{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}
section.s-11 .wrapper .stuff > div{
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
}
section.s-11 .wrapper .stuff > div .img{
    border-bottom: 1px solid #ECECEC;
}
section.s-11 .wrapper .stuff > div .img img{
    margin: 0 auto;
    max-width: 100%;
    display: block;
}
section.s-11 .wrapper .stuff > div .wrap-props{
    padding: 1rem 2rem;
}
section.s-11 .wrapper .stuff > div .title{
    font-size: 24px;
    line-height: 27px;
    color: #212529;
    margin-bottom: 1rem;
}
section.s-11 .wrapper .stuff > div .desc{
    font-size: 12px;
    line-height: 16px;
    color: #212529;
}
section.s-11 .wrapper .stuff > div .props{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0;
    background: #f8f9fa;
    border-radius: 0 7px 7px 0;
}
section.s-11 .wrapper .stuff > div .props > div{
    /*min-height: 80px;*/
    padding: .8rem .6rem;
}
section.s-11 .wrapper .stuff > div .props > div:first-child{
    border: 1px solid #E9AE30;
    border-radius: 7px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    background: white;
}
section.s-11 .wrapper .stuff > div .props > div:last-child{
    background: #F8F9FA;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
section.s-11 .wrapper .stuff > div .props > div:last-child span{
    display: block;
    line-height: 14px;
}
section.s-11 .wrapper .stuff > div .props > div:last-child span:first-child{
    color: #212529;
    font-size: 12px;
    margin-bottom: -14px;
}
section.s-11 .wrapper .stuff > div .props > div:last-child span:last-child{
    color: #212529;
    font-size: 14px;
}
section.s-11 .wrapper .stuff > div button{
    background: #212529;
    padding: 16px 30px;
    color: white;
    font-size: 14px;
    border-radius: 7px;
    width: 100%;
}
section.s-11 .wrapper .stuff>div button:hover{
    background: #303438;
}
section.s-12 .wrapper{
    padding: 3rem 7rem;
}
section.s-12 .wrapper > div{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
}
section.s-12 .wrapper h2{
    position: relative;
    padding-bottom: 2rem;
}
section.s-12 .wrapper h2:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 97px;
    height: 5px;
    background: #E9AE30;
    border-radius: 10px;
}
section.s-12 .wrapper > div > div:last-child > div{
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    margin-bottom: 1rem;
    color: #212529;
    font-size: 18px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity, transform .3s;
}
section.s-12 .wrapper > div > div:last-child > div.show{
    transform: translateY(0);
    opacity: 1;
}
section.s-12 .wrapper > div > div:last-child > div:nth-child(even):before{
    content: "";
    position: absolute;
    background: url("/imgs/landing/s-12-1.svg") no-repeat center;
    width: 14px;
    height: 65px;
    left: 7px;
    top: -45px;
    z-index: 100;
}
section.s-12 .wrapper > div > div:last-child > div:nth-child(odd):before{
    content: "";
    position: absolute;
    background: url("/imgs/landing/s-12-1.svg") no-repeat center;
    width: 14px;
    height: 65px;
    left: 43px;
    top: -47px;
    z-index: 100;
    transform: rotate(180deg);
}
section.s-12 .wrapper > div > div:last-child > div:first-child:before{
    content: none;
}
section.s-12 .wrapper > div > div:last-child > div > div:first-child span{
    background: #E9AE30;
    border-radius: 7px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.s-12 .wrapper > div > div:last-child > div > .text{
    font-size: 16px;
    line-height: 18px;
}
section.s-13{
    background: #eee;
}
section.s-13 .wrapper{
    padding: 1rem 7rem;
}
section.s-13 .wrapper h2{
    text-align: center;
    margin-bottom: 3rem;
}
section.s-13 .wrapper h3{
    padding: 1rem 2rem;
    padding-left: 4rem;
    background: #cccccc;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
}
section.s-13 .wrapper h3:before{
    content: "";
    position: absolute;
    left: 1rem;
    top: calc(50% - 16px);
    height: 32px;
    width: 32px;
    background: url("/imgs/landing/s-13-1.svg") no-repeat center;
    transform: rotate(180deg);
    transition: transform .2s;
}
section.s-13 .wrapper h3.ui-state-active:before{
    transform: rotate(270deg);
}
section.s-13 .wrapper .q-a .text{
    padding: 1rem 2rem;
}

section.s-13 .wrapper ul{
    padding: 0;
}
section.s-13 .wrapper ul li{
    list-style-type: none;
    padding-left: 2rem;
    background: url("/imgs/landing/li.svg") no-repeat left top 2px;
    margin-bottom: .5rem;
    font-size: 16px;
}

section.s-map{
    min-height: 476px;
    position: relative;
}
section.s-map .wrapper{
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 600px);
}
section.s-map .text{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 350px;
    background: white;
    font-size: 1.2em;
    padding: 2em 3em;
    text-shadow: 0 0 0;
    z-index: 10;
}
section.s-map .text .title{
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 2rem;
}
section.s-map .text a{
    text-decoration: none;
    color: black;
}
section.s-map .text > div:last-child{
    margin-top: 2rem;
}
section.s-map .map > ymaps{
    min-width: 100%;
}

.popup,
.popup-2{
    background: #212529;
    border-radius: 14px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.popup .body,
.popup-2 .body{
    padding: 2rem;
}
.popup .title,
.popup-2 .title{
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-align: center;
}
.popup .desc,
.popup-2 .desc{
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}
.popup button,
.popup-2 button{
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 1rem 0;
    border-radius: 7px;
    width: 100%;
}
.popup > button,
.popup-2 > button{
    outline: none;
    background: url("/imgs/landing/close-menu.svg") no-repeat center;
    width: 21px;
    height: 21px;
    position: absolute;
    right: 2rem;
    top: 2rem;
}
.popup .form,
.popup-2 .form{
    margin: 0 auto;
    width: 360px;
}
.popup .form > div,
.popup-2 .form > div{
    margin-bottom: 1rem;
}
.popup-2 .form > div{
    display: flex;
    align-items: center;
}
.popup-2 .form > div:last-child{
    display: block;
}
.popup input,
.popup-2 input{
    font-size: 18px;
    font-weight: bold;
    color: #777777;
    padding: 1rem;
    border-radius: 7px;
    width: 100%;
}
.popup-2 input{
    width: auto;
}
.popup input.error,
.popup-2 input.error{
    background: #ef9a9a url("/imgs/landing/error.svg") no-repeat right 1rem center;
    background-size: 20px;
}
.popup textarea,
.popup-2 textarea{
    font-size: 18px;
    font-weight: bold;
    color: #777777;
    padding: 1rem;
    border-radius: 7px;
    width: 100%;
    height: 160px;
    resize: none;
}
.popup-2  label{
    color: white;
    margin-left: .5rem;
    font-size: 18px;
    font-weight: bold;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}