@charset "UTF-8";


@font-face {
	font-family: 'NeffSansDisplayLight';
	src:
    url('/assets/ui/fonts/Neff/NeffSansDisplayLight.woff2') format('woff'),
    url('/assets/ui/fonts/Neff/NeffSansDisplayLight.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'NeffSansRegular';
	src:
    url('/assets/ui/fonts/Neff/NeffSansRegular.woff2') format('woff'),
    url('/assets/ui/fonts/Neff/NeffSansRegular.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'NeffSansBold';
	src:
    url('/assets/ui/fonts/Neff/NeffSansBold.woff2') format('woff'),
    url('/assets/ui/fonts/Neff/NeffSansBold.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'NEFFHandRegular';
	src:
    url('/assets/ui/fonts/Neff/NEFFHandRegular.woff2') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
body *{
    outline: none;
}
main{
    display: block;
    position: relative;
    z-index: 0;
}
main *{
    max-height: 10000000px;
}
.form-error-border {
    border: 1px solid #be1f1f!important;
}
textarea {
    resize: vertical;
}

.container{
    width: 1110px;
    margin: 0 auto;
    position: relative;
}
.container-b{
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.row:after{
    content: "";
    display: table;
    clear: both;
}

/*----header----*/
header{
    background: url(/assets/ui/img/header/bg.jpg) no-repeat center;
    background-size: cover;
    height: 170px;
    display: block;
    position: relative;
    z-index: 3;
}
.phone-callback {
    display: inline-block;
}
.line-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    height: 130px;
}
.line-top .col-left{
    display: flex;
    align-items: center;
}
.line-top .col-left .logo{
    display: block;
    margin: 0;
}
.line-top .col-left .logo-text{
    font-family:'NeffSansBold';
    font-size: 17px;
    color: #fff;
    line-height: 1.412;
    display: block;
    margin: 0 0 0 40px;
    width: 276px;
}


.line-top .phone{
    width: 240px;
    text-align: right;
}
.line-top .phone .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    margin: 0 0 8px 0;
}
.line-top .phone .small{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #ACACAC;
    display: inline-block;
    position: relative;
    bottom: 2px;
}
.line-top .phone .big{
    font-family: 'NeffSansBold', Arial;
    font-size: 35px;
    color: #fff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.line-top .phone:hover .small,
.line-top .phone:hover .big{
    color: #ACACAC;
}

nav{

}
nav.main-menu{
    position: relative;
}
nav.main-menu > .container{
    position: static;
}

ul.main-menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
ul.main-menu > li{
    padding-right: 20px;
}
ul.main-menu > li:last-child{
    padding: 0;
}
ul.main-menu > li.active a{
    pointer-events: none;
}
ul.main-menu > li > a{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    padding: 0 0 25px 0;
    position: relative;
}
ul.main-menu > li > a::after{
    content: "";
    opacity: 1;
    position: absolute;
    bottom: 0;
    background-color: #97002D;
    height: 2px;
    width: 0;
    -webkit-transition: width 400ms cubic-bezier(0.38, 0.04, 0.35, 0.96);
    transition: width 400ms cubic-bezier(0.38, 0.04, 0.35, 0.96);
    left: 0;
    margin-left: 0;
}

ul.main-menu li a:hover{

}
ul.main-menu li:hover a::after{
    width: 100%;
}
ul.main-menu li.active a::after{
    width: 100%;
}

.overlay-main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.6);
    z-index: 2;
    display: none;
}
.main-menu-drop{
    visibility: hidden;
    opacity: 0;
    z-index: -2;
    transition: all ease 0.3s;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 90px 0 40px 0;
    border-top: 1px solid #F0F0F0;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
}
ul.main-menu > li:hover .main-menu-drop{
    visibility: visible;
    opacity: 1;
    z-index: 3;
}
.main-menu-level-1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 100px;
}
.main-menu-level-1 .col{
    display: block;
    width: 195px;
    text-align: center;
    margin: 0 17px 35px 17px;
}
.main-menu-level-1 .col .img-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
}
.main-menu-level-1 .col .img-box img{
    vertical-align: bottom;
}
.main-menu-level-1 .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.3;
    transition: all ease 0.2s;
}
.main-menu-level-1 .col:hover .title{
    color: #97002D;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    ul.main-menu li{
        padding-right: 18px;
    }
}
@supports (-ms-ime-align:auto) {
    ul.main-menu li{
        padding-right: 18px;
    }
}


.drop-block{
    position: absolute;
    width: 100%;
    padding: 40px 60px 50px 60px;
    -webkit-box-shadow: 0 20px 40px rgba(50,50,50,0.06);
            box-shadow: 0 20px 40px rgba(50,50,50,0.06);
    background: #fff;
    display: none;
    top: 53px;
    z-index: 10;
}
.drop-block:before{
    content: '';
    position: absolute;
    height: 5px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 5px solid #fff;
    top: -10px;
    left: 80px;
}
.drop-block h2{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 25px;
    color: #323232;
    margin-bottom: 40px;
}

.services-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.services-row .services-col a{
    text-decoration: none;
}
.services-row .services-col{
    width: 20%;
}
.services-row .services-col:last-child{
    width: 12%;
}
.services-row .services-col .services-img{
    height: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 20px;
}
.services-row .services-col .services-img img[src*="fridge"]{
    display: block;
    margin-left: 30px;
}
.services-row .services-col .title{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 21px;
    color: #323232;
    text-decoration: none;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    width: 90%;
    line-height: 24px;
}
.services-row .services-col .title:hover{
    color: #d80546;
}
.services-row .services-col .title:hover span:after{
    content: '';
    display: inline-block;
    background: url(/assets/ui/img/icons/up-arrow-menu.png) no-repeat;
    width: 6px;
    height: 10px;
    margin: 8px 0 0 7px;
    position: absolute;
}

/*----/header----*/

/*----article.head-banner----*/
article.head-banner{
    height: 550px;
    background-repeat: no-repeat;
    background-position: right 50% top;
}
.prices article.head-banner{
    background-image: url(/assets/ui/img/prices/bg-prices.jpg);
}
.repair_parts article.head-banner{
    background-image: url(/assets/ui/img/repair_parts/bg-repair_parts.jpg);
}
.terms article.head-banner{
    background-image: url(/assets/ui/img/terms/bg-terms.jpg);
}
.delivery article.head-banner{
    background-image: url(/ui/img/delivery/bg_delivery.jpg);
}
.warrant article.head-banner{
    background-image: url(/assets/ui/img/warrant/bg-warrant.jpg);
}
.trouble_shooting article.head-banner{
    background-image: url(/assets/ui/img/trouble_shooting/bg-trouble_shooting.jpg);
}
.contacts article.head-banner{
    background-image: url(/assets/ui/img/contacts/bg_contacts.jpg);
}
.feedback article.head-banner{
    background-image: url(/assets/ui/img/feedback/bg_feedback.jpg);
}

.washer article.head-banner{
    background-image: url(/assets/ui/img/equipment/washer/bg-washer.jpg);
}
.dishwasher article.head-banner{
    background-image: url(/assets/ui/img/equipment/dishwasher/bg-dishwasher.jpg);
}
.fridge article.head-banner{
    background-image: url(/assets/ui/img/equipment/fridge/bg-fridge.jpg);
}
.dryer article.head-banner{
    background-image: url(/assets/ui/img/equipment/dryer/bg-dryer.jpg);
}
.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/bg-appliances.jpg);
}

.ustanovka-i-podkljuchenie-stiralnoj-mashiny.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/washer.jpg);
}
.ustanovka-i-podkljuchenie-posudomoechnoj-mashiny.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/dishwasher.jpg);
}
.ustanovka-i-podkljuchenie-holodilnika.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/fridge.jpg);
}
.ustanovka-i-podkljuchenie-duhovogo-shkafa.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/oven.jpg);
}
.ustanovka-i-podkljuchenie-kuhonnoj-vytjazhki.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/extractor-fan.jpg);
}
.ustanovka-i-podkljuchenie-kofemashiny.appliances article.head-banner{
    background-image: url(/assets/ui/img/equipment/appliances/coffee-machine.jpg);
}

.oven article.head-banner{
    background-image: url(/assets/ui/img/equipment/oven/bg-oven.jpg);
}
.hob article.head-banner{
    background-image: url(/assets/ui/img/equipment/hob/bg-hob.jpg);
}
.extractor-fan article.head-banner{
    background-image: url(/assets/ui/img/equipment/extractor-fan/bg-extractor-fan.jpg);
}
.coffee-machine article.head-banner{
    background-image: url(/assets/ui/img/equipment/coffee-machine/bg-coffee-machine.jpg);
}
.electric-stove article.head-banner{
    background-image: url(/assets/ui/img/equipment/electric-stove/bg-electric-stove.jpg);
}
.other article.head-banner{
    background-image: url(/assets/ui/img/equipment/other/bg-other.jpg);
}

.cooker article.head-banner{
    background-image: url(/assets/ui/img/equipment/cooker/bg.jpg);
}

.double-boiler article.head-banner{
    background-image: url(/assets/ui/img/equipment/double-boiler/bg.jpg);
}
.microwave article.head-banner{
    background-image: url(/assets/ui/img/equipment/microwave/bg.jpg);
}

.about article.head-banner{

}

