@color-1: #1f4a81;
@color-2: #272727;

@bg: #e9f3ff;
@b-color: #ebf0f5;
@border: 1px solid @b-color;

@text: #1f4a81;
@text-p: #818181;
@w: #fff;

@p: 100px;
@p-min: 50px;

@font-1: 'Manrope', 'Arial', sans-serif;
@font-2: 'Manrope', 'Arial', sans-serif;

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

.clearfix:after{
	content: "";
	clear: both;
	display: table;
}

//ОБЩИЕ СТИЛИ
body{
    color: @text;
    background: #ffffff;
    font-size: 16px;
    line-height: normal;
    font-family: @font-2;
    
    @media(max-width: 1600px){
        font-size: 14px;
    }
}

img{
    max-width: 100%;
    vertical-align: bottom;
}
.miniature{
    background: @bg;
    overflow: hidden;
        
    iframe,
    video,
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bg-btn{
        position: absolute;
        left: 0;
        top: 0;
        text-align: center;
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        align-content: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.4);
        transition: 0.3s all;
        transform: translate(0, 110%);
        opacity: 0;

        span{
            display: block;
            margin-top: -5px;
            text-transform: uppercase;
            color: @w;
            font-weight: bold;
        }
    }
    &:hover{
        .bg-btn{
            transform: translate(0, 0);
            opacity: 1;
        }
    }
}
.miniature-hover{
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    
    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: 0.3s all;
        z-index: 3;
    }
    &::after{
        content: '';
        position: absolute;
        right: 50px;
        top: 50px;
        width: 30px;
        height: 30px;
        background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M7 17l9.2-9.2M17 17V7H7'/%3e%3c/svg%3e") no-repeat center center;
        background-size: contain;
        opacity: 0;
        transition: 0.3s all;
        z-index: 4;
    }
    &:hover{
        &::after{
            opacity: 1;
            right: 20px;
            top: 20px;
        }
        &::before{
            opacity: 1;
        }
    }
}

.container{
    margin: 0 @p;
    
    @media(min-width: 2100px){
        width: 1900px;
        margin: 0 auto;
    }
    @media(max-width: 1600px){
        width: auto;
        margin: 0 70px;
    }
    @media(max-width: 1200px){
        margin: 0 50px;
    }
    @media(max-width: 1000px){
        margin: 0 30px;
    }
    @media(max-width: 700px){
        margin: 0 20px;
    }
}
.container-min{
    width: 1000px;
    margin: 0 auto;
    
    @media(max-width: 1200px){
        width: auto;
        margin: 0 30px;
    }
    @media(max-width: 700px){
        margin: 0 20px;
    }
}

.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;
}

.title-bold,
.descr-modal,
p, li{
    line-height: 22px;
    margin: 0;
    color: @text-p;
}

a{
    color: @text;
    transition: 0.3s all;
    
    &:hover{
        color: @color-1;
    }
}

ul{
    margin: 0;
    padding: 0;
    
    li{
        list-style: none;
    }
}


@font-title-big: 60px;
@font-title-cont: 40px;
@font-title-block: 20px;

.title-big{
    font-size: @font-title-big;
    line-height: 110%;
    font-weight: 600;
    letter-spacing: -3px;
    font-family: @font-1;
    margin-bottom: 40px;
    margin-left: -4px;
    
    @media(max-width: 1600px){
        font-size: 40px;
        letter-spacing: normal;
        margin-top: -10px;
    }
    @media(max-width: 800px){
        font-size: 30px;
    }
    h1{
        font-size: @font-title-big;
        line-height: 110%;
        font-weight: 500;
        margin: 0;
        
        @media(max-width: 1600px){
            font-size: 40px;
            letter-spacing: normal;
        }
        @media(max-width: 800px){
            font-size: 30px;
        }
    }
}
.content-title{
    font-size: @font-title-cont;
    line-height: 110%;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 30px;
    margin-top: -15px;
    position: relative;
    font-family: @font-1;
    
    @media(max-width: 1600px){
        font-size: 30px;
        letter-spacing: normal;
        margin-top: -10px;
    }
    @media(max-width: 800px){
        font-size: 25px;
    }
    h1{
        font-size: @font-title-cont;
        line-height: 110%;
        font-weight: 500;
        margin: 0;
        
        @media(max-width: 1600px){
            font-size: 30px;
            letter-spacing: normal;
        }
        @media(max-width: 800px){
            font-size: 25px;
        }
    }
}
br{
    @media(max-width: 800px){
        display: none;
    }
}

.title-modal,
.title-block{
    font-family: @font-1;
    font-size: @font-title-block;
    line-height: 130%;
    letter-spacing: -0.2px;
    font-weight: 500;
    margin-bottom: 25px;
    
    @media(max-width: 1600px){
        font-size: 16px;
        letter-spacing: normal;
    }
}
 
.title-bold{
    font-weight: bold;
    margin-bottom: 20px;
}

.title-decor{
    font-family: @font-1;
    font-weight: 500;
    margin-bottom: 25px;
    color: #b3b3b3;
}

.btn{
    border: none;
    outline: none;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    vertical-align: text-top;
    box-sizing: border-box;
    transition: 0.3s all;
    
    padding: 20px 40px;
    padding-top: 16px;
    background: @color-1;
    color: @w;
    
    @media(max-width: 800px){
        width: 100%;
    }
    &:hover{
        color: @w;
        background: @color-2;
    }
}
.btn-gray{
    background: @bg;
    color: @text;
}

.btn-border{
    padding: 17px 39px;
    padding-top: 13px;
    border: 1px solid @text;
    background: transparent;
    color: @text;
}

.btn-min{
    box-sizing: border-box;
    padding: 10px;
    padding-top: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    background: @color-1;
    color: @w;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all;

    &:hover{
        background: @color-2;
        color: @w;
    }
}

//слайдер
.swiper{
    .swiper-wrapper{
        align-content: flex-start;
        list-style: none;
    }
}
.slider-cont{
    position: relative;
}
.slider-nav-item{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-color: @w;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s all;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    &:hover{
        opacity: 0.5;
    }
}
.slider-prev{
    left: -20px;
    background: @bg url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 18l-6-6 6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
}
.slider-next{
    right: -20px;
    background: @bg url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 55% 50%;
}
.swiper-slide{
    display: block;
    height: auto !important;
}
.swiper-pagination{
    position: absolute;
    right: 200px;
    bottom: 0 !important;
    height: auto;
    padding: 5px 10px;
    padding-bottom: 6px;
    border-radius: 20px;
    background: @bg;
    display: inline-block;
    width: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 0) !important;
}
//слайдер

.modal-smg_boby{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(3px);
    display: none;
    
    .modal-smg_boby-content{
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        align-content: center;
        justify-content: center;
        
        .modal-smg{
            width: 400px;
            position: relative;
            background-color: @w;
            z-index: 2;
            box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.3);
            text-align: center;
            border-radius: 10px;
            
            @media(max-width: 800px){
                width: auto;
                margin: 0 20px;
            }
            input{
                width: 100%;
                margin-bottom: 15px;
            }
        }
            
        .modal-smg_container{
            padding: 60px 40px;
            
            @media(max-width: 800px){
                padding: 40px 20px;
            }
        }
        
        .descr-modal{
            margin-bottom: 20px;
        }
        .btn{
            width: 100%;
        }
    }
    .close-smg_boby{
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: 0.5s all;
    }
}

.modal-smg-thanks{
    .modal-smg{
        .thanks-content{
            text-align: center;

            .icon-ok{
                margin: 0 auto;
                margin-bottom: 15px;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: @color-1 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e") no-repeat 50% 50%;
            }
            .descr-modal{
                margin-bottom: 0;
            }
        }
    }
}

.socials-modal{
    margin-top: 40px;
    
    .soc--inner{
        display: block;
        text-align: left;
        background: #6cd96c;
        box-shadow: 0 15px 25px 0 rgba(0, 255, 39, 0.12);
        color: @w;
        text-decoration: none;
        padding: 20px 40px;
        border-radius: 7px;
        padding-top: 17px;
        transition: 0.3s all;
        border: none;
        outline: none;
        cursor: pointer;
        box-sizing: border-box;
        padding-left: 60px;
        position: relative;
        margin-top: 15px;
        
        &::before{
            content: '';
            position: absolute;
            left: 20px;
            top: 13px;
            width: 26px;
            height: 26px;
        }
    }
    .whatsapp{
        &:hover{
            background: #65ac65;
        }
        &::before{
            background: url("../img/whatsapp.svg") no-repeat 50% 50%;
            background-size: contain;
        }
    }
    .telegram{
        background: #61c7f5;
        box-shadow: 0 15px 25px 0 rgba(0, 177, 255, 0.12);
        
        &:hover{
            background: #59add3;
        }
        &::before{
            background: url("../img/telegram_app.svg") no-repeat 50% 50%;
            background-size: contain;
        }
    }
    .viber{
        background: #9e81d1;
        box-shadow: 0 15px 25px 0 rgba(98, 0, 255, 0.12);
        
        &:hover{
            background: #7e7196;
        }
        &::before{
            background: url("../img/viber.svg") no-repeat 50% 50%;
            background-size: contain;
        }
    }
}

