/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
body{
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #2a2833;
    font-size: 18px;
    font-weight: 400;
}
body.active{
    overflow: hidden;
}
*{
    outline: none!important
}
/*
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -7px rgba(0,0,0,0.2);
box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
*/

.notification {
    background-color: #662d53;
    color: white;
    padding: 12px;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 34px rgba(0,0,0,.15); */
    border-radius: 6px;
}

/* .notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #d32e3f;
    color: white;
    padding: 34px;
    font-size: 20px;
    line-height: 1.6;
    opacity: 1;
    transition: opacity 1s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 34px rgba(0,0,0,.15);
    border-radius: 20px;
    z-index: 100;
} */

header{

    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
        
}
header:before{
    z-index: 0;
    position: absolute;
    content: "";
    
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    border-bottom: 4px solid rgb(109 135 231 / 23%);
    
}
.nav{
    padding: 10px 0;
    width: 100%;
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
}
.logo{

    display: table;
    align-items: center;
    color: #007bff;
    font-size: 28px;
    line-height: 1;
}
.logo small{
    color: #2a2833
}
.logo img{
    display: table-cell;
    height: 60px;
    margin-right: 10px;
	margin-top: 6px;
    
}
.logo div{
    vertical-align: middle;
    display: table-cell;
}

.logo div div{
    display: block;
    
    font-weight: 900;
}
.logo small{
    display: block;
    text-align: center;
    font-size: 0.4em;
}
.contact{

    display: inline-block;
    text-align: center;
}
.graph{
	text-align: end;
    font-size: 12px;
	padding-bottom: 3px;
}
.tel{
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 0 -50px, 0 50%;
    background-image: url(../img/icons/phone.svg) , url(../img/icons/phone.svg);
    background-size: 20px;
    font-size: 22px;
	font-weight: 700;
    /* color: black; */
    padding-left: 20px;
    line-height: 1;
    transition: all 0.3s
}
.col-bl a{
  color: black;  
}
.col-bl a:hover {
    color: #007bff;
}
.tel:hover{
    background-position: 0 50%, 0 50px;
}
.recall-two{
	text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    border-bottom: 1px dashed;
	
}
.recall{
    line-height: 1;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.5s;
	text-align: end;
	color: #007bff;
}
.recall:hover{
    color: #F3B244
}
.menu-icon{
    display: none;
}
.slide{
    background-color: white;
    border-radius: 8px;
}
.bg-sea {
    background: linear-gradient(6deg, #64d9e4, transparent);
    /* background-color: #95edff!important; */
}
.bg-wh {
    background-color: #fff!important;
}
.bg-gray {
    background-color: #F5F6FA!important;
}
/*section1*/
.sec1{
    position: relative;
margin-top: 80px;
padding-bottom: 50px;
overflow: hidden;
}

.sec1:before{
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    
}
.sec1 .img{

    margin-top: 50px;
}
.sec1 .img img{
    width: 100%;
}
.cta{
    margin-top: 50px;
}

.cta .h1{
    font-weight: 700;
    font-size: 32px;
}

.cta ul{

    flex-wrap: wrap;
    flex-basis: 30%;
    display: flex;
    font-weight: 500;
}
.cta ul li:nth-child(odd){
    margin-right: 30px;
}
.cta ul li{
	border: 1px solid #7e7efa26;
    display: flex;
    align-items: center;
    
    margin-top: 30px;
    padding: 20px;

    border-radius: 20px;
    flex: 0 0 47%;
    height: 100%;
    box-shadow: 0 4px 34px rgba(228,233,241,.7);
}
.cta ul li figure{

    margin-right: 20px;
}
.cta ul li figure img{
    width: 100%;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 20px;
    background: #F5F6FA;
}
.location{
   margin-top: 27px;
    font-size: 20px;
 
    line-height: 30px;
   /* padding-left: 40px; */
    background: url(../img/icons/location.svg) 0 0 no-repeat;
    background-size: 30px
}
.cta .btnarea{
    margin-top: 30px;
}


/*form control*/
input, textarea{
    width: 100%;
    border-radius: 2px;
    border: none;
    padding: 14px;
    font-size: 16px;
    outline:none;
}
.inp{
    margin-top: 15px;
}
.btn{
    user-select: none;
    cursor: pointer;
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.btn:hover{
    
}
.btn:active{
    transform:scale(0.95)
}
button.btn{
    width: 100%;
}
.blue{
    background: #2974F5;
}
.orange{

    background: #F4B03E;
}

.types{
    justify-content: space-between;
    display: flex;
}

.types li{
    margin-top: 28px;
    padding-left: 30px;
    background: url(../img/icons/check.svg) 0 50% no-repeat;
    background-size: 20px;
}

/*.sec2*/
.sec2{
    overflow: hidden;
    position: relative;
    background: #F5F6FA;
}
.sec2:before{
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    
}
.sec2:after{
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    transform: rotate(180deg)
    
}
.sec .title{
    font-size: 36px;
}
.sec{
    padding: 50px 0;
}

.s1p{
    position: relative;
    margin-top: 30px;
        box-shadow: 0 4px 34px rgba(228,233,241,.7);
    transition: all 0.5s
}
.s1p:hover{
    box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.serv-link{
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.ar-right-box{
    display: flex;
    align-items: center;
}
.ar-right{
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 18px;
}
.s1p .name{
    font-size: 24px;
    /* position: relative; */
    line-height: 1.1;
    color: #2a2833; 
}
.s1p .name:hover{
    color: #2D76F4;
}
/* .s1p .name::after{
    content: "";
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 0;
    width: 24px;
    height: 18px;
} */
.s1p >div{
    vertical-align: top;
    position: relative;
    width: 100%;
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
}

.s1p figure{
	margin: auto;
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 10px;
	
	/*
    right: -20px;
    bottom: -20px;
    position: absolute;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50% 50% 0;
	*/
}
.s1p figure img{
    height: 100%
}

.s1p .price{
    margin-top: 9px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    color: #b0aeba
}

.s1p .btn{

    padding: 10px 15px;
    margin-top: 20px;
    display: inline-block;
    width: auto;
    
}

.orange{
    background: #F3B244
}
.blue{
    background: #2D76F4;
}
.green{
    background: #69DEDB;
}
.purple{
    background: #7059E3;
}


/*sec3*/
.sec3:before{
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg);
    width: 600px;
    height: 293px;
    
}
.s3p{
    position: relative;
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    min-height: 270px;
    border-radius: 10px;
        box-shadow: 0 4px 34px rgba(228,233,241,.7);
}

.s3p > div{
    display: flex;
}
.s3p figure{
    margin-right: 10px;
    background: #F5F6FA;
    border-radius: 20px;
}
.s3p img{
    padding: 15px;
    width: 60px;
}
.s3p .text{
    margin-top: 20px;
}

.s3p i{
    opacity: 0.2;
    font-size: 100px;
    line-height: 1;
    font-weight: 900;
    font-style: normal;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    text-align: center;
    color: #F3B244
}

.prof{
	margin-top: 40px;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    
    text-align: center;
    background: url(../img/form-bg.svg) 50% no-repeat;
    background-size: cover;

    box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.prof .text{
    margin-top: 30px;
}


/*section4*/
.sec5{
    background: #F5F6FA;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sec5:before{
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    
}
.sec5:after{
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    transform: rotate(180deg)
    
}
.s5p{
    background: #fff;
    margin-top: 30px;
    padding: 20px;
            box-shadow: 0 4px 34px rgba(228,233,241,.7);
    transition: all 0.5s;
    border-radius: 10px;
}
.s5p:hover{

    box-shadow: 0 4px 34px rgba(0,0,0,.15);

}
.s5p figure{
    position: relative;
    border-radius: 50%;
    overflow: hidden;

}
.s5p figure:after{
     content: "";
    border-radius: 50%;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 2px solid #F3B244;
}
.s5p img{
    border-radius: 50%;
    max-width: 100%
}

.s5p .bottom{
    
color: #b0aeba;
    margin-top: 20px;
}
.s5p .bottom li:first-child{
        color: #2D76F4;
    font-weight: 700;
}
.s5p .bottom li strong{
        color: #2a2833;
}

.sec5 .btnarea{
    margin-top: 30px;
}


/*sec6*/
.sec6{
    text-align: center;
}
.car{
    margin-top: 30px;
        box-shadow: 0 4px 34px rgba(228,233,241,.7);
    border-radius: 10px;
    text-align: left;
}
.car blockquote{
    padding: 20px;
    display: flex;
    align-items: center;
}
.car figure{
    position: relative;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
   
    padding: 3px;
}
.car figure:after{
    content: "";
    border-radius: 50%;
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: 2px solid #F3B244;
}

.allstxt{
	text-align: initial;
    text-indent: 20px;
	padding: 0 10px;
}
.allstxt ul{
    list-style-type: disc;
    padding-inline-start: 40px;
}
table.ceny {
	margin: 0 auto;
    border: 1px solid #9da1a4; /* общая рамка вокруг таблицы */
    width: 89%; /* ширина таблицы */
	margin-top: 15px;
}
/* параметры для ячейек заголовков */
table.ceny th {
    background: #6597d9;; /* цвет ячейки заголовка */
    border-right: 1px solid #9da1a4; /* рамка справа от ячейки заголовка */
    color: #FFFFFF; /* цвет шрифта заголовка */
    font-size: 18px; /* размер шрифта заголовка */
    padding: 10px; /* внутренний отступ в заголовке */
    text-align: center; /* расположение текста по центру ячейки заголовка (центрирование) */
}
/* параметры для нечетных строк таблицы 1,3,5,7 и т.д. */
table.ceny tr:nth-child(odd) {
    background: #F2F7FD; /* цвет фона строки */
}
/* параметры только для первой ячейки в каждой из строк */
table.ceny td:nth-child(1) {
    text-align: left;
}
/* параметры для всех ячеек таблицы */
table.ceny td {
    border-bottom: 1px solid #9da1a4; /* рамка снизу ячейки */
    border-right: 1px solid #9da1a4; /* рамка справа ячейки */
    font-size: 18px; /* размер шрифта */
    padding: 7px; /* внутренний отступ в ячейки от края */
    vertical-align: middle; /* горизонтальное выравнивание */
    text-align: center; /* текст по центру */
}
.txt-bef-price{
	text-align: left;
    display: block;
    width: 89%;
    margin: 0 auto;
    margin-top: 5px;
    font-size: 14px;
} 

.car figure img{
    border-radius: 50%;
    width: 130px!important;
    display: inline-block;
    
}
.car strong{
    display: block;
    color: #2D76F4;
    margin-bottom: 20px;
}
.owl-dots{
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    bottom: 0;
}
.owl-dot{
    margin: 0 3px;
   
}
.owl-dot.active span, .owl-dot:hover span{
    opacity: 1;
}
.owl-dot span{
    width: 12px;
    height: 12px;
    background: #2D76F4;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.3;
}
.owl-nav button{
    top: 50%;
    position: absolute;
     display: inline-block;
    width: 40px;
    height: 40px;
    background: #000;
    z-index: 1;
    
}
.owl-nav button:after{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-top: 2px solid #F3B244;
    border-left: 2px solid #F3B244;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    
}
.owl-nav button.disabled{
    opacity: 0;
}
.owl-prev{
left: -40px;
    transform: translateY(-50%) 
}
.owl-next{
    right: -40px;
    transform: translateY(-50%) rotate(180deg)
}
.form1{
    margin-top: 50px;
    border-radius: 20px;
    padding: 20px;
     background: url(../img/form-bg.svg) 50% no-repeat;
    background-size: cover;

        box-shadow: 0 4px 34px rgba(0,0,0,.15);
}

.form2string {
    color: #fff!important;
    margin-top: 50px;
    border-radius: 20px!important;
    padding: 33px!important;
    background: url(../img/form-bg.svg) 50% no-repeat;
    background-size: cover;
    box-shadow: 0 4px 34px rgb(0 0 0 / 15%);
}

.form1 .name{
    font-size: 30px;
    color: #fff;
}
/*section7*/
.sec7{
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #F5F6FA;
}
.sec7:before{
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    
}
.sec7:after{
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -1170px;
    position: absolute;
    content: "";
    background:  url(../img/circle1.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 250px;
    transform: rotate(180deg)
    
}
.sec7 figure{
    position: relative;
    height: 200px;
    background: #fff;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.sec7 figure img{
    width: 40%;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

/*footer*/
.logo-foot{
    padding-bottom: 4px;
}
.txt-policy{
	margin-top: 26px;
    font-size: 13px;
    border-top: 1px solid white;
    padding-top: 8px;	
}
.bld-pol{
	color: aliceblue!important;
    font-weight: 600;
    text-decoration: underline;
}
.contact-foot{
	padding-top: 15px;
	text-align: end;
}
.contact-foot .tel{
    line-height: 1.4;
}
.contact-foot p{
    font-size: 16px;
}
.menu-foot{
	font-size: 16px;
	padding-top: 10px;
}
.fz-13{
	font-size: 13px;
}
.txt-of{
	font-size: 13px;
	line-height: 17px;
}
.col-w{
	color:white;
}
.col-w a{
	color:white;
}
.col-w a:hover {
    color: #007bff;
}
.footer{
    position: relative;
}
.fcontact{
    background: #fff;
    margin: 50px 0;
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.fcontact li{
    margin-top: 15px;
}
.fcontact li strong{
    display: block;
}
.fcontact li span,.fcontact li a{
    padding-left: 30px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    font-size: 18px;
    display: inline-block;
        color: #2a2833;
    transition: all 0.5s;
}
.fcontact li a:hover{
    color: #F3B244
}
.phone{
    background-image: url(../img/icons/phone.svg);
}
.email{
     background-image: url(../img/icons/email.svg);
}
.loc{
    background-image: url(../img/icons/location.svg);
}
#map{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.ymaps-2-1-75-ground-pane{
    filter: grayscale(1)
}

.copy{
    color: #fff;
    background: #2A2833;
    padding: 20px 0;
}
.pol{
    cursor: pointer;
    float: right;
    text-decoration: underline;
    transition: all 0.5s;
}
.pol:hover{
    color: #F3B244
}


#pol{
    padding: 30px;
    width: 100%;
    max-width: 600px;
    text-align: justify;
}
#pol h3{
    text-align: center;
    margin-bottom: 20px;
}

.form{
    text-align: center;
    margin-top: 50px;
    border-radius: 20px;
    padding: 30px;
     background:  url(../img/form-bg.svg) 50% no-repeat;
    background-size: cover;

        box-shadow: 0 4px 34px rgba(0,0,0,.15);
}
.form span{
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}
@media (min-width:768px) {
    .pricelist{
        padding: 30px;
        text-align: center;
        width: 100%;
        max-width: 767px;
    }
    .pricelist .tel{
        margin-top: 30px;
    }
    .pricelist .btn{
        margin-top: 30px;
        background: #2D76F4;
    }
    .pricelist h4{
        font-weight: 700;
        font-size: 26px
    }
    .pr .pricelist{
        
    }
    .pr .scrollbar{
        
    }
    h3.table_heading{
        text-align: center;
    }
    p.table_heading{
        margin-top: 15px;
        font-weight: 700;
        color: #F3B244;
    }
    .table{
        text-align: left;
        width: 100%;
        margin-top: 10px;
        border-top: 1px solid rgba(148,147,153,.3);
        border-bottom: 1px solid rgba(148,147,153,.3);
        display: table;
    }
    .table_row{
        display: table-row;
    }
    .cell{
        padding: 10px;
        display: table-cell;

        border-left: 1px solid rgba(148,147,153,.3);
    }
    .cell:nth-child(2){
        width: 100px;  
        text-align: center;
    }
    .cell:nth-child(3){
        border-right: 1px solid rgba(148,147,153,.3);
        width: 100px;
    }
    .table_row:nth-child(even){
        background: #F5F6FA;
    }
}
@media (max-width:1199px){
    .header:before{
        z-index: 1;
    }
    .contact{
        display: inline-block;
    }
    .menu{
        text-transform: uppercase;
        z-index: 0;
    }
    .menu a{ 
        display: inline-block;
        padding: 10px 0;
        color: #000;
    }
    .menu-icon{
        display: inline-block;
        width: 26px;
        height: 26px;
        
        z-index: 1;
        position: relative;
        margin-left: 20px;
    }
    .menu-icon:after{
        display: inline-block;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 70%;
       /* border-top: 3px solid #F3B244; */
        border-bottom: 3px solid #F3B244;
        transition: all 0.5s
    }
    .menu-icon:before{
        display: inline-block;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        border-top: 3px solid #F3B244;
        border-bottom: 3px solid #F3B244;
        transition: all 0.5s
    }
    .menu-icon.active:after{
        height: 0;
        border-top: 0px solid #F3B244;
        top: 50%;
        transform: rotate(-45deg) translateY(-50%)
    }
    .menu-icon.active:before{
        height: 0;
        border-bottom: 0px solid #F3B244;
        bottom: 50%;
        transform: rotate(45deg) translateY(50%)
    }
    .logo{
        position: relative;
    }

    .menu{
        display: none;
        /* z-index: 0;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 100%;
        text-align: center;
        padding-top: 100px;
        font-size: 22px;
        background: #fff;
        transform: translateY(-100%);
        transition:all 0.5s; */
    }
    .menu.active{
        display: block;
        transform: translateY(0);
        z-index: -1;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 100%;
        text-align: center;
        padding-top: 100px;
        font-size: 22px;
        background: #fff;
        transition: all 0.5s;
    }
}
@media (min-width:1200px){
    .menu{
    list-style: none;
    display: flex;
    justify-content: space-between;
    min-width: 550px;
}
.menu li a{
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    transition: all 0.5s;
	font-size: 13px;
    color: black;
    font-weight: 600;
}
.menu li a:hover{
    color: #F3B244;
}

.menu li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    border-bottom: 1px solid #F3B244;
    transition: all 0.5s;
}
.menu li a:hover:after{
    width: 100%;
    left: 0;
}

}
@media (min-width:992px) and (max-width:1199px) {
    .cta .h1
    {
        font-size: 27px;
    }
    .cta ul li{
            flex: 0 0 49%;
    }
    .cta ul li{
    margin-top: 10px;
        padding: 10px;
        
    }
    .cta ul li figure{
        margin-right: 10px;
    }
    .cta ul li:nth-child(odd) {
    margin-right: 10px;
    }
    .location{
        font-size: 18px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .sec1{
        text-align: center;
    }
    .sec1 .img{
    margin-top: 20px;
        width: 360px;
        margin: auto;
    }
    .cta{
        margin-top: 20px;
    }
        .cta ul li{
    margin-top: 10px;
        padding: 10px;
        
    }
    .types li{
        font-size: 14px;
    }
    .s1p{
        margin-top: 15px;
    }
    .s1p > div{
        padding: 20px;
    }
    .sec4{
        padding: 0;
    }
}

@media (max-width:767px){

    body{
        font-size: 15px;
    }
    .logo div{
        display: none;
    }
    .logo img{
        height: 37px;
        margin-right: 0;
		margin-top: 0px;
    }
	.logo-foot{
		margin: 0 auto;
	}
    .contact{

        display: inline-block;
    }
    .tel{
        display: block;
        padding-left: 0;
        background: none;
		font-size: 16px;
    }
	.graph {
		font-size: 10px;
	}
    .recall{
       
        /**display: inline-block;**/
        font-size: 12px;
		padding-top: 5px;
        display: none;

    }
    .menu-icon{
        margin-left: 10px;
		margin-bottom: 11px;
    }
    .right{
        text-align: center;
    }
    .sec1 .img{
        margin: auto;
        width: 180px;
    margin-top: 0;
    }
    .cta{
        margin-top: 10px;
        /* max-width: 290px; */
        margin-left: auto;
        margin-right: auto;
    }
    .cta ul {
        justify-content: center;
        flex-wrap: wrap;
        flex-basis: 30%;
        display: flex;
        gap: 4px;
        margin: 18px 0px;
        width: 100%;
    }

    .cta ul li figure{
        /* margin-right: 10px; */
        margin: 0px 4px;
    }
    .cta ul li figure img{
        width: 30px;
        padding: 0;
        border-radius: 0;
        background: none;
    }
    .cta ul li{
        font-size: 12px;
        flex: 0 0 49%;

        margin-top: 10px;
        padding: 0;
        text-align: left;
        box-shadow: none;
    }
    .cta ul li br{
        display: none;
    }
    .cta ul li:nth-child(odd){
        margin-right: 0;
    }
    .sec1{
        text-align: center;
    }
    .s1p .name {
        font-size: 18px;
        /* padding: 10px 0px; */
    }
    .s1p .btn {
        margin-top: 20px;
    }
    .cta .h1{
        line-height: 1.2;
        font-size: 28px;
    }
    .sec{
        padding: 30px 0;
    }
    .cta .btnarea{
        margin-top: 0;
    }
    .sec .title{
        text-align: center;
        font-size: 24px;
    }
    .location{
        text-align: left;
        line-height: 1.2;
        font-size: 16px;
        margin-top: 30px;
    }
    .cta .btn{
        width: 100%;
        margin-top: 10px;
    }
    .types{
        display: none;
    }
    .sec2 .title{
        text-align: center;
    }
    
    .s1p figure{
        margin: auto;
        width: 100%;
        height: 180px;
        position: relative;
        border-radius: 10px;
        right: auto;
        bottom: auto;
    }
    .s1p figure img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .s1p >div{
        text-align: center;
        padding: 20px;
    }
    .s1p .price{
        margin-top: 0;
    }
    .s3p{
        min-height: auto;
    }
    .prof{
        margin-left: -15px;
        margin-right: -15px;
        padding: 20px;
    }
    .car{
        background: none;
        box-shadow: none;
    }
    .car blockquote{
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .owl-next{
        right: 0px;
    }
    .owl-prev{
        left: 0px;
    }
    .s5p figure{
        max-width: 200px;
        margin: auto;
    }
    .sec7 figure{
        
        height: auto;
        background: none;
        box-shadow: none;
    }
    .sec7 figure img{
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        transform: translate(0)
    }
    .form1{
        margin-left: -15px;
        margin-right: -15px;
    }
    .form1 .name{
        font-size: 24px;
    }
    #map{
        height: 250px;
        position: relative;
    }
    .footer{
        background: #F5F6FA;
    }
    .fcontact{
        background: none;
        max-width: 320px;
        margin: 30px auto;
        padding: 0;
        box-shadow: none;
    }
    .copy{
        text-align: center;
    }
    
    .pol{
        float: none;
    } 
}
@media (max-width:767px){
    .pricelist{
        padding: 15px;
        text-align: center;
    }
    h3.table_heading{
        text-align: center;
    }
    p.table_heading{
        margin-top: 15px;
        font-weight: 700;
        color: #F3B244;
    }
    .table{
        width: 100%;
        margin-top: 10px;
        border-top: 1px solid rgba(228,233,241,.7);
        border-bottom: 1px solid  rgba(148,147,153,.3);
        display: table;
    }
    .table_row{
        display: table-row;
    }
    table.ceny {
        width: 100%;
    }
    table.ceny th {
        font-size: 15px;
    }
    table.ceny td {
        font-size: 15px;
    }
    .cell{
        font-size: 14px;
        padding: 5px;
        
        border-left: 1px solid  rgba(148,147,153,.3);
        display: table;
    }

    .cell:nth-child(2){
   
        text-align: center;
        display: table-cell;
        display: none;

    }
    .cell:nth-child(3){
        border-right: 1px solid  rgba(148,147,153,.3);
        font-weight: 700;
        display: table-cell;

    }
    .table_row:nth-child(even){
        background: #f0f0f0;
    }
    .pricelist .btn{
        margin-top: 30px;
        background: #2D76F4;
    }
    .contact-foot{
	text-align: center;
	}
}
.orange.anim{
box-shadow:none;
animation: anim 2s infinite
}
.blue.anim{
box-shadow:none;
animation: anim1 2s infinite 0.5s
}

@keyframes anim{
100%{
box-shadow: 0 0 0 15px transparent;
}
50%{
box-shadow: 0 0 0 0 #F3B244;}

}
@keyframes anim1{
100%{
box-shadow: 0 0 0 15px transparent;
}
50%{
box-shadow: 0 0 0 0 #2D76F4;}

}

/* -------------------------------- 

FAQ

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  body::after {
    display: none;
  }
}


.cd-faq {
  width: 90%;
  max-width: 1024px;
  margin: 4em auto;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.cd-faq:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 768px) {
  .cd-faq {
    position: relative;
    margin: 4em auto;
    box-shadow: none;
  }
}

.cd-faq-categories a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 28px 0 16px;
  background-color: #4e5359;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  white-space: nowrap;
  border-bottom: 1px solid #555b61;
  text-overflow: ellipsis;
}
.cd-faq-categories a::before, .cd-faq-categories a::after {
  /* plus icon on the right */
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  height: 1px;
  width: 10px;
  background-color: #7f868e;
}
.cd-faq-categories a::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cd-faq-categories li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .cd-faq-categories {
    width: 20%;
    float: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  .cd-faq-categories a {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding-left: 24px;
    padding: 0 24px;
    -webkit-transition: background 0.2s, padding 0.2s;
    -moz-transition: background 0.2s, padding 0.2s;
    transition: background 0.2s, padding 0.2s;
  }
  .cd-faq-categories a::before, .cd-faq-categories a::after {
    display: none;
  }
  .no-touch .cd-faq-categories a:hover {
    background: #555b61;
  }
  .no-js .cd-faq-categories {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-faq-categories {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 2;
  }
  .cd-faq-categories a::before {
    /* decorative rectangle on the left visible for the selected item */
    display: block;
    top: 0;
    right: auto;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #a9c056;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-faq-categories .selected {
    background: #42464b !important;
  }
  .cd-faq-categories .selected::before {
    opacity: 1;
  }
  .cd-faq-categories.is-fixed {
    /* top and left value assigned in jQuery */
    position: fixed;
  }
  .no-js .cd-faq-categories {
    position: relative;
  }
}

.cd-faq-items {
	margin-top: 30px;
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  padding: 0 5% 1em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-faq-items.slide-in {
  -webkit-transform: translateZ(0) translateX(0%);
  -moz-transform: translateZ(0) translateX(0%);
  -ms-transform: translateZ(0) translateX(0%);
  -o-transform: translateZ(0) translateX(0%);
  transform: translateZ(0) translateX(0%);
}
.no-js .cd-faq-items {
  position: static;
  height: auto;
  width: 100%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 768px) {
  .cd-faq-items {
    position: static;
    height: auto;
    width: 100%;
  /**  float: right; **/
    overflow: visible;
    -webkit-transform: translateZ(0) translateX(0);
    -moz-transform: translateZ(0) translateX(0);
    -ms-transform: translateZ(0) translateX(0);
    -o-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    padding: 0;
    background: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-faq-items {
    float: none;
    width: 100%;
	margin-top: 30px;
  }
  .no-js .cd-faq-items {
    padding-left: 0;
  }
}

.cd-close-panel {
  position: fixed;
  top: 5px;
  right: -100%;
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  transition: right 0.4s;
}
.cd-close-panel::before, .cd-close-panel::after {
  /* close icon in CSS */
  position: absolute;
  top: 16px;
  left: 12px;
  display: inline-block;
  height: 3px;
  width: 18px;
  background: #6c7d8e;
}
.cd-close-panel::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-close-panel::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-close-panel.move-left {
  right: 2%;
}
@media only screen and (min-width: 768px) {
  .cd-close-panel {
    display: none;
  }
}

.cd-faq-group {
  /* hide group not selected 
  display: none;*/
}
.cd-faq-group.selected {
  display: block;
}
.cd-faq-group .cd-faq-title {
  background: transparent;
  box-shadow: none;
  margin: 1em 0;
}
.no-touch .cd-faq-group .cd-faq-title:hover {
  box-shadow: none;
}
.cd-faq-group .cd-faq-title h2 {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #bbbbc7;
}
.no-js .cd-faq-group {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-faq-group {
    /* all groups visible */
    display: block;
  }
  .cd-faq-group > li {
	border-top: 1px solid #a1c6ed;
	/**margin-bottom: 6px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s; **/
  }
  .no-touch .cd-faq-group > li:hover {
    box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
  }
  .cd-faq-group .cd-faq-title {
    margin: 2em 0 1em;
  }
  .cd-faq-group:first-child .cd-faq-title {
    margin-top: 0;
  }
}

.cd-faq-trigger {
  position: relative;
  display: block;
  margin: 1.6em 0 .4em;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cd-faq-trigger .arrow {
    transition: transform 0.3s;
    color: #646464;
    font-size: 21px;
}
.content-visible .cd-faq-trigger .arrow {
    transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .cd-faq-trigger {
	text-align: initial;
    color: black!important;
    font-size: 24px;
    /* font-size: 1.5rem; */
    font-weight: 600;
    margin: 0;
    padding: 28px 24px 28px 24px;
  }
  .cd-faq-trigger::before, .cd-faq-trigger::after {
    /* arrow icon on the right */
    position: absolute;
    right: 24px;
    top: 50%;
    height: 2px;
    width: 13px;
    background: #cfdca0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  .cd-faq-trigger::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 32px;
  }
  .cd-faq-trigger::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .content-visible .cd-faq-trigger::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .content-visible .cd-faq-trigger::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.cd-faq-content p {
  text-align: initial;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}
@media only screen and (min-width: 768px) {
  .cd-faq-content {
    display: none;
    padding: 0 24px 30px;
  }
  
  .no-js .cd-faq-content {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .cd-faq-trigger {
	text-align: initial;
    color: black!important;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 17px 0px 17px 0px;
  }
  .cd-faq-trigger .arrow {
    font-size: 14px;
}
  .cd-faq-content p {
    line-height: 1.4;
    font-size: 15px;
  }
  .cd-faq-group > li {
    border-top: 1px solid #a1c6ed;
}
}
.fast-callback{
    display: block;
    position: fixed;
    text-decoration: none;
    z-index: 2147483647;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    bottom: 10px;
    right: 10px;
    /* background-color: #25aa44; */
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNjAgNjAiPjxwYXRoIGQ9Ik03LjEwNCAxNC4wMzJsMTUuNTg2IDEuOTg0YzAgMC0wLjAxOSAwLjUgMCAwLjk1M2MwLjAyOSAwLjc1Ni0wLjI2IDEuNTM0LTAuODA5IDIuMSBsLTQuNzQgNC43NDJjMi4zNjEgMy4zIDE2LjUgMTcuNCAxOS44IDE5LjhsMTYuODEzIDEuMTQxYzAgMCAwIDAuNCAwIDEuMSBjLTAuMDAyIDAuNDc5LTAuMTc2IDAuOTUzLTAuNTQ5IDEuMzI3bC02LjUwNCA2LjUwNWMwIDAtMTEuMjYxIDAuOTg4LTI1LjkyNS0xMy42NzRDNi4xMTcgMjUuMyA3LjEgMTQgNy4xIDE0IiBmaWxsPSIjMDA3YjAwIi8+PHBhdGggZD0iTTcuMTA0IDEzLjAzMmw2LjUwNC02LjUwNWMwLjg5Ni0wLjg5NSAyLjMzNC0wLjY3OCAzLjEgMC4zNWw1LjU2MyA3LjggYzAuNzM4IDEgMC41IDIuNTMxLTAuMzYgMy40MjZsLTQuNzQgNC43NDJjMi4zNjEgMy4zIDUuMyA2LjkgOS4xIDEwLjY5OWMzLjg0MiAzLjggNy40IDYuNyAxMC43IDkuMSBsNC43NC00Ljc0MmMwLjg5Ny0wLjg5NSAyLjQ3MS0xLjAyNiAzLjQ5OC0wLjI4OWw3LjY0NiA1LjQ1NWMxLjAyNSAwLjcgMS4zIDIuMiAwLjQgMy4xMDVsLTYuNTA0IDYuNSBjMCAwLTExLjI2MiAwLjk4OC0yNS45MjUtMTMuNjc0QzYuMTE3IDI0LjMgNy4xIDEzIDcuMSAxMyIgZmlsbD0iI2ZmZmZmZiIvPjwvc3ZnPg==) center/34px 34px no-repeat #25aa44;
    border: 0.1875rem solid #81df96;
    -webkit-animation-name: pulse2;
    animation-name: pulse2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.fast-callback:hover{
    background-color:#2eb94f;
}

/* Анимация круга телефона */
@keyframes pulse2 {

0% {
    box-shadow: 0 0 0 1px #86e29b;
}
50% {
    box-shadow: 0 0 0 0.3125rem #86e29b;
}
100% {
    box-shadow: 0 0 0 1px #86e29b;
}
}

@media (min-width: 768px) {
.d-md-none {
    display: none;
}
}