article.head-banner .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
article.head-banner .text{
    padding: 55px 60px 55px 60px;
    width: 560px;
    background: linear-gradient(90.83deg, rgba(255, 255, 255, 0.8) 0.36%, #FFFFFF 60%);
}
.oven article.head-banner .text,
.extractor-fan article.head-banner .text{
    margin-left: auto;
}

.failures article.head-banner .text{
    width: 580px;
}
.dishwasher article.head-banner .text,
.appliances article.head-banner .text,
.hob article.head-banner .text{
    margin-left: auto;
}


.model article.head-banner .text{
    width: 860px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: relative;
}
.model.failures article.head-banner .text{
    width: 100%;
}
.model article.head-banner .text > .col-left{
    width: 500px;
    padding: 50px 0 50px 60px;
}
.model article.head-banner .text > .col-right{
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}


article.head-banner .text h1{
    font-family: 'NEFFHandRegular', Arial;
    font-size: 55px;
    color: #323232;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1.04;
}
article.head-banner .text ul li{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}
article.head-banner .text ul li:last-child{
    margin-bottom: 0;
}
article.head-banner .text ul li:before{
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    background: #EC201F;
    border-radius: 100%;
    left: 0;
    margin-top: 6px;
}


article.head-banner .text p{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    line-height: 1.6;
    color: #323232;
    margin-bottom: 25px;
}
article.head-banner .text p .link{
    font-family: 'NeffSansBold', Arial;
    white-space: nowrap;
}
article.head-banner .text .price-start{
    font-family: 'NeffSansBold', Arial;
    font-size: 18px;
    color: #B10035;
    margin: 15px 0 0 0;
}
article.head-banner .img-box img{
    max-height: 350px;
    max-width: 260px;
}
article.head-banner .bottom-line{
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
article.head-banner .bottom-line .sub-text{
    margin-left: 20px;
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
}

.head-banner_failures_table__col_price{
    font-family: 'GothaProBol', Arial, sans-serif;
    font-size: 18px;
    color: #a50034;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    margin-right: 20px;
}
/*----/article.head-banner----*/

/*----breadcrumbs----*/
.breadcrumbs{
    z-index: 1;
    padding: 17px 0;
}
.politic .breadcrumbs{
    position: relative;
}
.breadcrumbs a{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.breadcrumbs a:hover{
    color: #323232;
}
article.head-banner .breadcrumbs a{
    color: #fff;
}
.breadcrumbs span{
    font-family: 'NeffSansRegular', Arial, sans-serif;
    font-size: 14px;
    color: #323232;
}
article.head-banner .breadcrumbs span{
    color: #d8d8d8;
}
.breadcrumbs a:after{
    content: '';
    background: url(/assets/ui/img/icons/ico-breadcrumbs-arrow.png) no-repeat center top 3px;
    display: inline-block;
    width: 4px;
    height: 6px;
    padding: 0 0 4px 0;
    margin: 0 8px 0 11px;
}
article.head-banner .breadcrumbs a:after{
    background: url(/assets/ui/img/icons/ico-breadcrumbs-arrow-light.png) no-repeat center center;
}
/*----/breadcrumbs----*/

/*----btn-call-back----*/
.Rectangle_41 {
    background-color: rgb( 28, 146, 210 );
    position: absolute;
    left: 441px;
    top: 563px;
    width: 195px;
    height: 2px;
    z-index: 12;
  }


.btn-bg{
    height: 45px;
    line-height: 45px;
    padding: 0 30px 0 30px;
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #fff;
    background-color: #B10035;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-bg:hover{
    background-color: #97002D;
}
.btn-bg-dark{
    background-color: #323232;
}
.btn-bg-dark:hover{
    background-color: #000000;
}

.btn-call-back.question{
    background: #333333;
    overflow: hidden;
}
.btn-call-back.question:hover{
    border-color: #000000;
}
/*----/btn-call-back----*/

/*----failures_table----*/
article.failures_table{
    margin-bottom: 70px;
}
.dryer.failures article.failures_table{
    margin-bottom: 30px;
}

.failures_table .line-title{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 35px 0;
}
article.failures_table
.failures_table .line-title{

}
.failures_table .line-title h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    display: inline-block;
    margin: 0 20px 0 0;
}
.failures_table .line-title .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #B10035;
    line-height: 1.2;
    margin: 8px 0 0 0;
    display: inline-block;
}
.failures_table .line-title .subtext strong{
    font-family: 'ElectroluxSansSemibold', Arial;
}
.failures_table__col{
    display: block;
    width: 356px;
    height: 220px;
    float: left;
    padding: 30px 40px 35px 40px;
    background: #F9F6F1;
    margin: 0 21px 21px 0;
    border: 1px solid transparent;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: relative;
}
main.appliances .failures_table__col{

}
.failures_table__col:nth-child(3n){
    margin-right: 0;
}
.failures_table__col:nth-child(2n){
    background: #F9F4F5;
}
.failures_table__col:nth-child(-2n){
    background: #F9F4F5;
}


a.failures_table__col:not(.ending):hover{
    background: #FCFAF7;
}
a.failures_table__col:nth-child(2n):not(.ending):hover{
    background: #F9F8F8;
}
.failures_table__col:hover .failures_table__col_title{
    /* color: #c24a3e; */
}

a.failures_table__col:not(.ending):hover .failures_table__col_title{

}
a.failures_table__col:not(.ending):hover .failures_table__col_price{

}
a.failures_table__col:hover .failures_table__col_title_span{

}
.failures_table__col_title_span{
    padding-right: 10px;
    background-image: url(/assets/ui/img/icons/ico-right-tabs-d.png);
    background-repeat: no-repeat;
    background-position: right top 12.5px;
    -webkit-transition: background ease 0.2s;
    transition: background ease 0.2s;
}
.failures_table__col_title{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 22px;
    color: #323232;
    margin: 0 0 10px 0;
    line-height: 1.3;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.failures_table__col_desc{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    overflow: hidden;
    line-height: 1.5;
}
.failures_table__col_price{
    font-family: 'NeffSansBold', Arial;
    font-size: 16px;
    color: #B10035;
    line-height: 1.5;
    text-transform: uppercase;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: absolute;
    bottom: 30px;
    letter-spacing: 0.6px;
}
.master .failures_table__col_price,
.diagnos .failures_table__col_price{
    color: #fff;
}
.failures_table__col_price-sum{
    font-family: 'NeffSansBold', Arial;
    margin: 0 10px 0 0;
}
.failures_table__col_price-request{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    text-transform: none;
    display: inline-block;
    color: #B10035;
    letter-spacing: 0;
    position: relative;
}
.failures_table__col_price-request:after{
    content: '';
    display: block;
    width: 5px;
    height: 7px;
    background: url(/assets/ui/img/icons/ico-right.png) no-repeat;
    position: absolute;
    top: 11px;
    right: -11px;
}
.failures_table__col_price-request:hover{
    color: #97002D;
}
.failures_table__col.master{
    background: url(/assets/ui/img/prices/accordion-prices-inner-bg-master.jpg) no-repeat;
    background-size: cover;
}
.failures_table__col.diagnos{
    background: url(/assets/ui/img/prices/accordion-prices-inner-bg-diagnos.jpg) no-repeat;
    background-size: cover;
}
.failures_table__col.guarantee{
    background: url(/assets/ui/img/prices/accordion-prices-inner-bg-guarantee.jpg) no-repeat;
    background-size: cover;
}
.failures_table__col.master .failures_table__col_title,
.failures_table__col.diagnos .failures_table__col_title{
    color: #fff;
}
.failures_table__col.guarantee .failures_table__col_title{
    color: #323232;
}
.failures_table__col.master .failures_table__col_desc{
    color: #FCDCE6;
    font-size: 15px;
}
.failures_table__col.diagnos .failures_table__col_desc{
    color: #B7B8BC;
    font-size: 15px;
}
.failures_table__col.guarantee .failures_table__col_desc{
    color: #95866E;
    line-height: 1.563;
    font-size: 15px;
}

.failures_table__col.guarantee .failures_table__col_price{
    color: #323232;
}
main.appliances .failures_table__col.master,
main.appliances .failures_table__col.diagnos{

}

.failures-estimated-cost{
    margin-top: 70px;
}
.failures-estimated-cost.consultation{
    display: block;
}
main.failures .failures-estimated-cost.consultation{
    display: none;
}
.failures-estimated-cost.failures{
    display: none;
}
main.failures .failures-estimated-cost.failures{
    display: block;
}
.failures-estimated-cost .row{
    display: flex;
    align-items: center;
    padding: 20px 0 20px 0;
}
.failures-estimated-cost .col-left{
    width: 48%;
    padding-right: 110px;
    position: relative;
}
.appliances .failures-estimated-cost .col-left,
.failures .failures-estimated-cost .col-left{
    padding: 0 0 0 90px;
}
.failures-estimated-cost .col-left::after{
    content: '';
    position: absolute;
    height: 97px;
    border-left: 1px solid #F0F0F0;
    right: 0;
    top: 50%;
    margin: -48px 0 0 0;
}
.failures-estimated-cost .col-right{
    width: 54%;
    padding-left: 110px;
}
.appliances .failures-estimated-cost .col-right,
.failures .failures-estimated-cost .col-right{
    width: 62%;
    padding: 0 90px 0 100px;
}
.failures-estimated-cost .col-left h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 25px;
    color: #323232;
    line-height: 1.3;
}
.failures-estimated-cost .col-left h2 span{
    color: #B10035;
}


.failures-estimated-cost .col-right .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    line-height: 1.6;
    color: #323232;
    margin-bottom: 15px;
}
.failures-estimated-cost .col-right .btn-group{
    display: flex;
    align-items: center;
}
.failures-estimated-cost .col-right .btn-group .master{
    margin-right: 5px;
}
.failures-estimated-cost .col-right .phone{
    font-family: 'NeffSansBold', Arial;
    font-size: 21px;
    color: #B10035;
    line-height: 1.3;
    display: inline-block;
    margin: 0 20px 0 0;
}
/*----/failures_table----*/