.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("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
    cursor: pointer;
    
    &:hover{
        opacity: 0.3;
    }
}


.socials{
    padding: 0;
    margin: 0;
    margin-top: 30px;
    
    li{
        display: inline-block;
        vertical-align: text-top;
        vertical-align: top;
        margin-right: 5px;

        .soc-item{
            display: block;
            text-decoration: none;
            width: 40px;
            height: 40px;
            background: @color-1;
            border-radius: 50%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 20px;
            transition: 0.3s all;
            
            &:hover{
                background-color: @color-1;
            }
        }
        .wa{
            background-image: url('../img/whatsapp.svg');
            background-color: #6cd96c;

        }
        .tg{
            background-image: url('../img/telegram_app.svg');
            background-color: #61c7f5;
        }
        .vk{
            background-image: url('../img/vk.svg');
            background-color: #0077ff;
        }
    }
}

form{
    textarea,
    input{
        box-sizing: border-box;
        background: #fff;
        border: @border;
        padding: 0 30px;
        padding-top: 13px;
        padding-bottom: 18px;
        transition: 0.3s all;
        box-sizing: border-box;
        outline: none;
        border-radius: 5px;
        
        @media(max-width: 800px){
            width: 100%;
            margin-right: 0;
        }
        &:nth-child(2n){
            margin-right: 0;
        }
        
        &:focus{
            border-color: @color-1;
            
            &::-webkit-input-placeholder {opacity: 0}
            &::-moz-placeholder          {opacity: 0}
            &:-moz-placeholder           {opacity: 0}
            &:-ms-input-placeholder      {opacity: 0}
        }
    }
    textarea{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        min-height: 75px;
        height: 75px;
        margin-right: 0;

        @media(max-width: 800px){
            height: 120px;
        }
    }
    
    .polit-form{
        display: block;
        text-align: left;
        margin-top: 10px;
        margin-bottom: 20px;
        
        input{
            display: none !important;

            &:checked ~ .checkmark {
                &::before{
                    background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e") no-repeat 50% 50%;
                    background-size: 12px;
                }
            }
        }

        .checkmark{
            padding-left: 20px;
            display: block;
            position: relative;
            font-size: 11px;
            line-height: 14px;
            
            &::before{
                content: '';
                position: absolute;
                left: 0;
                top: 0.5px;
                width: 12px;
                height: 12px;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 2px;
                transition: 0.1s all;
                cursor: pointer;
            }
        }
    }
}

.contacts-list{
    padding: 0;
    margin: 0;
    
    li{
        margin-bottom: 10px;
        list-style: none;
        
        &:last-child{
            margin-bottom: 0;
        }
    }
        
    .ct--inner{
        display: inline-block;
        position: relative;
        text-decoration: none;
        transition: 0.3s all;
    }
    .title-block{
        margin: 0;
    }
    .content-title{
        margin: 0;
        margin-bottom: 10px;
    }
}



.cont-two{
    .cont-left{
        width: calc(~'33.333% - 15px');
        box-sizing: border-box;
        padding-right: 50px;
        margin-right: 30px;
        
        @media(max-width: 1000px){
            width: 100%;
            padding-right: 0;
            margin-right: 0;
            margin-bottom: 40px;
        }
    }
    .cont-right{
        width: calc(~'66.666% - 15px');
        box-sizing: border-box;
        
        @media(max-width: 1000px){
            width: 100%;
        }
    }
}
.cont-two-right{
    .cont-left{
        width: calc(~'66.666% - 15px');
        
        @media(max-width: 1000px){
            width: 100%;
        }
    }
    .cont-right{
        width: calc(~'33.333% - 15px');
        
        @media(max-width: 1000px){
            width: 100%;
        }
    }
}

