/* Шапка */
.header{
    margin-bottom: 25px;
}
.h-top{
    background-color: #353535;
    color: #fff;
}
.h-top .wrap{
    display: flex;
    align-items: center;
    height: 40px;
}
.h-center{
    padding: 20px 0;
}
.h-center .wrap{
    display: flex;
    align-items: center;
}

/* Языки */
.langs{
    overflow: hidden;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #f0f4ff;
}
.lang{
    float: left;
    margin-right: 7px;
    cursor: pointer;
    transition: color .2s linear;
}
.lang:hover{
    color: #ff7e00;
}
.lang.act{
    font-weight: bold;
    color: #f0f4ff;
    /*color: #ff7e00;*/
    cursor: initial;
}
.lang:last-child{
    margin-right: 0;
}

/* Валюта */
.currency{
    display: flex;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    color: #f0f4ff;
}
.currency .title{
	margin-right: 5px;
}
.currency .item:not(:last-child):after{
    content: "|";
    margin: 0 0 0 3px;
}

/* Поиск */
.search{
    margin-left: 30px;
    color: #f0f4ff;
}
.search-form{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.search-form .place{
    cursor: pointer;
    font-weight: 600;
}
.search-form .icon{
    position: relative;
    width: 13px;
    height: 13px;
    box-sizing: border-box;
    display: flex;
    display: none;
}
.search-form .icon svg{
    width: 100%;
    height: 100%;
    fill: #333;
}
.search-form input{
    width: 0;
    border: 0;
    height: auto;
    line-height: 1;
    padding: 0;
    margin-left: 7px;
    transition-property: width, padding;
    transition-duration: .3s;
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    box-shadow: none;
    color: #f0f4ff;
}
.search-form.act input{
    width: 120px;
    padding: 0 3px;
}

/* Соц сети */
.social{
    overflow: hidden;
    margin-left: 60px;
}
.social a{
    background-color: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    display: block;
    padding: 6px;
    float: left;
    margin-left: 3px;
    overflow: hidden;
}
.social a:first-child{
    margin-left: 0;
}
.social a:hover{
    background-color: #ff7e00;
}
.social svg{
    fill: #333;
    width: 100%;
    height: 100%;
}
.social a:hover svg{
    fill: #fff;
    -webkit-animation: toBottomFromTop 0.54s forwards;
    -moz-animation: toBottomFromTop 0.45s forwards;
    animation: toBottomFromTop 0.45s forwards;
}

@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toBottomFromTop {
    49% {
        -moz-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

/* Лого */
.logo{
    display: flex;
}
.logo .link{
    background: url(../image/logo.png) no-repeat center / 100% 100%;
    display: block;
    width: 200px;
    height: 53px;
    position: relative;
    margin-bottom: 20px;
}
.logo .link:after{
    content: "";
    background: url(../image/logo-after.svg) no-repeat center / 100% 100%;
    display: block;
    height: 19px;
    width: 100%;
    position: absolute;
    bottom: -24px;
}
.logo .slogan{
    font: 500 17px/14px 'Oswald';
    text-transform: uppercase;
    margin-left: 10px;
}
.logo .text{
    margin-bottom: 17px;
}
.logo .text:last-child{
    margin-bottom: 0;
}
.logo .text span{
    color: #ff7e00;
}

/* Контакты - шапка */
.h-call{
    font: 500 26px/21px 'Oswald';
    margin-left: auto;
}
.h-call a{
    display: table;
    margin-bottom: 16px;
}
.h-call a:last-child{
    margin-bottom: 0;
}
.h-contacts{
    margin-left: 30px;
}
.h-contacts .phone{
    font: 500 26px/21px 'Oswald';
    display: table;
    color: #303030;
    margin-left: auto;
    margin-bottom: 5px;
}
.h-contacts .phone:hover{
    color: #ff7e00;
}
.h-contacts .map{
    text-align: right;
    display: table;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
}
.h-contacts .contacts{
	font-size: 14px;
	font-weight: 600;
    display: table;
    margin-left: auto;
    display: none;
}

.h-center .btn{
    margin-left: 30px;
}
.btn-request{
    cursor: pointer;
    background-color: #ff7e00;
    color: #fff;
    font: 500 18px 'Oswald';
    text-transform: uppercase;
    width: 196px;
    text-align: center;
    line-height: 56px;
    border-radius: 3px;

    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
.btn-request:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.75);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.req{
    cursor: pointer;
}

/* Меню - главное */
.nav-mmenu{
    font: 500 16px/1 'Oswald';
    background-color: #0b94cf;
    border-radius: 3px;
    display: flex;
    align-items: center;
    height: 50px;
}
.nav-mmenu > ul{
    display: flex;
    align-items: center;
}
.mmenu{
    background-color: #00a1e6;
    width: 250px;
    height: 100%;
    border-radius: 3px 0 0 3px;
    box-sizing: border-box;
}
.mmenu > li{
    margin-left: 20px;
}
.mmenu > li > a{
    text-transform: uppercase;
    display: block;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mmenu > li > a span{
	transition: transform .3s linear;
	display: block;
}
.mmenu > li > a:after{
	content: attr(data-title);
	position: absolute;
	right: 0; top: 20px;
	transition: transform .3s linear;
}
.mmenu > li > a:hover span,
.mmenu > li > a:hover:after{
	transform: translateY(-20px);
}

.mmenu > li.home{
    margin-left: 0;
    padding-left: 20px;
}
.mmenu > li.home > a{
    cursor: pointer;
    display: flex;
}
.mmenu > li.home svg{
    fill: #fff;
    height: 14px;
    width: 14px;
    margin-right: 6px;
    transition-property: opacity;
}
.mmenu > li.home svg.hide{
    opacity: 0;
}
.mmenu > li.home svg:last-of-type{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.mmenu > li.home svg.hide + svg{
    opacity: 1;
}
.mmenu > li.dd{
    position: relative;
}
.smmenu{
    background-color: #fff;
    position: absolute;
    padding: 20px;
    width: 250px;
    z-index: 10;
    left: 0; top: 33px;
    box-sizing: border-box;
    border: 1px solid #ececec;
    border-radius: 3px 0 0 3px;
    display: none;
}
.smmenu > li{
    margin-bottom: 15px;
}
.smmenu > li:last-child{
    margin-bottom: 0;
}
.smmenu > li > a{
    display: inline-block;
}
.smmenu > li.act > a{
	color: #ff7e00;
}
.smmenu ul, .smenu ul{
    display: none;
}

/* Меню - услуги */
.smenu{
	overflow: hidden;
    margin-left: auto;
    padding-right: 20px;
    text-transform: uppercase;
    font-size: 15px;
}
.smenu > li{
    margin-left: 20px;
}
.smenu > li:first-child{
    margin-left: 0;
}
.smenu > li > a{
    display: block;
    color: #fff;
    position: relative;
}
.smenu > li.act a{
	color: #353535;
}
.smenu > li > a span{
	transition: transform .3s linear;
	display: block;
}
.smenu > li > a:after{
	content: attr(data-title);
	position: absolute;
	left: 0; top: 20px;
	transition: transform .3s linear;
}
.smenu > li > a:hover span,
.smenu > li > a:hover:after{
	transform: translateY(-20px);
}

.smenu > li.more{
	display: none;
	transition: none;
	transform: none;
}
.smenu > li.more > a{
	color: #fff !important;
}
.smenu > li.more > a span{
	transform: none;
	display: initial;
}
.smenu > li.more > a:after{
	content: none;
}
.smenu > li.more svg{
	fill: #fff;
	width: 12px;
    height: 12px;
    margin-top: -2px;
    margin-left: 4px;
    transition: transform .3s linear;
}
.smenu > li.more:hover svg{
	transform: translateX(5px);
}
/*.nav-mmenu > ul > li > a:hover,
.nav-mmenu > ul > li.act:not(.home) > a{
	color: aqua;
}
.mmenu > li.home > a:hover svg{
	fill: aqua;
}*/

/* Фиксированное меню */
.h-fix{
	display: none;
}
.h-fix.fixed{
	display: block;
}
.h-nav.fixed{
    top: -50px;
    width: 100%;
    z-index: 99;
    position:  fixed;
    transform: translateY(50px);
    transition: transform .3s .2s ease-out;
}
.h-nav.fixed .mmenu{
    width: auto;
}
.h-nav.fixed .mmenu > li.home{
    padding-right: 20px;
}
.h-nav.fixed .mmenu > li:not(.home){
    display: none;
}
.h-nav.fixed .btn{
    display: block;
}
.h-nav .btn{
    width: 160px;
    font-size: 17px;
    transform: none;
    transition: none;
    line-height: 16px;
    box-shadow: initial;
    padding: 16px 0 18px;
    border-radius: 0 3px 3px 0;
    transition: background-color .3s linear;
    display: none;
}
.h-nav .btn:hover{
    background-color: #303030;
}

/* Мобильное меню */
.mb-menu{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: table;
    background-color: #353535;
    text-align: center;
    padding: 50px 45px;
    box-sizing: border-box;
    z-index: 101;
    transition: transform .6s ease-out;
    transform: translateY(-1000px);
}
.mb-menu.show{
    transform: translateY(0px);
}
.mb-close{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    display: flex;
    cursor: pointer;
}
.mb-close svg{
    fill:  #fff;
    width: 10px;
    height: 10px;
    margin: auto;
}
.mb-mmenu{
    width: auto;
    background-color: transparent;
}
.mb-smenu{
    padding-bottom: 20px;
    border-bottom: 1px dashed #fff;
    margin-bottom: 20px;
}
.mb-menu ul{
    font: 500 14px/18px 'Oswald';
    text-transform: uppercase;
}
.mb-menu li{
    margin-bottom: 15px;
}
.mb-menu li:last-child{
    margin-bottom: 0;
}
.mb-menu li > a{
    color: #fff;
}
.mb-menu li > a:hover{
    color: #ff7e00;
}
.mb-search{
    display: inline-block;
    margin: 35px 0 15px;
    color: #fff;
}
.mb-menu .social{
    margin: 0 auto 15px;
    display: table;
}
.mb-menu .btn{
    width: 160px;
    font-size: 14px;
    line-height: 40px;
}

/* Слайдер */
.slider{}
.slider .item{
    display: block;
    position: relative;
}
.slider .image{
	height: 430px;
	background-color: #eee;
}
.slider .desc{
    position: absolute;
    left: 30px;
    bottom: 67px;
    background-color: rgba(17, 17, 17, .6);
    color: #fff;
    font: 500 26px/36px 'Oswald';
    text-transform: uppercase;
    max-width: 400px;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 3px;
}
.slider .owl-nav{
    width: 95px;
    height: 32px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.slider .owl-nav > div{
	width: 45px;
	height: 32px;
	background-color: rgba(17, 17, 17, .6);
	border-radius: 3px;
	display: flex;
}
.slider .owl-nav > div svg{
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, .6);
    margin: auto;
}
.slider .owl-nav > div:hover svg{
    fill: #fff;
}

/* Наша работа */
.us-work{}
.us-work.widgets{
    margin: 35px 0 45px;
}
.us-work h2{
    margin-bottom: 30px;
    color: #00a1e6;
    text-align: center;
}
.us-work .list{
    font: 500 18px/24px 'Oswald';
    text-transform: uppercase;
    text-align: center;
    color: #00a1e6;
}
.us-work .item{
	position: relative;
}
.us-work .item:not(:last-child):after{
	content: "";
	position: absolute;
	top: 37px; right: -28px;
	width: 26px; height: 26px;
	background: url(../image/more.svg) no-repeat center / contain;
}
.us-work .icon{
    width: 100px;
    height: 100px;
    display: flex;
    margin: 0 auto 20px;
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #ececec;
    border-radius: 50%;
    position: relative;
}
.us-work .icon:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #00a1e6;
	border-radius: 50%;
	transition-property: transform, opacity;
	transition-duration: .1s, .2s;
	transform: scale(1.3);
	opacity: 0;
}
.us-work .icon:hover:after{
    transform: scale(1);
    opacity: 1;
}
.us-work .icon svg{
    fill: #00a1e6;
    z-index: 1;
    position: relative;
    width: 100%; height: 100%;
}
.us-work .icon:hover svg{
    fill: #fff;
}

/* Часовые пояса */
.time-zone{
    text-align: center;
    margin: 30px 0;
}
.time-zone .image{
    height: 80px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.time-zone .region{
    color: #fff;
    left: 0; top: 0;
    position: absolute;
    width: 100%; height: 100%;
    text-transform: uppercase;
    font: 500 20px/24px 'Oswald';
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s linear;
    background-color: rgba(51, 51, 51, .4);
}
.time-zone .region:hover{
    background-color: rgba(51, 51, 51, .9);
}
.time-zone .time{
    font: 600 22px/18px 'Oswald';
    color: #ff7e00;
    margin: 20px 0 15px;
}
.time-zone .info{
    color: #666;
    line-height: 18px;
    padding: 0 5px;
    font-size: 13px;
}
.time-zone .city{
    display: inline-block;
    font-weight: 600;
}

/* Информеры */
.informers{}
.informers h2{
    line-height: 18px;
}
.informers .more{
    font: 500 16px/1 'Oswald';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: #303030;
}
.informers .more svg{
    width: 12px;
    height: 12px;
    margin-top: -2px;
    margin-left: 4px;
    transition: transform .3s linear;
}
.informers .more:hover svg{
    transform: translateX(5px);
}

/* Справочник */
.reference{
    padding: 30px;
    background-color: #00a1e6;
    color: #fff;
}
.reference h2{
    margin-bottom: 30px;
}
.reference ul{
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    max-height: 176px;
    overflow: hidden;
}
.reference li a{
    color: #fff;
    border-bottom: 1px solid transparent;
    transition-property: border-color;
}
.reference li a:hover{
    border-color: currentColor;
}
.reference .more{
    color: #fff;
    margin-top: 40px;
}
.reference .more svg{
    fill:  #fff;
}

/* Справочник - список */
.reference-list{}
.reference-list .item:not(:last-child){
    margin-bottom: 25px;
}
.reference-list .title{
    display: inline-block;
    line-height: 18px;
    font-weight: 600;
}
.reference-list .date{
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}

/* Справочник - категории */
.ctg-reference{
    margin-bottom: 30px;
}
.ctg-reference .image{
    height: 100px;
    border-radius: 3px;
}
.ctg-reference .title{
    margin-top: 7px;
    font-size: 14px;
    font-weight: 600;
}

/* Отзывы - виджет */
.reviews-widget{
    background-color: #f6f6f6;
    padding: 30px;
}
.reviews-widget h2{
    margin-bottom: 30px;
    color: #ff7e00;
}
.reviews-widget .list{
    color: #333;
    margin: 0 40px;
}
.reviews-widget .name{
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 12px;
}
.reviews-widget .text{
    font-size: 14px;
    line-height: 18px;
    height: 146px;
    overflow: hidden;
}
.reviews-widget .more{
    margin-top: 38px;
}
.reviews-widget .owl-nav > div{
    background-color: transparent;
    padding: 0;
    width: 20px; height: 20px;
}
.reviews-widget .owl-nav > div svg{
    fill: #bbb;
}
.reviews-widget .owl-nav > div:hover svg{
    fill: #777;
}
.reviews-widget .owl-prev{
    left: -40px;
}
.reviews-widget .owl-next{
    right: -40px;
}

/* Новости - виджет */
.news-widget{
    margin-top: 30px;
    overflow: hidden;
}
.news-info{
    background-color: #00a1e6;
    color: #fff;
    float: left;
    width: 25%;
    height: 200px;
    padding: 35px 30px 30px;
    box-sizing: border-box;
}
.news-info h2{
    margin-bottom: 25px;
}
.news-info .slogan{
    font-weight: 600;
    line-height: 22px;
    font-size: 14px;
}
.news-info .more{
    color: #fff;
    margin-top: 35px;
}
.news-info .more svg{
    fill: #fff;
}
.news-widget .list{
    float: left;
    overflow: hidden;
    width: 75%;
}
.news-widget .item{
    float: left;
    width: 33.333%;
    display: block;
    height: 200px;
    position: relative;
    color: #333;
	background-color: #eee;
}
.news-widget .image{
    height: 100%;
}
.news-widget .anons{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .95);
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: transform .4s ease-out, padding .4s ease-out;
}
.news-widget .item:hover .anons{
    transform: translateY(95px);
    padding: 20px 30px 15px;
}
.news-widget .title{
    font-weight: 600;
    line-height: 18px;
    max-height: 72px;
    overflow: hidden;
}
.news-widget .date{
    margin-top: auto;
    font-size: 14px;
    color: #777;
}

/* Новости - список */
.news-list{}
.news-list .item{
    margin-bottom: 40px;
    margin-top: 0 !important;
}
.news-list .image{
    display: block;
}
.news-list .image.empty{
    min-height: 180px;
    background-color: #353535;
}
.news-list .title{
    display: inline-block;
    margin: 15px 0 10px;
    line-height: 18px;
    font-weight: 600;
}
.news-list .desc{
    color: #666;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
}
.news-list .date{
    font-size: 14px;
    color: #777;
}

/* Заявка */
.request-info{
    background-color: #ff7e00;
    padding: 25px 0;
}
.request-info .wrap{
    display: flex;
    align-items: center;
}
.request-info .text{
    color: #fff;
    text-transform: uppercase;
}
.request-info h2{
    font: 500 28px/24px 'Oswald';
    margin-bottom: 12px;
}
.request-info h3{
    font-weight: 600;
    font-size: 14px;
}
.request-info .btn{
    margin-left: auto;
    background-color: #353535;
}

/* Форма заявки */
.request-form{
    width: 750px;
    margin: auto;
    display: table;
    border-radius: 3px;
    background-color: #f8f8f7;
    top: 70px; left: 0; right: 0;
    position: absolute; z-index: 101;
    transition: transform .6s ease-out;
    transform: translateY(-1200px);
}
.request-form.show{
    transform: translateY(0);
}
.request-form > h3{
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font: 500 20px/1 'Oswald';
    text-transform: uppercase;
    background-color: #ff7e00;
    border-radius: 3px 3px 0 0;
}
.request-form > .close{
    width: 20px;
    height: 20px;
    position: absolute;
    right: -24px;
    top: -24px;
    display: flex;
    cursor: pointer;
}
.request-form > .close svg{
    width: 14px;
    height: 14px;
    margin: auto;
    fill: #fff;
}
#request{
    font-size: 14px;
    padding: 20px 50px 35px;
    box-sizing: border-box;
    color: #666;
}
#request > *{
    margin-bottom: 20px;
}
#request .input{
    padding: 0;
    border: none;
    height: auto;
    box-shadow: none;
    line-height: initial;
}
#request h4{
    color: #666;
    position: relative;
    margin-bottom: 8px;
    line-height: 1;
    margin-left: 2px;
}
#request .req:after{
    content: "*";
    color: #ff4273;
    margin-left: 2px;
}
#request input, #request select{
    background-color: #fff;
    border: 1px solid #e0dfdf;
    border-radius: 3px;
    line-height: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    color: #666;
}
#request select{
    height: auto;
    box-shadow: none;
    padding: 5px 25px 6px 10px;
}
#request .eg-2 > *:nth-child(1n + 3){
    margin-top: 20px;
}
#request .sizes{
    display: flex;
    flex-wrap: wrap;
}
#request .sizes h3{
    margin-bottom: 8px;
    margin-left: 2px;
    width: 100%;
}
#request .sizes input{
    padding: 7px 25px 7px 10px;
}
#request .sizes .input{
    width: 95px;
    margin-right: 15px;
    position: relative;
}
#request .sizes .input:last-child{
    margin-right: 0;
}
#request .sizes .input:after{
    content: "м";
    color: #666;
    position: absolute;
    right: 10px;
    bottom: 8px;
}
#request .types .input{
    position: relative;
}
#request .types .input:after{
    content: "";
    width: 21px;
    height: 21px;
    position: absolute;
    right: 5px;
    bottom: 7px;
    background: #fff url(../image/arrow-down.svg) no-repeat center / 10px;
}
#request .temp h4{
    width: 170px;
}
#request .temp input{
    padding: 7px 25px 7px 10px;
}
#request .temp .input{
    position: relative;
    width: 95px;
}
#request .temp .input:after{
    content: "\00B0 С";
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: #666;
    font-size: 13px;
}
#request .ch label{
    overflow: hidden;
    display: block;
    line-height: 25px;
    color: #666;
}
#request .ch input{
    width: auto;
    display: block;
    float: left;
    margin: 7px 5px 0 0;
}
#request .accord label{
    overflow: hidden;
    display: block;
    line-height: 25px;
}
#request .accord input{
    color: #353535;
    width: auto;
    display: block;
    float: left;
    margin: 7px 5px 0 0;
}
#request .accord a{
    color: #00a1e6;
}
#request .accord a:hover{
    color: #ff7e00;
}
#request .btn{
    margin-bottom: 0;
    text-align: center;
}
#request .btn button{
    display: inline-block;
    width: 200px;
    font: 500 16px/1 'Oswald';
    text-transform: uppercase;
    padding: 15px 0;
}