/*----failures-sale----*/
.failures-sale{
    width: 100%;
    height: 305px;
    display: flex;
    align-items: center;
    background: url(/assets/ui/img/prices/sale/bg.jpg) no-repeat top left -5px;
    padding: 0 95px 0 130px;
    position: relative;
    box-shadow: 0px 5px 50px rgba(28, 36, 148, 0.15);
    position: relative;
}
.failures-sale:before{
    content: '';
    width: 11px;
    height: 42px;
    display: block;
    background: url(/assets/ui/img/prices/sale/badge.png) no-repeat;
    position: absolute;
    top: 36px;
    left: -10px;
}
.failures-sale .text{
    margin: 0 0 25px 0;
    position: relative;
}
.failures-sale .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 40px;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 10px 0;
}
.failures-sale .title span{
    color: #fff;
    display: inline-block;
    background: #323232;
    padding: 2px 8px 6px 5px;
}
.failures-sale .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    width: 390px;
}
.failures-sale form{

}
.failures-sale form input{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #363636;
    width: 200px;
    height: 45px;
    border: none;
    padding: 0 0 1px 20px;
    margin: 0 1px 0 0;
    vertical-align: bottom;
}
.failures-sale form .submit{
    background-image: url(/assets/ui/img/prices/sale/ico-percent.png);
    background-position: left 20px center;
    color: #fff;
    background-repeat: no-repeat;
    padding-left: 55px;
}

.failures-sale .bt{
    position: absolute;
    right: 120px;
    bottom: 0;
}
.failures-sale .bt.extractor-fan{
    top: 0;
    bottom: auto;
}
.failures-sale .bt.air-conditioner{
    bottom: auto;
    top: 45px;
}
.failures-sale .master{
    position: absolute;
    right: 150px;
    bottom: 0;
}
/*----/failures-sale----*/

/*--certificates--*/
.certificates{
    background: #F9F5EF;
    height: 405px;
    /* padding-bottom: 20px; */
}
.certificates .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.certificates .col-left{
    width: 450px;
}

.certificates .col-left h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.1;
    margin-bottom: 35px;
}

.certificates .col-left .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.6;
}
.certificates .col-right{
    width: 570px;
    display: flex;
    justify-content: space-between;
}
/*--/certificates--*/

/*--scheme-of-work--*/
.scheme-of-work{
    padding: 90px 0 90px 0;
    border-bottom: 1px solid #F0F0F0;
}
.scheme-of-work h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
}
.scheme-of-work .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.6;
    text-align: center;
    margin: auto auto 40px auto;
}
.scheme-of-work .steps{
    display: flex;
    justify-content: space-between;
}
.scheme-of-work .steps .col{
    display: flex;
    padding: 0 15px 0 0;
}
.scheme-of-work .steps .col:nth-child(1){
    width: 260px;
}
.scheme-of-work .steps .col:nth-child(2){
    width: 300px;
}
.scheme-of-work .steps .col:nth-child(3){
    width: 260px;
}
.scheme-of-work .steps .col:nth-child(4){
    width: 260px;
    padding: 0;
}
.scheme-of-work .steps .col .img-box{
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 100%;
    background: #B10035;
    border-radius: 100%;
    margin: 0 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scheme-of-work .steps .col .img-box .number{
    font-family: 'NeffSansBold', Arial;
    font-size: 13px;
    color: #fff;
}
.scheme-of-work .steps .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.4;
    margin-bottom: 10px;
}
.scheme-of-work .steps .col .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1.6;
}
/*--/scheme-of-work--*/

/*----section.about-page----*/
section.about-page .head-banner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 240px;
}
section.about-page .head-banner h1{
    width: 64%;
    font-family: 'NEFFHandRegular', Arial;
    font-size: 55px;
    color: #323232;
    line-height: 1.04;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
section.about-page .head-banner .btn-call-back{
    margin-right: 2px;
}
section.about-page .about-line-main{
    height: 400px;
    background: url(/assets/ui/img/about/bg-main.jpg) no-repeat;
    background-size: cover;
    padding-top: 240px;
}

section.about-page .about-line-main h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 26px;
    color: #323232;
    line-height: 1.3;
    width: 65%;
}


.about-layer-over .col-left{
    display: flex;
    align-items: center;
    width: 730px;
    float: left;
    margin-top: -50px;
    padding: 50px 180px 50px 60px;
    font-family: 'NeffSansRegular', Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.9;
    background: url(/assets/ui/img/about/logo-in-window.png) no-repeat bottom right #B10035;
    background-size: cover;
    height: 260px;
}
.about-layer-over .col-right{
    width: 380px;
    float: left;
    padding: 40px 0 0 50px;
}
.about-layer-over .col-right h3{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 22px;
    color: #323232;
    margin-bottom: 12px;
}

.about-layer-over .col-right p{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #323232;
    line-height: 1.6;
}
.about-any-technique{
    padding: 90px 0 0 0;
}
.about-any-technique h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    margin-bottom: 45px;
}
.about-any-technique .columns{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px 0 -45px 0;
}
.about-any-technique .col{
    display: block;
    text-decoration: none;
    width: 350px;
    float: left;
    margin: 0 30px 45px 0;
}
.about-any-technique .col:nth-child(3n){
    margin: 0;
}
.about-any-technique .col img{
    display: block;
    margin-bottom: 25px;
}
.about-any-technique .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 26px;
    color: #323232;
    margin-bottom: 10px;
}
.about-any-technique .col .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1.6;
}

.about .about-advantages{
    margin-bottom: 90px;
}
.about-advantages{
    margin: 40px 0 85px 0;
}
.about-advantages .img-box img{

}
.about-advantages h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    margin-bottom: 35px;
    display: none;
}
.about .about-advantages h2{
    display: block;
}
.about-advantages .line{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.about-advantages .col{
    display: flex;
    position: relative;
}
.about-advantages .col:nth-child(1){
    width: 270px;
}
.about-advantages .col:nth-child(2){
    width: 240px;
}
.about-advantages .col:nth-child(3){
    width: 235px;
}
.about-advantages .col:nth-child(4){
    width: 240px;
}

.about-advantages .col .img-box{
    flex-shrink: 0;
    margin: 12px 20px 0 0;
}
.about-advantages .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    margin-bottom: 10px;
    line-height: 1.4;
}
.about-advantages .col .sub-text{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.4;
}
.equipment .about-advantages{

}

.about-brand{
    padding: 90px 0 100px 0;
    background: url(/assets/ui/img/about/brand-bg.jpg);
}
.about-brand .container> .row:not(.we-know){
    margin-bottom: 40px;
}
.about-brand h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.about-brand .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #ACACAC;
    display: inline-block;
    vertical-align: middle;
    margin: 9px 0 0 0;
}


.about-brand .we-know{
    display: flex;
}
.about-brand .we-know .col{
    width: 50%;
    border-left: 2px solid #B10035;;
    padding: 0 25px 0 20px;
    margin-bottom: 50px;
}
.about-brand .we-know .col .title{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.about-brand .we-know .col .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}
.slider-about-history {
    position: relative;
}
.slider-about-history li .item{
    display: flex;
    font-family: 'NeffSansRegular';
}

.slider-about-history li .item p{
    font-size: 15px;
    padding: 0 60px;
    margin: auto;
    line-height: 1.65;
    font-family: 'NeffSansRegular';
    color: #fff;
}