.two-item{
    box-sizing: border-box;
    width: calc(~'50% - 10px');
    margin-right: 20px;
    margin-top: 20px;
    
    @media(max-width: 900px){
        width: 100%;
        margin-right: 0;
    }
    &:nth-child(2n){
        margin-right: 0;
    }
    &:nth-child(-n+2){
        margin-top: 0;
        
        @media(max-width: 900px){
            margin-top: 20px;
        }
    }
    &:nth-child(1){
        @media(max-width: 900px){
            margin-top: 0;
        }
    }
}
.three-item{
    box-sizing: border-box;
    width: calc(~'33.333% - 13.5px');
    margin-right: 20px;
    margin-top: 20px;
    
    @media(max-width: 1000px){
        width: calc(~'50% - 10px');
    }
    @media(max-width: 700px){
        width: 100%;
        margin-right: 0;
    }
    &:nth-child(3n){
        margin-right: 0;
        
        @media(max-width: 1000px){
            margin-right: 20px;
        }
        @media(max-width: 700px){
            margin-right: 0;
        }
    }
    &:nth-child(2n){
        @media(max-width: 1000px){
            margin-right: 0;
        }
    }
    &:nth-child(-n+3){
        margin-top: 0;
        
        @media(max-width: 1000px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+2){
        @media(max-width: 1000px){
            margin-top: 0;
        }
        @media(max-width: 700px){
            margin-top: 20px;
        }
    }
    &:nth-child(1){
        @media(max-width: 700px){
            margin-top: 0;
        }
    }
}
.four-item{
    box-sizing: border-box;
    width: calc(~'25% - 15px');
    margin-right: 20px;
    margin-top: 20px;
    
    @media(max-width: 1200px){
        width: calc(~'33.3333% - 14px');
    }
    @media(max-width: 900px){
        width: calc(~'50% - 10px');
    }
    @media(max-width: 700px){
        width: 100%;
        margin-right: 0;
    }
    &:nth-child(4n){
        margin-right: 0;
        
        @media(max-width: 1200px){
            margin-right: 20px;
        }
        @media(max-width: 700px){
            margin-right: 0;
        }
    }
    &:nth-child(3n){
        @media(max-width: 1200px){
            margin-right: 0;
        }
        @media(max-width: 900px){
            margin-right: 20px;
        }
        @media(max-width: 700px){
            margin-right: 0;
        }
    }
    &:nth-child(2n){
        @media(max-width: 900px){
            margin-right: 0;
        }
    }
    &:nth-child(-n+4){
        margin-top: 0;
        
        @media(max-width: 1200px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+3){
        @media(max-width: 1200px){
            margin-top: 0;
        }
        @media(max-width: 900px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+2){
        @media(max-width: 900px){
            margin-top: 0;
        }
        @media(max-width: 700px){
            margin-top: 20px;
        }
    }
    &:nth-child(1){
        @media(max-width: 700px){
            margin-top: 0;
        }
    }
}
.five-item{
    box-sizing: border-box;
    width: calc(~'20% - 16px');
    margin-right: 20px;
    margin-top: 20px;
    
    @media(max-width: 1300px){
        width: calc(~'25% - 15px');
    }
    @media(max-width: 1200px){
        width: calc(~'33.3333% - 14px');
    }
    @media(max-width: 900px){
        width: calc(~'50% - 10px');
    }
    @media(max-width: 700px){
        width: 100%;
        margin-right: 0;
    }
    &:nth-child(5n){
        margin-right: 0;
        
        @media(max-width: 1300px){
            margin-right: 20px;
        }
        @media(max-width: 700px){
            margin-right: 0;
        }
    }
    &:nth-child(4n){
        @media(max-width: 1300px){
            margin-right: 0;
        }
        @media(max-width: 1200px){
            margin-right: 20px;
        }
    }
    &:nth-child(3n){
        @media(max-width: 1200px){
            margin-right: 0;
        }
        @media(max-width: 900px){
            margin-right: 20px;
        }
        @media(max-width: 700px){
            margin-right: 0;
        }
    }
    &:nth-child(2n){
        @media(max-width: 900px){
            margin-right: 0;
        }
    }
    
    &:nth-child(-n+5){
        margin-top: 0;
        
        @media(max-width: 1300px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+4){
        @media(max-width: 1300px){
            margin-top: 0;
        }
        @media(max-width: 1200px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+3){
        @media(max-width: 1200px){
            margin-top: 0;
        }
        @media(max-width: 900px){
            margin-top: 20px;
        }
    }
    &:nth-child(-n+2){
        @media(max-width: 900px){
            margin-top: 0;
        }
        @media(max-width: 700px){
            margin-top: 20px;
        }
    }
    &:nth-child(1){
        @media(max-width: 700px){
            margin-top: 0;
        }
    }
}


.icon{
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: text-top;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    margin-bottom: 15px;
}

//ОБЩИЕ СТИЛИ


.head-smg{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 10px 0;
    transition: 0.3s all;
    background: #fff;
    
    .flex_block{
        align-items: center;
        justify-content: space-between;
    }
    .logo{
        display: block;
        width: 100px;
        height: 62px;
        background: url('../img/logo.svg') no-repeat 0 50%;
        background-size: contain;
        // display: none;
        
        @media(max-width: 1600px){
            height: 52px;
        }
        @media(max-width: 1450px){
            width: 70px;
            height: 45px;
        }
    }
    .head-right{
        @media(max-width: 1280px){
            width: calc(~'100% - 100px');
        }
        .btn-modal-region{
            display: inline-block;
            vertical-align: middle;
            padding: 10px 0;
            padding-left: 28px;
            padding-right: 15px;
            font-size: 12px;
            line-height: 14px;
            background: transparent;
            border: none;
            outline: none;
            width: 185px;
            text-align: left;
            position: relative;
            color: @color-1;
            transition: 0.3s all;
            box-sizing: border-box;
            
            @media(max-width: 1450px){
                font-size: 11px;
                width: 170px;
                padding-right: 10px;
            }
            @media(max-width: 1320px){
                padding-right: 0;
            }
            @media(max-width: 1280px){
                padding-right: 60px;
                width: auto;
            }
            &::before{
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 24px;
                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='%231f4a81' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11.5' cy='8.5' r='5.5'/%3e%3cpath d='M11.5 14v7'/%3e%3c/svg%3e") no-repeat 50% 40%;
            }
            &:hover{
                opacity: 0.5;
            }
        }
        .btn{
            display: inline-block;
            vertical-align: middle;
            
            @media(max-width: 1450px){
                font-size: 11px;
            }
            @media(max-width: 1320px){
                display: none;
            }
        }
    }
}
.head-smg-fixed{
    padding: 5px 0;
    
    .menu-smg .menu-animate-mobile{
        @media(max-width: 1000px){
            top: 55px;
        }
    }
}

.menu-smg{
    .btn-menu{
        display: none;
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -22px;
        text-decoration: none;
        text-align: center;
        color: #fff;
        z-index: 3;

        @media(max-width: 1280px){
            display: block;
        }
        .icon-menu{
            display: inline-block;
            vertical-align: middle;
            padding: 10px;
            padding-top: 12px;
            height: 23px;
            width: 25px;
            position: relative;
            margin-right: -10px;

            span{
                display: block;
                width: 25px;
                height: 2px;
                background: @color-1;
                border-radius: 10px;
                margin: 4px 0;
                transition: 0.3s all;
            }
        }
    }
    .active{
        .icon-menu{
            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: 1280px){
            display: none;
            position: absolute;
            top: 65px;
            background: @text;
            padding: 40px 20px;
            left: 0;
            width: 100%;
            z-index: 20;
            box-sizing: border-box;
        }
        .contacts-list{
            display: none;
            border-top: 1px solid #2c64a9;
            padding-top: 10px;
            margin-top: 10px;

            @media(max-width: 1280px){
                display: block;
            }
            li{
                margin-bottom: 0;

                a{
                    margin-bottom: 0;
                    font-size: 20px;
                    opacity: 0.5;
                }
            }
            .btn{
                margin-top: 10px;
            }
        }
    }
    ul{
        li{
            list-style: none;
            display: inline-block;
            vertical-align: text-top;
            position: relative;

            @media(max-width: 1280px){
                display: block;
            }
            a{
                display: block;
                text-decoration: none;
                padding: 20px 17px;
                box-sizing: border-box;
                transition: 0.3s all;
                color: @text;
                position: relative;
                font-weight: 500;
                font-size: 14px;

                @media(max-width: 1600px){
                    font-size: 12px;
                }
                @media(max-width: 1950px){
                    padding: 20px 10px;
                }
                @media(max-width: 1450px){
                    padding: 20px 7px;
                }
                @media(max-width: 1280px){
                    padding: 10px 0;
                    color: #fff;
                    font-size: 16px;
                }
                &:hover{
                    opacity: 0.5;
                }
            }
            ul{
                position: absolute;
                width: 300px;
                background: @w;
                padding: 30px;
                top: 60px;
                display: none;
                
                @media(max-width: 1280px){
                    width: 100%;
                    left: 0;
                    right: 0;
                    top: 39px;
                    z-index: 3;
                }
                li{
                    display: block;
                    
                    a{
                        padding: 10px 0;
                        color: @text !important;
                        
                        &:hover{
                            color: @color-1 !important;
                        }
                    }
                }
            }
            &:hover > ul{
                display: block;
            }
        }
        .current-menu-item{
            a{
                opacity: 0.5;
            }
        }
    }
}

.intro{
    position: relative;
    border-top: 5px solid @color-1;
    margin-top: 82px;
    padding-top: @p;
    
    @media(max-width: 800px){
        margin-top: 65px;
        padding-top: @p-min;
    }
    .two-item{
        display: flex;
        align-items: flex-end;
    }
    .intro-top{
        margin-bottom: @p-min;
    }
    .title-big{
        margin-bottom: 0;

        span{
            width: 20%;
            display: inline-block;
        }
    }
    .title-block{
        margin-bottom: 0;
    }

    .miniature{
        position: relative;
        padding-top: 35%;

        @media(max-width: 800px){
            padding-top: 45%;
        }
        img{
            position: absolute;
            left: 0;
            top: 0;
        }
        .action{
            position: absolute;
            right: @p-min;
            top: @p-min;
            width: 132px;
            height: 132px;
            background: url('../img/star.svg') no-repeat 50% 50%;
            background-size: contain;
            color: @w;
            z-index: 3;
            text-align: center;

            @media(max-width: 800px){
                transform: scale(0.8);
                right: auto;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }
            span{
                display: block;
                text-align: center;
                padding-top: 45px;
            }
            b{
                display: block;
                margin-top: -2px;
            }
        }

        // &::before{
        //     content: '';
        //     position: absolute;
        //     left: 0;
        //     top: 0;
        //     width: 100%;
        //     height: 100%;
        //     background: @color-1;
        //     transition: 0.3s all;
        //     opacity: 0.7;
        //     z-index: 2;
        // }
    }
}

.smg-footer{
    color: @w;
    background: @text;
    font-size: 13px;
    padding-top: 30px;
    padding-bottom: 30px;
    
    @media(max-width: 800px){
        padding-top: 20px;
        text-align: center;
    }
    a{
        color: @w;
        
        &:hover{
            color: @color-1;
        }
    }
    .polit{
        text-decoration: none;
    }
    .danilsmg{
        text-decoration: none;
        display: inline-block;
        vertical-align: middle;
        padding-right: 60px;
        background: url('../img/logo_danilsmg-white.svg') no-repeat right 2.5px;
        background-size: auto 14px;
        color: @w;
    }
    
    .three-item{
        @media(max-width: 800px){
            margin-top: 10px;
        }
        &:nth-child(2){
            text-align: center;
        }
        &:nth-child(3){
            text-align: right;
            
            @media(max-width: 800px){
                text-align: center;
            }
        }
    }
}


.intro-page{
    padding: @p-min;
    padding-top: 180px;
    padding-bottom: @p;
    padding-right: 30%;
    position: relative;
    background: @bg;
    // text-align: center;
    
    @media(max-width: 900px){
        padding: 20px;
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .title-big,
    .content-title{
        margin-bottom: 0;
    }
}
.breadgrumbs{
    margin-top: 10px;
    
    ul{
        padding: 0;
        margin: 0;

        li{
            list-style: none;
            display: inline-block;
            vertical-align: text-top;
            font-size: 14px;
            margin-right: 15px;
            padding-right: 15px;
            position: relative;
            color: #8dafdb;

            @media(max-width: 800px){
                font-size: 11px;
                line-height: 14px;
                padding-right: 7px;
                margin-right: 7px;
            }
            &::before{
                content: '';
                position: absolute;
                display: block;
                right: -8px;
                top: 5px;
                width: 14px;
                height: 14px;
                background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 24 24' fill='none' stroke='%238dafdb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
                background-size: contain;
                
                @media(max-width: 800px){
                    top: 1px;
                }
            }
            &:last-child{
                padding-right: 0;
                margin-right: 0;

                &::before{
                    display: none;
                }
            }
            a{
                color: @color-1;
                text-decoration: none;
                border-bottom: 1px solid transparent;

                &:hover{
                    border-color: @color-1;
                }
            }
        }
    }
}

.page-content{
    padding-top: 100px;
    padding-bottom: 100px;
    
    @media(max-width: 800px){
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.entrytext{
    figure{
        margin: 0;
    }
    .wp-block-image{
        margin-bottom: 20px;
    }
    img{
        height: auto;
    }
    h2, h3, h4, h5, h6{
        font-weight: bold;
        margin: 20px 0;
        margin-top: 50px;
        
        &:first-child{
            margin-top: 0;
        }
    }
    p{
        display: block;
        margin-bottom: 20px;
    }
    ul{
        margin-bottom: 40px;
        
        li{
            margin-bottom: 8px;
            color: @text-p;
            list-style: none;
            position: relative;
            padding-left: 15px;
            
            &::before{
                content: '';
                position: absolute;
                left: 0;
                top: 7px;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: @color-1;
                
                @media(max-width: 1400px){
                    top: 7px;
                }
            }
        }
    }
    ol{
        padding: 0;
        margin: 0;
        margin-bottom: 40px;
        counter-reset: myCounter;
        
        li{
            margin-bottom: 10px;
            line-height: 26px;
            color: @text-p;
            list-style: none;
            position: relative;
            padding-left: 40px;
            
            &::before{
                counter-increment: myCounter;
                content: counter(myCounter);
                position: absolute;
                left: 0;
                top: 1px;
                width: 24px;
                height: 24px;
                background: @color-1;
                line-height: 24px;
                text-align: center;
                color: #fff;
                border-radius: 50%;
                font-size: 14px;
            }
        }
    }
    
    .wp-block-gallery{
        margin-top: 50px;
    }
    .blocks-gallery-item{
        width: auto;
        list-style: none;
        padding-left: 0;
        
        &::before{
            display: none;
        }
    }
    .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
        width: calc(50% - 8px);
    }
    
    table{
        margin-bottom: 30px;
        width: 100%;
        
        @media(max-width: 900px){
            overflow: scroll;
            display: block;
        }
        tbody{
            min-width: 500px;
        }
        tr{
            &:nth-child(1){
                font-weight: bold;
            }
            &:nth-child(2n){
                background: @bg;
            }
            td{
                padding: 20px;
                       
                @media(max-width: 900px){
                    padding: 10px;
                }
            }
        }
    }
    
    *:last-child{
        margin-bottom: 0;
    }
}

.socials-fixed{
    position: fixed;
    right: 40px;
    bottom: 30px;
    z-index: 20;
	transition: 0.3s all;
    
    @media(max-width: 1400px){
        right: 17px;
    }
    @media(max-width: 500px){
        right: 10px;
    }
    .soc--inner{
        display: block;
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        border-radius: 50%;
        transition: 0.3s all;
        
        @media(max-width: 500px){
            width: 40px;
            height: 40px;
            margin-bottom: 6px;
        }
        &:last-child{
            margin-bottom: 0;
        }
    }
    .whatsapp{
        background: #6cd96c url('../img/whatsapp.svg') no-repeat center center;
        background-size: 60%;
        
        &:hover{
            background-color: #65ac65;
        }
    }
    .viber{
        background: #9e81d1 url('../img/viber.svg') no-repeat center center;
        background-size: 60%;

        &:hover{
            background-color: #7e7196;
        }
    }
    .telegram{
        background: #61c7f5 url('../img/telegram_app.svg') no-repeat center center;
        background-size: 60%;

        &:hover{
            background-color: #59add3;
        }
    }
}

.socials-fixed--active{
	bottom: 120px;
	
    @media(max-width: 1400px){
        bottom: 100px;
    }
    @media(max-width: 500px){
    }
}


.btn-top{
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: block;
    width: 50px;
    height: 50px;
    background: lighten(@text, 5%) 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='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='arcs'%3e%3cpath d='M18 15l-6-6-6 6'/%3e%3c/svg%3e") no-repeat 50% 45%;
    border-radius: 50%;
    transition: 0.3s all;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
    
    &:hover{
        background-color: @color-1;
    }
    @media(max-width: 1400px){
        right: 17px;
    }
    @media(max-width: 800px){
        width: 40px;
        height: 40px;
        right: 10px;
    }
}
.btn-top--active{
    opacity: 1;
    z-index: 20;
}

.page-error{
    text-align: center;
    
    .title{
        font-size: 200px;
        font-weight: bold;
        
        @media(max-width: 800px){
            font-size: 90px;
        }
    }
    .title-block{
        margin-bottom: 40px;
    }
    .error-text{
        padding: 100px;
        padding-top: 50px;
        background: @bg;
        
        @media(max-width: 800px){
            padding: 50px 30px;
            padding-top: 30px;
        }
    }
}

.page-contacts{
    position: relative;
    margin-top: 82px;
    padding-top: @p;
    padding-bottom: @p;
    text-align: center;
    
    .contacts-list{
        padding: 0;
        margin: 0;
        
        li{
            span{
                display: block;
            }
        }
        .ct--inner{
            display: block;
        }
    }
    .miniature{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        
        &::before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            transition: 0.3s all;
            z-index: 2;
        }
    }
    .contacts-cont{
        padding: @p;
        position: relative;
        z-index: 3;
        display: inline-block;
        background: @bg;
        max-width: 500px;

        @media(max-width: 900px){
            padding: 50px 20px;
        }
        .content-title{
            margin-bottom: 10px;
        }
        .contacts-list{
            margin-top: @p-min;

            span{
                font-size: 12px;
            }
            .ct--inner{
                color: @color-1;
            }
            .title-block{
                font-weight: bold;
            }
        }
    }
}
.maps-contacts{
    iframe{
        height: 600px;
        
        @media(max-width: 900px){
            height: 400px;
        }
    }
}

.products{
    padding-top: @p;
    padding-bottom: @p;
    
    @media(max-width: 800px){
        padding: 50px 0;
    }
}
.product-item{
    position: relative;
    width: 25%;
    box-sizing: border-box;
    border-right: @border;
    border-left: @border;
    margin-left: -1px;
    border-bottom: @border;
    margin-bottom: -1px;
    margin-top: @p-min;
    background: @w;

    @media (max-width: 1200px){
        width: 50%;
    }
    @media(max-width: 800px){
        width: 100%;
        margin-top: 30px;
        padding-bottom: 0;
    }
    &:nth-child(-n+4){
        margin-top: 0;
        
        @media(max-width: 800px){
            margin-top: 30px;
        }
    }
    &:first-child{
        @media(max-width: 800px){
            margin-top: 0;
        }
    }
    .miniature{
        padding-top: 70%;
        position: relative;

        img{
            position: absolute;
            left: 0;
            top: 0;
        }
    }
    .text{
        padding: 30px;
        padding-bottom: 105px;

        @media(max-width: 800px){
            padding-bottom: 20px;
        }
        .art{
            opacity: 0.5;
            font-size: 12px;
            margin-bottom: 20px;
        }
        .title-block{
            text-decoration: none;
            display: block;

            &:hover{
                opacity: 0.5;
            }
        }
        ul{
            li{
                padding-left: 30px;
                position: relative;
                color: @color-1;
                margin-bottom: 7px;

                &::after,
                &::before{
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 10px;
                    width: 18px;
                    height: 2px;
                    background: @color-1;
                }
                &::after{
                    left: 8px;
                    top: 2px;
                    width: 2px;
                    height: 18px;
                }
            }
        }
        .price{
            color: #65ac65;
            margin-top: 30px;
            margin-bottom: 0;
            
            @media(max-width: 800px){
                margin-top: 15px;
            }
        }
    }
    .btn-block{
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 4;
        border-top: @border;

        @media(max-width: 800px){
            position: static;
            margin: 0;
        }
        .btn{
            width: 50%;
            padding-left: 10px;
            padding-right: 10px;
        }
    }
}

.cats{
    padding-top: @p;

    @media(max-width: 800px){
        padding-top: 50px;
    }
    .title-big{
        border-bottom: 5px solid @color-1;
        padding-bottom: 20px;
        margin-bottom: @p;
        
        @media(max-width: 800px){
            margin-bottom: 30px;
        }
    }
}
.cat-item{
    position: relative;
    margin-bottom: @p;
    padding-bottom: @p;
    border-bottom: @border;

    @media(max-width: 800px){
        padding-bottom: 30px;
        margin-bottom: 50px;
    }
    .miniature{
        width: calc(~'50% - 50px');
        position: absolute;
        left: 0;
        top: 0;
        bottom: @p;
        display: block;
        text-decoration: none;
        
        @media(max-width: 1600px){
            width: calc(~'50% - 20px');
        }
        @media(max-width: 800px){
            width: 100%;
            position: static;
        }
    }
    .text{
        padding-left: calc(~'50% + 50px');

        @media(max-width: 1600px){
            padding-left: calc(~'50% + 20px');
        }
        @media(max-width: 800px){
            padding-left: 0;
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }
        .num{
            margin: 0;
            width: 50px;
            height: 50px;
            background: @color-1;
            color: @w;
            text-align: center;
            line-height: 48px;
            margin-bottom: 150px;
            
            @media(max-width: 1600px){
                margin-bottom: 40px;
            }
        }
        .content-title{
            display: block;
            text-decoration: none;

            &:hover{
                opacity: 0.5;
            }
        }
    }
}

.btn-go{
    text-transform: uppercase;
    padding: 6px 0;
    padding-right: 35px;
    text-decoration: none;
    color: @color-1;
    position: relative;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s all;
    display: inline-block;
    width: auto;

    &::after,
    &::before{
        content: '';
        position: absolute;
        right: 0;
        top: 16px;
        width: 22px;
        height: 2px;
        background: @color-1;
        transition: 0.3s all;
    }
    &::after{
        right: 10px;
        top: 6px;
        width: 2px;
        height: 22px;
    }
    &:hover{
        opacity: 0.5;

        &::after{
            transform: rotate(90deg);
        }
    }
}
.btn-block{
    margin-top: 30px;
}

.about{
    padding-bottom: @p;

    .about-cont{
        background-color: @color-1;
    }
    .text{
        padding: @p @p-min;
        color: @w;
        position: relative;

        @media(max-width: 1600px){
            padding-right: 0;
        }
        @media(max-width: 800px){
            padding: 50px 20px;
        }
        &::before{
            content: '';
            position: absolute;
            right: 0;
            bottom: 40px;
            width: 290px;
            height: 190px;
            background: url('../img/bg-about.svg') no-repeat right bottom;
            background-size: ctsin;
        }
        .content-title{
            color: @w;
        }
        p{
            color: @w;
            opacity: 0.7;
        }
        .btn-go{
            color: @w;

            &::before, &::after{
                background: @w;
            }
        }
    }
    .miniature{
        background: @color-1;
        padding-left: 40px;
        
        @media(max-width: 1600px){
            padding-left: 10px;
        }
        @media (max-width: 900px){
            padding-left: 0;
        }
    }
}

.features{
    padding-top: @p;

    @media(max-width: 800px){
        padding-top: 0;
    }
    .title-big{
        border-bottom: 5px solid @color-1;
        padding-bottom: 20px;
        margin-bottom: @p;
        
        @media(max-width: 800px){
            margin-bottom: 30px;
        }
    }
    .features-cont{
        border-bottom: 5px solid @color-1;
        padding-bottom: @p;
    }
    
    .ft-item-big{
        padding-bottom: 15px;
        margin-bottom: 30px;
        border-bottom: @border;

        .icon{
            display: inline-block;
            vertical-align: text-top;
            border: @border;
            margin-right: 20px;
        }
        .text{
            display: inline-block;
            vertical-align: text-top;
            width: calc(~'100% - 80px');

            .title-bold{
                color: @text;
                margin-bottom: 3px;
            }
            .btn-go{
                opacity: 0.5;
            }
        }
    }
    .ft-item{
        background: @bg;
        padding: 20px;
        text-decoration: none;
        float: left;
        position: relative;
        padding-top: 12%;
        margin-right: 20px;
        width: calc(~'25% - 15px');
        
        @media(max-width: 900px){
            width: 100% !important;
            margin-right: 0 !important;
            margin-top: 20px !important;
        }
        &:first-child{
            @media(max-width: 900px){
                margin-top: 0 !important;
            }
        }
        &:nth-child(1){
            width: calc(~'50% - 15px');
        }
        &:nth-child(3){
            margin-right: 0;
        }
        &:nth-child(4){
            margin-top: 20px;
            margin-right: 20px;
        }
        &:nth-child(5){
            width: calc(~'50% - 15px');
        }
        &:nth-child(6){
            margin-right: 0;
        }
        .text{
            position: relative;
            z-index: 4;
            padding-bottom: 0;
            transition: 0.3s all;

            .num{
                color: @w;
                margin-bottom: 10px;
            }
            .title-bold{
                color: @text;
                color: @w;
                margin-bottom: 0;
            }
        }
        img{
            position: absolute;
            left: 0;
            top: 0;
        }
        
        &::before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            transition: 0.3s all;
            z-index: 3;
        }
        &:hover{
            .text{
                transform: translate(0, -30px);
            }
        }
    }
}

.video{
    padding-top: @p;
    padding-bottom: @p;

    @media(max-width: 800px){
        padding: 50px 0;
    }
    .video-cont-scroll{
        @media(max-width: 1200px){
            overflow-y: scroll;
        }
        .video-cont{
            @media(max-width: 1200px){
                width: 1100px;
            }
        }
    }
    .video-item{
        text-decoration: none;
        align-items: center;
        padding: 20px 0;
        border-bottom: @border;
        transition: 0.3s all;

        &:hover{
            opacity: 0.5;
        }
        .item{
            margin-top: -5px;
            box-sizing: border-box;

            &:nth-child(2){
                padding-left: 20px;
                width: calc(~'50% - 40px');
                
                @media(max-width: 1900px){
                    width: calc(~'40% - 40px');
                }
            }
            &:nth-child(3){
                width: 10%;
                padding-left: 20px;
            }
            &:nth-child(4){
                width: calc(~'40% - 180px');
                
                @media(max-width: 1900px){
                    width: calc(~'50% - 150px');
                }
            }
        }
        .num{
            width: 40px;
            height: 40px;
            background: @bg;
            line-height: 38px;
            text-align: center;
            box-sizing: border-box;
            font-size: 12px;
        }
        .btn-min{
            width: 180px;
            
            @media(max-width: 1900px){
                width: 150px;
            }
        }
        .adres{
            span{
                background: #fff;
                display: inline-block;
                position: relative;
                padding-left: 35px;

                &::after{
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 24px;
                    height: 100%;
                    background: url('../img/container_truck.svg') no-repeat 50% 50%;
                    background-size: 24px;
                }
                &:nth-child(1){
                    padding-right: 70px;
                    margin-right: 20px;
                    
                    @media(max-width: 1900px){
                        padding-right: 40px;
                    }
                    &::before{
                        content: '';
                        position: absolute;
                        right: 0;
                        top: 12px;
                        width: 50px;
                        height: 1px;
                        background: @color-1;
                        
                        @media(max-width: 1900px){
                            width: 20px;
                        }
                    }
                }
                &:nth-child(2){
                    padding-left: 30px;

                    &::after{
                        background: url('../img/flagpole.svg') no-repeat 50% 50%;
                        background-size: 24px;
                    }
                }
            }
        }
    }
    .btn-block{
        margin-top: 50px;

        .btn-go{
            margin-right: @p-min;

            @media(max-width: 900px){
                margin-right: 20px;
                margin-bottom: 10px;
            }
            &:last-child{
                margin-right: 0;
            }
        }
    }
}

.contacts{
    padding-top: @p;
    padding-bottom: @p-min;
    background: @color-1 url('../img/bg-footer.svg') no-repeat left bottom;
    color: @w;

    @media(max-width: 800px){
        padding-top: 50px;
    }
    a, ul li, p, .title-block{
        color: @w;
        text-decoration: none;
    }
    a{
        &:hover{
            opacity: 0.5;
        }
    }

    .three-item{
        @media(max-width: 1000px){
            width: 100%;
            margin-right: 0;
            margin-top: 20px;
            padding-top: 30px;
            border-top: 1px solid #2c64a9;
        }
        &:first-child{
            @media(max-width: 1000px){
                border: none;
                margin-top: 0;
                padding-top: 0;
            }
        }
        &:last-child{
            @media(max-width: 1000px){
                border: none;
                margin-top: 40px;
                padding-top: 0;
            }
        }
    }
    .logo-footer{
        position: relative;
        margin-bottom: @p-min;
        position: relative;

        span{
            display: block;
            width: 105px;
            height: 60px;
            background: @color-1 url('../img/logo-white.svg') no-repeat left bottom;
            background-size: contain;
            position: relative;
            z-index: 3;
            bottom: -1px;
        }
        &::before{
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 5px;
            width: 100%;
            background: @w;
        }
    }
    .menu-item{
        li{
            @media(max-width: 1600px){
                line-height: auto;
            }
            a{
                display: inline-block;
                padding: 10px 0;
                
                @media(max-width: 1600px){
                    padding: 5px 0;
                }
            }

            &:first-child a{
                padding-top: 0;
            }
            .content-title{
                margin-top: -7px;
                font-size: 32px;
                margin-bottom: 0;
                
                @media(max-width: 1600px){
                    font-size: 20px;
                    margin-bottom: 10px;
                }
                @media(max-width: 1200px){
                    font-size: 16px;
                }
            }
        }
    }
    .contacts-list{
        li{
            .content-title{
                @media(max-width: 1200px){
                    font-size: 20px;
                }
            }
        }
    }
    .adres{
        margin-top: 20px;
    }
    .list-karier{
        li{
            opacity: 0.7;
        }
    }
    .item-list{
        padding: 30px;
        background: #25548f;
        margin-bottom: 20px;

        @media(max-width: 800px){
            padding: 30px 20px;
        }
        &:last-child{
            margin-bottom: 0;
        }
    }
    .disclamer{
        margin-top: 20px;
        padding: 40px;
        background: #25548f;
        font-size: 12px;
        line-height: 20px;
        
        @media(max-width: 800px){
            padding: 30px 20px;
        }
    }
    .footer{
        padding: 40px;
        background: #25548f;
        margin-top: 20px;
        font-size: 12px;
        line-height: 20px;

        @media(max-width: 800px){
            padding: 30px 20px;
        }
        .flex_block{
            padding-top: 20px;
            border-top: 1px solid #2c64a9;
            margin-top: 20px;
        }
        .copyright, a{
            margin-right: 30px;
        }
    }
}




.page-archive{
    .title-cat{
        padding-bottom: 20px;
        border-bottom: 5px solid @color-1;
        text-decoration: none;
        display: block;
        margin-bottom: @p-min;

        .content-title{
            margin-bottom: 10px;
            display: inline-block;
            position: relative;
            padding-right: 50px;
            transition: 0.3s all;
            
            &::after,
            &::before{
                content: '';
                position: absolute;
                right: 0;
                top: 23px;
                width: 28px;
                height: 2px;
                background: @color-1;
                transition: 0.3s all;
            }
            &::after{
                right: 14px;
                top: 10px;
                width: 2px;
                height: 28px;
            }
        }
        .title-block{
            margin-bottom: 0;
            transition: 0.3s all;
        }
        &:hover{
            .content-title{
                opacity: 0.5;

                &::after{
                    transform: rotate(90deg);
                }
            }
            .title-block{
                opacity: 0.3;
            }
        }
    }

    .category-item{
        margin-bottom: @p;
        
        &:last-child{
            margin-bottom: 0;
        }
    }
}

.text-page-down{
    padding-bottom: @p;

    @media(max-width: 900px){
        padding-bottom: 50px;
    }
    .entrytext{
        padding-top: @p;
        border-top: 5px solid @color-1;
        
        @media(max-width: 900px){
            padding-top: 50px;
        }
    }
}

.table-price-product{
    .tab-item{
        .miniature{
            width: 30px;
        }
    }
}

.deliv-item{
    border-bottom: @border;
    // border-bottom: 5px solid @color-1;
    padding-bottom: @p-min;
    margin-bottom: @p-min;

    &:last-child{
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
    .num{
        margin: 0;
        width: 50px;
        height: 50px;
        background: @color-1;
        color: @w;
        text-align: center;
        line-height: 48px;
        margin-bottom: 50px;
        
        @media(max-width: 1600px){
            margin-bottom: 40px;
        }
    }
    .content-title{
        display: block;
        text-decoration: none;
    }
}

.text-page-top{
    padding-bottom: @p;
}
.table-price{
    border-left: @border;
    border-top: @border;

    @media(max-width: 900px){
        overflow-y: scroll;
    }
    .tab-item{
        border-bottom: @border;
        font-weight: normal;

        @media(max-width: 900px){
            width: 900px;
        }
        &:nth-child(2n){
            background: #f8fbff;
        }
        .miniature{
            display: block;
        }
        .miniature,
        span{
            display: block;
            border-right: @border;
            box-sizing: border-box;
            padding: 10px 20px;
            padding-bottom: 13px;
            padding-right: 20px;
            padding-left: 20px;

            &:nth-child(1){
                width: 10%;
            }
            &:nth-child(2){
                width: 20%;
            }
            &:nth-child(3){
                width: 13%;
            }
            &:nth-child(4){
                width: 13%;
            }
            &:nth-child(5){
                width: 13%;
            }
            &:nth-child(6){
                width: 31%;
            }
        }
    }
    .tab-head{
        background: @color-1;
        color: @w;

        span{
            font-weight: bold;
            border-right-color: #25548f;

            b{
                display: block;
                font-size: 12px;
            }
        }
    }
}

.table-price-product{
    border-right: @border;

    .tab-item{
        align-items: center;

        @media(max-width: 900px){
            width: 1200px;
        }
        .tab-head{

        }
        .title{
            font-weight: bold;
            text-decoration: none;
            transition: 0.3s all;
            display: block;
            padding: 10px 0;

            &:hover{
                opacity: 0.5;
            }
        }
        .miniature,
        span{
            &:nth-child(1){
                width: 10%;
            }
            &:nth-child(2){
                width: 7%;
            }
            &:nth-child(3){
                width: 10%;
            }
            &:nth-child(4){
                width: 10%;
            }
            &:nth-child(5){
                width: 10%;
            }
            &:nth-child(6){
                width: 10%;
            }
            &:nth-child(7){
                width: 10%;
            }
            &:nth-child(8){
                width: 10%;
            }
            &:nth-child(9){
                width: 10%;
            }
            &:nth-child(10){
                width: 13%;
                border-right: none;
                
                .btn-min{
                    width: 100%;
                }
            }
        }
        .miniature{
            padding-top: 4%;
            position: relative;

            img{
                position: absolute;
                left: 0;
                top: 0;
            }
        }
    }
}

.features-page{
    padding-top: 0;

    .features-cont{
        border-bottom: none;
    }
}

.page-price{
    padding-top: 0;
}


.tabs-link{
    margin-bottom: 20px;

    a{
        text-decoration: none;
        display: inline-block;
        vertical-align: text-top;
        padding: 10px 0;
        margin-right: 20px;
        border-bottom: 5px solid transparent;

        &:last-child{
            margin-right: 0;
        }
        &:hover{
            opacity: 0.5;
        }
    }
    .active{
        border-bottom-color: @color-1;
    }
}
.video-item-big{
    border: @border;

    .miniature{
        padding-top: 60%;
        position: relative;

        img,
        iframe{
            position: absolute;
            left: 0;
            top: 0;
        }
    }
    .text-cont{
        padding: 20px;
    }
    .text{
        .item{
            padding-bottom: 10px;
            padding-top: 10px;
            border-bottom: @border;

            span{
                opacity: 0.5;
                font-size: 12px;
                display: block;
            }
        }
    }
    .tags{
        margin-top: 10px;

        ul{
            li{
                display: inline-block;
                vertical-align: text-top;
                font-size: 12px;
                color: @color-1;
                opacity: 0.5;
            }
        }
    }
    .btn-block{
        margin-top: 10px;
    }
}

.video-page{
    border-top: 5px solid @color-1;
    padding: 50px 0;
}

.news-item{
    position: relative;
    border: @border;

    .miniature{
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 270px;
        
        @media(max-width: 1280px){
            width: 100%;
            position: relative;
            padding-top: 60%;
        }
        img{
            @media(max-width: 1280px){
                position: absolute;
                left: 0;
                top: 0;
            }
        }
    }
    .text-cont{
        padding: 30px 20px;
        padding-left: 300px;

        @media(max-width: 1280px){
            padding: 30px 20px;
        }
        .title-block{
            display: block;
            text-decoration: none;
            margin-bottom: 20px;
        }
    }
    .btn-block{
        margin-top: 20px;
    }
}

.big-form{
    .form-cont{
        padding: @p @p-min;
        background: @color-1;
        color: @w;
        position: relative;

        @media(max-width: 900px){
            padding: 50px 20px;
        }
        .text{
            width: 50%;
            
            @media(max-width: 900px){
                width: 100%;
            }
            .descr{
                p{
                    color: @w;
                    opacity: 0.5;
                }
            }
            .btn{
                background: @w;
                color: @color-1;

                &:hover{
                    background: @color-2;
                    color: @w;
                }
            }
        }
        .miniature{
            position: absolute;
            right: @p-min;
            bottom: -50px;
            width: 870px;
            height: 400px;
            background: url('../img/bg-form.svg') no-repeat 50% 50%;
            background-size: contain;
            
            @media(max-width: 1450px){
                width: 50%;
                bottom: 0;
            }
            @media(max-width: 900px){
                position: static;
                width: 100%;
                height: 150px;
                margin-top: 50px;
            }
        }
    }
}


.page-kamen{
    .text-kamen{
        padding-bottom: @p;
        border-bottom: 5px solid @color-1;

        @media(max-width: 800px){
            padding-bottom: 50px;
        }
        .block-text-kamen{
            // padding-left: calc(~'50% + 20px');
            position: relative;

            @media(max-width: 900px){
                padding-left: 0;
            }
            // .miniature{
            //     width: calc(~'50% - 20px');
            //     position: absolute;
            //     left: 0;
            //     top: 0;
            //     border: @border;
                
            //     @media(max-width: 900px){
            //         width: 100%;
            //         position: static;
            //         margin-bottom: 20px;
            //     }
            //     img{
            //         object-fit: contain;
            //     }
            // }
            .miniature{
                float: right;
                width: calc(~'50% - 20px');
                margin-left: 50px;
                margin-bottom: 20px;
                border: @border;
                
                @media(max-width: 1100px){
                    width: 100%;
                    height: auto;
                    margin-left: 0;
                    margin-bottom: 30px;
                }
            }
        }
    }

    .photos-block{
        padding-top: @p;

        @media(max-width: 800px){
            padding-top: 50px;
        }
        .image-item{
            display: block;
            text-decoration: none;

            &::after{
                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='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='12' y1='5' x2='12' y2='19'%3e%3c/line%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
                background-size: contain;
            }
        }
    }

    .faq{
        padding-top: @p;

        @media(max-width: 800px){
            padding-top: 50px;
        }
        .content-title{
            border-bottom: 5px solid @color-1;
            padding-bottom: 20px;
        }
        .faq-item{
            border-bottom: @border;

            &:first-child{
            }
            .title-block{
                margin-bottom: 0;
                padding: 20px 0;
                padding-bottom: 23px;
                cursor: pointer;
                position: relative;
                transition: 0.3s all;

                @media(max-width: 900px){
                    padding-right: 30px;
                }
                &::before{
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 19px;
                    width: 30px;
                    height: 30px;
                    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%231f4a81' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M7 7l9.2 9.2M17 7v10H7'/%3e%3c/svg%3e") no-repeat 50% 50%;
                    background-size: contain;
                    transition: 0.3s all;
                }
                &:hover{
                    opacity: 0.5;
                }
            }
            .active{
                &::before{
                    transform: rotate(-135deg);
                }
            }

            .entrytext{
                display: none;
                padding-bottom: @p-min;
            }
        }
    }
}

.products-kamen{
    background: @bg;

    .content-title{
        border-bottom: 5px solid @color-1;
        padding-bottom: 20px;
    }
    .product-item{
        .btn-block{
            .btn-gray{
                background: @w;

                &:hover{
                    background: @color-2;
                }
            }
        }
    }
}

.catalog-list-item{
    border-bottom: @border;

    .title-block{
        padding: 20px 0;
        margin: 0;
        cursor: pointer;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s all;

        @media(max-width: 900px){
            align-items: flex-start;
        }
        .text{
            display: block;
            width: calc(~'100% - 148px');
            margin-right: 10px;
            margin-top: -5px;
            
            @media(max-width: 800px){
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
        &:hover{
            opacity: 0.5;
        }
    }
    .list-item{
        display: none;
        padding-bottom: @p-min;
    }
}


.page-product-single{
    padding-top: @p;
    
    @media(max-width: 800px){
        padding-top: 50px;
    }
    .product-top{
        padding-bottom: @p;
//        margin-bottom: @p;
//        border-bottom: @border;
        
        .image-left{
            padding-right: 25px;
            position: relative;
            height: 700px;

            @media(max-width: 800px){
                padding-right: 0;
                height: auto;
                max-height: 400px;
            }
            .swiper-slide{
                padding-bottom: 0;
            }
            .slider-cont-top{
                height: 100%;
            }
            .slide-miniature-big{
                height: 100%;
                overflow: hidden;
                box-sizing: border-box;
//                min-height: 550px;

                @media(max-width: 900px){
                    min-height: 400px;
                }
                .miniature{
                    box-sizing: border-box;
                    height: calc(~'100% - 140px') !important;
                    
                    @media(max-width: 1400px){
                        height: calc(~'100% - 110px') !important;
                    }
                    img{
                    }
                }
                .slider-prev{
                    left: 20px;
                    
                    @media(max-width: 800px){
                        margin-top: -70px;
                        left: 10px;
                    }
                }
                .slider-next{
                    right: 20px;
                    
                    @media(max-width: 800px){
                        margin-top: -70px;
                        right: 10px;
                    }
                }
            }

            .slider-cont-bottom{
                position: absolute;
                left: 0;
                bottom: 0;
                right: 25px;
                
                @media(max-width: 800px){
                    right: 0;
                }
            }
            .slide-miniature-thumb{
                margin-top: 10px;

                .miniature{
                    cursor: pointer;
                    border: @border;
                    overflow: hidden;
                    box-sizing: border-box;
                    height: 130px !important;
                    background: @w;

                    @media(max-width: 1400px){
                        height: 100px !important;
                    }
                    img{
                        transition: 0.5s all;
                    }

                    &::after{
                        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='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='12' y1='5' x2='12' y2='19'%3e%3c/line%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
                        background-size: contain;
                    }
                    &:hover{
                        img{
                            transform: scale(1.2);
                        }
                        &::after{
                            right: 10px;
                            top: 10px;
                        }
                    }
                }
                .swiper-slide-thumb-active{
                    border-color: @color-1;
                }
            }
        }
        .text{
            padding-left: 25px;
            
            @media(max-width: 800px){
                padding-left: 0;
                text-align: center;
            }
            
            .haracteristic{
                .har-item{
                    padding: 15px 0;
                    padding-bottom: 18px;
                    border-bottom: 1px dashed @b-color;
                    text-align: left;
                    justify-content: space-between;

                    @media(max-width: 1300px){
                        width: 100%;
                    }
                    span{
                        @media(max-width: 800px){
                            width: 50%;
                        }
                        &:nth-child(1){
                            padding-right: 5px;
                            box-sizing: border-box;
                            opacity: 0.7;
                            
                            &::after{
                                content: ':';
                            }
                        }
                        &:nth-child(2){
                            @media(max-width: 800px){
                                text-align: right;
                            }
                        }
                    }
                }
            }

            .price-item-cont{
                margin-top: @p-min;

                @media(max-width: 900px){
                    background: @color-1;
                    color: @w;
                    padding: 30px 20px;

                    *{
                        color: @w;
                    }
                }
                .price-item{
                    display: inline-block;
                    vertical-align: text-top;
                    margin-right: 50px;
                    
                    @media(max-width: 900px){
                        display: block;
                        margin-right: 0;
                    }
                    span{
                        display: block;
                        margin-bottom: 20px;
                    }
                    .price{
                        margin-bottom: 0;
                    }
                    &:nth-child(1){
                        @media(max-width: 900px){
                            padding-bottom: 20px;
                            border-bottom: 1px solid #2c64a9;
                            margin-bottom: 20px;
                        }
                        .content-title{
                            opacity: 0.5;
                        }
                    }
                    &:nth-child(2){
                        @media(max-width: 800px){
                            margin-right: 0;
                        }
                    }
                }
            }
            .btn-min{
                margin-top: 20px;
            }

            .title-btns{
                margin-top: 30px;
            }
            .btn-block-bottom{
                margin-top: @p-min;

                .title-btns{
                    margin-top: 0;
                    margin-bottom: 20px;
                    color: #6cd96c;
                }
                .flex_block{
                    align-items: center;
                    
                    @media(max-width: 800px){
                        justify-content: center;
                    }
                }
                .whatsapp{
                    background: #6cd96c;
                    
                    @media(max-width: 800px){
                        margin-bottom: 20px;
                    }
                    &:hover{
                        background: @text;
                    }
                }
                .phone{
                    margin-bottom: 0;
                    padding-top: 2px;
                    padding-left: 40px;
                    position: relative;
                    text-decoration: none;
                    font-weight: bold;
                    color: #6cd96c;
                    margin-left: 30px;

                    @media(max-width: 800px){
                        margin-left: 0;
                    }
                    &::before{
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 30px;
                        height: 30px;
                        background: #6cd96c url('../img/phone.svg') no-repeat 50% 50%;
                        background-size: 20px;
                        border-radius: 50%;
                    }
                }
            }
            
            .phone-cont{
                border-top: @border;
                margin-top: 20px;
                padding-top: 20px;
                margin-bottom: 20px;
                padding-bottom: 20px;
                border-bottom: @border;
                
                @media(max-width: 800px){
                    text-align: center;
                    background: @bg;
                    border-radius: 20px;
                    border: none;
                    margin-bottom: 40px;
                }
                .title-bold{
                    
                }
                .phone{
                    text-decoration: none;
                    font-weight: bold;
                    color: #6cd96c;
                    font-size: 24px;
                    transition: 0.3s all;

                    &:hover{
                        opacity: 0.5;
                    }
                }
            }
        }
    }
}

.product-description{
    padding-bottom: @p;

    .banner-mini{
        padding: 30px;
        background: @color-1;
        color: @w;
        position: relative;

        &::before{
            content: '';
            position: absolute;
            right: 0;
            bottom: -40px;
            width: 290px;
            height: 190px;
            background: url('../img/bg-about.svg') no-repeat right bottom;
            background-size: contain;
            
            @media(max-width: 800px){
                width: 100%;
            }
        }
        .text{
            position: relative;
            z-index: 3;
        }
        p{
            color: @w;
            opacity: 0.5;
        }
        .btn{
            margin-top: 30px;
            background: @w;
            color: @color-1;

            &:hover{
                background: @color-2;
                color: @w;
            }
        }
    }
}


.table-price-sravnen{
    margin-bottom: @p;

    .tab-item{
        span{
            &:nth-child(1){
                width: 15%;
            }
            &:nth-child(2){
                width: 25%;
            }
            &:nth-child(3){
                width: 30%;
                background: #fffafa;
            }
            &:nth-child(4){
                width: 30%;
                background: #f6fffb;
            }
        }
    }
    .tab-head{
        
        span{
            &:nth-child(3){
                background: #ffb0b0;
                border-color: #ffb0b0;
            }
            &:nth-child(4){
                background: #74dd95;
                border-color: #74dd95;
            }
        }
    }
}


#modal-smg--region{
    .modal-smg{
        width: 1000px;
        min-height: 700px;
        text-align: left;
        
        @media(max-width: 1060px){
            width: auto;
            margin: 0 20px;
        }
        @media(max-width: 900px){
            width: calc(~'100% - 40px');
            min-height: auto;
        }
        input{
            box-sizing: border-box;
            background: #fff;
            border: @border;
            padding: 0 30px;
            padding-top: 13px;
            padding-bottom: 18px;
            transition: 0.3s all;
            box-sizing: border-box;
            outline: none;
            border-radius: 5px;
            margin-bottom: 20px;
            width: 100%;
            
            @media(max-width: 900px){
                margin-top: 5px;
            }
            &:nth-child(2n){
                margin-right: 0;
            }

            &:focus{
                border-color: @color-1;

                &::-webkit-input-placeholder {opacity: 0}
                &::-moz-placeholder          {opacity: 0}
                &:-moz-placeholder           {opacity: 0}
                &:-ms-input-placeholder      {opacity: 0}
            }
        }
        .region-list{
            margin: 0;
            padding: 0;
            height: calc(~'80vh - 250px');
            overflow-y: scroll;
            
            
            @media(max-width: 900px){
            }
            li{
                list-style: none;
                display: inline-block;
                vertical-align: text-top;
                width: calc(~'33% - 5px');
                margin-bottom: 10px;
                
                @media(max-width: 900px){
                    width: calc(~'50% - 5px');
                }
                @media(max-width: 800px){
                    font-size: 12px;
                    margin-bottom: 5px;
                    line-height: 16px;
                }
                @media(max-width: 600px){
                    width: auto;
                    display: block;
                }
                a{
                    text-decoration: none;
                    
                    @media(max-width: 800px){
                        border-bottom: @border;
                        padding-top: 3px;
                        padding-bottom: 10px;
                        display: block;
                    }
                }
            }
        }
    }
}

.page-single-videos{
    .two-item{
        &:nth-child(1){
            padding-right: 15px;
            
            @media(max-width: 900px){
                padding: 0;
            }
        }
        &:nth-child(2){
            padding-left: 15px;
            
            @media(max-width: 900px){
                padding: 0;
                margin-top: 0;
            }
        }
    }

    .miniature-video{
        padding-top: 60%;
        position: relative;

        img,
        iframe{
            position: absolute;
            left: 0;
            top: 0;
        }
    }
    .text{
        padding: 50px 30px;
        margin-bottom: 30px;
        background: @color-1;
        color: @w;

        @media(max-width: 900px){
            padding: 30px 20px;
        }
        .item{
            padding-bottom: 10px;
            padding-top: 10px;
            border-bottom: 1px solid #25548f;

            &:first-child{
                padding-top: 0;
            }
            span{
                opacity: 0.5;
                font-size: 12px;
                display: block;
            }
        }
    }
}

.page-sitemap{
    .entrytext{
        ul{
            li{
                ul{
                    margin-top: 10px;
                    margin-bottom: 15px;
                }
            }
        }
    }
}

.reviews{
    padding-top: @p;
    padding-bottom: @p;
    border-top: 5px solid @color-1;

    .content-title{
        @media(max-width: 800px){
            position: relative;
            padding-top: 40px;
            text-align: center;
        }
        span{
            display: inline-block;
            vertical-align: middle;
        }
        .stars{
            width: 150px;
            height: 30px;
            background: url('../img/star-rev.svg') repeat-x 0 50%;
            background-size: contain;
            margin-top: 4px;
            margin-left: 20px;
            
            @media(max-width: 800px){
                position: absolute;
                top: 0;
                left: 50%;
                margin-left: -75px;
            }
        }
    }
    .reviews-slider{
        padding-bottom: 50px;
    }
    .slider-prev{
        margin-top: -45px;
        left: -20px;
        background: @color-1 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 18l-6-6 6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
    }
    .slider-next{
        margin-top: -45px;
        right: -20px;
        background: @color-1 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 55% 50%;
    }

    .rev-item{
        padding: 50px;
        background: @bg;
        box-sizing: border-box;

        @media(max-width: 800px){
            padding: 30px;
        }
        .title-bold{
            color: @color-1;
        }
    }
}

.issled{
    padding: @p 0;
    background: #f7fbff;
    
    .content-title{
        border-bottom: 5px solid @color-1;
        padding-bottom: 20px;
    }
    .issled-cont{
        margin-top: @p-min;

        .issled-item{
            padding: 20px;
            padding-right: 40px;
            padding-top: 130px;
            background: @color-1;
            color: @w;
            text-decoration: none;
            display: block;
            position: relative;
            transition: 0.3s all;

            @media(max-width: 800px){
                padding-right: 20px;
            }
            &:hover{
                opacity: 0.5;
            }
            &::before{
                content: '';
                position: absolute;
                left: 20px;
                top: 20px;
                width: 26px;
                height: 26px;
                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='%23fff' stroke-width='2' stroke-linecap='butt' stroke-linejoin='arcs'%3e%3cpath d='M13 2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9l-7-7z'/%3e%3cpath d='M13 3v6h6'/%3e%3c/svg%3e") no-repeat 50% 50%;
                background-size: contain;
            }
            .title-bold{
                color: @w;
                margin-bottom: 0;
            }
        }
    }
}