html, body {
    margin: 0;
    padding: 0;
    font-family: 'Actay';
    font-weight: normal;
    font-style: normal;
    color: #000;
    font-size: 16px;
    /*font-family: 'Actay Wide';*/
}

.header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;

}
.header-date{
    padding: 0 15px;
}
.date-label{
    color: rgb(197, 152, 36);
    border: 1px solid rgb(159, 159, 159);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    display: block;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    padding: 15px 10px;
    line-height: 10px;
}
.header-address{}
.header-address > span{
    display: block;
    font-size: 12px;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 3px 0 3px 20px;
}
.address-label{
    background-image: url("../img/local.svg");
}
.time-label{
    background-image: url("../img/clock.svg");
}

.header-btns{
    padding: 0 15px;
}

.click-btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.click-btn a{
    font-size: 12px;
    display: block;
    background-position: top center;
    background-repeat: no-repeat;
    color: #000;
    text-decoration: none;
    padding: 26px 10px 0px 10px;
    text-align: center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.click-btn a span{
    display: inline-block;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    border-bottom: 2px solid transparent;
}
.click-btn a:hover span{
    border-bottom: 2px solid #E1CB91;
}

.brand-whatsapp{
    position: relative;
    background-image: url("../img/wt.svg");
}
.brand-calculator{
    position: relative;
    background-image: url("../img/calc.svg");
}
.brand-calculator:before, .brand-whatsapp:before{
    content: "";
    display: none;
    background: rgba(255, 204, 0, 0.3);
    width: 22px;
    height: 22px;
    position: absolute;
    left: 50%;
    margin-left: -11px;
    top: 0px;
    border-radius: 50%;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.click-btn a:hover:before{
    display: block;
}

.call-btn{
    border-radius: 5px;
    color: rgb(255, 255, 255);
    background: rgb(197, 152, 36);
    border: 0;
    font-size: 12px;
    padding: 8px 16px;
    cursor: pointer;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    position: relative;
}
.call-btn:hover {
    -webkit-box-shadow: 0 0px 10px rgba(197, 152, 36,.3);
    box-shadow: 0 0px 10px rgba(197, 152, 36,.3);
}
.call-btn_img{
    background-image: url("../img/phone.svg");
    background-repeat: no-repeat;
    padding-left: 26px;
    background-position: left 10px center;
}
.call-btn_blik::after {
    top: -8px;
    content: "";
    display: block;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    position: absolute;
    width: 10px;
    height: 50px;
    z-index: 2;
    opacity: .35;
    background: #fff;
    -webkit-animation: 2.8s ease-out infinite btn-effect;
    animation: 2.8s ease-out infinite btn-effect;
}
@-webkit-keyframes btn-effect{ 0% {left:0%} 100%, 35% {left:105%}}
@keyframes btn-effect{ 0% {left:0%} 100%, 35% {left:105%}}
.index-btns-btn{
    z-index: 1;
    position: relative;
}
.header-phone{
    text-align: right;
    padding-left: 15px;
}
.header-phone div{
    padding-bottom: 2px;
}
.header-phone div a{
    font-family: 'Actay';
    text-decoration: none;
    color: #000;
}
.header-phone span{
    font-size: 14px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}
.header-phone span:before{
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    border: 5px solid #bf0423;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}
.header-phone span.active:before{
    width: 10px;
    height: 10px;
    border: 0;
    margin-top: -6px;
    -webkit-animation: 0.5s infinite alternate header-phones;
    animation: 0.5s infinite alternate header-phones;
    left: 2px;
}
@keyframes header-phones {
    0% {
        box-shadow: 0 0 0 1px #60d669;
    }
    100% {
        box-shadow: 0 0 0 5px #60d669;
    }
}

.body-wrapper{

}

.nav{
    background: rgb(8, 36, 50);
}
.menu{}
.menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu ul li{
    text-align: center;
    padding: 10px;
}
.menu ul li a{
    font-size: 12px;
    text-decoration: none;
    color: #FFF;
    display: inline-block;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.menu ul li a:hover{
    border-bottom: 2px solid #E1CB91;
}

.body{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
}
.body-left{
    width: 25%;
}
.body-content{
    width: 75%;
    padding-left: 20px;
}

.large-width .body-content{
    width: 100%;
    padding-left: 0px;
}

.large-width .faq-lists{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.large-width .faq-lists > div{
    width: 50%;
}
.large-width .faq-lists > div:nth-child(1){
    padding-right: 5px;
}
.large-width .faq-lists > div:nth-child(2){
    padding-left: 5px;
}

.large-width .large-faq-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.large-width .large-faq-form > div{
    width: 50%;
}
.large-width .large-faq-form-left{
    padding-right: 5px;
}
.large-width .large-faq-form-right{
    padding-left: 5px;
}
.large-width .big-form-btns > div:nth-child(1){
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.large-width .big-form-btns > div:nth-child(2){
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.large-width .review-left {
    width: 33%;
}
.large-width .review-right {
    width: 67%;
}

.category{
    border: 1px solid rgb(223, 223, 223);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 10px;
}
.category-header{
    font-family: 'Actay';
    font-size: 20px;
    padding-top: 5px;
}
.category-label{
    border-radius: 5px;
    background: rgb(197, 152, 36);
    color: #FFF;
    font-weight: 700;
    font-size: 12px;
    padding: 10px;
    margin: 10px 0;
}

.category-menu{
    padding: 0px 10px;
}
.category-menu.open .category-menu-body{
    display: block;
}
.category-menu-head{}
.category-menu-head a, .category-menu-head span{
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: block;
    cursor: pointer;
    color: rgb(197, 152, 36);
    padding: 7px 0;
}
.category-menu-head a:hover{
    text-decoration: underline;
}
.category-menu-head span{}
.category-menu.open .category-menu-head span:before{
    background: url("../img/cv.svg") center center no-repeat;
}
.category-menu-head span:before {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    background: url("../img/cd.svg") center center no-repeat;
}
.category-menu-head.open span{
    padding-top: 3px;
    padding-bottom: 3px;
}
.category-menu-head.open .category-menu-body{}
.category-menu-body{
    padding-top: 8px;
    display: none;
    padding-bottom: 8px;
}
.category-menu-body a{
    font-size: 12px;
    color: rgb(74, 74, 74);
    text-decoration: none;
    display: block;
    padding: 3px 10px;
}
.category-menu-body a.active{
    font-weight: bold;
}
.category-menu-body a:hover{
    color: rgb(197, 152, 36);
    text-decoration: underline;
}

.call-lawyer{
    border: 1px solid rgb(223, 223, 223);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 10px;
    position: sticky;
    top: 10px;
}
.call-lawyer-header{
    font-family: 'Actay';
    font-size: 20px;
    padding-top: 5px;
}
.call-lawyer-text{
    font-size: 12px;
    padding-bottom: 10px;
    padding-top: 5px;
}
.lawyer-form{
    border-radius: 20px;
    background: rgb(101, 100, 97);
    padding: 20px 12px;
}
.lawyer-form-head{
    font-family: 'Actay';
    font-weight: 700;
    color: #FFF;
    text-align: center;
}
.lawyer-form-text{
    color: rgb(229, 220, 210);
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}
.lawyer-forma{}
.lawyer-forma label{
    display: block;
}
.lawyer-forma label span{
    color: #FFF;
    font-family: Actay;
    font-size: 12px;
    display: block;
    padding-bottom: 5px;
    font-weight: 700;
}
.lawyer-forma label input{
    padding: 7px 16px;
}
.lawyer-forma-text{
    color: rgb(255, 255, 255);
    font-size: 10px;
    text-align: center;
    padding: 10px 0;
}
.lawyer-forma-text a{
    color: rgb(255, 255, 255);
}
.lawyer-forma-btn input{
    color: rgb(255, 255, 255);
    font-size: 14px;
    border-radius: 100px;
    background: rgb(197, 152, 36);
    border: 0;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

.index{
    border: 1px solid rgb(197, 152, 36);
    border-radius: 5px;
    background: rgb(246, 246, 246);
    padding: 40px 30px;
}

.index-parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
.index-parent > div {

}
.index-div1 {
    position: relative;
    width: 57%;
    padding-right: 30px;
}
.index-div2 {
    width: 43%;
}
.index-div2 img{
    border-radius: 5px;
    -webkit-box-shadow: -2px 4px 11.6px 0px rgba(81, 81, 81, 0.25);
    box-shadow: -2px 4px 11.6px 0px rgba(81, 81, 81, 0.25);
    width: 100%;
    height: 275px;
    -o-object-fit: cover;
    object-fit: cover;
}
.index-h1, .index-h1 h1{
    font-family: 'Actay';
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 0;
}
.large-width .lleft{
    padding-left: 30px;
}
.large-width .garantiya{
    margin-right: auto;
    margin-left: auto;
}

.index-text{
    padding-top: 20px;
}
.index-phone{
    font-size: 12px;
    padding-top: 15px;
}
.index-phone a{
    text-decoration: none;
}
.index-phone a:hover{
    text-decoration: underline;
}

.index-bottom{
    position: absolute;
    left: 0;
    right: 30px;
    bottom: 0;
    width: 57%;
    padding-right: 30px;
}
.index-btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.index-btns > div{
    width: 50%;
}
.index-btns > div:last-child{
    padding-left: 10px;
}
.index-btns-text{
    color: rgba(0, 0, 0, 0.42);
    font-size: 14px;
    padding-bottom: 10px;
    max-width: 250px;
}
.index-btns-btn .btn{
    width: 100%;
}

.btn.btn_wp span{
    background: url("../img/wp.svg") center center no-repeat;
    width: 11px;
    height: 11px;
    display: inline-block;
    vertical-align: -1px;
    margin-left: 5px;
}

.big-form{
    padding: 20px 0 10px;
}
.big-form-h1{
    font-family: 'Actay';
    font-size: 22px;
    padding-bottom: 15px;
}
.big-form-h1 h2{
    margin-bottom: 0px;
}
.big-form-h2{
    font-family: 'Actay';
    font-size: 20px;
    padding-bottom: 20px;
    margin-top: -10px;
}
.big-form-body{}
.big-form-text{}
.big-form-text textarea{
    padding: 26px 35px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 12.3px 0px rgba(0, 0, 0, 0.18),inset 0px 2px 4px 0px rgba(0, 0, 0, 0.25),inset -1px -1px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 12.3px 0px rgba(0, 0, 0, 0.18),inset 0px 2px 4px 0px rgba(0, 0, 0, 0.25),inset -1px -1px 4px 0px rgba(0, 0, 0, 0.25);
    background: rgb(246, 246, 246);
}
.big-form-btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
}
.big-form-btns p{
    font-size: 12px;
    margin-bottom: 0;
}
.big-form-btns p a{
    color: #000;
    font-weight: bold;
}
.big-form-btns div:first-child{

}
.big-form-btns div:last-child input{
    min-width: 210px;
    height: 45px;
}
.ff-privacy{
    text-align: right;
    padding-top: 20px;
}
.ff-privacy p{
    font-size: 12px;
    margin-bottom: 0;
}
.ff-privacy p a{
    color: #000;
    font-weight: bold;
}

.blk{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}
.blk-left{
    font-size: 14px;
    padding-right: 20px;
    text-align: right;
    padding-left: 100px;
    line-height: 16px;
}
.blk-right{}

.box-modal-filed{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
}
.box-modal-filed .form-group{
    width: 50%;
}
.box-modal-filed .form-group:nth-child(1){
    padding-right: 5px;
}
.box-modal-filed .form-group:nth-child(2){
    padding-left: 5px;
}
.box-modal-filed label{
    color: rgb(52, 64, 84);
}

.form-group-politika, .form-group-politika a{
    color: rgb(102, 112, 133);
    font-size: 14px;
}
.form-group-btns{
    text-align: center;
}
.form-group-btns button{
    width: 100%;
    font-size: 14px;
    padding: 12px 15px;
}

.catalog{
    margin-bottom: 20px;
}
.catalogs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}
.catalogs > div{
    width: 33.333333%;
    padding: 10px;
}
.catalogs-item{
    border: 1px solid rgb(241, 241, 241);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    padding: 20px 10px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    height: 100%;
}
.catalogs-item:hover{
    -webkit-box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
}
.catalogs-name{
    font-size: 14px;
    font-weight: 700;
    min-height: 38px;
    text-align: center;
}
.catalogs-image{
    padding: 10px 0;
}
.catalogs-image img{
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
}
.catalogs-text{
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-align: center;
}
.catalogs-price{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
}
.catalogs-price-iss{
    font-family: 'Actay';
    font-size: 24px;
}
.catalogs-price-old{
    color: rgba(0, 0, 0, 0.47);
    font-size: 14px;
    padding-left: 10px;
    text-decoration: line-through;
}
.catalogs-btn{
    text-align: center;
}
.catalogs-all{
    text-align: center;
    padding: 30px 0;
}
.js-catn, .case-hide{
    display: none;
}
.cases-all{
    text-align: center;
    margin-bottom: 20px;
}

.vakansiis{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 20px;
}
.vakansiis > div{
    padding: 10px;
    width: 33.33333%;
}
.vakans{
    height: 100%;
    border: 1px solid rgb(241, 241, 241);
    border-radius: 5px;
    padding: 20px;
}
.vakans-name{
    font-family: 'Actay';
    font-size: 13px;
    position: relative;
    padding-bottom: 5px;
}
.vakans-name:before{
    content: "";
    background: rgb(197, 152, 36);
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.vakans-text{
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 10px 0;
}
.vakans-text > div:nth-child(1){
    padding-right: 30px;
}
.vakans-text > div:nth-child(2){
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    white-space: nowrap;
}
.vakans-btn{
    padding-top: 10px;
}
.vakans-btn button{
    width: 100%;
    max-width: 100%;
}





.detailed{}
.detailed-head{
    font-family: 'Actay';
    font-size: 20px;
    padding: 10px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid rgb(197, 152, 36);
}
.detailed-item{
    border-bottom: 2px solid rgb(197, 152, 36);
}
.detailed-item__name{
    position: relative;
    cursor: pointer;
    font-family: 'Actay';
    padding: 15px 0 10px 0;
    padding-right: 40px;
}
.detailed-item__name::before {
    content: "";
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: url("../img/cb.svg") center center no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
}
.detailed-item.active .detailed-item__name::before {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
}
.detailed-item__body{
    display: none;
}
.detailed-item.active .detailed-item__body{
    display: block;
}

.prices-form{
    background: rgb(8, 36, 50);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0;
}
.prices-form-left{
    width: 55%;
    padding: 30px 0 30px 30px;
}
.prices-form-right{
    width: 45%;
    position: relative;
    background: url("../img/kng.png") right 20px bottom no-repeat;
}
.circle-label{
    position: absolute;
    background: rgb(255, 255, 255);
    width: 88px;
    height: 88px;
    text-align: center;
    padding-top: 25px;
    border-radius: 50%;
    top: 30px;
    left: 13%;
}
.circle-label div{
    font-family: 'Actay';
    font-size: 26px;
    line-height: 24px;
}

.ch-label{
    background: url("../img/ch.svg") center center no-repeat;
    background-size: contain;
    width: 160px;
    height: 84px;
    position: absolute;
    left: -22%;
    top: 120px;
}

.prices-form-h1{
    color: rgb(255, 255, 255);
    font-family: 'Actay';
    font-size: 24px;
    padding-bottom: 5px;
}
.prices-form-text{
    color: rgb(255, 255, 255);
}
.prices-forma{
    width: 80%;
    padding-top: 15px;
}
.prices-forma .lawyer-forma-btn{
    padding-top: 10px;
}
.prices-forma input[type=submit]{
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
}
.prices-forma .lawyer-forma-text{
    text-align: left;
}

.detailed-items{
    padding-left: 20px;

}
.detailed-items > div{
    padding: 10px 0;
    border-top: 1px dashed rgb(190, 190, 190);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.detailed-items > div > div{}
.detailed-items > div > div:nth-child(1){
    color: rgba(0, 0, 0, 0.56);
    font-size: 16px;
}
.detailed-items > div > div:nth-child(2){
    text-align: right;
    white-space: nowrap;
}

.vakansii-text{
    font-family: 'Actay';
    font-size: 24px;
    margin-bottom: 15px;
}
.vakansii-text span{
    color: rgb(197, 152, 36);
}

.content-404{
    text-align: center;
}
.content-404 h1{
    color: rgb(255, 199, 63);
    font-family: 'Actay';
    font-size: 32px;
}
.content-404 p{
    max-width: 600px;
    width: 100%;
    margin: 30px auto;
}

.h1-text{
    font-family: 'Actay';
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: -20px;
}

.faqs{}

.faq{}
.faq-item{
    margin-bottom: 10px;
}
.faq-name{
    border-radius: 5px;
    color: rgb(255, 255, 255);
    background: rgb(8, 36, 50);
    position: relative;
    cursor: pointer;
    padding: 15px 15px;
    padding-right: 50px;
}
.faq-name:before{
    content: "+";
    display: block;
    width: 26px;
    height: 26px;
    background: #FFF;
    border-radius: 50%;
    color: rgb(197, 152, 36);
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -13px;
    text-align: center;
    font-size: 23px;
    text-indent: 1px;
}
.faq-item.active .faq-name:before{
    content: "-";
}
.faq-body{
    padding: 15px 15px 10px 15px;
    display: none;
}
.faq-body p:last-child{
    margin-bottom: 0;
}
.faq-item.active .faq-body{
    display: block;
}
.faq-btn{
    padding: 10px 0;
}

.services{}

.service{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.service > div{
    width: 50%;
    margin-bottom: 15px;
}

.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.logo > span{}
.logo > span img{}
.logo > span:nth-child(2) span{
    color: rgb(197, 152, 36);
    font-size: 12px;
    display: block;
    text-transform: uppercase;
}
.logo > span:nth-child(2) span:nth-child(1){
    margin-left: -5px;
}
.logo > span:nth-child(2) span:nth-child(2){
    padding-left: 5px;
}

.logo.logo_footer > span:nth-child(2) span{
    font-size: 30px;
    color: #FFF;
}

.service-body-three{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.service-body-three ul{
    width: 50%;
}
.service-body-three ul:nth-child(2){
    padding-left: 17px;
}

.service-header{
    font-family: 'Actay';
    font-size: 20px;
    padding: 10px 0 10px 35px;
    background-position: center left;
    background-repeat: no-repeat;
}
.service-header span{
    color: rgb(197, 152, 36);
}
.service-header a{
    text-decoration: none;
}
.service-header a:hover{
    text-decoration: underline;
}
.service-body{
    padding-left: 35px;
}
.service-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-body ul li{
    padding: 5px 0;
    padding-left: 13px;
    position: relative;
}
.service-body ul li:before{
    content: "";
    width: 4px;
    height: 4px;
    background: rgb(197, 152, 36);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}
.service-body ul li a{
    text-decoration: none;
}
.service-body ul li a:hover{
    text-decoration: underline;
}

.index-content{
    border-bottom: 2px solid rgb(197, 152, 36);
}
.index-content-header{
    cursor: pointer;
    border-top: 2px solid rgb(197, 152, 36);
    padding: 10px 0 7px 0;
    font-family: 'Actay';
    font-size: 24px;
    position: relative;
    padding-right: 130px;
}
.index-content-header::after {
    content: "Развернуть";
    position: absolute;
    right: 26px;
    top: 13px;
    color: rgb(197, 152, 36);
    font-size: 20px;
    font-family: 'Actay';
    height: 20px;
}
.index-content-header::before {
    content: "";
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: url("../img/cb.svg") center center no-repeat;
    width: 20px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
}
.index-content.active .index-content-header::before {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
}

.index-content-body{
    display: none;
    padding: 10px 0;
}
.index-content.active .index-content-body{
    display: block;
}
.index-content.active .index-content-header::after {
    content: "Свернуть";
}

.section{
    padding: 20px 0;
}
.section_top{
    padding-top: 0;
}

.installments{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.installments > div{
    padding: 10px;
    width: 33.33333%;
}

.installment{
    border: 1px solid rgb(223, 223, 223);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    height: 100%;
    padding: 20px;
}
.installment > div:nth-child(1) span{
    width: 92px;
    display: block;
    height: 77px;
    margin-bottom: 15px;
}
.installments > div:nth-child(1) span{
    background-image: url("../img/iimg1.jpg");
}
.installments > div:nth-child(2) span{
    background-image: url("../img/iimg2.jpg");
}
.installments > div:nth-child(3) span{
    background-image: url("../img/iimg3.jpg");
}
.installments > div:nth-child(4) span{
    background-image: url("../img/iimg4.jpg");
}
.installments > div:nth-child(5) span{
    background-image: url("../img/iimg5.jpg");
}
.installments > div:nth-child(6) span{
    background-image: url("../img/iimg6.jpg");
}

.reviews{}
.review{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.review-left{
    width: 43%;
}
.review-right{
    width: 57%;
    padding-left: 10px;
}
.review-right iframe{
    width:100%;
    height:100%;
    border:1px solid #e6e6e6;
    border-radius:5px;
}

.reviews-slider-slide{
    width: 100%;
    margin-bottom: 10px;
}
.reviews-slider-slide a{
    position: relative;
    display: block;
    padding: 5px;
}
.reviews-slider-slide a:before{
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background: rgba(232, 232, 232, 0.87) url("../img/plus.svg") center center no-repeat;
    bottom: 16px;
    right: 16px;
    position: absolute;
    border-radius: 50%;
}
.reviews-slider-slide a img{
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10.9px 0px rgba(181, 181, 181, 0.25);
    box-shadow: 0px 2px 10.9px 0px rgba(181, 181, 181, 0.25);
}
.reviews-slider-slide span{
    font-size: 12px;
    display: block;
    padding: 5px;
    text-align: center;
}

.calculator{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.calculator-left{
    width: 30%;
    border-radius: 5px;
    height: 325px;
}
.calculator-left img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}
.calculator-right{
    width: 70%;
    padding-left: 20px;
    height: 325px;
}
.calculator-right form{
    display: block;
    height: 100%;
}
.calcul-form-load .alert-success {
    margin-top: 20px;
}
.calcul{
    border: 1px solid rgb(197, 152, 36);
    border-radius: 5px;
    background: rgb(246, 246, 246);
    padding: 20px;
    position: relative;
    height: 100%;
}
.calcul-header{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.calcul-h1{
    font-family: 'Actay';
    padding-bottom: 10px;
}
.calcul-slider{
    border-radius: 100px;
    background: rgba(232, 232, 232, 0.87);
    height: 20px;
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
}
.calcul-slider span{
    display: block;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    border-radius: 100px;
    height: 20px;
    background: rgb(197, 152, 36);
}
.calcul-items{
    height: 100%;
    position: relative;
}
.calcul-item{
    height: 100%;
    position: relative;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.calcul-item.active{
    display: block;
}
.calcul-btn{

}
.calcul-btn button:disabled{
    opacity: 0.4;
    cursor: default;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.calcul-btn button{
    border-radius: 100px;
    background: rgb(197, 152, 36);
    color: #FFF;
    border: 0;
    padding: 8px 30px;
    cursor: pointer;
}
.calcul-btn button:hover{
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(6, 26, 36, 0.55);
    box-shadow: 0px 2px 6px 0px rgba(6, 26, 36, 0.55);
}
.calcul-btn button span{
    display: inline-block;
    width: 12px;
    height: 10px;
    background-position: center center;
    background-repeat: no-repeat;
}
.calcul-btn button.btn-left span{
    background-image: url("../img/ll.svg");
    margin-right: 5px;
}
.calcul-btn button.btn-right span{
    background-image: url("../img/rr.svg");
    margin-left: 5px;
}
.calcul-body{
    height: 100%;
    position: relative;
    padding-bottom: 55px;
    padding-top: 65px;
}
.calcul-value{
    outline: 1px solid red;
    height: 200px;
}
.calcul-btn{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sales-header{
    background: url("../img/sale.jpg") center top no-repeat;
    height: 240px;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    margin-bottom: 20px;
}

.calcul-btns{

}
.calcul-name{
    color: rgb(51, 51, 51);
    font-family: 'Actay';
    width: 100%;
    margin-bottom: 10px;
}
.calcul-name2{
    font-size: 12px;
}
.calcul-values{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.calcul-values > div{
    margin-right: 10px;
    margin-bottom: 10px;
}
.calcul-values button{
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 14px;
    border: 0;
    border-radius: 5px;
    color: #FFF;
    padding: 10px 15px;
    cursor: pointer;
    background: #C3C6C7;
}
.calcul-values button:hover, .calcul-values button.active{
    background: rgba(8, 36, 50, 0.57);
}
.calcul-textarea textarea {
    min-height: 85px;
}

.calcul-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0;
}
.calcul-form > div{
    width: 40%;
}
.calcul-form > div:nth-child(2){
    padding-left: 10px;
    padding-right: 10px;
}
.calcul-form > div:nth-child(3){
    width: 20%;
}
.calcul-form > div:nth-child(3) button{
    width: 100%;
    min-width: 1px;
    height: 45px;
}
.calcul-submit{}

.form-group-sbt{
    text-align: center;
}
.form-polit{
    font-size: 12px;
    text-align: center;
}

.contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contacts span{
    color: #C59824;
}
.contacts-left{
    border: 1px solid rgba(116, 115, 115, 0.19);
    border-radius: 5px;
    padding: 20px 20px 0px 20px;
    width: 40%;
}
.contacts-right{
    padding-left: 10px;
    width: 60%;
}
.contacts-right iframe{
    width: 100% !important;
    height: 100% !important;
    border: 1px solid rgba(116, 115, 115, 0.19);
    border-radius: 5px;
}

.contact-forma{}
.contact-forma label{
    display: block;
    margin-bottom: 10px;
}
.contact-forma input[type=submit]{
    width: 100%;
    max-width: 100%;
}
.contact-forma textarea{
    height: 125px;
}
.contact-forma-text{
    color: rgb(0, 0, 0);
    font-size: 10px;
    padding-top: 10px;
}
.contact-forma-text a{
    font-family: 'Actay';
    color: rgb(0, 0, 0);
}
.contact-forma-btn{}

.contact-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 14.3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 14.3px 0px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
}
.contact-form-left{
    background: url("../img/ctct.jpg") center center no-repeat;
    background-size: cover;
    width: 50%;
    border-radius: 5px 0 0 5px;
}
.contact-form-left > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 22px;
    padding: 15%;
    opacity: 0.7;
}
.contact-form-right{
    width: 50%;
    padding: 20px 40px;
}

.contacts-header{
    font-family: 'Actay';
    font-size: 16px;
    padding-bottom: 5px;
}
.contacts-data{
    margin-bottom: 20px;
}
.contacts-data p{
    margin-bottom: 5px;
}

.contact-what{
    width: 32px;
    display: block;
    height: 32px;
    border-radius: 5px;
    background: rgb(197, 152, 36) url("../img/wt7.svg") center center no-repeat;
}
.contact-what:hover{
    -webkit-box-shadow: 0px 2px 6px 0px rgba(6, 26, 36, 0.55);
    box-shadow: 0px 2px 6px 0px rgba(6, 26, 36, 0.55);
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.footer-wrapper{
    background: rgb(8, 36, 50);
    margin-top: 30px;
}

.footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 0 20px 0;
}
.footer-logo{

    width: 33%;
}
.footer-logo a{}
.footer-menu{

    width: 36%;
}
.footer-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.footer-menu ul li{
    padding-bottom: 8px;
}
.footer-menu ul li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.footer-menu ul li a:hover{
    text-decoration: underline;
}

.footer-contact{

    width: 31%;
}
.footer-address{
    color: rgb(255, 255, 255);
}
.footer-map{
    background-image: url("../img/add.svg");
    background-position: center left;
    background-repeat: no-repeat;
    padding: 10px 0 10px 20px;
    margin-bottom: 10px;
}
.footer-map a{
    color: rgb(197, 152, 36);
}
.footer-map a:hover{
    text-decoration: none;
}
.footer-phone{
    background-image: url("../img/phon.svg");
    background-position: center left;
    background-repeat: no-repeat;
    padding: 5px 0 5px 30px;
}
.footer-phone a{
    color: rgb(255, 255, 255);
    text-decoration: none;
}
.footer-time{
    background-image: url("../img/time.svg");
    color: rgb(255, 255, 255);
    background-position: center left;
    background-repeat: no-repeat;
    padding: 5px 0 5px 30px;
}
.footer-btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
}
.footer-btns > div:first-child{
    padding-right: 15px;
}
.footer-btns .call-btn{
    padding: 9px 25px;
    font-size: 16px;
}
.footer-what{
    width: 40px;
    height: 40px;
    display: block;
    background-image: url("../img/wts.svg");
}

.footer-link{
    position: absolute;
    left: 0;
    top: 170px;
}
.footer-link > div{
    padding: 2px 0;
}
.footer-link > div a{
    font-size: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.56);
}
.footer-link > div a:hover{
    text-decoration: underline;
}

.footer-copy{
    padding-top: 50px;
    width: 100%;
}
.footer-copy div{
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.56);
    border-bottom: 1px solid rgb(156, 155, 155);
}

.footer-text{
    width: 100%;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    padding-top: 20px;
}

.menu-mobile{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}
.link-category{
    font-size: 12px;
    color: #FFF;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.link-category:hover, .link-category.active {
    border-bottom: 2px solid #E1CB91;
    color: #E1CB91;
}
.menu-mobile > div:nth-child(2){
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    font-size: 12px;
}
.menu-mobile > div:nth-child(2) > div:nth-child(1){
    background: url("../img/tm.svg") left top 4px no-repeat;
    padding: 5px;
    padding-left: 18px;
    margin-right: 5px;
}
.menu-mobile > div:nth-child(2) > div:nth-child(2){
    background: url("../img/loc.svg") left center no-repeat;
    padding: 5px;
    padding-left: 18px;
    margin-left: 5px;
}
.burger{
    width: 30px;
    display: block;
}
.burger span{
    border: 1px solid rgb(255, 255, 255);
    display: block;
    margin: 5px 0;
}

.menu-header, .menu-address, .menu-phone, .menu-btn, .menu-mobile{
    display: none;
}

.wth-btn{
    display: none;
}
.swiper.reviews-slides{
    padding-bottom: 30px;
}

.scroll-top {
    opacity: 1;
    display: none;
    position: fixed;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #C59824;
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
    background: url("../img/cb.svg") center center no-repeat;
    background-size: 16px;

}
.scroll-top:hover {
    -webkit-box-shadow: 0px -2px 6px 0px rgba(6, 26, 36, 0.55);
    box-shadow: 0px -2px 6px 0px rgba(6, 26, 36, 0.55);
}

.garantiya{
    max-width: 900px;
    margin-bottom: 20px;
}
.garantiya-header{
    font-family: 'Actay';
    font-size: 24px;
    background: url("../img/ok.png") center left no-repeat;
    padding: 70px 0 70px 230px;
    margin-bottom: 10px;
}
.garantiya-header span{
    color: #C59824;
}
.garantiya-values{}
.garantiya-values ul{
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
.garantiya-values ul li{
    background: url("../img/el_ok.svg") center left no-repeat;
    padding: 10px 0 10px 35px;
}

.sales{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 10px;
}
.sales > div{
    width: 50%;
    padding: 10px;
}
.sale{
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    height: 100%;
    position: relative;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sale span{
    display: block;
    text-align: center;
}
.sale > div:nth-child(1) span{
    color: rgb(197, 152, 36);
    font-family: 'Actay';
    font-size: 20px;
}
.sale > div:nth-child(1) span:nth-child(2){
    font-size: 38px;
}
.sale > div:nth-child(2){
    font-family: 'Actay';
    font-size: 16px;
    padding: 10px 10px 10px 30px;
}



.cases{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 10px;
}
.cases > div{
    width: 50%;
    padding: 10px;
}

.case{
    border: 1px solid rgb(241, 241, 241);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    height: 100%;
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    padding: 20px;
}
.case:hover{
    -webkit-box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
}
.case-name{
    font-family: 'Actay';
    font-size: 14px;
    text-align: center;
    min-height: 38px;
    max-width: 460px;
    margin: 0 auto;
}
.case-img{
    text-align: center;
    padding: 10px 0;
}
.case-img img{
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 310px;
}
.case-annotation{
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 14px;
    padding: 10px;
    max-width: 370px;
    margin: 0 auto;
}
.case-btn{
    text-align: center;
}
.case-description{
    display: none;
    position: absolute;
    background: #FFF;
    z-index: 1;
    -webkit-box-shadow: 0px 15px 17.4px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 15px 17.4px 0px rgba(0, 0, 0, 0.11);
    border: 1px solid rgb(241, 241, 241);
    border-top: 0;
    left: -1px;
    right: -1px;
    top: 100%;
    margin-top: -10px;
    padding: 20px;
    font-size: 14px;
    z-index: 10;
}
.case.open{
    -webkit-box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 2px 17.4px 0px rgba(0, 0, 0, 0.11);
}
.case.open .case-description{
    display: block;
}
.case .case-btn .btn:before{
    content: "Развернуть";
}
.case.open .case-btn .btn:before{
    content: "Свернуть";
}


.districts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.districts__img{
    width: 29%;
}
.districts__img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.districts__list{
    width: 68%;
}
.district{
    max-height: 500px;
    overflow: auto;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    margin-bottom: 20px;
}
.district table{
    width: 100%;
    padding: 30px 50px;

}
.district table th{
    font-size: 16px;
    font-weight: 600;
    border: 0;
    text-align: left;
    padding: 0;
    background: none;
    position: relative;
    padding-bottom: 15px;
}
.district table th:before{
    content: "";
    position: absolute;
    width: 100%;
    max-width: 150px;
    height: 2px;
    background: rgb(197, 152, 36);
    left: 0;
    bottom: 0;
}
.district table td{
    width: 33.333333%;
    padding: 7px 0;
    border: 0;
    font-size: 14px;
}
.district table td span{
    display: inline-block;
    cursor: pointer;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    border-bottom: 2px solid transparent;
}
.district table td span:hover {
    border-bottom: 2px solid #E1CB91;
}
.district table tr:nth-child(2) td{
    padding-top: 15px;
}

.stock{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.stock__img{
    width: 31%;
}
.stock__body{
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    border: 1px solid rgb(223, 223, 223);
    border-radius: 20px;
    width: 69%;
}
.stock__body ul{
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 15px 25px;
}
.stock__body ul li{
    color: #000;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.32px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    padding: 7px 0;
    cursor: pointer;
}
.stock__body ul li span{
    display: inline-block;
    text-decoration: underline;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.stock__body ul li span:hover{
    text-decoration: none;
}
.stock__body ul li.active span{
    background: #FFFF00;
}
.stock__body ul li:hover{
    text-decoration: none;
}
.fart{
    width: 210px;
    height: 210px;
    position: relative;
}
.fart-wheel{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../img/fart.webp") center center no-repeat;
    background-size: contain;
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    transition-timing: ease-in-out;
}
.fart-arrow{
    position: absolute;
    right: -10px;
    top: -10px;
    width: 60px;
    height: 60px;
    background: url("../img/Arrow_desktop.webp") center center no-repeat;
    background-size: contain;
    z-index: 1;
}
.fart-btn{
    width: 260px;
    text-align: left;
    padding-top: 20px;
}
.fart-btn button{
    width: 150px;
    margin-left: 30px;
}

.payments{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.payments-left{
    width: 40%;
    padding-right: 5%;
}
.payments-right{
    width: 60%;
    text-align: center;
}

.payment{}
.payment > div{
    background: url("../img/okk.svg") left center no-repeat;
    border-top: 1px dashed rgb(190, 190, 190);
    padding: 15px 0 15px 40px;
}
.payment > div:first-child{
    border-top: 0;
}

.payment-description{
    background: url("../img/info.svg") left 25px top 25px no-repeat;
    padding: 25px 25px 25px 75px;
    border: 1px solid rgb(223, 223, 223);
    border-radius: 20px;
    margin-bottom: 20px;
}

.team{
    margin-bottom: 20px;
}

.teams{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}
.teams > div{
    padding: 10px;
    width: 33.333333%;
}
.teams-img{}
.teams-img img{
    border-radius: 5px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-shadow: 0px 2px 17.1px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 17.1px 0px rgba(0, 0, 0, 0.17);
}
.teams-rating{
    padding-top: 10px;
}
.teams-rating span{
    width: 23px;
    height: 23px;
    display: block;
    display: inline-block;
    margin-right: 1px;
    background: url("../img/star.svg") center center no-repeat;
}
.teams-name{
    padding-top: 5px;
    font-family: 'Actay';
}
.teams-post{
    color: rgb(128, 128, 128);
    font-size: 14px;
}

.requisites{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 20px 0;
}
.requisites-left{
    width: 35%;
    padding-right: 5px;
}
.requisites-left div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    background: rgb(197, 152, 36);
    font-family: 'Actay';
    color: #FFF;
    font-size: 24px;
    height: 100%;
    width: 100%;
    text-align: center;
}
.requisites-right{
    border: 1px solid #E7E7E7;
    border-radius: 5px;
    padding: 15px 20px;
    width: 65%;
}

.requisit{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0;
}
.requisit > div:nth-child(1){
    width: 35%;
    font-family: 'Actay';
}
.requisit > div:nth-child(2){
    color: rgb(70, 70, 70);
    width: 65%;
}

.footer-cp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-cp > div{
    padding: 0;
    border: 0;
}
.footer-cp > div:nth-child(2){
    font-size: 12px;
}
.footer-cp > div:nth-child(2) a{
    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;
}
.footer-cp > div:nth-child(2) a:hover{
    text-decoration: underline;
}

.advantages{
    margin-bottom: 20px;
}
.advantag{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.advantag > div{
    width: 33.333333%;
    padding: 10px;
    background-position: center left;
    background-repeat: no-repeat;
    padding-left: 85px;
    margin-bottom: 10px;
    padding-right: 20px;
}
.advantag > div:nth-child(1){
    background-image: url("../img/ig1.svg");
}
.advantag > div:nth-child(2){
    background-image: url("../img/ig2.svg");
}
.advantag > div:nth-child(3){
    background-image: url("../img/ig3.svg");
}
.advantag > div:nth-child(4){
    background-image: url("../img/ig4.svg");
}
.advantag > div:nth-child(5){
    background-image: url("../img/ig5.svg");
}

.about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.about-left{
    width: 67%;
    padding-right: 50px;
}
.about-right{
    width: 33%;
}

.blok{
    border: 1px solid rgb(223, 223, 223);
    border-radius: 5px;
    width: 100%;
}
.blok-top{
    text-align: center;
    font-size: 14px;
    padding: 20px;
}
.blok-top a{
    color: #C59823;
}
.blok-bottom{
    background: rgb(8, 36, 50);
    text-align: center;
    color: #FFF;
    padding: 20px;
}
.blok-bottom span{
    font-size: 14px;
}
.blok-bottom div{
    font-family: 'Actay';
    padding-top: 10px;
}

.column-2{
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
.what-we{
    border-top: 2px solid rgb(197, 152, 36);
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-form{
    padding: 20px 0;
}
.about-forma{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.about-forma{}
.about-forma > div{
    width: 30%;
}
.about-forma > div:nth-child(2){
    padding: 0 10px;
}
.about-form .contact-forma-text{
    padding-top: 10px;
}
.about-form .contact-forma-btn input{
    height: 45px;
}







@media (max-width: 1199.98px) {
    /* xl */
    .footer-logo a img {
        max-width: 240px;
    }

    .footer-menu {
        padding-right: 20px;
    }

    .menu ul li {
        padding: 10px 4px;
    }

    .header-address {
        display: none;
    }

    .nav-wrapper {
        background: #082432;
    }

    .category-header {
        font-size: 16px;
    }
    .call-lawyer-header {
        font-size: 16px;
    }
    .index-btns-text {
        font-size: 12px;
    }
    .index-h1, .index-h1 h1 {
        font-size: 24px;
        line-height: 24px;
    }
    h1, .h1, .h1 h2 {
        font-size: 22px;
    }
    .calculator-left {
        width: 25%;
    }
    .calculator-right {
        width: 75%;
    }
    .calcul-form > div {
        width: 35%;
    }
    .calcul-form > div:nth-child(3) {
        width: 30%;
    }
    .reviews-slider-slide a img {
        height: 200px;
    }
    .index-content-header {
        font-size: 22px;
    }
    .service-header {
        font-size: 16px;
    }
    .service-body ul li {
        padding: 4px 0;
        font-size: 15px;
        padding-left: 13px;
    }
    .index-content-header::after {
        font-size: 16px;
        top: 14px;
    }
    .footer-logo a img {
        width: 80px;
    }
    .logo.logo_footer > span:nth-child(2) span {
        font-size: 20px;
    }

    .contacts-right, .contacts-left {
        width: 50%;
    }
    .contact-form-right {
        padding: 20px;
    }
    .prices-form-right {
        background: url("../img/kng.png") right 0px bottom no-repeat;
        background-size: contain;
    }
    .ch-label {
        top: 130px;
    }
    .vakansiis > div{
        width: 50%;
    }
    .stock {
        padding-left: 0px;
    }
    .stock__body {
        width: 100%;
    }
    .fart-btn {
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }
    .stock__img {
        width: 100%;
        padding-bottom: 30px;
        padding-top: 20px;
    }
    .fart {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }
    .fart-btn button {
        margin-left: 0px;
    }
    .fart-arrow {
        right: -20px;
        top: -20px;
        width: 80px;
        height: 80px;
    }
    .payments-right {
        width: 55%;
    }
    .payments-left {
        width: 45%;
    }
    .advantag > div {
        width: 50%;
    }
    .requisites {
        display: block;
    }
    .requisites-left {
        width: 100%;
        padding-right: 0;
    }
    .requisites-right {
        width: 100%;
    }
    .requisites-left div {
        text-align: center;
        padding: 10px;
        font-size: 18px;
    }
    .about-forma > div {
        width: 33.33333%;
    }
    .blk-left {
        padding-left: 0px;
    }





}

@media (max-width: 991.98px) { /* lg */
    .footer-logo{
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        padding-bottom: 30px;
    }
    .footer-menu {
        width: 50%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .footer-contact {
        width: 50%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .footer-copy {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .footer-link {
        position: static;
        left: auto;
        top: auto;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        padding-top: 20px;
    }
    .footer-text {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .footer {
        padding: 30px 0 30px 0;
    }
    .footer-logo a img{
        max-width: 220px;
    }
    .footer-menu {
        padding-right: 50px;
    }
    .footer-link > div {
        display: inline-block;
        margin-right: 10px;
    }

    .menu{
        display: block;
        z-index: 100;
        position: fixed;
        right: 0;
        top: 0;
        background: rgb(8, 36, 50);
        padding: 0 30px 10px;
        width: 90%;
        max-width: 490px;
        display: none;
    }
    body.open-menu .menu{
        display: block;
    }

    .menu-header{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        padding: 10px 0 5px 0;
    }
    .menu-header > div:nth-child(1){
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 600;
        color: #FFF;
    }
    .menu-header > div:nth-child(2){}
    .menu-header .btn-close-menu{
        background: url("../img/cls.svg") center center no-repeat;
        cursor: pointer;
        height: 40px;
        width: 40px;
        border: 0;
        background-size: 18px;
    }
    .menu-ul{
        padding: 20px 0 10px 0;
    }
    .menu-ul ul{
        display: block;
    }
    .menu-ul ul li{
        width: 100%;
        text-align: left;
        padding: 2px 0;
    }
    .menu-ul ul li a{
        font-size: 14px;
        text-transform: uppercase;
    }

    .menu-address{
        font-size: 12px;
    }
    .menu-address > div:nth-child(1){
        background: url("../img/tm.svg") left top 4px no-repeat;
        padding: 5px;
        padding-left: 5px;
        padding-left: 20px;
        color: #FFF;
    }
    .menu-address > div:nth-child(2){
        background: url("../img/loc.svg") left center no-repeat;
        padding: 5px;
        padding-left: 5px;
        padding-left: 20px;
        color: #FFF;
    }

    .menu-phone{
        padding: 20px 0;
    }
    .menu-phone a{
        color: rgb(255, 255, 255);
        font-family: 'Actay';
        text-decoration: none;
        font-size: 20px;
    }

    .menu-btn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 10px;
        display: none;
    }
    .menu-btn a{
        font-size: 12px;
        display: block;
        background-position: top center;
        background-repeat: no-repeat;
        color: #000;
        text-decoration: none;
        padding: 26px 0px 0px 0px;
        text-align: center;
        -webkit-transition: all 0.25s;
        -o-transition: all 0.25s;
        transition: all 0.25s;
        color: #FFF;
        margin-right: 20px;
    }
    .menu-btn a span{
        display: inline-block;
        -webkit-transition: all 0.25s;
        -o-transition: all 0.25s;
        transition: all 0.25s;
        border-bottom: 2px solid transparent;
    }
    .menu-btn a:hover span{
        border-bottom: 2px solid #E1CB91;
    }
    .menu-btn .brand-whatsapp{
        background-image: url("../img/clm.svg");
    }
    .menu-btn .brand-calculator{
        background-image: url("../img/wtm.svg");
    }
    .menu-btn a:hover:before{
        display: block;
    }
    .menu-mobile{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .call-btn_img {
        padding-left: 0;
        background-position: center center;
        text-indent: -9999px;
        width: 38px;
        height: 38px;
    }

    .header-logo{
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .header-date{
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .header-btns{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .header-call{
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .header-phone{
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .header-btns {
        padding-right: 0;
    }
    .header-date, .header-call{
        display: none;
    }
    .call-lawyer{
        display: none;
    }
    .body {
        position: relative;
    }
    .body-left {
        width: 260px;
        z-index: 10;
        position: absolute;
        left: -5px;
        top: -5px;
        display: none;
    }
    .body-content {
        width: 100%;
        padding-left: 0px;
    }
    .open-menu-left .body-left {
        display: block;
    }
    .body {
        padding: 10px 0;
    }
    .index-div1 {
        width: 62%;
    }
    .index-div2 {
        width: 38%;
    }
    .index-div2 img {
        height: 250px;
    }
    .big-form-h1 {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .big-form-h2{
        font-size: 16px;
    }
    .big-form-btns div:first-child {
        padding-left: 0;
    }
    h1, .h1, .h1 h2 {
        font-size: 18px;
    }
    .detailed-head {
        font-size: 18px;
    }
    .reviews-slider-slide a img {
        height: auto;
    }
    .review-left {
        width: 32%;
    }
    .review-right {
        width: 68%;
    }
    .h1-text {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: -10px;
    }
    .index-content-header {
        font-size: 18px;
    }
    h2, .h2 {
        font-size: 17px;
    }
    .index-bottom {
        width: 62%;
    }
    .catalogs > div {
        width: 50%;
    }
    .catalogs > div:nth-child(4) {
        display: block !important;
    }
    .detailed-items > div > div:nth-child(1) {
        padding-right: 20px;
    }
    .large-width .faq-lists > div{
        width: 100%;
    }
    .large-width .faq-lists > div:nth-child(1){
        padding-right: 0px;
    }
    .large-width .faq-lists > div:nth-child(2){
        padding-left: 0px;
    }
    .large-width .large-faq-form > div{
        width: 100%;
    }
    .large-width .large-faq-form-left{
        padding-right: 0px;
    }
    .large-width .large-faq-form-right{
        padding-left: 0px;
    }
    .large-width .big-form-btns > div:nth-child(1){
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .large-width .big-form-btns > div:nth-child(2){
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .large-width .link-category{
        display: none;
    }
    .vakansii-text{
        font-size: 18px;
    }

    .menu-fixed{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #FFF;
        z-index: 2;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    }
    .body-wrapper {
        padding-top: 63px;
    }

}

@media (max-width: 767.98px) { /* md */
    .footer-logo a img{
        max-width: 200px;
    }
    .footer {
        padding: 20px 0;
    }
    .large-width .lleft{
        padding-bottom: 15px;
    }
    .footer-menu {
        width: 100%;
        padding-right: 0px;
    }
    .footer-contact {
        width: 100%;
        padding-top: 30px;
    }
    .footer-copy {
        padding-top: 30px;
    }
    .footer-link > div {
        padding: 1px 0;
    }
    .index-div1 {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .index-div2 {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .index-bottom{
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        position: static;
    }
    .index {
        padding: 20px;
    }
    .index-h1, .index-h1 h1 {
        font-size: 20px;
        line-height: 20px;
    }
    .index-text {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .index-bottom {
        padding-right: 0px;
        padding-top: 20px;
    }
    .calculator-left {
        width: 100%;
        margin-bottom: 10px;
        height: 240px;
    }
    .calculator-right {
        width: 100%;
        padding-left: 0;
    }
    .catalogs > div {
        padding: 5px;
    }
    .catalogs {
        margin: -5px;
    }
    .review-right {
        width: 100% !important;
        height: 700px;
        padding-left: 0;
    }
    .review-left {
        width: 100% !important;
        padding-bottom: 20px;
    }
    .reviews-slider{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-div1 {
        padding-right: 0px;
    }
    .reviews-slider-slide {
        width: 50%;
    }
    .swiper.reviews-slides {
        padding-bottom: 20px;
    }
    .faq-item {
        margin-bottom: 5px;
    }
    .service > div {
        width: 100%;
    }
    .calcul-values > div {
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .service-body-three {
        display: block;
    }
    .service-body-three ul {
        width: 100%;
    }
    .service-body-three ul:nth-child(2) {
        padding-left: 0px;
    }
    .contacts-right, .contacts-left {
        width: 100%;
    }
    .contacts-right{
        padding: 0;
        padding-top: 10px;
        height: 300px;
    }
    .contact-form {
        display: block;
    }
    .contact-form-left {
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
    .contact-form-left > div {
        font-size: 20px;
        padding: 50px;
    }
    .contact-form-right {
        width: 100%;
    }
    .installments > div {
        width: 50%;
    }
    .prices-form-right {
        height: 180px;
        width: 100%;
    }
    .prices-form-left {
        width: 100%;
        padding: 20px 20px 0px 20px;
    }
    .circle-label {
        top: auto;
        left: 20px;
        bottom: 20px;
    }
    .prices-form-h1 {
        font-size: 18px;
    }
    .prices-forma {
        width: 100%;
    }
    .ch-label {
        background: url("../img/ch2.svg") center center no-repeat;
        background-size: contain;
        width: 130px;
        height: 74px;
        position: absolute;
        left: 20%;
        top: auto;
        bottom: 100px;
    }
    .garantiya-header {
        font-size: 16px;
        padding: 50px 0 50px 170px;
        background-size: 160px;
    }

    .cases{
        margin: 0;
        margin-bottom: 10px;
    }
    .cases > div {
        width: 100%;
        padding: 0px;
        margin-bottom: 10px;
    }
    .case-description {
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0;
        margin-top: 0px;
        padding: 0px;
        padding-top: 20px;
    }
    .district table td {
        padding: 4px 0;
        font-size: 12px;
    }
    .district table {
        padding: 20px 20px;
    }
    .district table th::before {
        max-width: 100px;
    }
    .district table th {
        font-size: 12px;
    }
    .sales {
        margin: 0px;
        margin-bottom: 10px;
    }
    .sales > div {
        width: 100%;
        padding: 0px;
        margin-bottom: 10px;
    }
    .sales-header {
        height: 120px;
    }
    .sale > div:nth-child(1) span {
        font-size: 12px;
    }
    .sale > div:nth-child(1) span:nth-child(2) {
        font-size: 24px;
    }
    .sale > div:nth-child(2) {
        font-size: 14px;
    }
    .sales-header {
        margin-bottom: 10px;
    }
    .payments{
        display: block;
    }
    .payments-right {
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }
    .payments-left {
        width: 100%;
        padding-right: 0;
    }
    .payment-description {
        background: url("../img/info.svg") left 12px top 12px no-repeat;
        padding: 15px 15px 15px 45px;
    }
    .about-left {
        width: 100%;
        padding-right: 0px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .about-right {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-bottom: 20px;
    }
    .requisites-left {
        padding-bottom: 10px;
    }
    .advantag > div {
        width: 100%;
        padding: 20px;
        padding-left: 85px;
    }
    .column-2 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .about-forma > div {
        width: 100%;
        padding-bottom: 10px;
    }
    .about-forma > div:nth-child(2) {
        padding: 0px;
        padding-bottom: 10px;
    }
    .ff-privacy {
        text-align: center;
    }
    .big-form-btns {
        display: block;
    }
    .big-form-btns > div:nth-child(2){
        text-align: center;
    }
    .big-form-btns div:last-child input {
        min-width: 210px;
        height: 45px;
    }
    .blk {
        display: block;
    }
    .blk-right input{
        width: 100%;
        max-width: 100%;
    }
    .blk {
        margin-right: 0px;
        padding-bottom: 20px;
    }
    .blk-left{
        display: none;
    }
    .ff-privacy {
        padding-top: 15px;
    }
    .footer-cp{
        display: block;
    }
    .footer-cp > div:nth-child(2){
    padding-top: 5px;
}

}

@media (max-width: 575.98px) { /* sm */
    .menu-mobile > div:nth-child(2) > div:nth-child(2){
        display: none;
    }
    .menu-mobile > div:nth-child(2) > div:nth-child(1){
        margin: 0;
    }
    .menu-address, .menu-phone{
        display: block;
    }
    .menu-btn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .contact-form-left > div {
        padding: 20px;
    }
    .menu-ul {
        padding: 10px 0 10px 0;
    }
    .menu-ul ul li {
        padding: 1px 0;
    }
    .menu-ul ul li a {
        font-size: 12px;
    }
    .menu-phone {
        padding: 20px 0 10px 0;
    }
    .header-btns .click-btn{
        display: none;
    }
    .wth-btn{
        display: block;
    }
    .wth-btn a{
        width: 28px;
        height: 28px;
        display: block;
        background-image: url("../img/wts.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .header-phone span {
        font-size: 12px;
    }
    .header-phone span::before {
        width: 10px;
        height: 10px;
        margin-top: -6px;
        border: 2px solid #9F9F9F;
    }
    .header-phone div a {
        font-size: 14px;
    }
    .header-phone div {
        padding-bottom: 0;
    }
    .header {
        padding: 5px 0;
    }
    .header-phone div {
        padding-bottom: 0;
        line-height: 9px;
        padding-top: 4px;
    }
    .header-phone span {
        padding-left: 14px;
    }
    .index-text {
        font-size: 14px;
    }
    .index {
        padding: 15px;
    }
    .index-div2 img {
        height: 230px;
    }
    .index-btns {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-btns > div {
        width: 100%;
    }
    .index-btns > div:last-child {
        padding-left: 0px;
        padding-top: 15px;
    }
    .index-btns-text {
        padding-bottom: 5px;
    }
    .big-form {
        padding: 0;
    }
    .big-form-h1 {
        font-size: 16px;
    }
    .big-form-h2{
        font-size: 14px;
    }
    .big-form-text textarea {
        padding: 15px 15px;
    }
    .big-form-btns{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .big-form-btns div:first-child {
        padding-left: 0;
        padding-right: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
    }
    .big-form-btns div:last-child input{
        width: 100%;
        max-width: 100%;
    }
    .big-form-btns div:last-child {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-bottom: 10px;
        width: 100%;
    }

    .catalogs > div {
        padding: 0px;
        width: 100%;
        margin-bottom: 10px;
    }
    .catalogs {
        margin: 0px;
    }
    .detailed-items {
        padding-left: 0px;
    }
    .index-content-header::before {
        height: 64px;
    }
    .index-content-header::after {
        top: 22px; font-size: 14px;
    }
    .index-content-header {
        font-size: 17px;
    }
    .service-body {
        padding-left: 10px;
    }
    .box-modal-filed {
        display: block;
    }
    .box-modal-filed .form-group {
        width: 100%;
    }
    .box-modal-filed .form-group:nth-child(1) {
        padding-right: 0px;
    }
    .box-modal-filed .form-group:nth-child(2) {
        padding-left: 0px;
    }
    .box-modal-title2 {
        text-align: left;
        font-size: 16px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .calcul {
        padding: 15px;
    }
    .calcul-slider {
        left: 15px;
        right: 15px;
    }
    .calcul-name2{
        display: none;
    }
    .calcul-form > div:nth-child(1) {
        width: 45%;
    }
    .calcul-form > div:nth-child(2) {
        width: 55%;
        padding-right: 0px;
    }
    .calcul-form > div:nth-child(3) {
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }
    .calcul-form > div:nth-child(3) button {
        height: 35px;
        max-width: 120px;
        padding: 0;
    }
    .form-polit {
        font-size: 10px;
        margin-left: -10px;
        margin-right: -10px;
        line-height: 10px;
    }
    .calcul-form {
        padding: 0 0 10px 0;
    }
    .calcul-values button {
        padding: 5px 8px;
    }
    .footer-logo a img {
        width: 60px;
    }
    .logo.logo_footer > span:nth-child(2) span {
        font-size: 16px;
    }
    .catalogs-name {
        min-height: 1px;
    }
    .installments > div {
        width: 100%;
    }
    .installments {
        margin: 0px;
        margin-bottom: 10px;
    }
    .installments > div {
        padding: 0px;
        margin-bottom: 10px;
    }
    .installment{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .installment > div:nth-child(1){}
    .installment > div:nth-child(2){
        padding-left: 20px;
    }
    .installment > div:nth-child(1) span {
        margin-bottom: 0px;
    }
    .garantiya-header {
        padding: 20px 0 20px 95px;
        background-size: 90px;
    }
    .garantiya-values ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .garantiya-values ul li {
        padding: 5px 0 5px 35px;
    }
    .vakansiis{
        margin: 0px;
    }
    .vakansiis > div{
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .district table td {
        font-size: 10px;
    }
    .box-modal-title3 {
        text-align: left;
        margin: 0;
    }
    .district table th::before {
        max-width: 60px;
    }
    .district table th {
        font-size: 11px;
        padding-bottom: 5px;
    }
    .stock__body ul li {
        font-size: 12px;
    }
    .stock__body ul {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
    .teams > div {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .teams-img {
        text-align: center;
    }
    .teams-img img {
        border-radius: 5px;
        width: auto;
    }
    .requisit {
        display: block;
    }
    .body-wrapper {
        padding-top: 48px;
    }
    .header-phone div {
        padding-bottom: 2px;
    }
    .header-phone span.active::before {
        left: 2px;
        width: 8px;
        height: 8px;
        margin-top: -5px;
    }
}

@-webkit-keyframes fadeIn {
    0% {display: none; opacity: 0;}
    1% {display: block;opacity: 0;}
    100% {display: block; opacity: 1;}
}

@keyframes fadeIn {
    0% {display: none; opacity: 0;}
    1% {display: block;opacity: 0;}
    100% {display: block; opacity: 1;}
}