.slider-about-history li .item img{
    min-width: 555px;
}
.slider-about-history li .item p .title{
    display: block;
    font-family: 'NeffSansDisplayLight';
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.slider-about-history li .history-date{
    background-color: #fff;
    font-size: 22px;
    color: #B10035;
    font-family: 'NeffSansDisplayLight';
    padding: 18px 20px;
    text-align: center;
    margin-bottom: 30px;
}
.slider-about-history .slick-arrow{
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 100%;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    right: 30px;
    z-index: 2;
    font-size: 0;
    top: 30px;
}
.slider-about-history .slick-prev{
    background: url(/assets/ui/img/icons/ico-prev-small.png) no-repeat center;
    left: 0;
}
.slider-about-history .slick-next{
    background: url(/assets/ui/img/icons/ico-next-small.png) no-repeat center;
    right: 0;
}
.slider-about-history .slick-prev::before{
    content: '';
}
.slider-about-history .slick-next::before{
    content: '';
}

.news-block{

}
.news-block .img-box{
    background: url(/assets/ui/img/about/bg-news.jpg) no-repeat top left;
    width: 465px;
    height: 400px;
    float: left;
}
.news-block .news-item{
    width: 645px;
    float: left;
    padding: 0 0 0 40px;
}

.accordion-news{

}
.accordion-news .parent-li{

}
.accordion-news .parent-li a.parent{
    font-family: 'HotpointRegular', Arial;
    font-size: 18px;
    color: #222222;
    line-height: 1;
    text-transform: uppercase;
    padding: 18px 0;
    display: block;
    border-top: 1px solid #d3d3d3;
    -webkit-transition: border ease 0.2s;
    transition: border ease 0.2s;
    background: url(/assets/ui/img/icons/down-arrow.png) no-repeat right bottom 20px;
}
.accordion-news .parent-li a.parent.active{
    background: url(/assets/ui/img/icons/up-arrow.png) no-repeat right bottom 20px;
}
.accordion-news .parent-li:first-child a.parent{
    border-top: 1px solid transparent;
    padding-top: 0;
}
.accordion-news .parent-li:last-child a.parent{
    border-bottom: 1px solid #d3d3d3;
}
.accordion-news .parent-li:last-child a.parent.active{
    border-bottom: 1px solid transparent;
}
.accordion-news .ul-level-1 .text{
    font-family: 'HotpointRegular', Arial;
    font-size: 13px;
    color: #222222;
    line-height: 1.5;
    padding: 0 0 20px 0;
}

.differences-from-others{
    padding: 90px 0 90px 0;
    border-bottom: 1px solid #F0F0F0;
}
.differences-from-others .col-left{
    width: 50%;
    float: left;
    padding-right: 30px;
}
.differences-from-others .col-right{
    width: 50%;
    float: left;
    text-align: right;
}

.differences-from-others h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    margin-bottom: 40px;
    line-height: 1.2;
    width: 49%;;
}
.differences-from-others .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
    margin: -5px 0 35px 0;
}
.differences-from-others .items .col{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.differences-from-others .items .col img{
    margin-right: 20px;
}


.differences-from-others .items .col .title{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 15px;
    color: #323232;
    margin-bottom: 12px;
}
.differences-from-others .items .col .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1.6;
}

.differences-from-others .numbers .colums{
    display: flex;
    justify-content: space-between;
    margin: 80px 0 0 0;
}
.differences-from-others .numbers .col{
    width: 18%;
}
.differences-from-others .numbers .col:nth-child(3){
    width: 25%;
}
.differences-from-others .numbers .col .number{
    font-family: 'NeffSansBold', Arial;
    font-size: 75px;
    color: #B10035;
    margin-bottom: 5px;
}
.differences-from-others .numbers .col .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
}
/*----/section.about-page----*/

/*----repair-central-service----*/
.repair-central-service{
    background: linear-gradient(180deg, #F9F4EE 0%, rgba(243, 236, 226, 0) 100%);
}


.repair-central-service .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 10px 0;
}
.repair-central-service .col-left{
    width: 40%;
}
.repair-central-service .col-center{
    width: 30%;
}
.repair-central-service .col-right{
    width: 15%;
}

.repair-central-service .col-left h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    margin-bottom: 35px;
}
.repair-central-service .col-left p{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.6;
}
.repair-central-service .items{

}
.repair-central-service .items .col{
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.repair-central-service .items .col:last-child{
    margin-bottom: 0;
}
.repair-central-service .items .col .img{
    position: relative;
    border-radius: 100%;
    width: 84px;
    min-width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EBE1D4;
    margin: 0 30px 0 0;
}
.repair-central-service .items .col .count{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: -2px;
    font-family: "NeffSansBold";
    color: #fff;
    background: #B10035;
    border-radius: 50%;
    font-size: 13px;
    width: 40px;
    height: 40px;
}
.repair-central-service .items .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.2;
    margin: 0 0 10px 0;
}
.repair-central-service .items .col .sub-text{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.4;
}

.repair-central-service .bottom-line{
    height: 80px;
    background: url(/assets/ui/img/index/bottom-line.jpg) no-repeat;
}

.repair-central-service .items-small{
    background: #FFFFFF;
    text-align: center;
    padding: 50px 17px;
}
.repair-central-service .items-small .col{

}
.repair-central-service .items-small .col .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.2;
    margin: 0 0 22px 0;
}
.repair-central-service .items-small .col .subtext{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 13px;
    color: #595959;
    line-height: 1.5;
    margin: 25px 0 0 0;
    padding: 0 0 20px 0;
    position: relative;
}
.repair-central-service .items-small .col:last-child .subtext{
    padding-bottom: 0;
}
.repair-central-service .items-small .col .subtext:after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 45px;
    background: #B10035;
    display: block;
    bottom: -4px;
    left: 50%;
    margin: 0 0 0 -22px;
}
.repair-central-service .items-small .col:last-child .subtext:after{
    display: none;
}
/*----/repair-central-service----*/

/*----services-list----*/
.services-list{
    height: auto;
    display: flex;
    padding: 50px 0;
    align-items: center;
}
/*.services-list > .container{
    width: 1165px;
}*/

.services-list .wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.services-list .wrap .item {
    display: flex;
    flex-direction: column;
    width: calc(100%/4 - 15px);
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e3e3;
    padding: 15px;
    font-family: 'NeffSansRegular', Arial;
}

.services-list .wrap .item img {
    max-height: 180px;
    width: max-content;
    margin: 0 auto;
    max-width: 100%;
}

.services-list .wrap .item .name {font-size: 18px;font-weight: 400;transition: all 0.3s;}

.services-list .wrap .item .price {
    font-size: 16px;
    font-weight: 600;
    color: #b10035;
}

.services-list .wrap .item:hover .name {
    color: #b10035;
}


.slider-services-index{

}
.slider-services-index .slick-prev {
    width: 12px;
    height: 44px;
    display: block;
    border-radius: 100%;
    background: url(/assets/ui/img/icons/ico-prev.png) no-repeat center;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    left: -50px;
    z-index: 2;
    font-size: 0;
    top: 45%;
}
.slider-services-index .slick-prev:hover{
    background: url(/assets/ui/img/icons/ico-prev-hover.png) no-repeat center;
}
.slider-services-index .slick-next {
    width: 12px;
    height: 44px;
    display: block;
    border-radius: 100%;
    background: url(/assets/ui/img/icons/ico-next.png) no-repeat center;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    right: -20px;
    z-index: 2;
    font-size: 0;
    top: 45%;
}
.slider-services-index .slick-next:hover{
    background: url(/assets/ui/img/icons/ico-next-hover.png) no-repeat center;
}
.slider-services-index .slick-prev:before,
.slider-services-index .slick-next:before{
    display: none;
}

.services-list-title{
    font-family: 'HotpointRegular', Arial;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    text-align: center;
    margin: 0 0 40px 0;
}
.services-list .columns{
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
}
.services-list .col{
    display: block;
    width: 255px;
    text-align: center;
    background-color: #fff;
    color: #0b1d39;
    padding: 30px 0px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    height: 290px;
}

.services-list .col:hover .name{
    color: #97002D;
}
.services-list .col .img-box{
    height: 165px;
    margin: 0 0 25px 0
}
.services-list .col .img-box img{
    display: block;
    margin: 0 auto 12px auto;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;

}
.services-list .col .name{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.6;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.services-list .pagingInfo{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #ACACAC;
    line-height: 1.6;
    text-align: center;
}

/*----/services-list----*/

/*----slider-index---*/
.slider-index{
    position: relative;
    min-width: 1110px;
    max-width: 1920px;
    margin: auto;
}

.Rectangle_30 {
  background-color: rgb( 255, 255, 255 );
  opacity: 0.902;
  position: absolute;
  left: 14.288cm;
  top: 10.513cm;
  width: 19.05cm;
  height: 13.617cm;
  z-index: 6;
}

.window-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.slider-index li.slick-slide{
    position: relative;
}
.slider-index li.slick-slide >.container{
    height: 650px;
}
.slider-index .window{
    background: rgba(255, 255, 255,0.9);
    padding: 50px 60px 60px 60px;
    z-index: 1;
    position: absolute;
    width: 505px;
}

.slider-index .window h1{
    font-family: 'NEFFHandRegular', Arial;
    font-size: 55px;
    color: #323232;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1.04;
}

.slider-index .window .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    line-height: 1.6;
    color: #323232;
    margin-bottom: 25px;
}

.slider-services .img-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.slider-index .window .bottom-line{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.slider-index .window .bottom-line .btn-call-back{
    white-space: nowrap;
}
.slider-index .window .bottom-line .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1.5;
    display: inline-block;
    margin-left: 20px;
    white-space: nowrap;
}



.slider-container{
    overflow: hidden;
    height: 650px;
}
.slider-services li{
    outline: none;
}
.slider-services .slick-dots{
    bottom: 30px;
}
.slider-services .slick-dots li{
    margin: 0 10px;
    width: auto;
    height: auto;
}
.slider-services .slick-dots li button{
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 100%;
    border: 1px solid #fff;
    background: transparent;
    transition: all ease 0.2s;
}
.slider-services .slick-dots li button:hover{
    background: #fff;
}
.slick-dots li button:before{
    display: none;
}
.slider-services .slick-dots li.slick-active button{
    background: #fff;
}


.slider-services .slick-prev:before,
.slider-services .slick-next:before{
    display: none;
}
.slider-services .slick-prev{
    width: 18px;
    height: 44px;
    display: block;
    border-radius: 100%;
    background: url(/assets/ui/img/icons/ico-prev-light.png) no-repeat center;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    left: 30px;
    z-index: 2;
    font-size: 0;
    top: 50%;
}
.slider-services .slick-prev:focus,
.slider-services .slick-prev:hover{
    background: url(/assets/ui/img/icons/ico-prev-hover.png) no-repeat center;
}
.slider-services .slick-next{
    width: 18px;
    height: 44px;
    display: block;
    border-radius: 100%;
    background: url(/assets/ui/img/icons/ico-next-light.png) no-repeat  center;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    right: 30px;
    z-index: 2;
    font-size: 0;
    top: 50%;
}
.slider-services .slick-next:focus,
.slider-services .slick-next:hover{
    background: url(/assets/ui/img/icons/ico-next-hover.png) no-repeat  center;
}

