
.clearfix:before, .clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}

*::-webkit-input-placeholder {
	color: #000;
	opacity: .8;
}

*:-moz-placeholder {
	color: #000;
	opacity: .8;
}
*::-moz-placeholder {
	color: #000;
	opacity: .8;
}
*:-ms-input-placeholder {
	color: #000;
	opacity: .8;
}

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    width: 100%;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    position: relative;
}

.container{
    width: 100%;
    max-width: 1200px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hidden {
  display: none !important;
}

.form{
    max-width: 560px;
    margin: 0 auto;
}

.form-group{
    margin-bottom: 25px;
}

.label{
    display: block;
    margin-bottom: 16px;
    color: #31393d;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.label span{
    display: block;
    padding-top: 5px;
    font-size: 14px;
    opacity: .7;
}

.form__subtitle{
    margin-bottom: 15px;
    color: #31393d;
    font-size: 20px;
}

.check{
    display: flex;
    align-items: center; 
    margin-bottom: 10px;
}

.check label{
    display: flex;
    align-items: center; 
    font-weight: 400;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #31393d;
}

.check label > input[type="checkbox"],
.check label > input[type="radio"]{
    display: none;
}

.check label > span{
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    background: url(../img/check.svg) no-repeat;
    margin-right: 10px;
    position: relative;
}

.check label > input[type="checkbox"]:checked + span,
.check label > input[type="radio"]:checked + span{
    background: url(../img/checked.svg) no-repeat;
}

.check label a{
    color: inherit;
    text-decoration: underline;
}



input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='search']{
    width: 100%;
    height: 60px;
    padding: 0 20px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    transition: .3s;
}

textarea{    
    width: 100%;
    height: 170px;
    padding: 20px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    resize: none;
}

input:focus{
    outline: none;
}

textarea:focus{
    outline: none;
}

.cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col{
    padding: 0 15px;
}