/* Футер */
.footer{
	margin-top: 30px;
}
.mfooter{
    margin-top: 40px;
}

/* Лого */
.f-logo{
    margin-bottom: 20px;
}

/* Контакты - футер */
.f-call{
    font: 600 22px/18px 'Oswald';
}
.f-call a{
    display: table;
    margin-bottom: 13px;
}
.f-call a:last-child{
    margin-bottom: 0;
}

.f-contacts{
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

/* Виджет инста */
.insta{}
.insta h2{
    color: #00a1e6;
    line-height: 18px;
    margin-bottom: 20px;
}
.insta .list{
    display: flex;
    flex-wrap: wrap;
}
.insta .item{
    margin-left: 13px;
    width: calc(25% - 9.75px);
    height: 129px;
    overflow: hidden;
    position: relative;
}
.insta .item:after{
    content: "";
    opacity: 0;
    left: 0; top: 0;
    position: absolute;
    width: 100%; height: 100%; 
    transition: opacity .2s linear;
    background-color: rgba(255, 126, 0, .4);
}
.insta .item:hover:after{
    opacity: 1;
}
.insta .item:first-child{
    margin-left: 0;
}
/* Меню - футер */
.fmenu{}
.fmenu h2{
    color: #00a1e6;
    line-height: 18px;
    margin-bottom: 20px;
}
.fmenu ul{
    font-size: 14px;
}
.fmenu li{
    margin-bottom: 8px;
}
.fmenu li:last-child{
    margin-bottom: 0;
}
.fmenu a{
    color: #666;
    display: block;
    position: relative;
}
.fmenu a:before{
    content: "\003E";
    margin-right: 3px;
}
.fmenu .act a,
.fmenu a:hover{
    color: #00a1e6;
}

/* О компании */
.about{
    color: #666;
    font-size: 13px;
    margin-top: -10px;
    line-height: 15px;
}
.about p{
    line-height: 15px;
}
.about a{
    font-weight: 600;
    color: #ff7e00;
    font-style: italic;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition-property: border-color;
}
.about a:hover{
    border-color: currentColor;
}

/* Копирайт */
.copy{
    padding: 15px 0;
}
.copy .wrap{
    display: flex;
    font-size: 13px;
    align-items: center;
}
.copy .wrap > *{
    max-height: 31px;
    overflow: hidden;
    color: #303030;
    opacity: .4;
    transition: opacity .3s linear;
}
.copy .wrap > *:hover{
    opacity: 1;
}
.copy a:not(:last-child){
    margin-right: 30px;
}
.copy .counter{
    margin-left: auto;
}
.copy .social{
    opacity: 1;
    margin-left: 15px;
}
.copy .social a{
    margin-right: 0;
    background-color: #00a1e6;
}
.copy .social a svg{
    fill: #fff;
}

/* Отзывы */
.reviews-list{
    position: relative;
}
.reviews-list .add{
    font-size: 14px;
    padding: 10px 20px;
    position: absolute;
    right: 0; top: -55px;
}
.reviews-list .item{
    margin-bottom: 30px;
    background-color: #f6f6f6;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 3px;
}
.reviews-list .name{
    font-weight: 600;
    margin-bottom: 15px;
}
.reviews-list .text{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
    color: #333;
}
.reviews-list .date{
    color: #777;
    font-size: 14px;
}

/* Услуги - список */
.services-list{}
.services-list .item{
    height: 160px;
    position: relative;
}
.services-list .item:after{
    content: "";
}
.services-list .title{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font: 600 18px/26px 'Oswald';
    color: #fff;
    background-color: rgba(17, 17, 17, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
}

/* Вопрос ответ */
.faq-list{
	position: relative;
}
.faq-list .add{
	display: inline-block;
	position: absolute;
	right: 0; top: -62px;
	padding: 9px 15px;
}
.faq-list .item{
	margin-bottom: 30px;
	background-color: #fff;
	border: 1px solid #e7e6e5;
	padding: 25px;
	box-sizing: border-box;
}
.faq-list .theme{
	font-size: 14px;
	color: #222;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.faq-list .date{
	font-size: 13px;
	color: #aaa;
	margin-bottom: 15px;
}
.faq-list .question{
	font-size: 14px;
	line-height: 18px;
	color: #666;
	margin-bottom: 15px;
}
.faq-list .show{
	color: #1c4ceb;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
}
.faq-list .show:hover{
	color: #222;
}
.faq-list .admin-reply,
.faq-item .admin-reply{
    color: #eb1d36;
    font-size: 13px;
    margin-bottom: 10px;
    display: inline-block;
}
.faq-list .admin-reply:hover,
.faq-item .admin-reply:hover{
    color: #b7172a;
}

/* Вопрос ответ - статья */
.faq-item{
    padding: 24px;
    font-size: 14px;
    line-height: 18px;
    background-color: #fff;
    border: 1px solid #e7e6e5;
}
.faq-item h3{
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.faq-item .quest{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e6e5;
}
.faq-item .answer-text.epmty{
    color: #eb1d36;
}
.faq-item .date{
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

/* Вакансии - список */
.vacancy-list .item{
    margin-bottom: 20px;
}
.vacancy-list .title{
    color: #34495e;
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
}
.vacancy-list .title:hover{
    color: #e2ae4f;
}
.vacancy-list .desc{
    color: #34495e;
    line-height: 20px;
}

/* Прайс лист - список*/
.price-list{}
.price-list .item{
    border: 1px solid;
    margin-top: 30px;
}
.price-list .item:first-child{
    margin-top: 0;
}
.price-list .title{
    padding: 10px;
    line-height: 20px;
    font-weight: bold;
}
.price-list .title span:hover{
    cursor: pointer;
}
.price-list .service{
    display: flex;
    align-items: center;
    border-top: 1px solid;
    padding: 10px;
    position: relative;
    line-height: 20px;
    font-weight: 600;
}
.price-list .service .name{
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box; 
}
.price-list .service .value{
    width: 205px;
    min-width: 205px;
    padding-left: 10px;
    box-sizing: border-box;
}
.price-list .row{
    position: relative;
    padding: 10px 15px;
    border-top: 1px solid;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
}
.price-list .row .name{
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box; 
}
.price-list .row .value{
    width: 200px;
    min-width: 200px;
    padding-left: 10px;
    box-sizing: border-box;
}
.price-list .value:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: 215px;
    top: 0;
    background-color: #111;
}

/* Лицензии */
.license-list .item{
	display: block; height: 290px;
	transition-property: transform;
}
.license-list .item:hover{
	transform: scale(1.05);
}

/* Контакты */
.contacts-item{}
.contacts-item .text{
    font-size: 15px;
}
.contacts-item .text > h3{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff7e00;
    text-transform: uppercase;
    line-height: 1;
}
.contacts-item .text > *{
    margin-bottom: 10px;
    line-height: 22px;
}
.contacts-item .text > *:last-child{
    margin-bottom: 0;
}
.contacts-item .text a{
    display: table;
}
.contacts-map .map{
    height: 400px;
    margin-top: 30px;
    background-color: #ddd;
}
.contacts-map .map > *{
	width: 100%; height: 100%;
}
#message{}   
#message h3{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff7e00;
    text-transform: uppercase;
}
#message input, 
#message textarea{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;     
    box-sizing: border-box;
}
#message input:hover, 
#message input:focus, 
#message textarea:hover,
#message textarea:focus{
    border-color: #bbb;
}
#message .inputs{
    display: flex;
    margin-bottom: 20px;
}
#message input{
    width: calc(50% - 10px);
}
#message input:last-child{
    margin-left: auto;
}
#message textarea{
    width: 100%;
    height: 100px;
}
#message button{
    border: 0;
    line-height: 1;
    font-size: 14px;
    cursor: pointer;
    padding: 7px 15px;
}
#message .accord{
    margin: 10px 0 0;
    font-size: 12px;
    color: #777;
}
#message .accord input{
    top: 1px;
    cursor: pointer;
    position: relative;
    width: auto !important;
    margin: 0 4px 0 0 !important;
}
#message .accord a{
    color: #ff6a23;
}