/*----/slider-index---*/


/*----slider-repair-any---*/
.slider-repair-any-block .bx-wrapper{
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    background: none;
}
.slider-repair-any-block .description{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 14px;
    color: #323232;
    margin-bottom: 20px;
    line-height: 24px;
}
.slider-repair-any-block h4{
    font-family: 'Raleway-Bold', Arial, sans-serif;
    font-size: 12px;
    color: #a50034;
    text-transform: uppercase;
    float: left;
}
.slider-repair-any-block .controls-line{
    margin-bottom: 15px;
    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;
}
.slider-repair-any-block .controls-line .btn-group{
    float: right;
}
.slider-repair-any-block .controls-line .btn-prev{
    width: 16px;
    height: 20px;
    display: inline-block;
    background: url(/assets/ui/img/icons/slider-prev.png) no-repeat left center;
    cursor: pointer;
}
.slider-repair-any-block .controls-line .btn-prev:hover{
    background: url(/assets/ui/img/icons/slider-prev-hover.png) no-repeat left center;
}
.slider-repair-any-block .controls-line .btn-prev a{
    display: block;
    height: 100%;
}
.slider-repair-any-block .controls-line .btn-next{
    width: 16px;
    height: 20px;
    background: url(/assets/ui/img/icons/slider-next.png) no-repeat right center;
    cursor: pointer;
    display: inline-block;
}
.slider-repair-any-block .controls-line .btn-next:hover{
    background: url(/assets/ui/img/icons/slider-next-hover.png) no-repeat right center;
}
.slider-repair-any-block .controls-line .btn-next a{
    display: block;
    height: 100%;
}
.slider-repair-any-block .slide{
    display: block;
    text-align: center;
    height: 160px;
    overflow: hidden;
    position: relative;
    border: 1px solid #dcdcdc;
    padding: 15px 5px 0 5px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    cursor: default;
}
/*
.slider-repair-any-block .slide:hover{
    border: 1px solid #f2d2d3;
}
.slider-repair-any-block .slide:hover .title{
    color: #d80546;
}
*/
.slider-repair-any-block .slide .title{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 14px;
    color: #323232;
    margin-bottom: 5px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.slider-repair-any-block .slide .sum{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 12px;
    color: #9f9f9f;
}
.slider-repair-any-block .slide .img-box{
    position: absolute;
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    width: 100%;
}
.slider-repair-any-block .slide .img-box img{
    max-width: none;
    display: block;
    margin: 0 auto;
}
.slider-repair-any-block .bx-wrapper .bx-pager{
    bottom: auto;
    top: -30px;
    padding-top: 0;
    width: 200px;
    left: 50%;
    margin-left: -100px;
}
.slider-repair-any-block .bx-wrapper .bx-pager.bx-default-pager a{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: 1px solid #dcdbdc;
    background: #fff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.slider-repair-any-block .bx-wrapper .bx-pager.bx-default-pager a.active{
    background: #a50034;
    border: 1px solid #a50034;
}
.slider-repair-any-block .bx-pager.bx-default-pager a:hover{
    background: #555;
    border: 1px solid #555;
}
/*----/slider-repair-any---*/

/*----contacts-page----*/
.contacts-phone-line{
    background: url(/assets/ui/img/contacts/bg-phone-line.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.contacts-phone-line > .container{
    display: flex;
    align-items: center;
    height: 180px;
}
.contacts-phone-line .col-left{
    width: 48%;
}
.contacts-phone-line .col-right{
    width: 52%;
}
.contacts-phone-line a.phone{
    font-family: 'NeffSansBold', Arial;
    font-size: 50px;
    color: #fff;
    display: block;
}
.contacts-phone-line a.email{
    font-family: 'HotpointRegular', Arial;
    font-size: 20px;
    color: #fff;
}

.contacts-phone-line .col-right .text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #fff;
    line-height: 1.65;
    position: relative;
    padding-top: 15px;
}
.contacts-phone-line .col-right .text:before{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 50px;
    height: 2px;
    background-color: #B10035;
}

.call-question{
    height: 450px;
    background: #F9F5EF;
}
.call-question > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 265px;
    height: 100%;
    position: relative;
}
.call-question .img-outside{
    position: absolute;
    bottom: 0;
    left: -105px;
}
.call-question .col-left{
    width: 50%;
    height: 260px;
    position: relative;
    padding: 0 0 80px 0;
}


.call-question .col-left .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    margin: 0 0 20px 0;
    padding-right: 30px;
}
.call-question .col-left .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
}
.call-question .col-left .btn-box{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.call-question .col-left .btn-box .btn-call-back{
    flex-shrink: 0;
}
.call-question .col-left .btn-box .subtext-btn{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #B10035;
    line-height: 1.6;
    margin-left: 20px;
}
.call-question .col-left .btn-box .subtext-btn strong{
    font-family: 'ElectroluxSansSemibold', Arial;
}
.call-question .col-right{
    width: 45%;
    height: 260px;
    position: relative;
    padding-left: 50px;
}
.call-question .col-right .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.1;
    margin: 0 0 20px 0;
}
.call-question .col-right .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
}
.call-question .col-right .btn-box{
    position: absolute;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.call-question .col-right .btn-box .btn-call-back{

}

section.map{
    margin-top: 25px;
}
/*----/contacts-page----*/

/*--base-text--*/
.base-text{

}
.base-text h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    margin: 85px 0 25px 0;
}
.base-text p{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
    margin: 20px 0;
}
.base-text ul li{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 14px;
    position: relative;
}
.base-text ul li:before{
    content: '';
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: #B10035;
    border-radius: 100%;
    left: 0;
    top: 9px;
}
/*--/base-text--*/

/*--search-catalog--*/
.search-catalog{
    padding: 0 0 0 0;
}
.search-line{
    height: 87px;
    background: #1E2024;
}
.search-line .container{
    display: flex;
    align-items: center;
    height: 100%;
}
.search-line .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #fff;
    margin: 0 90px 0 0;
}
.search-line form input.search{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #ACACAC;
    padding: 0 38px;
    padding: 0 40px 0 50px;
    margin: 0 2px 0 0;
    width: 425px;
    height: 46px;
    background: url(/assets/ui/img/icons/ico-search.png) no-repeat left 16px center #fff;
}
.search-line form input.search::-webkit-input-placeholder{
    color: #ACACAC;
}
.search-line form input.search:-ms-input-placeholder{
    color: #ACACAC;
}
.search-line form input.search::placeholder{
    color: #ACACAC;
}
.search-line form button.submit{
    vertical-align: top;
    color: #fff;
    font-size: 16px;
}
.search-line .sum{
    font-family: 'NeffSansRegular', Arial;
    font-size: 13px;
    color: #ACACAC;
    margin-left: auto;
}

.search-catalog .models-grid{
    padding: 50px 0 0 0;
    display: flex;
    justify-content: center;
}
.models-grid-container{

}
.search-catalog .models-grid .item{
    width: 25%;
    text-align: center;
    display: block;
}
.search-catalog .models-grid .item:nth-child(n+10){
    display: none;
}
.search-catalog .models-grid .item:hover .title{
    color: #e65e4e
}
.search-catalog .models-grid .item .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    height: 40px;
    margin: 0 0 20px 0;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.search-catalog .models-grid .item .title span{
    padding-right: 10px;
}
.search-catalog .models-grid .item .img-box{
    height: 200px;
    margin: 0 0 25px 0;
}
.search-catalog .models-grid .item .img-box img{
    display: block;
    margin: auto;
    max-height: 200px;
}

.search-catalog .models-more-box{
    text-align: center;
    margin: 0 0 40px 0;
}
.search-catalog .models-more-box .models-more{

}
.search-catalog .models-more-box .models-more.active{

}
.search-catalog .models-list{
    padding: 10px 0 40px 0;
    padding-top: 30px;
}
.search-catalog .models-list_no_img{
    padding: 45px 0 40px 0;
    display: block;
}
.models-list_hide{
    display: none;
}
.search-catalog .models-list .model-list-item{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #323232;
    margin-bottom: 22px;
    width: 25%;
    float: left;
    padding-right: 20px;
    display: block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;

}
.models-grid-container.is-active .models-list .model-list-item.is-notfind {
    display: none !important
}
.search-catalog .models-list .model-list-item:hover{

}
.search-catalog .models-list .model-list-item span{
    background: url(/assets/ui/img/icons/ico-right-tabs.png) no-repeat top 4px right;
    display: inline-block;
    padding-right: 8px;
/*
    background: url(/assets/ui/img/icons/ico-model-list-item.png) no-repeat top 3px right;
    display: inline-block;
    padding-right: 10px;
*/
}

.search-catalog .nothing-found{
    padding: 0 0 80px 0;
    text-align: center;
}


.search-catalog .nothing-found .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 36px;
    color: #323232;
    margin-bottom: 20px;
}
.search-catalog .nothing-found .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.563;
    margin-bottom: 22px;
}
.search-catalog .nothing-found .btn-group{

}
.search-catalog .nothing-found .btn-group .master{
    margin-right: 2px;
}
/*--/search-catalog--*/