.btn{
    display: inline-block;
    border: medium none;
    background: transparent;
    cursor: pointer;
    transition: .3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-red{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 30px;
    background: #c60e1d;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-red:active,
.btn-red:hover{
    opacity: .888;
}

.btn-orange{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 30px;
    background: #ff3300;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-orange:active,
.btn-orange:hover{
    opacity: .888;
}

.btn-border-red{
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 15px;
    border: 1px solid #c60e1d;
    border-radius: 8px;
    color: #c60e1d;
    font-size: 13px;
    text-transform: uppercase;
}

.btn-border-red:active,
.btn-border-red:hover{
    opacity: .7;
}

.btn-border-orange{
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 15px;
    border: 1px solid #ff3300;
    border-radius: 8px;
    color: #ff3300;
    font-size: 13px;
    text-transform: uppercase;
}

.btn-border-orange:active,
.btn-border-orange:hover{
    opacity: .7;
}

.btn-border-white{
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 45px;
    border: 2px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-border-white:active,
.btn-border-white:hover{
    opacity: .7;
}

.btn-black{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 30px;
    background: #111;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-black:active,
.btn-black:hover{
    opacity: .888;
}

.arrow-red{
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    margin-right: 12px;
    background: url(../img/advantages/arrow.svg) center no-repeat;
}

.form__btn{
    min-width: 220px;
    min-height: 60px;
    font-size: 14px;
}

button:focus{
    outline: none;
}

.slick-dots{
    position: absolute;
    text-align: center;
    bottom: 25px;    
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.slick-dots li{
    width: auto;
    height: auto;
    margin: 0 6px!important;
    padding: 0!important;
}

.slick-dots li:before{
    display: none;
}

.slick-dots li button{
    width: 70px;
    height: 4px;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background-color: #fff;
    border: none;
    opacity: 1;
    text-indent: -9999px;
    transition: .3s;
}

.slick-dots li.slick-active button{
    background-color: rgb(240, 137, 145);;
}

.slick-prev, 
.slick-next{
    width: 60px;
    height: 60px;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    border-radius: 0;
    background-position: center !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-size: contain!important;
}

.slick-prev:before,
.slick-next:before{
    content: none;
    
}

.slick-prev{
    left: 15px;
    background-image: url(../img/serv/prev.svg)!important;
}

.slick-prev:hover{
    opacity: .8;
}

.slick-next{
    right: 15px;
    background-image: url(../img/serv/next.svg)!important;

}

.slick-next:hover{
    opacity: .8;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}

.title-red{
    margin-bottom: 40px;
    color: #c60e1d;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

.title-red.white{
    color: #fff;
}

.title-red.black{
    color: #000;
}

.title-red.center{
    text-align: center;
}

.p-subtitle{
    margin-bottom: 40px;
    color: #31393d;
    font-size: 24px;
    font-weight: 400;
}

.p-subtitle.white{
    color: #fff;
}

.p-subtitle.center{
    text-align: center;
}

.section-dark{
    padding-top: 55px;
    padding-bottom: 55px;
    background: #000;
    position: relative;
    z-index: 1;
}

/**HEADER**/
.header{
    width: 100%;
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: rgb(49, 57, 61);
    box-shadow: rgba(0, 11, 48, 0.3) 0px 10px 40px -2px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    transition: background-color .3s;
}

.header.sticky{
    background-color: rgba(49, 57, 61, 0.9);
}

.header .cols{
    flex-wrap:  nowrap;
    align-items: center;
    justify-content: space-between;
}

.header .logo{

}

.header .logo img{
    width: 120px;
    display: block;
}

.header__phone{
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.header__phone a{
    color: inherit;
}

.nav{

}

.nav > ul{
    display: flex;
    column-gap: 30px;
    list-style: none;
}

.nav > ul > li{
    position: relative;
}

.nav > ul > li > a,
.nav > ul > li > span{
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
}

.nav > ul > li > span{
    cursor: pointer;
}

.nav > ul > li.active > a,
.nav > ul > li:hover > a,
.nav > ul > li:hover > span{
    opacity: .888;
}

.nav > ul > li > a i{
    margin-left: 5px;
    font-size: 10px;
}

.nav > ul ul{
    width: 310px;
    display: none;
    list-style: none;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.nav > ul ul:before{
    content: "";
    border-style: solid;
    border-color: transparent;
    border-width: 10px;
    height: 0;
    width: 0;
    border-bottom-color: #fff;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.nav > ul ul li{
    padding: 3px 0;
}

.nav > ul ul li a{
    display: block;
    padding: 2px 0;
    color: #31393d;
    font-size: 14px;
    font-weight: 500;
}

.nav > ul ul li a:hover{
    opacity: .888;
}

.burger{
    width: 32px;
    height: 32px;
    display: none;
    background: url(../img/header/burger.svg) center no-repeat;
    cursor: pointer;
}

.burger.active{
    background-image: url(../img/header/close.svg);
    background-size: 26px;
}

.menu-mob{
    width: 100%;
    display: none;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: rgb(49, 57, 61);
    box-shadow: rgba(0, 11, 48, 0.3) 0px 10px 40px -2px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
}

.menu-mob .header__phone{
    padding-top: 35px;
    font-size: 20px;
    text-align: center;
}

/**INTRO**/
.intro{
    width: 100%;
    display: block;
    padding-top: 105px;
    padding-bottom: 35px;
    position: relative;
    z-index: 3;
}

.intro__top{

}

.intro__top .col__left{
    width: 49%;
}

.intro__top .col__right{
    width: 51%;
}

.intro__title{
    color: #c60e1d;
    font-size: 42px;
    font-weight: 700;
}

.intro__top .pic{

}

.intro__top .pic img{
    max-width: 100%;
    display: block;
}

.intro__bottom{

}

.intro__bottom .cols{
    align-items: flex-end;
}

.intro__bottom .col__left{
    width: calc(100% - 340px);
    padding-right: 30px;
}

.intro__bottom .col__right{
    width: 340px;
    flex-shrink: 0;
}

.cat{

}

.cat .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.cat .item{
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.cat .item .icon{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cat .item .icon img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.cat .item .title{
    margin-bottom: 14px;
    color: #c60e1d;
    font-size: 20px;
    font-weight: 700;
}

.cat .item .title a{
    color: inherit;
}

.cat .item ul{
    list-style: none;
}

.cat .item ul li{

}

.cat .item ul li a{
    color: #31393d;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    transition: .3s;
}

.cat .item ul li a:hover{
    color: #c60e1d;
}

.intro__app{
    cursor: pointer;
}

.intro__app .arrow{
    width: 102px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro__app .arrow img{
    max-width: 40px;
    max-height: 40px;
    display: block;
    animation: verticalMove 1.5s ease-in-out infinite;
}

@keyframes verticalMove {
    0%   { transform: translateY(0) scale(1); }
    50%  { transform: translateY(12px) scale(1.1); } /* поднимаем вверх */
    100% { transform: translateY(0) scale(1); }
}

.intro__app .in{
    display: flex;
    align-items: center;
}

.intro__app .img{
    width: 102px;
    flex-shrink: 0;
}

.intro__app .img img{
    width: 100%;
    display: block;
}

.intro__app .right{
    flex-grow: 1;
    padding-left: 10px;
}

.intro__app p{
    color: #c60e1d;
    font-size: 14px;
    font-weight: 500;
}

.intro__app p a{
    color: inherit;
}

/**CONTENT**/
.content{
    width: 100%;
    display: block;
    padding-top: 135px;
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.content__center{
    max-width: 760px;
    margin: 0 auto;
}

.content__item{
    margin-bottom: 55px;
}

.content p{
    margin-bottom: 25px;
    color: #31393d;
    font-size: 20px;
    line-height: 1.55;
}

.content p.center{
    text-align: center;
}

.content p a{
    color: inherit;
    text-decoration: underline;
    transition: .3s;
}

.content p a:hover{
    color: #c60e1d;
}

.content__sub{
    color: #31393d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
}

ol{
    padding-left: 18px;
    margin-bottom: 25px;
}

ol li{
    color: #31393d;
    font-size: 20px;
    line-height: 1.55;
}

ol li a{
    color: inherit;
}


/**ACTION**/
.action{
    width: 100%;
    display: block;
    padding-top: 130px;
    padding-bottom: 130px;
    background: #7c828b url(../img/action/pic_1.webp) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.action .left{
    max-width: 460px;
}

.action__title{
    margin-bottom: 20px;
    color: #fff;
    font-size: 37px;
    font-weight: 700;
}

.action__phone{
    margin-bottom: 30px;
    color: #fff;
    font-size: 54px;
    font-weight: 600;
}

.action__phone a{
    color: inherit;
}

.action p{
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

/**SERV**/
.serv-section{
    width: 100%;
    display: block;
    padding-top: 75px;
    padding-bottom: 100px;
    background-image: linear-gradient(0turn, rgba(0, 0, 0, 1) 0%, rgba(49, 57, 61, 1) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.serv .slick-slide{
    transform: scale(.9);
    transition: .3s;
}

.slick-slide.slick-current.slick-center{
    transform: scale(1);
}

.serv .item{
    padding: 0 35px;
}

.serv .item .in{
    height: 488px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.serv .item .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.serv .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.serv .item .front{
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 35px 25px;
    position: relative;
    z-index: 3;
}

.serv .item .vert{
    width: 100%;
}

.serv .item .title{
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.serv .item p{
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
}

.serv .item .go{
    display: inline-flex;
    color: rgb(240, 137, 145);
    font-size: 14px;
}

.serv .slick-dots{
    bottom: -55px;
}


/**ABOUT**/
.about{
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 100px;
    background-image: linear-gradient(0turn, rgba(145, 0, 2, 1) 0%, rgba(198, 14, 29, 1) 100%);
    position: relative;
    z-index: 1;
}

.about__cols{
    display: flex;
    flex-wrap: wrap;
}

.about__left{
    width: 460px;
    flex-shrink: 0;

}

.about__right{
    width: calc(100% - 460px);
    padding-left: 40px;
}

.about .logo{

}

.about .logo img{
    max-width: 100%;
    display: block;
}

.about p{
    margin-bottom: 25px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.about p span{
    font-weight: 700;
}

/**ADVANTAGES**/
.advantages{
    width: 100%;
    display: block;
    padding-top: 150px;
    padding-bottom: 120px;
    background: #f4f7f9;
    position: relative;
    z-index: 1;
}

.advantages .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.advantages .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.advantages .item .in{
    height: 100%;
    padding: 30px 30px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.advantages .item .icon{
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.advantages .item .icon img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.advantages .item .title{
    margin-bottom: 15px;
    color: #c60e1d;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.advantages .item p{
    margin-bottom: 15px;
    color: #31393d;
    font-size: 18px;
    line-height: 1.5;
}

.advantages .item p span{
    font-weight: 500;
}

.advantages .item p a{
    color: inherit;
}

.advantages .item ul{
    padding-left: 18px;
}

.advantages .item ul li{
    color: #31393d;
    font-size: 18px;
    line-height: 1.5;
}

/**APP**/
.app{
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 50px;
    background-image: linear-gradient(0turn, rgba(145, 0, 2, 1) 0%, rgba(198, 14, 29, 1) 100%);
    position: relative;
    z-index: 1;
}

.app__cols{
    display: flex;
    flex-wrap: wrap;
}

.app__left{
    width: 360px;
    flex-shrink: 0;
}

.app__right{
    width: calc(100% - 360px);
    padding-left: 65px;
}

.app .pic{

}

.app .pic img{
    max-width: 100%;
    display: block;
}

.app .right{
    max-width: 460px;
}

.app .title{
    margin-bottom: 30px;
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
}

.app p{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.app ul{
    padding-left: 18px;
}

.app ul li{
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
}

.store{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
    padding-top: 50px;
}

.store__item{
    width: 33.33%;
    padding: 0 7px;
}

.store__item img{
    width: 100%;
    display: block;
}

/**CONTACTS**/
.contacts{
    width: 100%;
    display: block;
    padding-top: 74px;
    padding-bottom: 0;
    background: #31393d;
    position: relative;
    z-index: 1;
}

.contacts__cols{
    display: flex;
    flex-wrap: wrap;
}

.contacts__col{
    width: 50%;
    min-height: 800px;
}

.contacts .map{
    height: 100%;
    background: #ccc;
}

.contacts .right{
    max-width: 600px;
    padding: 55px 15px 55px 75px;
}

.contacts .title{
    margin-bottom: 55px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.contacts p{
    margin-bottom: 35px;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
}

.contacts p span{
    font-weight: 700;
}

.contacts p a{
    color: inherit;
}

.contacts .cols{
    margin: 0 -8px;
}

.contacts .col{
    padding: 10px 8px 10px;
}

.contacts .btn{
    min-width: 230px;
    min-height: 60px;
    border-radius: 100px;
    font-size: 16px;
}

/**GAL**/
.gal{

}

.gal .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.gal .item{
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.gal .item .pic img{
    width: 100%;
    display: block;
}

/**CARD**/
.card{
    width: 100%;
    display: block;
    padding-top: 150px;
    padding-bottom: 120px;
    background: #c60e1d;
    position: relative;
    z-index: 1;
}

.card.dark{
    background: #31393d;
}

.card.gray{
    background: #efefef;
}

.card__cols{
    display: flex;
    flex-wrap: wrap;
}

.card__left{
    width: 560px;
    flex-shrink: 0;
}

.card__right{
    width: calc(100% - 560px);
    padding-left: 45px;
}

.card .pic{
    margin-bottom: 30px;
}

.card .pic img{
    max-width: 100%;
    display: block;
}

.card .title{
    margin-bottom: 20px;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

.card .title.red{
    color: #c60e1d;
}

.card ul{
    padding-left: 18px;
    margin-bottom: 35px;
}

.card ul li{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.card.gray ul li{
    color: #31393d;
}

.card ul li a{
    color: inherit;
    text-decoration: underline;
}

.card p{
    margin-bottom: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.card.gray p{
    color: #31393d;
}

.card p a{
    color: inherit;
    text-decoration: underline;
}

.card__phone{
    margin-bottom: 5px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.card__phone a{
    color: inherit;
}

.card .btn{
    margin-top: 35px;
}

.next-go{
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.next-go i{
    font-size: 28px;
    margin-right: 12px;
}

/**PARK**/
.park{
    width: 100%;
    display: block;
    padding-top: 100px;
    padding-bottom: 55px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.park .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.park .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 45px;
}

.park .item.w25{
    width: 25%;
}

.park .item .pic{
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.park .item .pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.park .item .title{
    margin-bottom: 15px;
    color: #c60e1d;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.park .item .title.dark{
    color: #31393d;
}

.park .item .title a{
    color: inherit;
}

.park .item p{
    color: #31393d;
    font-size: 16px;
    text-align: center;
    line-height: 1.55;
}

.park .item p.price{
    color: #c60e1d;
    font-size: 24px;
    font-weight: 600;
}

.park .item p a{
    color: inherit;
}

/**ORDER**/
.order{
    width: 100%;
    display: block;
    padding-top: 150px;
    padding-bottom: 155px;
    background: #efefef;
    position: relative;
    z-index: 1;
}

.order.dark{
    background: #31393d;
}

.order__phone{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    position: relative;
    color: #c60e1d;
    font-size: 48px;
    font-weight: 700;
}

.order__phone div{
    position: relative;
}

.order__phone .arrow{
    width: 45px;
    position: absolute;
    top: -18px;
    left: -68px;
    z-index: 1;
}

.order__phone span{
    position: relative;
    z-index: 3;
}

.order__phone a{
    color: inherit;
}

.order__bottom{
    display: flex;
    justify-content: center;
    padding-top: 50px;

}

.order__bottom div{
    position: relative;
}

.order__bottom .arrow{
    width: 45px;
    position: absolute;
    top: -18px;
    left: -68px;
    z-index: 1;
}



/**PROFIT**/
.profit{
    width: 100%;
    display: block;
    padding-top: 100px;
    padding-bottom: 55px;
    background: #e0e0e0;
    position: relative;
    z-index: 1;
}

.profit.dark{
    background: #333;
}

.profit .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.profit .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 45px;
}

.profit .item.w25{
    width: 25%;
}

.profit .item .icon{
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.profit .item .icon img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.profit .item .icon.white img{
    filter: brightness(0) invert(100%);
}

.profit .item .title{
    margin-bottom: 15px;
    color: #c60e1d;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.profit .item .title.sm{
    font-size: 18px;
}

.profit.dark .item .title{
    color: #fff;
}

.profit .item .title span{
    font-size: 18px;
}

.profit .item p{
    color: #31393d;
    font-size: 16px;
    text-align: center;
    line-height: 1.55;
}

.profit.dark .item p{
    color: #fff;
}

/**KIDS**/
.kids{
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #c90615;
    position: relative;
    z-index: 1;
}

.kids__cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.kids__col{
    width: 50%;
    padding: 0 15px;
}

.kids .title{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

.kids .title img{
    width: 100px;
    margin-right: 12px;
    border: 2px solid #fff;
    border-radius: 8px;
}

.kids p{
    margin-bottom: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.kids p a{
    color: inherit;
    text-decoration: underline;
}

.kids .pic{
    margin-bottom: 35px;
}

.kids .pic img{
    max-width: 100%;
    display: block;
}

.kids__phone{
    margin-top: 55px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.kids__phone a{
    color: inherit;
}

.kids .cols{
    display: flex;
    align-items: center;
    padding-top: 35px;
}

.kids .col{
    width: 50%;
    padding: 10px 15px 10px;
}

.btn-download{
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6;
}

.btn-download i,
.btn-download__icon{
    margin-right: 10px;
    font-size: 30px;
}

.btn-download__icon{
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.video{

}

.video video{
	width: 100%;
	height: auto;
	display: block;
}

/**USLUGA**/
.usluga{
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #333;
    position: relative;
    z-index: 1;
}

.usluga .col{
    width: 50%;
}

.usluga .pic{
    margin-bottom: 25px;
}

.usluga .pic img{
    width: 100%;
    display: block;
    border-radius: 12px;
}

.usluga .item{
    margin-bottom: 25px;
}

.usluga .title{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.usluga p{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

/**FOOTER**/
.footer{
    width: 100%;
    display: block;
    padding-top: 75px;
    padding-bottom: 75px;
    background: #31393d;
    position: relative;
    z-index: 1;
}

.footer .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .logo{
    margin-bottom: 30px;
}

.footer .logo img{
    width: 120px;
    display: block;
}

.soc{
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 30px;
}

.soc__item i{
    font-size: 24px;
    color: #c3cdd0;
}

.copyright{
    font-size: 12px;
    color: #c3cdd0;
}

.footer-dev{
    margin-top: 18px;
}

.footer-dev__link{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    color: #c3cdd0;
    transition: opacity .2s ease;
}

.footer-dev__link:hover{
    opacity: .85;
    color: #fff;
}

.footer-dev__logo{
    display: block;
    width: 140px;
    height: auto;
    max-width: 100%;
}

.footer-dev__text{
    font-size: 12px;
    line-height: 1.4;
}

.footer-dev__text b{
    font-weight: 700;
    color: #fff;
}

.footer .subtitle{
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer .subtitle a{
    color: inherit;
}

.footer-nav{
    list-style: none;
    margin-bottom: 20px;
}

.footer-nav li{

}

.footer-nav li a{
    color: #c3cdd0;
    font-size: 14px;
    text-decoration: underline;
    transition: .3s;
}

.footer-nav li a:hover{
    color: #c60e1d;
}

.footer .sub{
    margin-bottom: 5px;
    color: #c3cdd0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .sub a{
    color: inherit;
}

/**POPUP*/
.popup{
    width: calc(100vw - 10px);
    max-width: 600px;
    padding: 40px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.fancybox-bg{
    background: rgba(0, 0, 0, .6);
}

.fancybox-content{
    overflow: visible;
}

.fancybox-slide > *{
    padding: 0;
    background: transparent;
}


.pdf-icon{
    width: 72px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 8px;
    background: #e53935;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 88px;
    letter-spacing: 1px;
}

.pdf-title{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.pdf-subtitle{
    font-size: 16px;
    color: #666;
    margin-bottom: 22px;
    text-align: center;
}

.pdf-progress{
    width: 100%;
    height: 10px;
    overflow: hidden;
    background: #eee;
    border-radius: 999px;
}

.pdf-progress-fill{
    width: 0%;
    height: 100%;
    background: #111;
    border-radius: 999px;
    transition: width 0.25s ease;
}

.pdf-percent{
    margin-top: 12px;
    font-size: 14px;
    color: #777;
    text-align: center;
}

.flex-bot{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}