/* Статья - вывод */
.article-item{
    overflow: hidden;
}
.article-item > .images{
    float: left;
    width: 500px;
    margin: 0 30px 15px 0;
}
.article-item > .right-pos{
    float: right;
    margin: 0 0 15px 30px;
}
.article-item .image{
    display: block;
    height: 350px;
    transition: opacity .3s linear;
}
.article-item .image.hide{
    opacity: 0;
}
.article-item > .images .list{
    margin-top: 15px;
}
.article-item > .images .item{
    cursor: pointer;
    height: 100px;
    display: block;
}
.article-item .image{
    width: 100%;
    height: 300px;
}
.article-item > .image img{
    width: 100%;
}
.article-item .owl-nav > div{
    padding: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
}
.article-item .owl-nav > div svg{
    fill: #fff;
}
.article-item .owl-nav > div:hover svg{
    fill:  #444;
}
.article-item .owl-prev{
    left: 5px;
}
.article-item .owl-next{
    right: 5px;
}
.article-item .text{
    font-size: 15px;
    color: #555;
}
.article-item .text > *{
    margin-bottom: 15px;
    line-height: 18px;
}
.article-item .text > *:last-child{
    margin-bottom: 0;
}
.article-item .info-bar{
    margin: 15px 0;
    font-size: 12px;
    overflow: hidden;
}
.article-item .info-bar > div{
    float: left;
    display: flex;
    margin-right: 15px;
}
.article-item .info-bar svg{
    width: 12px; height: 12px;
}
.article-item .info-bar span{
    margin-left: 5px;
}
.article-item.services .info-bar{
	display: none;
}
.article-item ul {
    list-style: initial;
    list-style-position: inside;
    list-style-type: initial;
}
.article-item ol {
    list-style: initial;
    list-style-position: inside;
    list-style-type: decimal;
}
.article-item ol li,
.article-item ul li {
    line-height: 22px;
    margin-left: 15px;
}
.services-item .info-bar{
	display: none;
}