/*----tabs----*/
.ionTabs__head:before, .ionTabs__head:after{
    display: none;
}
.tabs-service{
    background: url(/assets/ui/img/tabs/tabs_bg.jpg) no-repeat top center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    background-size: cover;
}
.tabs-service .tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.tabs-service h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}
.tabs-service .tabs ul{
    margin: 0 auto 40px auto;
    display: flex;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(165, 165, 165, 0.4);
}
.tabs-service .tabs ul li{
    padding: 0 15px;
}
.tabs-service .tabs ul .ionTabs__tab_state_active{
/*    padding: 8px 20px;*/
}

.ionTabs__tab.ionTabs__tab_state_active{

}
.tabs-service .tabs .ionTabs__tab a{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    padding-bottom: 18px;
    position: relative;
    transition: color ease 0.2s;
}
.tabs-service .tabs .ionTabs__tab a:hover{
    color: #fff;
}
.tabs-service .tabs a:after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B10035;
    transition: all ease 0.2s;
}
.tabs-service .tabs .ionTabs__tab a:hover:after{
    width: 100%;
}
.tabs-service .tabs .ionTabs__tab_state_active a:after{
    width: 100%;
}
.tabs-service .tabs .ionTabs__tab_state_active a{
    font-family: 'NeffSansRegular', Arial;
    color: #fff;
}


.tabs-service .tabs div.tabs-block{
    width: 100%;
}
.tabs-service .tabs div.tabs-block:after{
    content: "";
    display: table;
    clear: both;
}
.tabs-service .tabs div.tabs-block .col-left{
    width: 580px;
    float: left;
    min-height: 1px;
}
.tabs-service .tabs div.tabs-block .col-left .img-block{
    position: relative;
}
.tabs-service .tabs div.tabs-block .col-left .img-block>img{
    vertical-align:bottom;
}
.tabs-service .tabs .fridge div.tabs-block .col-left .img-block>img{

}
.tabs-service .tabs .appliances div.tabs-block .col-left .img-block .icon{
    top: -45px;
    right: 35px;
}
.tabs-service .tabs .appliances div.tabs-block .col-left .img-block>img{
    margin: 0;
    width: 460px;
    height: 310px;
}

.tabs-service .tabs div.tabs-block .col-left .img-block .icon{
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabs-service .tabs div.tabs-block .col-left .img-block .icon img{
    display: block;
}
.tabs-service .tabs div.tabs-block .col-right{
    width: 485px;
    float: right;
}
.tabs-service .tabs div.tabs-block h3{
    font-family: 'NeffSansDisplayLight', Arial;
    font-size: 22px;
    color: #fff;
    margin: 25px 0 20px 0;
    line-height: 1.3;
    width: 95%;
}
.tabs-service .tabs div.tabs-block .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    width: 485px;
}
.tabs-service .tabs div.tabs-block .bottom-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    line-height: 1.6;
    color: #ACACAC;
    position: absolute;
    width: 400px;
    bottom: 35px;
}
.tabs-service .tabs div.tabs-block .bottom-text:before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: -28px;
    left: 4px;
    background: #B10035;
    border: 4px solid #B10035;
    border-radius: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 0px 4px rgba(177, 0, 53, 0.24);
}
/*----/tabs----*/

/*----accordion-prices----*/
.accordion-prices{
    margin: 25px 0 20px 0;
}
.accordion-prices>li{
    border-bottom: 1px solid #e3e3e3;
}
.accordion-prices>li:last-child{
    border:none;
}
.accordion-prices a.title{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 25px;
    color: #323232;
    padding: 25px 0 25px 25px;
    display: block;
    background: url(/assets/ui/img/icons/accordion-control-right.png) no-repeat left center;
}
.accordion-prices a.title.accordion__active-elem{
    background: url(/assets/ui/img/icons/accordion-control-down.png) no-repeat left center;
}

.accordion-prices .accordion__parent-li_text li{

}
.accordion-prices .info-blocks{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
}
.accordion-prices .info-blocks .col{
    width: 356px;
    height: 180px;
    padding: 30px;
}
.accordion-prices .info-blocks h3{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 25px;
    color: #fff;
    margin-bottom: 15px;
}
.accordion-prices .info-blocks .sub-text{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #dc9a9a;
}
.accordion-prices .info-blocks .col.diagnos .sub-text{
    color: #9f9f9f;
}
.accordion-prices .info-blocks .col.master{
    background: url(/assets/ui/img/prices/accordion-prices-inner-bg-master.jpg) no-repeat;
}
.accordion-prices .info-blocks .col.diagnos{
    background: url(/assets/ui/img/prices/accordion-prices-inner-bg-diagnos.jpg) no-repeat;
}

.accordion-prices .row.tr{
    padding: 20px 15px 20px 30px;
    border-top: 1px solid #e3e3e3;
    margin-top: -1px;
    display: block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.accordion-prices .rows a.row.tr:first-child{
    border-top: none;
}
.accordion-prices .rows a.row.tr:hover{
    border-top: 1px solid #f9cbdf;
}
.accordion-prices .rows a.row.tr:hover+ .row.tr{
    border-top: 1px solid #f9cbdf;
}
.accordion-prices .rows a.row.tr:hover .col-services{
    color: #d80546;
}
.accordion-prices .rows a.row.tr:first-child:hover{
    border-top: none;
}
.accordion-prices .rows a.row.tr:hover .col-services:after{
    content: '';
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 12px;
    background: url(/assets/ui/img/icons/accordion-control-right.png);
    background-size: cover;
    margin: 6px;
}
.accordion-prices .row.th{
    padding: 15px 15px 15px 30px;
    background: #f4f4f4;
}
.accordion-prices .row.th .col-services,
.accordion-prices .row.th .col-doing,
.accordion-prices .row.th .col-price{
    font-family: 'GothaProBol', Arial, sans-serif;
    font-size: 13px;
    color: #323232;
    text-transform:uppercase;
    line-height: 1;
}
.accordion-prices .col-services{
    float: left;
    width: 35%;
    padding-right: 15px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: relative;
    min-height: 1px;
}
.accordion-prices .row.tr .col-services{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 21px;
    color: #323232;
}
.accordion-prices .col-doing{
    float: left;
    width: 45%;
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 14px;
    color: #9f9f9f;
    line-height: 22px;
    padding-right: 15px;
    min-height: 1px;
}
.accordion-prices .col-price{
    float: left;
    width: 20%;
    font-family: 'GothaProBol', Arial, sans-serif;
    font-size: 14px;
    color: #a50034;
    line-height: 22px;
    text-align: center;
    min-height: 1px;
}
/*----/accordion-prices----*/

/*----place-an-order-form----*/
.place-an-order-form{
    padding: 75px 0;
    text-align: center;
}
.place-an-order-form h2{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 42px;
    color: #323232;
    margin-bottom: 15px;
}
.place-an-order-form .sub-text{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 16px;
    color: #323232;
    margin-bottom: 55px;
}
.place-an-order-form form label{
    display: inline-block;
    width: 270px;
    margin-right:25px;
}
.place-an-order-form form label span{
    display: block;
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 13px;
    color: #323232;
    margin-bottom: 5px;
    text-align: left;
}
.place-an-order-form form label input{
    width: 100%;
    height: 40px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 15px;
    color: #323232;
    padding-left: 20px;
    vertical-align: middle;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.place-an-order-form form .submit{
    height: 40px;
}
/*----/place-an-order-form----*/

/*--slider-catalog-tabs--*/
.slider-catalog-tabs{
    padding: 75px 0 0px 0;
}
.ionTabs__body{
    width: 1110px;
    margin: 0 auto;
}

.contacts .slider-catalog-tabs{
    border-top: none;
}
.slider-catalog-tabs h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    text-align: center;
    line-height: 1;
    margin-bottom: 25px;
    color: #323232;
    margin-top: 20px;
}
.slider-catalog-tabs .ionTabs__head{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(183, 184, 185, 0.4);
}
.slider-catalog-tabs .ionTabs__head li{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    line-height: 1;
    color: #ACACAC;
    padding: 15px 0px 18px 0px;
    margin: 0 17px;
    transition: all ease 0.2s;
    position: relative;
}
.slider-catalog-tabs .ionTabs__head li::after{
    content: "";
    opacity: 1;
    position: absolute;
    bottom: 0;
    background-color: #B10035;
    height: 2px;
    width: 0;
    -webkit-transition: width 400ms cubic-bezier(0.38, 0.04, 0.35, 0.96);
    transition: width 400ms cubic-bezier(0.38, 0.04, 0.35, 0.96);
    left: 0;
    margin-left: 0;
}
.slider-catalog-tabs .ionTabs__head li:hover::after{
    width: 100%;
}

.slider-catalog-tabs .ionTabs__head li:hover{
    color: #B10035;;
}
.slider-catalog-tabs .ionTabs__head li:hover span{
    border-bottom-color: #B10035;
}
.slider-catalog-tabs .ionTabs__head li.ionTabs__tab_state_active:after{
    width: 100%;
}

.slider-catalog-tabs .ionTabs__head li.ionTabs__tab_state_active span{
    color: #B10035;
}
.slider-catalog-tabs .ionTabs__head li span{

}
.slider-catalog-tabs .ionTabs__body li{
    text-align: center;
    outline: none;
}
.slider-catalog-tabs .ionTabs__body .columns{
    display: flex;
    justify-content: center;
    margin: 0 0 60px 0;
}
.slider-catalog-tabs .ionTabs__body .columns.fridge,
.slider-catalog-tabs .ionTabs__body .columns.oven{
    justify-content: space-between;
}
.slider-catalog-tabs .ionTabs__body .col{
    display: block;
    width: 265px;
    text-align: center;
    padding: 45px 0 30px 0;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.slider-catalog-tabs .ionTabs__body .col:hover{
    /* border: 1px solid #c6c6c6; */
}
.slider-catalog-tabs .ionTabs__body .col:hover .title{
    color: #B10035;
}


.slider-catalog-tabs .ionTabs__body .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #323232;
    line-height: 1.5;
    display: block;
    height: 65px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    padding: 0 25px;
}
.slider-catalog-tabs .ionTabs__body .columns.fridge .title{
    padding: 0;
}

.slider-catalog-tabs .ionTabs__body .img-box{
    height: 200px;
    margin: 0 0 18px 0;
}
.slider-catalog-tabs .ionTabs__body .img-box img{
    margin: auto;
    max-height: 100%;
}


.slider-catalog-tabs .ionTabs__body .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1.5;
    padding: 0 30px 0 30px;
}

