@color-1: #1d1e21;
@color-2: #47de81;
@gray: #525252;
@grad: linear-gradient(to right top, #42eb87, #39f7cd);
@width-basic: 1200px;

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

//ОБЩИЕ СТИЛИ
body{
    font-family: 'Open Sans', sans-serif;
    min-width: 1300px;
    color: #1d1e21;
    background: #fff;
    font-size: 15px;
    line-height: normal;
    
    @media (max-width: 861px){
        min-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
}

h1,h2,h3,p{
    margin: 0;
    font-weight: normal;
}
h5{
    font-size: 18px;
}
li,
p{
    line-height: normal;
    font-size: 15px;
    line-height: 26px;
    
    @media (max-width: 861px){
        font-size: 14px;
        line-height: 25px;
    }
}
a{
    color: #1d1e21;
    transition: 0.3s all;
    
    &:hover{
        color: @color-2;
    }
}
img{
    max-width: 100%;
}
.clearfix:after{
	content: "";
	clear: both;
	display: table;
}
.container{
    width: @width-basic;
    margin: 0 auto;
    
    @media (max-width: 861px){
        width: auto;
        padding: 0 40px;
    }
    @media(max-width: 370px){
        padding: 0 20px;
    }
}

.textdropgorod{
	display: none;
}

.content-title{
    font-weight: bold;
    font-size: 51px;
    line-height: 54px;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    
    @media (max-width: 861px){
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    @media(max-width: 370px){
        font-size: 28px;
        line-height: 34px;
    }
    h1{
        font-size: 51px;
        line-height: 54px;
        margin: 0;
        font-weight: bold;
        display: inline;
        
        @media (max-width: 861px){
            font-size: 32px;
            line-height: 36px;
        }
        @media(max-width: 370px){
            font-size: 28px;
            line-height: 34px;
        }
    }
    
    span{
        font-size: 24px;
        line-height: 36px;
        display: block;
        margin-top: 20px;
        font-weight: normal;
        
        @media (max-width: 861px){
            font-size: 18px;
            line-height: 26px;
        }
    }
    strong{
        font-weight: 800;
        color: @color-2;
        
        @media(max-width: 580px){
            display: block;
        }
    }
}

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

.title-block{
    font-size: 24px;
    line-height: 36px;
    display: block;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    
    @media (max-width: 861px){
        font-size: 18px;
        line-height: 26px;
        font-weight: bold;
    }
}

.btn{
    text-decoration: none;
    color: #1d1e21;
    background: @color-2;
    padding: 19px 45px;
    padding-top: 16px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    transition: all .3s ease-out;
    display: inline-block;
    text-align: center;
    border: none;
    outline: none;
    position: relative;
    box-shadow: 0 10px 20px 0 rgba(21, 224, 68, 0.3);
    font-family: 'Montserrat', sans-serif;
    
    @media(max-width: 861px){
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 7px;
        font-size: 14px;
    }
    &:hover{
        background: @color-1;
        color: #fff;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    }
}

.btn-black{
    background: @color-1;
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    
    &:hover{
        background: @color-2;
        color: #fff;
        box-shadow: 0 10px 20px 0 rgba(21, 224, 68, 0.3);
    }
}

.btn-border{
    padding: 15px 43px;
    padding-top: 13px;
    border: 2px solid @color-2;
    background: transparent;
    
    &:hover{
        color: #fff;
        border-color: @color-1;
        background: @color-1;
    }
}

.btn-video{
    padding-left: 80px;
    position: relative;
    
    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: 55px;
        background: darken(@color-2, 10%) url('https://img.icons8.com/pastel-glyph/34/ffffff/key--v1.png') no-repeat 50% 50%;
        border-radius: 17px;
    }
}

.modal-smg_boby{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
    
    .modal-smg_boby-content{
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    .close-smg_boby{
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .modal-smg{
        width: 420px;
        z-index: 2;
        position: relative;
        background: #fff;
        border-radius: 20px;

        @media (max-width: 861px){
            width: auto;
            display: block;
            padding-right: 0;
            margin: 0 20px;
            text-align: center;
        }
        .title-block{
            font-weight: bold;
            font-size: 22px;
            line-height: 28px;
            margin-bottom: 9px;
            color: #2f2e41;
        }
        .descr{
            line-height: 21px;
            margin-bottom: 16px;
            color: #2f2e41;
        }
        .info-text{
            font-size: 12px;
            line-height: 16px;
            color: #717171;
        }
        form{
            padding: 60px 45px;

            @media (max-width: 861px){
                padding: 50px 40px;
            }
            @media (max-width: 320px){
                padding: 30px 20px;
            }
            input{
                width: 100%;
                margin-bottom: 10px;
                box-sizing: border-box;
                background: #fff;
                color: #2f2e41;
            }
            .btn{
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
        }
    }
}

.modal-smg-thanks{
    .modal-smg{
        width: 400px;
        padding: 0;
        
        @media (max-width: 861px){
            width: auto;
            margin: 0 40px;
        }
    }
    .modal-smg_container{
        padding: 0;
    }
    .thanks-content{
        text-align: center;
        padding: 40px 45px;
        padding-bottom: 30px;
        
        @media (max-width: 530px){
            padding-left: 20px;
            padding-right: 20px;
        }
        .icon-ok{
            margin: 0 auto;
            margin-bottom: 15px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: #1d1e21 url('../img/logo.svg') no-repeat 50% 50%;
            background-size: 70%;
        }
    }
}

.close--modal-smg{
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 30px;
    height: 30px;
    display: block;
    background: url('../img/delete_sign_filled.svg') no-repeat 50% 50%;
    background-size: 30px;
    
    &:hover{
        opacity: 0.7;
    }
}

form{
    textarea,
    input{
        padding: 17px 43px;
        padding-top: 14px;
        border-radius: 18px;
        font-size: 14px;
        box-sizing: border-box;
        border: 2px solid #dbdbdb;
        outline: none;
        display: block;
        font-style: normal;
        font-weight: normal;
        transition: 0.3s all;
        background: none;
        color: #1d1e21;
        background: #fff;
        
        @media (max-width: 861px){
            font-size: 14px;
            min-width: 100%;
            box-sizing: border-box;
        }
        &:focus{
            border-color: @color-1;
        }
    }
    textarea{
        width: 100%;
        box-sizing: border-box;
        height: 70px;
        max-width: 100%;
        min-height: 70px;
    }
    .btn{
        @media (max-width: 861px){
            box-sizing: border-box;
            width: 100%;
        }
    }
    .polit-form{
        display: block;
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: left;
        
        input{
            display: none !important;

            &:checked ~ .checkmark {
                &::before{
                    background: @color-2 url('../img/checkmark.svg') no-repeat 50% 50%;
                    background-size: 12px;
                }
            }
        }
        .checkmark{
            padding-left: 40px;
            display: block;
            position: relative;
            font-size: 14px;
            cursor: pointer;

            @media(max-width: 861px){
                font-size: 13px;
                line-height: 16px;
            }
            &::before{
                content: '';
                position: absolute;
                left: 5px;
                top: 2px;
                width: 25px;
                height: 25px;
                background: #ff8080;
                border-radius: 10px;
                transition: 0.1s all;
                
                @media(max-width: 861px){
                    top: 0;
                }
            }
        }
    }
}

.entrytext{
    figure{
        margin: 0;
    }
    .alignleft{
		float: left;
		margin-right: 20px;
		margin-bottom: 10px;
	}
	.alignright{
		float: right;
		margin-left: 20px;
		margin-bottom: 10px;
	}
	.aligncenter{
		margin: 0 auto;
		text-align: center;
		display: block;
		width: auto;
		margin-bottom: 20px;
	}
    blockquote{
        margin: 20px 0;
        padding-left: 20px;
        border-left: 5px solid @color-2;
    }
    h3,
    h2{
        line-height: normal;
        font-weight: bold;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    ul{
        padding: 0;
        margin: 0;
        margin-bottom: 20px;

        li{
            list-style: none;
            padding-left: 20px;
            position: relative;

            &::before{
                content: '';
                position: absolute;
                left: 0;
                top: 12px;
                width: 10px;
                height: 2px;
                background: @color-2;
            }
        }
    }
    p{
        display: block;
        margin-bottom: 20px;
    }
    iframe,
    img{
        max-width: 100%;
        height: auto;
        
        @media (max-width: 861px){
            width: auto;
        }
    }
    iframe{
        height: 300px;
        border: none;
        margin-bottom: 20px;
        
        @media (max-width: 861px){
            width: 100%;
            height: 200px;
        }
    }
    table{
        margin-bottom: 30px;
        width: 100%;
        
        th, td{
            padding: 10px;
            border: 1px solid #d9d9d9;
            p{
                margin-bottom: 0;
            }
        }
    }
    .wp-block-table{
        overflow: inherit !important;
    }
    .blocks-gallery-grid{
        li{
            padding: 0;
            
            &::before{
                display: none;
            }
        }
    }
}

.regular{
    position: relative;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    
    @media (max-width: 425px){
        width: 100%;
        overflow: hidden;
    }
    .owl-item{
        float: left;
    }
    .owl-stage-outer{
        overflow: hidden;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .owl-nav{
        @media(max-width: 740px){
            display: none;
        }
        div{
            position: absolute;
            width: 40px;
            height: 100%;
            top: 0;
            z-index: 2;
            font-size: 0;
            cursor: pointer;
            transition: 0.3s all;
            
            &:hover{
                opacity: 0.5;
            }
        }
        .owl-prev{
            left: -50px;
            background: url('../img/slide-left.svg') no-repeat left 50%;
        }
        .owl-next{
            right: -50px;
            background: url('../img/slide-right.svg') no-repeat right 50%;
        }
    }
    
    .owl-dots{
        margin-top: 15px;
        text-align: center;
        
        @media(max-width: 740px){
            display: block;
        }
        .owl-dot{
            width: 10px;
            height: 10px;
            background: #1d1e21;
            display: inline-block;
            margin: 0 8px;
            cursor: pointer;
            border-radius: 50%;
            transition: 0.3s all;
        }
        .active{
            box-shadow: 0 0 0 4px #1d1e21;
            background: transparent;
        }
    }
}

.intro-page{
    margin-top: 50px;
    
    .content-title{
        h1{
            @media (max-width: 861px){
                line-height: 36px;
            }
        }
    }
    .bread-btn{
        margin-bottom: 50px;
        display: inline-block;
        text-decoration: underline;
        transition: 0.3s all;
        cursor: pointer;
        &:hover{
            color: @color-2;
        }
    }
}
.page-content{
//    padding-top: 100px;
    padding-bottom: 80px;
}
//ОБЩИЕ СТИЛИ

//хедер
.my-head{
    padding: 15px 0;
    
    @media(max-width: 861px){
        padding-top: 10px;
        min-width: auto;
        position: relative;
    }
    .logo{
        float: left;
        margin-top: 4px;
        margin-right: 40px;
        
        @media(max-width: 861px){
            margin-top: 10px;
        }
        @media(max-width: 580px){
            clear: both;
            float: none;
            margin-right: 0;
            margin: 0 auto;
            text-align: center;
        }
        a{
            cursor: pointer;
        }
        img{
            width: 130px;
            
            @media(max-width: 861px){
                width: 100px;
            }
        }
    }
    .menu-kzb{
        float: left;
        
        @media (max-width: 861px){
            float: right;
            margin-top: 14px;
        }
        .btn-menu{
            display: none;
            text-decoration: none;
            text-align: center;
            margin-top: -4px;
            
            @media (max-width: 861px){
                display: block;
            }
            .icon{
                display: inline-block;
                vertical-align: middle;
                padding: 10px;
                padding-top: 12px;
                border-radius: 50%;
                background: @color-2;
                height: 23px;
                width: 25px;
                position: relative;
                
                span{
                    display: block;
                    width: 25px;
                    height: 2px;
                    background: #1d1e21;
                    margin: 4px 0;
                    transition: 0.3s all;
                }
            }
        }
        .active{
            .icon{
                span{
                    position: absolute;
                    
                    &:nth-child(1){
                        transform: rotate(45deg);
                        top: 17px;
                    }
                    &:nth-child(2){
                        opacity: 0;
                    }
                    &:nth-child(3){
                        transform: rotate(-45deg);
                        top: 17px;
                    }
                }
            }
        }
        .menu-animate-mobile{
            @media (max-width: 861px){
                display: none;
                position: absolute;
                top: 145px;
                background: #efefef;
                margin: 0 30px;
                border-radius: 20px;
                padding: 30px;
                left: 0;
                right: 0;
                box-sizing: border-box;
                z-index: 2;
            }
            @media(max-width: 370px){
                margin: 0 20px;
            }
        }
        ul{
            padding: 0;
            margin: 0;

            li{
                list-style: none;
                display: inline-block;
                vertical-align: text-top;

                @media (max-width: 861px){
                    display: block;
                    text-align: left;
                }
                a{
                    display: block;
                    text-decoration: none;
                    padding: 26px 5px;
                    font-weight: bold;
                    font-size: 15px;
                    letter-spacing: 0.5px;
                    line-height: normal;
                    transition: 0.3s all;
                    position: relative;
                    font-family: 'Montserrat', sans-serif;
					cursor: pointer;
                    
                    @media (max-width: 861px){
                        padding: 15px 0;
                        font-size: 20px;
                        border-bottom: 1px solid #e0e0e0;
                        padding-right: 40px;
                        background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat right 50%;
                    }
                    &:hover{
                        color: @color-2;
                    }
                }
                &:last-child{
                    a{
                        padding-right: 0;
                        
                        @media (max-width: 861px){
                            padding: 15px 0;
                        }
                    }
                }
            }
            .current_page_item {
                a{
                    color: @color-2;
                }
            }
        }
    }
    .btn-block{
        float: right;
        margin-top: 8px;
        
        @media (max-width: 861px){
            float: left;
        }
        .phone{
            background: url('../img/shake_phone.svg') no-repeat 15px 50%;
            background-size: 25px;
            padding-left: 48px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 22px;
            margin-right: 30px;
            vertical-align: middle;
            pointer-events: none;
            
            @media (max-width: 861px){
                font-size: 18px;
                padding: 13px 20px;
                padding-left: 40px;
                background: #fff;
                box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
                border-radius: 18px;
                margin-right: 0;
                margin-bottom: 10px;
                display: block;
                width: 100%;
                box-sizing: border-box;
                pointer-events: auto;
                background: @color-2 url('../img/shake_phone.svg') no-repeat 15px 50%;
                background-size: 20px;
                margin-bottom: 0;
            }
        }
        .btn{
            padding-left: 30px;
            padding-right: 30px;
            vertical-align: middle;
            
            @media (max-width: 861px){
                display: none;
            }
        }
    }
}

.intro{
    position: relative;
    background: url('../img/waves.svg') no-repeat right bottom;
    background-size: 100%;
    
    .intro_block_text{
        background: url('../img/intro-bg.png') no-repeat right bottom;
        padding-bottom: 30px;
        
        @media (max-width: 861px){
            background-size: 70%;
            padding-bottom: 240px;
        }
        .text{
            padding-top: 80px;
            padding-right: 500px;
            
            @media(max-width: 861px){
                padding-top: 30px;
                padding-right: 0;
            }
        }
        .title{
            font-size: 70px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-style: italic;
            margin-bottom: 40px;
            
            @media(max-width: 861px){
                font-size: 50px;
                line-height: 56px;
            }
            @media(max-width: 580px){
                font-size: 32px;
                line-height: 38px;
                margin-bottom: 30px;
            }
            img{
                vertical-align: middle;
                margin-left: 10px;
            }
        }
        .descr{
            font-size: 24px;
            line-height: 36px;
            font-weight: lighter;
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            
            @media(max-width: 861px){
                font-size: 18px;
                line-height: 28px;
            }
            @media(max-width: 580px){
                font-size: 16px;
                line-height: 26px;
                margin-bottom: 30px;
            }
        }
    }
    
    .features-intro{
        margin-bottom: 50px;
        
        .ft--inner{
            display: inline-block;
            vertical-align: text-top;
            width: 217px;
            margin-right: 20px;
            background: @color-2;
            border-radius: 20px;
            text-decoration: none;
            box-shadow: 0 10px 20px 0 rgba(21, 224, 68, 0.3);

            @media(max-width: 861px){
                width: 31%;
                margin-right: 2%;
            }
            @media(max-width: 675px){
                width: 48%;
                margin-bottom: 15px;
            }
            @media(max-width: 580px){
                width: auto;
                display: block;
                margin-right: 0;
                margin-bottom: 15px;
            }
            &:hover{
                background: @color-1;
                color: #fff;
                box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
                
                .num{
                    color: @color-2;
                }
            }
            
            &:nth-child(3n){
                margin-right: 0;
            }
                
            &:nth-child(2n){
                @media(max-width: 675px){
                    margin-right: 0;
                }
            }
            .num{
                width: 60px;
                height: 60px;
                border-radius: 18px;
                background-color: #fff;
                box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
                margin-right: 20px;
                display: inline-block;
                vertical-align: middle;
                font-size: 30px;
                font-family: 'Montserrat', sans-serif;
                font-weight: 900;
                line-height: 60px;
                text-align: center;
                transition: 0.3s all;
            }
            .text-ft{
                display: inline-block;
                vertical-align: middle;
                width: 130px;
                
                @media(max-width: 861px){
                    width: 100px;
                    line-height: 14px;
                }
                @media(max-width: 530px){
                    width: 150px;
                }
                .title-ft{
                    font-weight: bold;
                    font-size: 16px;
                    
                    @media(max-width: 861px){
                        font-size: 14px;
                        margin-bottom: 5px;
                    }
                }
                .descr-ft{
                    font-size: 13px;
                }
            }
        }
    }
}

.reviews{
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    border-radius: 20px;
    padding-left: 60px;
    
    @media(max-width: 861px){
        padding: 0;
    }
    .reviews--inner{
        padding: 30px;
        padding-left: 0;
        padding-bottom: 10px;
        
        @media(max-width: 861px){
            padding: 20px;
            text-align: center;
        }
        .rev-top{
            margin-bottom: 15px;
            
            .miniature{
                width: 60px;
                height: 60px;
                overflow: hidden;
                border-radius: 50%;
                background: @color-2;
                display: inline-block;
                vertical-align: middle;
                margin-right: 30px;
                
                @media(max-width: 861px){
                    margin: 0 auto;
                    margin-bottom: 10px;
                }
                img{
                    width: 90%;
                    height: 90%;
                    object-fit: cover;
                    border-radius: 50%;
                    margin: 5%;
                }
            }
            .info{
                display: inline-block;
                vertical-align: middle;
                text-align: left;

                @media(max-width: 861px){
                    display: block;
                    text-align: center;
                }
                .name{
                    font-weight: bold;
                }
            }
        }
    }
    .owl-dots{
        position: absolute;
        left: -30px;
        top: 7px;
        bottom: 20px;
        z-index: 2;
        
        @media(max-width: 861px){
            position: static;
            padding-bottom: 20px;
            margin-top: 0;
        }
        .owl-dot{
            display: block;
            margin: 12px 0;
            
            @media(max-width: 861px){
                display: inline-block;
                margin: 0 8px;
            }
        }
    }
    .owl-nav{
        display: none;
    }
}

.auto{
    padding-top: 100px;
    padding-bottom: 80px;
    background: #f9f9f9;
    
    @media(max-width: 861px){
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .btn-mobile{
        display: none;
        margin-bottom: 30px;
        
        @media(max-width: 861px){
            display: block;
        }
    }
    .auto_block{
        padding-bottom: 40px;
        margin-bottom: 70px;
        border-bottom: 2px solid #ffffff;
        
        @media(max-width: 861px){
            padding-bottom: 40px;
            margin-bottom: 40px;
        }
        &:last-child{
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
    }
    .auto--inner{
        width: 324px;
        margin-right: 20px;
        margin-bottom: 40px;
        display: inline-block;
        vertical-align: text-top;
        border-radius: 20px;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
        background: #fff;
        padding: 30px;
        position: relative;
        
        @media(max-width: 861px){
            padding: 25px;
            padding-top: 40px;
            width: 48%;
            margin-right: 2%;
            box-sizing: border-box;
        }
        @media(max-width: 580px){
            width: auto;
            display: block;
            margin-right: 0;
            margin-bottom: 20px;
        }
        @media(max-width: 370px){
            padding: 20px;
            padding-top: 40px;
        }
        &:nth-child(3n){
            margin-right: 0;
            
            @media(max-width: 861px){
                margin-right: 2%;
            }
            @media(max-width: 580px){
                margin-right: 0;
            }
        }
        &:nth-child(2n){
            @media(max-width: 861px){
                margin-right: 0;
            }
        }
        
        .icon-hit{
            position: absolute;
            left: 30px;
            top: -10px;
            background: red;
            color: #fff;
            padding: 5px 10px;
            padding-top: 3px;
            font-size: 13px;
            border-radius: 7px;
            box-shadow: 0 10px 10px 0 rgba(255, 0, 0, 0.37);
            
            @media(max-width: 861px){
                padding-left: 25px;
            }
            @media(max-width: 370px){
                padding-left: 20px;
            }
        }
        .title-block{
            text-align: center;
        }
        .miniature{
            height: 125px;
            margin-bottom: 20px;
            text-align: center;
            
            @media(max-width: 861px){
                height: 90px;
            }
            img{
                width: auto;
                height: auto;
                max-height: 100%;
                max-width: 100%;
            }
        }
        .info-auto{
            margin-bottom: 30px;
            text-align: center;
            
            @media(max-width: 861px){
                margin-bottom: 17px;
            }
            .info--inner{
                display: inline-block;
                width: 30px;
                padding: 5px 15px;
                padding-left: 30px;
                border-radius: 5px;
                box-shadow: 0 5px 10px 0 #efefef;
                margin-right: 5px;
                white-space: nowrap;
                
                @media(max-width: 861px){
                    font-size: 13px;
                    width: 20%;
                    box-sizing: border-box;
                    margin-right: 2%;
                    padding-left: 25px;
                    font-weight: bold;
                }
                @media(max-width: 370px){
                    font-size: 12px;
                }
                &:nth-child(1){
                    background: url('https://avto-prokat.spb.ru/templates/almac/img/seats@3x.png') no-repeat 12px 50%;
                    background-size: 18px;
                    
                    @media(max-width: 861px){
                        background-size: 12px;
                        background-position: 8px 50%;
                    }
                }
                &:nth-child(2){
                    background: url('https://avto-prokat.spb.ru/templates/almac/img/gear@3x.png') no-repeat 12px 50%;
                    background-size: 18px;
                    
                    @media(max-width: 861px){
                        background-size: 12px;
                        background-position: 8px 50%;
                    }
                }
                &:nth-child(3){
                    width: 111px;
                    background: url('https://avto-prokat.spb.ru/templates/almac/img/conditioners@3x.png') no-repeat 12px 50%;
                    background-size: 18px;
                    margin-right: 0;
                    
                    @media(max-width: 861px){
                        width: 52%;
                        margin-right: 0;
                        background-size: 12px;
                        background-position: 8px 50%;
                    }
                }
            }
        }
        .btn-block{
            .price{
                float: left;
                font-family: 'Montserrat', sans-serif;
                font-weight: bold;
                font-size: 24px;
                margin-top: 8px;
                
                @media(max-width: 861px){
                    text-align: center;
                    margin-top: 0;
                    margin-bottom: 15px;
                    float: none;
                }
            }
            .btn{
                float: right;
                font-size: 14px;
                padding: 14px 30px;
                padding-bottom: 16px;
                border-radius: 14px;
            }
        }
    }
}

.modal-auto{
    .close--modal-smg{
        @media(max-width: 1400px){
            top: 53px;
        }
        @media(max-width: 861px){
            position: fixed;
            background-color: #fff;
            right: 10px;
            top: 10px;
            border-radius: 50%;
            z-index: 2;
        }
    }
    .modal-smg-auto{
        padding: 50px;
        border-radius: 20px;
        background: #fff;
        position: relative;
        z-index: 2;
        width: 950px;
        
        @media(max-width: 861px){
            width: auto;
            height: 100vh;
            box-sizing: border-box;
            padding: 20px 30px;
            padding-top: 0;
            margin: 0;
            overflow-y: scroll;
            border-radius: 0;
        }
        .left-auto--info{
            width: 550px;
            float: left;
            
            @media(max-width: 861px){
                width: 40%;
            }
            @media(max-width: 580px){
                width: auto;
                float: none;
            }
            .gallery-auto{
                height: 215px;
                margin-bottom: 30px;
                
                @media(max-width: 861px){
                    height: 60px;
                    margin-bottom: 15px;
                    margin-top: 10px;
                }
                @media(max-width: 580px){
                    height: 45px;
                    margin-top: 5px;
                    margin-bottom: 5px;
                    display: none;
                }
                img{
                    width: auto;
                    height: auto;
                    max-height: 100%;
                    max-width: 100%;
                }
            }
            
            .info-modal--auto{
                @media(max-width: 861px){
                    display: none;
                }
                .title{
                    font-weight: bold;
                    margin-bottom: 20px;
                    
                    @media(max-width: 370px){
                        margin-bottom: 0;
                    }
                }
                ul{
                    padding: 0;
                    margin: 0;
                    
                    li{
                        width: 144px;
                        padding: 15px;
                        list-style: none;
                        display: inline-block;
                        vertical-align: text-top;
                        border-radius: 5px;
                        box-shadow: 0 5px 10px 0 #efefef;
                        margin-right: 10px;
                        margin-bottom: 13px;
                        font-size: 13px;
                        line-height: 15px;
                        font-weight: bold;
                        color: #9a9a9a;
                        
                        @media(max-width: 861px){
                            margin-right: 2%;
                            box-sizing: border-box;
                            width: 48%;
                            padding: 10px 15px;
                            margin-bottom: 2%;
                            font-size: 12px;
                            line-height: 14px;
                        }
                        @media(max-width: 370px){
                            font-size: 10px;
                            line-height: 10px;
                            margin-bottom: 1%;
                        }
                        &:nth-child(3n){
                            margin-right: 0;
                            
                            @media(max-width: 861px){
                                margin-right: 2%;
                            }
                        }
                        &:nth-child(2n){
                            @media(max-width: 861px){
                                margin-right: 0;
                            }
                        }
                        span{
                            margin-top: 5px;
                            display: block;
                            color: @color-1;
                        }
                    }
                }
            }
            .btn-info{
                margin-top: 10px;
                
                @media(max-width: 861px){
                    margin-bottom: 40px;
                }
                @media(max-width: 580px){
                    font-size: 14px;
                    line-height: 18px;
                    margin-bottom: 20px;
                }
                @media(max-width: 370px){
                    font-size: 12px;
                    line-height: 14px;
                    margin-bottom: 15px;
                }
                a{
                    @media(max-width: 580px){
                        display: none;
                    }
                }
                p{
                    @media(max-width: 370px){
                        display: none;
                    }
                }
            }
        }
        
        .form-auto{
            width: 350px;
            float: right;
            
            @media(max-width: 861px){
                width: 55%;
            }
            @media(max-width: 580px){
                width: auto;
                float: none;
            }
            .title-block{
                font-weight: bold;
                text-align: left;
                
                @media(max-width: 861px){
                    font-size: 15px;
                }
                @media(max-width: 580px){
                    margin-bottom: 10px;
                }
                @media(max-width: 370px){
                    margin-bottom: 5px;
                    font-size: 14px;
                    line-height: 16px;
                }
            }
            .price-modal--auto{
                margin-bottom: 30px;
                
                @media(max-width: 370px){
                    margin-bottom: 10px;
                }
                ul{
                    padding: 0;
                    margin: 0;
                    
                    li{
                        list-style: none;
                        margin-bottom: 5px;
                        font-weight: bold;
                        
                        @media(max-width: 580px){
                            font-size: 14px;
                            margin-bottom: 0;
                        }
                        @media(max-width: 370px){
                            display: inline-block;
                            width: 48%;
                            vertical-align: text-top;
                            font-size: 12px;
                            line-height: 15px;
                            margin-bottom: 5px;
                        }
                        span{
                            color: #646464;
                            margin-right: 2px;
                            
                            @media(max-width: 370px){
                                display: block;
                            }
                        }
                    }
                }
            }
            input{
                width: 100%;
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 10px;
                padding-bottom: 12px;
                border-radius: 14px;
                margin-bottom: 10px;
                
                @media(max-width: 580px){
                    padding-top: 7px;
                    padding-bottom: 10px;
                    font-size: 13px;
                    border-radius: 10px;
                }
            }
            .date-input{
                margin-top: 10px;
                
                span{
                    display: block;
                    margin-bottom: 7px;
                    font-size: 13px;
                }
                input{
                    width: 168px;
                    display: inline-block;
                    vertical-align: middle;
                    
                    @media(max-width: 580px){
                        display: inline-block;
                        min-width: inherit;
                        width: 48%;
                    }
                }
                .date-one{
                    margin-right: 10px;
                    
                    @media(max-width: 580px){
                        margin-right: 2%;
                    }
                }
            }
            .label-block{
                font-size: 0;
                margin-bottom: 15px;
                
                label{
                    float: left;
                    font-size: 13px;
                    box-sizing: border-box;
                    outline: none;
                    width: 173px;
                    cursor: pointer;

                    @media(max-width: 861px){
                        width: 50%;
                        font-size: 12px;
                        line-height: 16px;
                    }
                    @media(max-width: 580px){
                        line-height: 14px;
                    }
                    input{
                        opacity: 0;
                        height: 0;
                        width: 0;
                        margin: 0;

                        &:checked ~ .checkmark {
                            &::before{
                                background: @color-2 url('../img/checkmark.svg') no-repeat 50% 50%;
                                background-size: 15px;
                            }
                        }
                    }
                    
                    &:nth-child(1){
                        .checkmark{
                            border-radius: 18px 0 0 18px;
                    
                            @media(max-width: 580px){
                                border-radius: 10px 0 0 10px;
                            }
                        }
                    }
                    &:nth-child(2){
                        .checkmark{
                            border-radius: 0 18px 18px 0;
                    
                            @media(max-width: 580px){
                                border-radius: 0 10px 10px 0;
                            }
                        }
                    }
                }
                .checkmark{
                    padding: 15px 15px;
                    padding-left: 50px;
                    display: block;
                    box-shadow: 0 5px 10px 0 #efefef;
                    background: #fff;
                    position: relative;
                    
                    @media(max-width: 580px){
                        padding: 8px 10px;
                        padding-left: 30px;
                    }
                    @media(max-width: 580px){
                        min-height: 28px;
                    }
                    &::before{
                        content: '';
                        position: absolute;
                        left: 17px;
                        top: 21px;
                        width: 20px;
                        height: 20px;
                        background: #efefef;
                        border-radius: 50%;
                        transition: 0.1s all;
                        border: 1px solid #848484;
                        box-sizing: border-box;
                    
                        @media(max-width: 580px){
                            width: 15px;
                            height: 15px;
                            left: 10px;
                            top: 15px;
                        }
                    }
                }
            }
            .btn{
                width: 100%;
                
                @media(max-width: 580px){
                    padding-top: 12px;
                    padding-bottom: 14px;
                    border-radius: 10px;
                }
            }
            .btn-info{
                text-align: center;
            }
        }
    }
}

.dop{
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    
    @media(max-width: 861px){
        padding-top: 70px;
        padding-bottom: 40px;
    }
    .dop--inner{
        width: 304px;
        display: inline-block;
        vertical-align: text-top;
        position: relative;
        
        @media(max-width: 861px){
            width: 32%;
        }
        @media(max-width: 580px){
            width: auto;
            display: block;
            margin-bottom: 30px;
        }
        &::before{
            content: '';
            position: absolute;
            top: 280px;
            height: 300px;
            width: 1px;
            left: 50%;
            background: #000;
            
            @media(max-width: 861px){
                display: none;
            }
        }
        &:nth-child(3n){
            margin-right: 0;
        }
        
        .icon{
            margin: 0 auto;
            margin-bottom: 30px;
            width: 200px;
            height: 200px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
            border-radius: 50%;
            
            @media(max-width: 861px){
                width: 150px;
                height: 150px;
                margin-bottom: 15px;
            }
        }
        .title{
            font-weight: bold;
        }
    }
    img{
        position: relative;
        z-index: 2;
        margin-top: 100px;
        
        @media(max-width: 861px){
            display: none;
        }
    }
}

.work{
    padding-top: 120px;
    padding-bottom: 140px;
    background: @color-1 url('../img/bg-work.svg') no-repeat 50% 50%;
    background-size: cover;
    
    @media (max-width: 861px){
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .content-title{
        color: #fff;
    }
    .work--inner{
        position: relative;
        display: inline-block;
        vertical-align: text-top;
        width: 222px;
        margin-right: 20px;
        text-decoration: none;
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 20px 0 #434343;
        
        @media (max-width: 861px){
            width: auto;
            margin-right: 0;
            display: block;
            margin-bottom: 20px;
        }
        &:nth-child(4n){
            margin-right: 0;
        }
        &:last-child{
            @media (max-width: 861px){
                margin-bottom: 0;
            }
            .num::before{
                background: @color-2 url('../img/checkmark.svg') no-repeat 50% 50%;
                background-size: 20px;
            }
        }
        .num{
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 110px;
            line-height: 85px;
            color: @color-2;
            margin-left: -8px;
            margin-bottom: 25px;
            position: relative;
            
            @media (max-width: 861px){
                font-size: 90px;
                margin-bottom: 7px;
                margin-left: -4px;
            }
            &::before{
                content: '';
                position: absolute;
                right: 0;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: #f4f4f4 url('../img/slide-right.svg') no-repeat 50% 50%;
                background-size: 20px;
                
                @media(max-width: 861px){
                    top: 8px;
                }
            }
        }
        .title-block{
            font-weight: bold;
            
            @media(max-width: 861px){
                margin-bottom: 10px;
            }
        }
        .descr{
            min-height: 130px;
            
            @media(max-width: 861px){
                min-height: inherit;
            }
        }
    }
}

.uslov{
    padding-top: 130px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
    
    @media(max-width: 861px){
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .title-bg{
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        position: absolute;
        left: 0;
        right: 0;
        top: 30px;
        font-size: 285px;
        color: #f9f9f9;
        
        @media (max-width: 861px){
            display: none;
        }
    }
    img{
        width: 75%;
    }
    .container{
        position: relative;
        z-index: 2;
    }
    .uslov-cont{
        position: relative;
        margin-top: -360px;
        padding: 50px;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
        background: #fff;
        border-radius: 20px;
        
        @media(max-width: 861px){
            margin-top: -170px;
            padding: 30px;
            text-align: center;
        }
        @media(max-width: 580px){
            margin-top: -50px;
        }
    }
    .uslov--inner{
        text-align: left;
        display: inline-block;
        vertical-align: text-top;
        width: 217px;
        padding: 20px;
        margin-right: 20px;
        background: @color-2;
        border-radius: 20px;
        
        @media(max-width: 861px){
            width: 48%;
            margin-right: 2%;
            box-sizing: border-box;
            margin-bottom: 12px;
        }
        @media(max-width: 580px){
            display: block;
            width: auto;
            margin-right: 0;
            margin-bottom: 20px;
        }
        &:nth-child(4n){
            margin-right: 0;
            
            @media(max-width: 861px){
                margin-right: 2%;
            }
            @media(max-width: 580px){
                margin-right: 0;
            }
        }
        &:nth-child(2n){
            @media(max-width: 861px){
                margin-right: 0;
            }
        }
        &:last-child{
            @media(max-width: 861px){
                margin-bottom: 0;
            }
        }
        .icon{
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background-color: #fff;
            background-repeat: no-repeat;
            background-position: center center;
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
            margin-right: 20px;
            display: inline-block;
            vertical-align: middle;
            
            @media(max-width: 861px){
                margin: 0 auto;
                margin-bottom: 10px;
                display: block;
            }
        }
        .text{
            display: inline-block;
            vertical-align: middle;
            width: 123px;
            font-weight: bold;
            
            @media(max-width: 861px){
                width: auto;
                display: block;
                text-align: center;
            }
        }
    }
}

.form-home{
    padding-top: 100px;
    padding-bottom: 100px;
    background: #f9f9f9;
    
    @media(max-width: 861px){
        padding-top: 70px;
        padding-bottom: 70px;
        text-align: center;
    }
    .form_block{
        position: relative;
        width: 640px;
        float: left;
        padding-top: 10px;
        
        @media (max-width: 861px){
            width: auto;
            float: none;
            padding-top: 0;
        }
        .content-title{
            margin-bottom: 30px;
        }
        .adres{
            margin-bottom: 30px;
            font-size: 16px;
            padding-left: 70px;
            position: relative;
            font-weight: bold;
            text-align: left;
            
            @media(max-width: 861px){
                padding-left: 60px;
                line-height: 20px;
            }
            &::before{
                content: '';
                position: absolute;
                left: 0;
                top: -3px;
                width: 50px;
                height: 50px;
                background: @color-2 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='10' r='3'/%3e%3cpath d='M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 6.9 8 11.7z'/%3e%3c/svg%3e") no-repeat 50% 50%;
                background-size: 30px;
                box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
                border-radius: 18px;
                
                @media(max-width: 861px){
                    top: -4px;
                }
            }
            span{
                display: block;
                font-weight: normal;
            }
        }
        .contacts_block{
            padding: 0;
            margin: 0;
            margin-bottom: 45px;

            @media (max-width: 861px){
                margin-bottom: 32px;
            }
            li{
                list-style: none;
                display: inline-block;
                vertical-align: text-top;
                margin-right: 5px;
                background: #fff;
                padding: 15px;
                padding-bottom: 18px;
                box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
                border-radius: 18px;
                
                @media(max-width: 861px){
                    display: block;
                    margin-right: 0;
                    margin-bottom: 10px;
                    text-align: left;
                }
                .ct--inner{
                    text-decoration: none;
                    font-weight: bold;
                    font-size: 16px;
                    padding: 2px 0;
                    padding-left: 40px;
                    display: block;

                    @media (max-width: 861px){
                        font-size: 16px;
                        display: inline-block;
                    }
                }
                &:nth-child(3){
                    margin-right: 0;
                }
                a{
                    &:hover{
                        color: @color-2;
                    }
                }
                .phone{
                    background: url('../img/shake_phone.svg') no-repeat 3px 5px;
                    background-size: 22px;
                }
                .email{
                    background: url('../img/secured_letter.svg') no-repeat 3px 5px;
                    background-size: 22px;
                }
                .time{
                    background: url('../img/time.svg') no-repeat 0 2px;
                    background-size: 28px;
                }
                &:last-child{
                    margin-top: 15px;
                }
            }
        }
        .title-block{
            font-weight: bold;
        }
        form{
            input{
                display: inline-block;
                vertical-align: text-top;
                background: #fff;
                width: 212px;
                margin-right: 10px;

                @media (max-width: 861px){
                    margin-right: 0;
                    display: block;
                    margin-bottom: 10px;
                    width: 100%;
                }
            }
            .btn{
                display: inline-block;
                vertical-align: text-top;
            }
            .info-text{
                color: #fff;
            }
        }
    }
    .maps{
        width: 500px;
        float: right;
        
        @media (max-width: 861px){
            width: auto;
            float: none;
            margin-top: 40px;
        }
        iframe{
            width: 100%;
            height: 455px;
            
            @media (max-width: 861px){
                height: 250px;
            }
        }
    }
}

.form-home--one{
    .punct-home{
        width: 450px;
        float: left;
        
        @media (max-width: 861px){
            width: auto;
            float: none;
            margin-bottom: 50px;
        }
        .title-block{
            margin-bottom: 30px;
        }
        .adres{
            margin-bottom: 40px;
            display: block;
            text-decoration: none;
            
            &::before{
                top: -11px;
                
                @media (max-width: 861px){
                    top: -4px;
                }
            }
        }
    }
    .right{
        width: 640px;
        float: right;
        
        @media (max-width: 861px){
            width: auto;
            float: none;
        }
    }
    
    .form_block{
        width: auto;
        float: none;
    }
}

.smg-footer{
    padding: 50px 0;
    padding-top: 60px;
    background: #1d1e21;
    color: #fff;
    font-size: 13px;
    position: relative;
    
    .info-footer{
        text-align: center;
        font-size: 12.2px;
        margin-top: 20px;
        color: #bfbfbf;
    }
    .footer--inner{
        width: 396px;
        display: inline-block;
        vertical-align: middle;
        
        @media (max-width: 861px){
            width: auto;
            display: block;
        }
        &:nth-child(1){
            text-align: left;
            
            @media (max-width: 861px){
                text-align: center;
                margin-bottom: 5px;
            }
        }
        &:nth-child(2){
            text-align: center;
            
            @media (max-width: 861px){
                margin-bottom: 5px;
            }
        }
        &:nth-child(3){
            text-align: right;
            
            @media (max-width: 861px){
                text-align: center;
            }
        }
    }
    a{
        text-decoration: none;
        color: #fff;
        
        &:hover{
            color: @color-2;
        }
    }
    .policy{
        text-decoration: underline;
    }
    .danilsmg{
        display: inline-block;
        vertical-align: middle;
        padding-right: 75px;
        background: url('../img/logo_danilsmg-white.svg') no-repeat right 0;
        background-size: auto 16px;
        
        @media (max-width: 861px){
            background-position: right 3px;
        }
    }
}

.socials{
    position: fixed;
    right: 40px;
    bottom: 100px;
    z-index: 20;
    
    @media(max-width: 1400px){
        right: 17px;
    }
    @media (max-width: 861px){
        right: 10px;
        bottom: 90px;
    }
    .soc--inner{
        display: block;
        width: 50px;
        height: 50px;
		margin: 0 auto;
        margin-bottom: 10px;
        
        @media (max-width: 861px){
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
        }
        &:last-child{
            margin-bottom: 0;
        }
    }
	.phone{
		background: #fcb900 url('../img/shake_phone.svg') no-repeat center center;
        background-size: 30px;
		border-radius: 50%;
		display: none;
		
		@media (max-width: 861px){
			width: 34px;
			height: 34px;
			display: block;
			background-size: 20px;
		}
	}
    .whatsapp{
        background: url('../img/whatsapp.svg') no-repeat center center;
        background-size: contain;
    }
    .viber{
        background: url('../img/viber.svg') no-repeat center center;
        background-size: contain;
    }
    .telegram{
        background: url('../img/telegram_app.svg') no-repeat center center;
        background-size: contain;
    }
}

.btn-top{
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: block;
    width: 50px;
    height: 50px;
    background: #2e3034 url('../img/up.svg') no-repeat 50% 50%;
    background-size: 30px;
    border-radius: 50%;
    z-index: 20;
    display: none;
    cursor: pointer;
    
    @media(max-width: 1400px){
        right: 17px;
    }
    @media (max-width: 861px){
        width: 40px;
        height: 40px;
        right: 10px;
    }
}

.uslov-page{
    padding-bottom: 80px;
    
    @media (max-width: 861px){
        padding-bottom: 60px;
    }
    .tabs-nav{
        padding: 0;
        margin: 0;
        margin-bottom: 40px;
        
        li{
            list-style: none;
            display: inline-block;
            vertical-align: text-top;
            margin-right: 5px;
            
            @media (max-width: 861px){
                display: block;
                margin-right: 0;
                margin-bottom: 10px;
            }
            a{
                display: block;
                text-decoration: none;
                background: #fff;
                padding: 15px 30px;
                padding-left: 62px;
                padding-bottom: 18px;
                box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
                border-radius: 18px;
                font-weight: bold;
                
                @media (max-width: 861px){
                    line-height: 18px;
                }
            }
            .active{
                color: @color-2;
            }
            
            &:nth-child(1){
                a{
                    background: #fff url('../img/warning_shield.svg') no-repeat 25px 48%;
                    background-size: 26px;
                }
            }
            &:nth-child(2){
                a{
                    background: #fff url('../img/communication.svg') no-repeat 25px 50%;
                    background-size: 26px;
                }
            }
            &:nth-child(3){
                a{
                    background: #fff url('../img/bookmark_documents.svg') no-repeat 25px 47%;
                    background-size: 22px;
                }
            }
            &:nth-child(4){
                a{
                    background: #fff url('../img/stack_of_documents.svg') no-repeat 25px 47%;
                    background-size: 22px;
                }
            }
        }
    }
}

.faq{
    .faq--inner{
        margin-bottom: 16px;
        border-radius: 15px;
        background: #fff;
        
        .title-faq{
            position: relative;
            font-size: 18px;
            background: #f9f9f9;
            padding-top: 15px;
            padding-bottom: 19px;
            padding-left: 30px;
            padding-right: 100px;
            border-radius: 15px;
            cursor: pointer;
            transition: 0.2s all;
            
            -ms-user-select: none;
            -moz-user-select: none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            
            @media (max-width: 750px){
                font-size: 16px;
                line-height: 22px;
            }
            &:hover{
                color: @color-2;
            }
            &::before{
                content: '';
                position: absolute;
                right: 30px;
                top: 18px;
                width: 20px;
                height: 20px;
                z-index: 1;
                border-radius: 50%;
                background: #fff url('../img/slide-right.svg') no-repeat center center;
                background-size: 15px;
                transform: rotate(90deg);
                transition: 0.2s all;
            }
        }
        .active{
            background: @color-2;
                
            &::before{
                transform: rotate(-90deg);
            }
            
            &:hover{
                color: #1d1e21;
            }
        }
        .faq-text{
            padding: 30px;
            display: none;
            
            @media (max-width: 750px){
                padding-left: 5px;
                padding-right: 0;
                overflow: scroll;
            }
        }
    }
}

.form-home_uslov{
	background: url('../img/intro-bg.png') no-repeat right 50%;
	background-size: auto 85%;
	
	@media(max-width: 1400px){
		background-size: auto 80%;
		background-position: 150% 50%;
	}
	@media (max-width: 750px){
		background: #fff;
	}
    .form_block{
        .adres{
            margin-bottom: 40px;
            display: block;
            text-decoration: none;
        }
    }
}

.uslov-btn{
    text-decoration: none;
    color: #fff;
    background: @color-1;
    padding-top: 14px;
    padding-bottom: 18px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 2;
}
.uslov-btn--fixed{
    @media (max-width: 750px){
        display: block;
    }
}
.page-template-page-uslov-php{
.uslov-btn--fixed{
    @media (max-width: 750px){
        display: none;
    }
}
}

.auto_block--banner{
    padding: 50px 30px;
    padding-left: 290px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    
    @media (max-width: 750px){
        padding: 30px 20px;
        text-align: center;
    }
    &::before{
        content: '';
        position: absolute;
        width: 218px;
        left: 30px;
        top: 0;
        bottom: 0;
        background: url('../img/bg-banner.png') no-repeat 0 50%;
        background-size: contain;
        
        @media (max-width: 750px){
            position: static;
            width: 100%;
            height: 100px;
            display: block;
            margin-bottom: 20px;
            background-position: center center;
        }
    }
    .title-block{
        width: 600px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 39px;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 0;
        
        @media (max-width: 750px){
            width: auto;
            display: block;
            margin-right: 0;
            font-weight: normal;
            margin-bottom: 25px;
        }
    }
    .btn{
        display: inline-block;
        vertical-align: middle;
    }
}

.page-single{
    .entrytext{
        @media (max-width: 750px){
            width: 100%;
            overflow: scroll;
        }
    }
}

.adres-dop{
    .flex_block {
        width: 100%;
        flex-flow: row wrap;
        display: flex;
        display: -webkit-flex;
        -webkit-flex-flow: row wrap;
        display: -ms-flexbox;
        -ms-flex-flow: row wrap;
        -ms-align-content: flex-start;
        -webkit-align-content: flex-start;
        align-content: flex-start;
        list-style: none;
    }
    .adres-item{
        display: inline-block;
        padding: 15px;
        background: #fff;
        box-sizing: border-box;
        width: calc(~'33.333% - 10px');
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
        text-decoration: none;
        color: @color-2;
        transition: 0.3s all;
        
        @media (max-width: 750px){
            width: calc(~'50% - 5px');
            margin-right: 10px;
            line-height: 20px;
        }
        &:nth-child(3n){
            margin-right: 0;
            
            @media (max-width: 750px){
                margin-right: 10px;
            }
        }
        &:nth-child(2n){
            @media (max-width: 750px){
                margin-right: 0;
            }
        }
        span{
            display: block;
            font-size: 12px;
            line-height: 18px;
            color: @color-1;
            transition: 0.3s all;
        }
        &:hover{
            background: @color-2;
            color: #fff;
            
            span{
                color: #fff;
            }
        }
    }
}

.big-form-bottom{
    text-align: center;
    padding: 100px 0;
    
    .title-block{
        font-weight: bold;
    }
    form{
        input{
            display: inline-block;
            vertical-align: text-top;
            background: #fff;
            width: 212px;
            margin-right: 10px;

            @media (max-width: 861px){
                margin-right: 0;
                display: block;
                margin-bottom: 10px;
                width: 100%;
            }
        }
        .btn{
            display: inline-block;
            vertical-align: text-top;
        }
        .info-text{
            color: #fff;
        }
        
        .polit-form{
            text-align: center;
        }
        .checkmark{
            padding: 5px 0;
            display: inline-block;
            padding-left: 40px;
        }
    }
}