/* Режимы тмператур */
.modes{
    margin-top: 20px;
}
.modes .tab{
    margin-bottom: 20px;
}
.modes .tab h3{
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 18px;
}
.modes .tab h3:before{
    content: '';
    margin-right: 6px;
    background: url(../image/modes-arrow.svg) no-repeat center / contain;
    width: 12px;
    min-width: 12px;
    height: 12px;
    transition-property: transform;
    transition-duration: .3s;
    position: absolute;
    left: 0;
    top: 2px;
}
.modes .tab h3.act:before{
    transform: rotate(90deg);
}
.modes .tab .desc{
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
    padding-top: 19px;
    padding-bottom: 19px;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    display: none;
}
.modes .tab ol{
    margin-bottom: 25px;
}
.modes .tab ol li{
    border: none;
    padding: 0;
    line-height: 22px;
    margin-left: 20px;
}
.modes .tab ul{
    list-style: none;
    width: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}
.modes .tab li{
    margin-left: 0;
    border-bottom: 1px solid #d3d3d3;
    overflow: hidden;
    padding: 10px 20px;
    line-height: 19px;
}
.modes .tab li.title{
    background-color: #00a1e6;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
    padding: 7px 20px;
    border-bottom: none;
    line-height: 22px;
}
.modes .tab li .cargo{
    float: left;
    width: 50%;
}
.modes .tab li .temp{
    float: left;
    width: 50%;
    padding-left: 20px;
    box-sizing: border-box;
}
.modes .tab p{
    margin-bottom: 15px;
    line-height: 18px;
}
.modes .tab p:last-of-type{
    margin-bottom: 0;
}