.slider-catalog .slick-list{
    width: 1110px;
    min-height: 1px;
}

/*--/slider-catalog-tabs*/



/*--form-expert--*/
.form-expert{
    height: 200px;
    border: 4px solid #B10035;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 100px 0;
}
.form-expert .col-left{
    width: 31%;
}

.form-expert .col-left .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 26px;
    color: #323232;
    margin: 0 0 20px 0;
}

.form-expert .col-left .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #323232;
    line-height: 1.615;
}
.form-expert .col-center{
    width: 33%;
    position: relative;
}

.form-expert .col-center .over-text{
    font-family: 'BoschLoght', Arial;
    font-size: 14px;
    color: #323232;
    margin: 0 0 6px 0;
    line-height: 1;
}


.form-expert .col-center .input{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    width: 180px;
    height: 45px;
    border: 1px solid #F0F0F0;
    padding: 0 0 0 20px;
    margin: 0 1px 0 0;
    vertical-align: bottom;
}
.form-expert .col-center .input::-webkit-input-placeholder{
    color: #ACACAC;
}
.form-expert .col-center .input:-ms-input-placeholder{
    color: #ACACAC;
}
.form-expert .col-center .input::placeholder{
    color: #ACACAC;
}
.form-expert .col-center .submit{

}


.form-expert .col-center .politic{
    font-family: 'NeffSansRegular', Arial;
    font-size: 11px;
    color: #ACACAC;
    line-height: 1.455;
    margin: 12px 0 0 0;
}
.form-expert .col-center .politic a{
    color: #B10035;
    border-bottom: 1px solid transparent;
    line-height: 1;
    display: inline-block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.form-expert .col-center .politic a:hover{
    color: #97002D;
}
.form-expert .col-right{
    width: 30%;
    text-align: right;
    padding: 0 0 0 15px;
}
.form-expert .col-right .phone-callback{
    margin: 0 0 20px 0;
}
.form-expert .col-right .phone-callback .small{
    font-family: 'NeffSansRegular', Arial;
    font-size: 18px;
    color: #ACACAC;
    display: inline-block;
    position: relative;
    bottom: 2px;
    transition: all ease 0.2s;
}
.form-expert .col-right .phone-callback .big{
    font-family: 'NeffSansBold', Arial;
    font-size: 35px;
    color: #323232;
    transition: all ease 0.2s;
}
.form-expert .col-right .phone-callback:hover .small,
.form-expert .col-right .phone-callback:hover .big{
    color: #97002D;
}


.form-expert .col-right .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.5;
}
/*--/form-expert--*/

/*--pages-link--*/
.pages-link{
    display: flex;
    justify-content: space-between;
    margin: 0 0 100px 0;
}
.pages-link .col{
    width: 350px;
    padding: 0 40px 75px 40px;
    position: relative;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0px 5px 6px rgba(81, 62, 45, 0.12);
}
.pages-link .col .img-box{
    margin: 0 -40px 30px -40px;
}
.pages-link .col .img-box img{
    display: block;
}
.pages-link .col .title{
    font-family: 'NEFFHandRegular', Arial;
    font-size: 40px;
    color: #323232;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
.pages-link .col .description{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.5;
}
.pages-link .col .btn-wrap{
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
}
.pages-link .col .btn-wrap .btn{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #B10035;
    display: block;
    transition: all ease 0.2s;
}
.pages-link .col .btn-wrap .btn:hover{
    color: #97002D;
}
/*--/pages-link--*/

/* --BLOCKS -- */
.blocks{
    background-color: #f6f5f5;
    margin-top: 80px;
    padding: 40px 0;
}
.blocks .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.blocks .blocks-item{
    padding: 50px 0 50px 30px;
    width: 540px;
}
.blocks .blocks-item:nth-child(2) h3{
    font-size: 28px;
}
.blocks .blocks-item ul li{
    font-size: 18px;
    background: url(/assets/ui/img/icons/check.png) no-repeat 0 4px;
    margin-top: 20px;
    padding-left: 20px;
}
.blocks .semibold{

}
.blocks .blocks-item h3{
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2em;
}
.blocks .blocks-item p{
    line-height: 1.5em;
    color: #0b1d39;
}
.blocks .blocks-item:nth-child(1){
    background-color: #46cbd2;
    color: #fff;
}
.blocks .blocks-item:nth-child(2){
    background-color: #e7ecf0;
    color: #0b1d39;
    position: relative;
}
.blocks-background{
    background: url(/assets/ui/img/index/blocks-background.jpg) no-repeat;
    background-size:cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 190px;
}
/*----feedback----*/
.reviews__item{
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.reviews__item-name{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 18px;
    color: #a50034;
    margin-bottom: 10px;
    position: relative;
}
.reviews__item-name span{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 13px;
    color: #9f9f9f;
    line-height: 18px;
    display: inline-block;
    margin-left: 10px;
}
.reviews__item-name div.mark{
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #6a707b;
    border-radius: 100%;
    display: block;
    font-family: 'GothaProBol', Arial, sans-serif;
    font-size: 14px;
    color: #fff;
}
.reviews__item-message{
    font-family: 'GothaProReg', Arial, sans-serif;
    font-size: 14px;
    color: #323232;
    line-height: 24px;
}
/*----/feedback----*/

/*----politic----*/

.politic h1{
    font-family: 'NEFFHandRegular', Arial;
    font-size: 55px;
    color: #323232;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1.04;
    margin: 85px 0 85px 0;
}
.politic-content{
    padding: 0 0 40px 0;
}

.politic-content p{

}
.politic-content p .link{
    white-space: nowrap;
}
.politic-content h2{
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    color: #323232;
    line-height: 1.2;
    margin: 40px 0 30px 0;
}
.politic-content ul{
    margin: 18px 0 18px 0;
}
.politic-content ul li{

}
/*----/politic----*/

/*----error page----*/
.error-message{
    text-align: center;
    padding: 116px 0;
}

.error-message h1{
    font-family: 'NEFFHandRegular', Arial;
    font-size: 55px;
    color: #323232;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1.04;
    margin: 0 0 35px 0;
}
.error-message .subtext{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
    margin: 0 0 45px 0;
}
.error-message .subtext .link-main{

}
.error-message .btn-group .master{
    margin-right: 2px;
}
/*----/error page----*/

/*----footer-----*/
footer{
    background: url(/assets/ui/img/footer/line-links-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
footer .line-color .col{
    height: 15px;
}
footer .line-title{
    /* background: #0b428e; */
}
footer .line-title .container{
    display: flex;
    align-items: center;
    height: 94px;
    border-bottom: 1px solid rgba(165, 165, 165, 0.5);
}
footer .line-title img:not(.btn-to-top){
    margin-right: 30px;
}
footer .line-title h3{
    font-family: 'NeffSansRegular', Arial;
    font-size: 16px;
    color: #fff;
    margin-right: 30px;
}
footer .btn-to-top{
    margin-left: auto;
    cursor: pointer;
    width: 34px;
    height: 34px;
    background: url(/assets/ui/img/icons/up-arrow-footer.png) no-repeat center center;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    border: 1px solid #ACACAC;
}
footer .btn-to-top:hover{
    background: url(/assets/ui/img/icons/up-arrow-footer-hover.png) no-repeat center center #fff;
}
footer .line-links{
    /* background: url(/assets/ui/img/footer/line-links-bg.jpg) #0b428e;
    background-size: cover;
    background-position: center top -40px; */
}
footer .bottom-menu.row{
    padding: 40px 0 35px 0;
}
footer .bottom-menu .col-left{
    width: 68%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
/* footer .bottom-menu .col-left .col{
    width: 44%;
}
footer .bottom-menu .col-left .col:nth-child(2){
    width: 32%;
}
footer .bottom-menu .col-left .col:nth-child(3){
    width: 24%;
} */
footer .bottom-menu .col-left .col .title{
    font-family: 'NeffSansBold', Arial;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    margin-bottom: 26px;
}
footer .bottom-menu .col-left .col ul.menu{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 330px;
}
footer .bottom-menu .col-left .col ul.menu li{
    width: 50%;
}
footer .bottom-menu .col-left .col ul.menu li:nth-child(2n){
    width: 40%;
}
footer .bottom-menu .col-left .col ul li a{
    font-family: 'NeffSansRegular', Arial;
    font-size: 13px;
    color: #ACACAC;
    margin-bottom: 15px;
    display: block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
footer .bottom-menu .col-left .col ul li a:hover{
    color: #fff;
}
footer .bottom-menu .col-left .col ul li span{
    font-family: 'NeffSansRegular', Arial;
    font-size: 13px;
    color: #ACACAC;
    margin-bottom: 15px;
    display: block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
footer .bottom-menu .col-right{
    width: 32%;
    float: left;
    text-align: right;
}
footer .phone-callback{
    font-family: 'GothaProBol', Arial, sans-serif;
    font-size: 35px;
    color: #323232;
}
footer .phone-callback{
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

footer .bottom-menu .col-right .phone .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    margin: 0 0 6px 0;
}
footer .bottom-menu .col-right .phone .small{
    font-family: 'NeffSansRegular', Arial;
    font-size: 18px;
    color: #ACACAC;
    display: inline-block;
    position: relative;
    bottom: 2px;
}
footer .bottom-menu .col-right .phone .big{
    font-family: 'NeffSansBold', Arial;
    font-size: 35px;
    color: #fff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    margin-left: -4px;
}
footer .bottom-menu .col-right .phone:hover .small,
footer .bottom-menu .col-right .phone:hover .big{
    color: #ACACAC;
}
footer .bottom-menu .col-right .sub-text{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    margin: 20px 0 25px 0;
}


footer .line-politic{

}
footer .line-politic > .container{
    display: flex;
    align-items: center;
    height: 71px;
}
footer .line-politic .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #fff;
    line-height: 1;
    margin-right: 30px;
}
footer .line-politic .politic{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #ACACAC;
    line-height: 1;
    display: block;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
footer .line-politic .politic:hover{
    color: #fff;
}

.socials{
    display:flex;
    margin-left: auto;
}
.socials a{
    display: block;
    margin: 0 0 0 15px;
}
.socials a svg{
    fill: #fff;
    transition: all ease 0.2s;
}
.socials a:hover svg{
    fill: #ACACAC;
}
/*----/footer-----*/
.politic-bottom-info.center{
    font-family: 'Raleway-Regular', Arial, sans-serif;
    font-size: 11px;
    color: #9e9e9e;
    line-height: 16px;
    margin-top: 15px;
    text-align: center;
}
.politic-bottom-info.center a{
    text-decoration: underline;
}

/*--modal--*/
div.blocker{
    z-index: 20;
    background: rgba(50, 50, 50, 0.6);
}

div.modal{
    z-index: 30;
    padding: 0;
    max-width: 406px;
    box-shadow: none;
    border-radius: 0;
}
div.modal a.close-modal{
    background: url(/assets/ui/img/icons/ico-modal-close.png) no-repeat center;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    top: 5px;
    right: 5px;
}
.modal a.close-modal:hover{
    background: url(/assets/ui/img/icons/ico-modal-close-hover.png) no-repeat center;
}

.modal .content{
    padding: 45px 50px;
}
.modal .content .title{
    font-family: 'NeffSansRegular', Arial;
    font-size: 26px;
    color: #323232;
    line-height: 1;
    margin: 0 0 15px 0;
}
.modal .content p{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    line-height: 1.65;
    margin: 0 0 20px 0;
}
.modal .content form label{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #323232;
    line-height: 1;
    margin: 0 0 8px 0;
    display: block;
}
.modal .content form input{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    width: 100%;
    height: 46px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    margin: 0 0 5px 0;
    padding: 0 20px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.modal .content form input::-webkit-input-placeholder,
.modal .content form textarea::-webkit-input-placeholder,{
    color: #ACACAC;
}
.modal .content form input:-ms-input-placeholder,
.modal .content form textarea:-ms-input-placeholder{
    color: #ACACAC;
}
.modal .content form input::placeholder,
.modal .content form textarea::placeholder{
    color: #ACACAC;
}
.modal .content form textarea{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    color: #323232;
    width: 100%;
    height: 140px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #F0F0F0;
    margin: 0 0 2px 0;
    padding: 12px 20px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    resize: none;
}
.modal .content .close{
    font-size: 16px;
}
.modal .content form .btn-line{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 15px 0;
}
.modal .content form .btn-line .submit{

}
.modal .content form .btn-line .sub-btn{
    font-family: 'NeffSansRegular', Arial;
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.3;
    margin: 0 0 0 20px;
}

/*--/modal--*/

/*--personal-data--*/


.personal-data{
    font-size: 12px;
    font-family: 'NeffSansRegular', Arial;
    color: #ACACAC;
    line-height: 1.5;
    margin: 15px 0 0 0;
}
.personal-data a{
    color: #B10035;
    display: inline-block;
    line-height: 1;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.personal-data a:hover{
    color: #97002D;
}
/*--/personal-data--*/


/*--/Инфо по коронавирусу--*/
.covid-header {
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 0;
    font-family: 'NeffSansRegular',Arial;  
}
.covid-header img {
    height: 48px;
    margin-left: 10px;        
}
/*--/Инфо по коронавирусу--*/


@media screen and (max-width:1680px){
    /* .line-top{
        padding: 0 40px;
    } */
}

.text-geo
{
    font-family: 'NeffSansRegular', Arial;
    font-size: 15px;
    line-height: 1.6;
    color: #323232;
    margin-bottom: 25px;
}

.geo-block2 {
    font-family: 'NeffSansRegular', Arial;
    font-size: 18px;
    line-height: 1.6;
    color: #323232;
    margin-bottom: 25px;
    padding: 75px 0 0px 0;
}
.geo-block2 h2 {
    font-family: 'NeffSansRegular', Arial;
    font-size: 35px;
    text-align: center;
    line-height: 1;
    margin-bottom: 60px;
    color: #323232;
    margin-top: 20px;
}

ul.geo-block__stan_list {display: flex;margin: 0 -12px;flex-wrap:wrap;}

ul.geo-block__stan_list li a {
    border: 1px solid #B00037;
    padding: 15px 25px;
    display: inline-block;
}

ul.geo-block__stan_list li {
    margin: 0 12px 24px 12px;
}

ul.geo-block__stan_list li a:hover {opacity:.8;}

.text_bottom {
    font-family: 'Bosch', Arial;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}
.text_bottom ol {
    list-style: auto;
    margin-left:30px;
}
.text_bottom ol li::marker {
    color: #B00037;
}

.text_bottom ul li::marker {
    color: #B00037;
}

.text_bottom ol li,
.text_bottom p, .text_bottom ul li {margin-bottom:20px;}
.text_bottom ul {
    list-style: disc;
    margin-left:30px;
}

.text_bottom h2 {
	font-size: 35px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text_bottom table {
    margin: 20px 0;
    width: 100%;
}

.text_bottom table td {
    padding: 5px 10px;
    border: 1px solid #B00037;
}

.quote {
    background: #ffeef3;
    padding: 40px;
}

.geo-block {
    margin: 35px 0;
    font-family: 'Bosch', Arial;
    margin-bottom: 70px;
}

.geo-block h2 {
    font-size: 35px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.geo-block__box {
    background: #F8F7F7;
    padding: 55px;
}

.geo-block__search {

}

.geo-block__search input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 54px;
    padding: 17px 43px;
    padding-bottom: 18px;
    color: #6D6C6C;
    font-family: 'NeffSansDisplayLight', Arial;
    border: 1px solid #fff;
}
.geo-block__search input:focus {
    border: 1px solid #FFC9C9;
}

.geo-block__list {
    display: grid;
    grid-template-rows: repeat(1,1fr);
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 27px;
}

.geo-block__el {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #F6EDED;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
    text-align: center;
    padding: 17px;
    padding-bottom: 18px;
    color: #292929;
    font-size: 14px;
}
.geo-block__el:hover {
    background: #B10035;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
    color: #fff;
    text-decoration: underline;
    font-weight: 600;

}

.geo-block__el.is-not-find {
    display: none;
}


.georegion {
    font-family: 'Bosch', Arial;
    margin-top: 80px;
    margin-bottoM: 80px;
}
.georegion .h2,
.georegion h2 {
    font-size: 28px;
    color: rgba(50, 50, 50, 1);
    line-height: 1.2;
    margin-bottom: 55px;
    font-weight: 700;
}
.georegion__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.georegion__text {
    width: 100%;
    font-size: 18px;
    line-height: 1.2;
    color: #323232;
}
.georegion__text a {
    color: #B10035;
    text-decoration: underline;
}
.georegion__img {
    margin-left: 40px;
}
.georegion__img img {

}


.errors {
    padding: 0 0 50px;
}

.errors .wrap {
    display: flex;
    gap: 50px;
}

.errors .wrap .left {
    width: 40%;
}

.errors .wrap .left h2 {
    font-size: 56px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: 0em;
    text-align: left;
}

.errors .wrap .left p.desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    margin-bottom: 35px;
}

.errors .wrap .left p.desc span {
    color: #B10035;
    font-weight: 700;
}

.errors .wrap .left .form input {
    width: 100%;
    border: 1px solid #E3E3E3;
    padding: 15px;
    font-size: 18px;
}

.errors .wrap .right ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.errors .wrap .right ul li a {
    border: 2px solid #B10035;
    display: flex;
    width: 188px;
    height: 55px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.errors .wrap .right {
    padding-top: 20px;
}

.consent-checkbox [type="checkbox"],
input[type="checkbox"].cc-injected-input {
    width: auto !important;
    height: auto  !important;
    appearance: auto  !important;
}