html,
body{
    overflow-x: hidden;
}
body {
    position: relative;
    background: #fff;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: rgba(0, 0, 0, 1.00);
    text-align: left;
    word-break: break-word;
}
body:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: top;
    background-image: url(../images/body__top.png);
    z-index: -1;
}
p {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: rgba(50, 50, 50, 1.00);
    text-align: left;
    margin-top: 25px;
}

ul {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding: 0px;
    margin-top: 25px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    display: inline-block;
    position: relative;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    text-align: inherit;
    text-decoration: none;
    color: #202020;
    padding: 0px;
    margin: 0px;
    transition: all 0.5s;
}

.content {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1710px;
    text-align: center;
    margin: 0px auto;
    padding: 10px 30px;
}

.semi-content__wrap {
    width: calc(100% + 25px);
    margin-right: -25px;
}

.semi-content {
    flex: 1 50%;
    width: 100%;
    padding-right: 25px;
}

.semi-content.smallest {
    padding-top: 50px;
    padding-bottom: 50px;
}

.third-wrap-content {
    display: block;
    position: relative;
    width: calc(100% + 25px);
    text-align: center;
    margin-left: -25px;
    margin-bottom: 25px;
}

.third-content {
    display: inline-block;
    width: 32.9%;
    margin-bottom: 25px;
}

.third-content:nth-child(n) {
    padding-left: 25px;
}

.flex-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}


h1,
h2,
h3,
h4,
.title {
    display: block;
    position: relative;
    width: 100%;
    font-family: 'Montserrat';
    text-align: left;
}

h1,
.title.general {
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #000000;
}

h2,
.title.high {
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    color: rgba(0, 0,0, 1.00);
}

h3,
.title.middle {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1.00);
}

h4,
.title.lower {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    color: rgba(50, 50, 50, 1.00);
}

.title.light {
    color: rgba(255, 255, 255, 1.00);
}

.text {
    position: relative;
    font-family: CeraPro;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: rgba(50, 50, 50, 1.00);
    text-align: left;
}

.text.light {
    color: rgba(255, 255, 255, 1.00);
}
.link{
    border: 1px dashed #202020;
    box-sizing: border-box;
    line-height: 45px;
    padding: 0px 15px;
}
.header-menu__list>li:last-child a,
.header-menu__list>li:nth-child(6) a,
.link-color{

    color: #202020;
}
.button {
    position: relative;
    display: block;
    width: auto;
    min-width: 160px;
    height: 100%;
    max-height: 45px;
    
    background: #B33A3A;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 1.00);
    white-space: nowrap;
    cursor: pointer;
    padding: 0px 30px;
    margin-top: 25px;
    transition: all 0.5s;
}

.button:hover {
    background: transparent;
    text-decoration: none;
    color: #B33A3A;
}
.button.border{
    background: #0e4f95;
    box-sizing: border-box;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
}
.button.border:hover{
    background: #0E4F95;
    color: #fff;
}
/*hamburger*/
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }
  .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }  
      /* end hamburger*/
.header{
    position: relative;
    z-index: 120;
}
.header__content.content{
    padding: 25px 30px 0 30px;
}
.header__menu{
    width: 100%;
}
.header-menu__list{
    align-items: stretch;
    width: 70%;
}
.header-menu__list>li{
	position:relative;
}
.header-menu__list a{
    display: flex; 
    align-items: center;
    line-height: 44px;
	text-transform:uppercase;
	min-width:170px;
	justify-content:center;
    top: 3px;
}
.header-menu__list img{
    margin-left: 10px;
}
.header__top{
    align-items: center;
}
.header-top__left{
    padding-right: 52px;
}
.header-top__right{
    padding-left: 52px;
}
.header-top__right,
.header-top__left{
    max-width: 50%;
    width: 100%;
    align-items: center;
}
.header__location{
    position: relative;
}
.header-sub__location{
    position: absolute;
    top: 28px;
    left: 35px;
    width:600px;
    background: #fff;
    z-index: 5;
    padding-bottom: 30px;
    display: none;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
}
.header__location:hover .header-sub__location{
    display: block;
}
.header-location__header{
    position: relative;
    padding: 15px 22px 30px;
}


.header-location__header:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/header-sub__location.svg);
    z-index: -1;
}
.header-sub__location strong{
    display: inline-block;
    width: 100%;
    text-align: left;
}
.header-sub__location strong,
.header-sub__location strong span{
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}
.header-location__header>p{
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
}
.header-location__search{
    position: relative;
    display: inline-block;
    width: 450px;
    height: 35px;
    margin-top: 15px;
}
.header-location__search>input{
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 5px;
    background: transparent;
    height: 35px;
    width: 100%;
    padding: 0px 40px 0px 20px;
    font-weight: 200;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}
.header-location__search:before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 10px;
    width: 25px;
    height: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/search__icon.svg)
}
.header-sub-location__list{
    padding: 0px 20px;
    max-width: 490px;
    width: 100%;
    column-count: 2;
    margin: 0 auto;
    margin-top: 15px;
}
.header-sub-location__list a{
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}
.header__location,
.header__location>a{
    display: flex;
    align-items: center;
}
.header__location>a>img{
    margin-right: 5px;
}
.header-location__double{
    position: relative;
}
.header-sub-double__location{
    position: absolute;
    top: 26px;
    left: 0;
    width: 600px;
    background: #fff;
    z-index: 5;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
    display: none;
}
.header-location__double:hover .header-sub-double__location{
    display: block;
}
.header-sub-location__header{
    text-align: left;
    padding: 15px 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/heades-sub-location__header.svg);
}
.header-sub-location__header>strong{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.double-sub-location__list{
    padding: 10px 30px 30px 30px;
    margin-top: 0px;
}
.double-sub-location__list li{
    margin-top: 10px;
}
.double-sub-location__list li span{
    display: inline-block;
    width: 100%;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
.double-sub-location__list li a{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}
.header-write__mail.button,
.header-request__call.button{
    margin-top: 0px;
    font-size: 20px;
    text-transform:unset;
    font-weight: bold;
    line-height: 40px;
    border-radius: 0px;

}
.header-request__call.button:hover,
.header-write__mail.button:hover{
    background: #B33A3A
}
.header__tel{
    position: relative;
    display: flex;
    align-items: center;
}
.header__tel>img{
    margin-right: 10px;
}
.header-tel__list{
    position: absolute;
    top: 2px;
    left: 35px;
    z-index: 3;
    background: #fff;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    padding: 40px 20px;
    width: 250px;
    display: none;
}
.header__tel:hover .header-tel__list{
    display: block;
}
.header-tel__list:before,
.header-tel__list:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/header-tel-list__top.svg);
}
.header-tel__list:before{
    bottom: 0;
    top: auto;
    background-image: url(../images/header-tel-list__bottom.svg);
}
.header-tel__list a{
width:100%;
    line-height: 18px;
}
.header-tel__list span{
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    color: #000000;
    display: inline-block;
    margin-top: -3px;
}
.header__tel>a,
.header-location__double>a,
.header__location>a>span{
    position: relative;
    padding-right: 15px;
}

.header__tel>a:after,
.header-location__double>a:after,
.header__location>a>span:after{
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/bottom-icon.svg);
    transition: all 0.5s;
}
.header-location__double>a:hover:after,
.header__location>a:hover>span:after,
.header__tel>a:hover:after{
    transform: rotate(180deg);
    top: calc(50% - 5px)
}
.header__location>a>span:before,
.header-location__double>a:before,
.header__tel>a:before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: calc(100% - 18px);
    height: 0px;
    border-bottom: 2px solid #B33A3A;
}
.sub-menu__list{
    position: absolute;
    top: 24px;
    left: 0;
    min-width: 320px;
max-width:520px;
    height: auto;
    padding: 20px 15px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    z-index:81;
    display: none;
}
.sub-menu__list>li>a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sub-menu__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    max-width: 40px;
}
.sub-menu__list>li>a>span{
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    transition: all 0.5s;
}
.sub-menu__list>li:not(:first-child){
    margin-top: 20px;
}
.sub-menu__list>li>a:hover span{
}
.sub-menu__servic{
	width: 850px;
	columns: 3;
	max-width: 850px;
	padding-top:50px;
	padding-left:20px;
	padding-right:20px;
}
.sub-menu__servic:after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:20px;
	background-position-x:left;
	background-position-y:top;
	background-size:cover;
	background-repeat:no-repeat;
	background-image:url(../images/servic-sub-menu.png);
}
.double-sub__menu{
    margin-left: 65px;
    padding: 20px 15px;
    background: #F1F1F1;
    width: calc(100% - 180px);
    margin-top: 5px;
    display: none;
}
.double-sub__menu strong{
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}
.double-sub-menu__list{
    margin-top: 10px;
}
.double-sub-menu__list a{
    font-weight: normal;
    line-height: 25px;
    font-size: 16px;
}
.sub-menu__list>li:hover>a + .double-sub__menu{
    display: flex;
}
.header-menu__list>li:hover>a + .sub-menu__list{
    display: block;
}
.mobile__button{
    display: none;
}
.header-mob__location,
.header__location.mob{
    display: none;
}
.header-write__mail,
.header-request__call{
    display: inline-block;
}
.header-write__mail{
    display: inline-block;
    margin-left: 15px;
}
.select-city__modal.active{
	display:block;
}

@media only screen and (max-width: 1600px) {
    a,
    .button,
    .header-write__mail.button, .header-request__call.button{
        font-size: 15px;
    }
}
@media only screen and (max-width: 1460px) {
	.header-menu__list a{
		min-width:150px;
	}
}
@media only screen and (max-width: 1400px) {
    .header-top__right{
        padding-left: 0px;
    }
    .header-top__left{
        padding-right: 25px;
    }
	.header-menu__list a{
		min-width:130px;
	}
}
@media only screen and (max-width: 1315px) {
    h1,
    .title.general{
        font-size: calc(18px + 30 * (100vw / 1710));
        line-height: calc(24px + 35 * (100vw / 1710));
    }
	.select-city__block__text-city{
		width:auto;
	}
    .header-write__mail{
        margin-left: 0px;
    }
    .header-top__left{
        max-width: 100%;
        align-items:center;
        padding-right: 0px;
    }
    .mobile__button{
        position: relative;
        display: block;
        z-index: 15;
    }
    .header-top__right{
        max-width:100%;
    }
    .header-location__double,
    .header__location,
	.header-desktop__location{
        display: none;
    }
.select-city__close{
	display:none;
}
    .header__location.mob,
	.header-mob__location{
        display: block;
        margin-top: 20px;
    }
    .header-top__right>div{
        max-width: 50%;
        display: flex;
        flex-direction: column;
    }
.select-city__block{
	text-align:left;
}
.select-city__block__text-city:before{
	left:45px;
}
    .header-top__right>div:last-of-type{
        align-items: flex-end;
    }
    .header-write__mail.button{
        margin-top: 20px;
    }
    .header__menu{
        position: absolute;
        top: -350%;
        right: 0;
        max-width: 100%;
        background: #fff;
        z-index: 13;
        -webkit-box-shadow: -3px 3px 13px 0px rgba(50, 50, 50, 0.4);
        -moz-box-shadow:    -3px 3px 13px 0px rgba(50, 50, 50, 0.4);
        box-shadow:         -3px 3px 13px 0px rgba(50, 50, 50, 0.4);
        transition: all 1.2s;
    }

    .header__menu.active{
        top:0;
    }
    .header-menu__list{
        flex-direction: column;
    }
    .header-menu__list a{
        border: none !important;
    }
    .header-menu__list a>img{
        display: none;
    }
    .sub-menu__list{
        position: relative;
        top: 0px;
        margin-top: 0px;
    }
    .sub-menu__list > li > a > span{
        font-size: 15px;
    }
    .sub-menu__list{
        width: 100%;
	max-width:none;
    }
	.sub-menu__servic{
		max-width:none;
		width:100%;
	}
    .double-sub__menu{
        max-width: calc(100% - 100px);
        width: 100%;
    }
}
@media only screen and (max-width: 1100px) {
    .double-sub__menu>.semi-content{
        flex: 1 100%;
    }
    .double-sub__menu{
        left: 0px;
        margin-left: 0px;
    }
}
@media only screen and (max-width: 770px) {
	.select-city__modal-wrap{
		width: calc(100vw -95px) !important;
	}
	.sub-menu__servic{
		columns:2;
	}
}
@media only screen and (max-width: 700px) {
    .double-sub__menu{
        max-width: 100%;
    }
    .header__content.content{
        padding-top: 15px;
    }
    .header-sub__location{
        width: calc(100vw - 95px);
    }
}
@media only screen and (max-width: 580px) {
    .header-location__search{
        width: 100%;
    }
    body:after{
        background-image: url(../images/body-mob__top.png);
        background-size: contain;
        background-position-y: top
    }
.sub-menu__servic li{
		width:100% !important;
	}
}
@media only screen and (max-width: 470px) {
    .sub-menu__list{
        padding: 20px 15px;
    }
    .header__logo>img{
        max-height: 20px;
    }
    .mobile__button .menu svg{
        width: 30px;
        height: 30px;
    }
    .double-sub-menu__list a{
        font-size: 12px;
    }
    .header-request__call,
    .header-write__mail{
        padding: 0px 15px;
    }
    .header__content.content{
        padding-left: 20px;
        padding-right: 20px;
    }
    .content{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .header-sub__location strong,
    .header-sub__location strong span{
        font-size: 15px;
        line-height: 18px;
    }
    .header-sub__location p{
        font-size: 14px;
    }
    .header-sub-location__list{
        column-count: 1;
    }
    .header-sub__location{
        width: calc(100vw - 75px);
    }
}
.select-city__modal-wrap{
	margin:0px !important;
}
@media only screen and (max-width: 420px) {
    .header-request__call.button,
    .header-write__mail.button{
        font-size: 8px;
        min-width:auto;
        line-height:16px;
    }
    .header-sub__location{
        left: 25px;
        width: calc(100vw - 65px);
    }
    .header__tel>a,
    .header__location>a,
	.select-city__block__text-city{
        font-size: 10px !important;
    }
    .header__location.mob,
    .header-write__mail.button{
        margin-top: 10px;
    }
    .header__tel>img{
        height: 18px;    
    }
    .header__location>a>img{
        height: 20px;
    }
}
.main{
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-image: url(../images/main__bg.png)
}
.main__title{
    text-align: center;
}
.main__list{
    margin-left: -90px;
    width: calc(100% + 90px);
    justify-content: flex-start;
	    align-items: stretch;
}
.main__item{
    max-width: calc(25% - 90px);
    width: 100%;
    background: #fff;
    border-radius: 5px 5px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    margin-left: 90px;
    margin-top: 90px;
    min-width: 75px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.main-item__img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
max-height: 200px;
height: 100%;
}
.main-item__desc{
    padding: 25px 20px;
    background: #0E4F95;
    border-radius: 0px 0px 5px 5px;;
}
.main-item__desc>p{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-top: 0px;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width: 1470px) {
    .main-item__desc>p{
        font-size: calc(6px + 14 * (100vw / 1710));
        line-height: calc(7px + 17 * (100vw / 1710));
    }
}
@media only screen and (max-width: 1250px) {
    .main__item{
        min-width: 300px;
        margin-top: calc(0px + 90 * (100vw / 1710));
    }
}
@media only screen and (max-width: 760px) {
    .main__item{
        min-width: auto;
        max-width: calc(33.3% - 25px);
        margin-left: 25px;
    }
    .main__list{
        margin-left: -25px;
        width: calc(100% + 25px);
    }
}
@media only screen and (max-width: 580px) {
    .main{
        background-image: url(../images/main-mob__bg.png);
    }
}
@media only screen and (max-width: 500px) {
    .main-item__img{
        padding: 5px 15px;
    }
    .main-item__desc{
        padding: 7px 7px;
    }
}
.services__item{
    max-width: 50%;
}
.services-slide__item{
    position: relative;
    min-height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide-item__text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 45px 20px;
    background: rgba(0,0,0,0.55);
}
.slide-item__text>p{
    margin-top: 0px;
    font-weight: normal;
    color: #fff;
}
.slide-item__text>p:not(:first-child){
    margin-top: 15px
}
.slide-item__text>p:nth-child(even){
    font-size: 28px;
    line-height: 34px;
    font-weight: bold;
}
.services-item__button{
    max-width: 240px;
}
.services__slider .owl-dots{
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    margin-left: -8px;
}
.services__slider .owl-dots .owl-dot{
    width: 80px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    margin-left: 8px;
}
.services__slider .owl-dots .owl-dot.active{
    height: 10px;
    background: #898989;;
}
.services-right__item{
    position: relative;
    height: 390px;
    overflow:hidden;
}
.services-right__item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 0
}
.services-right__bottom{
    margin-top: 20px;
}
.services-right__item>img{
    position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    margin: 0 auto;
    max-width: none;
    max-height: none;
    min-height: 100%;
    min-width: 100%;
}
.services-right__text{
    position: relative;
    z-index: 1;
    padding:45px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-right__title.title{
    font-weight: bold;
    font-size: 64px;
    line-height: 78px;
    color: #FFFFFF;
    text-align: center;
}
.services-right__item p{
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}
.services-stock{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 150px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: rgb(255,255,255);
    font-weight: bold;
    font-size: 24px;
    background: #B33A3A;
}
.services-right__button{
    max-width: 200px;
}
@media only screen and (max-width: 1180px) {
    .services__list>.semi-content{
        flex: 1 100%;
        max-width: 100%;
    }
    .services-slide__item{
        min-height: 500px;
    }
    .services__item:first-of-type{
        margin-bottom: 25px;
        min-height: auto;
    }
    .services-right__title.title{
        font-size: calc(18px + 46 * (100vw / 1710));
        line-height: calc(25px + 53 * (100vw / 1710));
    }
}
@media only screen and (max-width: 780px) {
    .slide-item__text>p{
        font-size: 12px;
        line-height: 18px;
    }
    .slide-item__text>p:not(:first-child){
        margin-top: 5px
    }
    .slide-item__text>p:nth-child(even){
        font-size: 16px;
        line-height: 25px;
    }
    .slide-item__text{
        padding: 20px 20px;
    }
}
@media only screen and (max-width: 650px) {
    .services-right__text{
        padding: 20px 20px;
    }
    .services-right__item{
        height: auto;
    }
    .services-right__bottom .services-right__text{
        padding-top: 40px;
    }
}
@media only screen and (max-width: 400px) {
    p,
    .services-right__text p,
    .slide-item__text>p{
        font-size: 8px;
        line-height: 12px;
    }
    .services-right__text p{
        margin-top: 10px;
    }
    .slide-item__text>p:not(:first-child){
        margin-top: 5px
    }
    .slide-item__text>p:nth-child(even){
        font-size: 12px;
        line-height: 16px;
    }
    .slide-item__text{
        padding: 7px 10px;
    }
    .services-right__button.button,
    .services-item__button.button{
        margin-top: 10px;
        font-size: 10px;
        line-height: 20px;
        min-width: auto;
        padding: 0px 10px;
        max-width: 95px;
    }
    .services-slide__item{
        min-height: 265px;
    }
    .services-stock {
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        max-width: 95px;
    }
    .services-right__bottom .services-right__text{
        padding-top: 30px;
    }
}
.main-about__list{
    padding: 20px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    
}
.main-about__list .owl-dots{
	display:none;
}
.main-about__left{
    position: relative;
    max-width: 560px;
    width: 100%;
}
.main-about__right{
    max-width: calc(100% - 560px);
    padding-left: 35px;
}

.main-about__button{
    max-width: 200px;
}
.main-news__item{
	align-items: center;
}
@media only screen and (max-width: 1090px) {
    .main-about__right{
        max-width: 100%;
        padding-left:0px;
    }
.main-about__title{
	margin-top:25px;
}
}
@media only screen and (max-width: 400px) {
    .main-about__title.title{
        font-size: 12px;
        line-height: 18px;
    }
    .main-about__right p{
        margin-top: 15px;
    }
    .button{
        font-size: 10px !important;
        padding: 0px 10px;
        line-height: 20px !important;
        min-width: auto;
        margin-top: 15px;
    }
    .main-about__button.button{
        max-width: 100px;
    }
}
.locations__block{
    border-radius: 5px 5px;
    background: #F0F0F0;
    align-items: stretch;
}
.locations__list{
	max-width:520px;
	margin:0 auto;
	margin-top:25px;
}
.locations__list>li{
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.locations__list p{
    margin-top: 0px;
    font-weight: bold;
    font-size: 16px;
    line-height: 29px;
    color: #000000;
}
.locations__list span{
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.locations__icon{
    margin-right: 20px;
}
.locations__list>li:not(:first-child){
    margin-top: 25px;
}
.locations__button{
    max-width: 210px;
    margin: 0 auto;
    margin-top: 25px;
	margin-bottom:25px;
}
.locations__block{
	flex-wrap:nowrap;
	width: 100% !important;
}
.locations__item{
	flex: 1 calc(50% - 25px) !important;
}
.locations .locations__item > ymaps{
	min-height:400px;
height:100% !important;
}
@media only screen and (max-width: 1200px) {
	.locations__block{
		flex-wrap:wrap;
	}
.locations__item{
	flex: 1 100% !important;
padding-right:0px !important;
}
}
@media only screen and (max-width: 1050px) {
    .locations__block{
        padding: 20px 20px;
        max-width: 100%;
    }
    .locations__block>.semi-content{
        flex: 1 100%;
        padding-right: 0px;
    }
}
@media only screen and (max-width: 575px) {
    .locations__list p{
        font-size: 15px;
        line-height: 18p;
    }
    .locations__list span{
        font-size: 12px;
        line-height: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .locations__block{
        padding: 10px 10px;
    }
    .locations__list{
        margin-top: 5px;
    }
    .locations__list > li:not(:first-child){
        margin-top: 5px;
    }
    .locations__button.button{
        max-width: 100px;
        margin-top: 10px;
    }
    .locations__list p{
        font-size: 12px;
        line-height: 16p;
    }
    .locations__list span{
        font-size: 8px;
        line-height: 12px;
    }
    .locations__list .locations__icon>img{
        max-width: 20px;
        max-height: 20px;
    }
}
.about-us{
    align-items: center;
}
.about-us__left{
    max-width: 855px;
    width: 100%;
}
.about-us__right{
    max-width: calc(100% - 855px);
    padding-left: 55px;
    text-align: left;
}
.about-us__button.button{
    border: 1px solid #B33A3A;
    color: #B33A3A;
    max-width: 160px;
    padding: 0px 15px;
}
@media only screen and (max-width: 1390px) {
    .about-us__right,
    .about-us__left{
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
    h2,
    .title.high{
        font-size:calc(16px + 24 * (100vw / 1710));
        line-height: calc(25px + 25 * (100vw / 1710));
    }
}
@media only screen and (max-width: 400px) {
    .about-us__right p{
        margin-top: 10px;
    }
    .about-us__button.button{
        max-width: 100px;
    }
}
.footer{
    padding: 15px 0px 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #202020;
    background-image: url(../images/footer__bg.png)
}
.footer-menu__list{
    justify-content: flex-start;
    margin-top: 0px;
    margin-left: -50px;
    width: calc(100% + 50px);
}
.footer-menu__list>li{
    margin-left: 50px;
}
.footer-menu__list a{
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}
.footer-left__top{
    justify-content: flex-start;
    align-items:center;
    flex-wrap: nowrap;
}
.footer-soc__list.mob{
    display: none;
}
.footer__call{
    background: transparent;
    color: #B33A3A;
    margin-top: 0px;
}
.footer__call:hover{
    background: #B33A3A;
    color: #fff;
}
.footer-left-top__info{
    text-align: left;
    margin-left: 25px;
}
.footer-left-top__info>span{
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    display: inline-block;
    width: 100%;
    text-align: left;
}
.footer-left-top__info>a{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: left;
}
.footer-soc__list{
    justify-content: flex-start;
    margin-left: -25px;
    width: calc(100% + 25px);
    margin-top: 50px;
}
.footer-soc__list>li{
    margin-left: 25px;
}
.footer-soc__list a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    width: 55px;
    height: 55px;
    background: #282828;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}
.footer__link:first-of-type{
    margin-top: 50px;
}
.footer__link{
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    width: 100%;
    text-align: left;
}
.footer__content>span{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 35px;
}
.footer__form{
    max-width: 500px;
    width: 100%;
}
.footer-form__title.title{
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 35px
}
.footer__form textarea,
.footer__form input{
    background: transparent;
    border: none;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    border-bottom: 1px solid #8B8B8B;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #8B8B8B;
    padding: 0px 40px;
    resize: none;
	outline:none
}
.footer__form textarea{
    height: 80px;
}
.footer__right{
    display: flex;
    justify-content: center;
    margin-top: 35px;
}
.footer__left{
    margin-top: 35px;
}
.footer-form__button{
    margin: 0 auto;
    margin-top: 25px;
    background: transparent;
    color: #B33A3A !important;
	border: 1px solid #B33 !important;
cursor:pointer;
max-width:200px;
}
.footer-form__button:hover{
    background: #B33A3A;
    color: #fff !important;
}
@media only screen and (max-width: 1350px) {
    .footer__left.semi-content{
        max-width: 650px;
        width: 100%;
    }
    .footer__right.semi-content{
        max-width: calc(100% - 650px);
        width: 100%;
    }
}
@media only screen and (max-width: 1060px) {
    .footer-soc__list{
        display: none;
    }
    .footer-soc__list.mob{
        display: flex;
        margin-top: 0px;
        margin-bottom: 15px;
    }
    .footer__left.semi-content{
        max-width: 100%;
        flex: 1 100%;
    }
    .footer__right.semi-content{
        max-width: 100%;
        flex: 1 100%
    }
    .footer__call{
        max-width: 190px;
    }
    .footer-left-top__info{
        max-width: calc(100% - 210px)
    }
}
@media only screen and (max-width: 770px) {
    .footer__content{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer-menu__list{
        flex-direction: column;
    }
    .footer__left{
        margin-top: 15px;
    }
}
@media only screen and (max-width: 550px) {
    .footer-left-top__info > span{
        font-size: 14px;
        line-height: 16px;
    }
    .footer-left-top__info > a{
        font-size: 15px;
        line-height: 18px;
    }
    
    .footer__call.button{
        padding: 0px 15px;
        font-size: 14px;
        max-width: 160px;
    }
    .footer-left-top__info{
        max-width: calc(100% - 160px)
    }
}
@media only screen and (max-width: 400px) {
    .footer{
        padding-top: 0px;
    }
    .footer__content.content{
        padding-top: 12px;
    }
    .footer-menu__list{
        margin-top: 0px;
    }
    .footer-menu__list a{
        font-size: 12px;
    }
    .footer-soc__list.mob a{
        width: 35px;
        height: 35px;
    }
    .footer-left-top__info{
        text-align: right;
    }
    .footer-left-top__info > span{
        font-size: 8px;
        line-height: 8px;
        text-align: right;
    }
    .footer-left-top__info > a{
        font-size: 12px;
        line-height: 12px;
    }
    .footer__link:first-of-type{
        margin-top: 15px;
    }
    .footer__link{
        font-size: 10px;
    }
    .footer-form__title.title{
        font-size: 16px;
        margin-bottom: 0px;
    }
    .footer__content > span{
        display: inline-block;
        margin-top: 100px;
        font-size: 16px;
    }
    .footer-form__button{
        height: 20px;
    }
}
/* catalog*/
.catalog h1 {
    text-transform: uppercase;
  }
  
  .catalog-block {
    flex-wrap: nowrap;
  }
.catalog-block .catalog-left__block{
	margin-right:25px;	
}
  .catalog-nav {
    display: block;
    max-width: 450px;
    min-width: 310px;
    margin-top: 19px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    padding-bottom: 1px;
  }
  .catalog-nav__title {
    font-size: 28px;
    line-height: 34px;
    color: #000000;
    text-align: center;
    padding: 17px 10px;
  }
  .catalog-nav__list {
    display: block;
    margin: 0;
  }
  .catalog-nav__item {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .catalog-nav__item > a {
    width: 100%;
    padding: 8px 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #000000;
    white-space: pre-wrap;
      background: #f0f0f0;
  }
  .catalog-nav__item>a:hover {
    transition: all 0.6s;
    background: #b33a3a;
    color: #fff;
  }
  .catalog-nav__item.avtive > a{
	background: #b33a3a;
	color: #fff
}
.services-sub__catalog{
	display:none;
}
.catalog-nav__item.avtive ul{
	display: block;
}
  .catalog-content {
    max-width: 1185px;
    width: 100%;
    height: auto;
    padding: 20px 0px 20px 15px;
  }
  .catalog-filter {
    justify-content: flex-start;
    padding: 10px;
    background: #b33a3a;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 18px;
    line-height: 22px;
      align-items: center;
	margin-top:21px;
	margin-right:25px
  }
  .catalog-filter__item {
    position: relative;
    width: 100%;
  }
  .catalog-filter__item:not(:last-child) {
    margin-bottom: 13px;
  }
  .catalog-filter__item > input {
    padding: 9px 6px;
  }
  .catalog-filter__item > input, .select {
      position: relative;
    width: calc(25% - 25px);
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    line-height: 22px;
  }
  .button.filter-button {
    max-height: auto;
    line-height: 22px;
    min-width: 195px;
    margin: 0;
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    border-radius: 0;
    border: 0;
    padding: 9px;
    background: #8B2626;
    text-transform: capitalize;
  }
  .catalog-filter__item.filter-search {
      width: 25%;
      padding-left: 20px;
  }
.filter-search>.filter-button{
    width: 25%;
    margin: 0 auto;
}
  .filter-block {
    width: 75%;
  }
  .select {
    position: relative;
    background: #fff;
  }
  .select.is-active .select__body {
    display: block;
  }
  .select.is-active .select__icon {
    transform: rotate(180deg);
  }
  .select__header {
    display: flex;
    cursor: pointer;
  }
  .select__current {
    padding: 9px 6px;
  }
  .select__icon {
      position: absolute;
      right: 8px;
    width: 13px;
    height: 13px;
    padding: 22px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    text-align: center;
  }
  .select__body {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
    border-top: 0;
    z-index: 5;
  }
  .select__item {
    font-size: 16px;
    line-height: 24px;
    padding: 8px;
    text-align: left;
    cursor: pointer;
  }
  .select__item:hover {
    background: #f2f2f2;
  }
  .catalog-list {
    justify-content: space-between;
      margin-left: -20px;
      width: calc(100% + 20px);
   align-items: stretch;

  }
  .catalog__card {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    padding: 7px 11px 24px 11px;
    background: #ffffff;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
      margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.catalog-spisok__list .catalog__card{
	max-width:calc(50% - 20px);
}
.brand-detail__catalog .catalog__card{
	max-width:none;
	flex: 0 1 calc(50% - 25px);
}
  .catalog-item__img {
      display: flex;
      flex-flow: row nowrap;
      justify-content: center;
      align-items: center;
    position: relative;
    width: 100%;
    height: 311px;
    overflow: hidden;
  }
  .catalog-item__img img {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: -9999px;*/
    /*right: -9999px;*/
    /*margin: 0 auto;*/
    max-width: 100%;
    /*min-width: 100%;*/
    max-height: 100%;
	  /*min-height: 100%;*/
  }
  .catalog-item__info {
    margin-top: 12px;
  }
  .catalog-name {
    text-transform: uppercase;
  }
  .product-name {
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
  }
  .in-stock {
    color: #36ce00;
  }
  .not-available {
    color: #ed0000;
  }
  
  .catalog-card__button {
    margin: 0;
    max-width: 190px;
    width: 100%;
    padding: 8px 33px;
    border: 1px solid #0e4f95;
    box-sizing: border-box;
    background: inherit;
    font-size: 20px;
    line-height: 24px;
    color: #0e4f95;
    text-transform: capitalize;
  }
  .catalog-card__button:hover {
    background: #0e4f95;
    color: #ffffff;
  }
  .catalog-card__price {
    max-width: 191px;
    width: 100%;
    height: 100%;
    padding: 8px 12px;
    background: #0e4f95;
    border-radius: 5px 0px 0px 5px;
    font-weight: bold;
    font-size: 15px;
    line-height: 29px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-right: -11px;
  }
  .catalog-card__bottom {
    margin-top: 15px;
  }
  .catalog-list > a {
    margin-top: 80px;
  }
  .link-back {
    text-align: left;
  }
  .link-back > a {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    text-transform: capitalize;
  }
.catalog__burger,
.catalog-nav.mob{
        display: none;
    }
.catalog__more{
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
@media only screen and (max-width: 1600px) {
    .catalog-filter__item .select,
    .catalog-filter__item .select__item{
        font-size: 14px;
    }
}
@media only screen and (max-width: 1420px) {
	.catalog-left__block{
		max-width:300px !important;
	}
	.catalog-nav__item > a{
		font-size:16px;
	}
}
@media only screen and (max-width: 1390px) {
    .catalog-nav{
        display: none;
    }
    .services-catalog .catalog-menu>div,
    .catalog h1.title.general{
        max-width: calc(100% - 50px);
    }
    .catalog-menu{
        position: relative;
    }
    .catalog__burger{
        display: block;
    }
    .catalog-nav.mob{
        position: absolute;
        right: 0;
        top: 0;
        background: #fff;
        z-index: 5;
        box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
        top: 25px;
        display: none;
    }
    .catalog-nav.mob.active{
        display: block;
    }
    .catalog-content {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 20px 0px 20px 0px;
    }
    .catalog-filter__item > input, .select {
        width: calc(25% - 10px)
    }
    .filter-search > .filter-button.button{
        min-width: 130px;
    }
}
@media only screen and (max-width: 1250px) {
	.catalog-list{
		flex-wrap:wrap;
	}
} 
@media only screen and (max-width: 1210px) {
	.catalog-spisok__list .catalog__card{
		max-width:480px;
		width:100%;
	}
} 
@media only screen and (max-width: 820px) {
.catalog-block{
	flex-wrap:wrap;
}
.catalog-list{
	justify-content:center;
}
.catalog-left__block{
	max-width:450px !important;
	margin:0 auto !important;
}
    .catalog-filter__item.filter-search{
        padding-left: 0px;
    }
    .catalog-filter__item{
        flex-direction: column;
        max-width:50%;
    }
    .catalog-filter__item > input, .select {
        width: calc(100% - 10px);
        height: 45px;
    }
    .catalog-filter__item > input:not(:first-child), .select:not(:first-child) {
        margin-top: 5px;
    }
    .catalog-filter__item.filter-search,
    .filter-block{
        width: 100%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 1390px) {
    .catalog-filter__item > input, .select{
        max-width: 120px;
        height: 35px;
        font-size: 10px;
    }
    .catalog-filter__item .select,
    .catalog-filter__item .select__item{
        font-size:10px;
    }
    .filter-button.button>svg{
        height: 12px;
        margin-left: 5px;
    }
}
@media only screen and (max-width: 950px) {
    .link-back{
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 450px) {
    .catalog-name{
        font-size: 8px;
        line-height: 12px;
    }
    .product-name{
        font-size: 12px;
        line-height: 15px;
    }
    .in-stock{
        font-size: 8px;
        line-height: 10px;
    }
    .catalog-card__button{
        font-size: 10px;
        line-height: 20px;
        padding:0px 10px;
        max-width:100px;
        min-width: auto;
    }
    .catalog-card__price{
        font-size: 14px;
        line-height: 17px;
        padding: 6px 15px;
        width: 130px;
    }
    .catalog-nav__title{
        font-size: 15px;
        line-height: 15px;
    }
    .services-sub__catalog a,
    .catalog-nav__item a{
        font-size: 10px !important;
        line-height: 15px !important;
    }
    .catalog-nav__item{
        margin-bottom: 8px;
    }
    .catalog-nav{
        min-width: auto;
        width: 100%;
    }
    .link-back > a{
        display: flex;
        align-items: center;
        font-size: 15px;
        line-height: 18px;
    }
    .link-back > a>svg{
        width: 25px;
        margin-right: 10px;
    }
    .content{
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}
  /*end catalog*/


/*services*/
.services-main{
    padding-bottom: 100px;
}
.services-main__title{
    text-align: center;
}
.services-main>p{
    text-align: center;
    font-size: 24px;
    line-height: 30px;
}
.services-main__list{
    margin-top: 0px;
    overflow: hidden;
    padding: 0px 20px;
}
.services-main__list li{
    width: 100%;
    max-width: 590px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 20px 15px;
    align-items: center;
    margin-top: 45px;
    margin-bottom: 45px;
}
.services-item__img{
    max-width: 190px;
    width: 100%;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}
.services-item__text{
    max-width: calc(100% - 195px);
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}
.services-item__button.button{
    margin: 0 auto;
    border: 1px solid #0E4F95;
    color: #0E4F95; 
    box-sizing: border-box;
    background: transparent;
    max-width: 200px;
    width: 100%;
    text-transform: uppercase;
    font-weight: normal;
}
.services-item__button.button:hover{
    background: #0E4F95; 
    color: #fff
}
.services-item__text a{
    margin-top: 0px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
	display:inline-block;
width:100%;
}
.services-item__text a:not(:first-of-type){
    margin-top:5px;
}
.manufacturer-main__list .slick-next:before,
.manufacturer-main__list .slick-prev:before,
.services-main__list .slick-next:before,
.services-main__list .slick-prev:before{
    display: none;
}
.manufacturer-main__list .slick-next,
.manufacturer-main__list .slick-prev,
.services-main__list .slick-next,
.services-main__list .slick-prev{
    font-size: 0px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/slick-prev.svg);
    z-index: 5;
}
.manufacturer-main__list .slick-next,
.services-main__list .slick-next{
    background-image: url(../images/slick-next.svg);
    top: auto;
    bottom: 0px;
}
.services-main__slider{
    padding: 50px 0px;
    max-width: 1340px;
    margin: 0 auto;
}
@media only screen and (max-width: 1275px) {
    .services-main__list li{
        width: calc(50% - 25px);
        max-width: none;
    }
    .services-item__text p{
        font-size: 14px;
        line-height: 18px;
    }
}
@media only screen and (max-width: 992px) {
    .services-main__list .slick-track{
        text-align: center;
    }
    .services-main__list .slick-slide{
        width: 100%;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 600px) {
    .services-main__slider{
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .services-main__list li{
        margin-top:15px;
        margin-bottom: 15px;
    }
    .services-main__list{
        padding-bottom: 30px;
    }
    .services-item__text p{
        font-size: 12px;
        line-height: 14px;
    }
    .services-item__img{
        max-width: 130px;
    }
    .services-item__text{
        max-width: calc(100% - 135px);
    }
    .services-item__button.button{
        padding: 0px 10px;
        min-width: auto;
        font-size: 14px;
        line-height: 30px;
        max-width: 140px;
    }
    .services-main.content{
        padding-top: 0px !important;
        margin-top: -20px;
    }
    .services-main p{
        font-size: 15px;
        line-height:25px;
        margin-top: 10px;
    }
    .services-main br{
        display: none;
    }
}
@media only screen and (max-width: 390px) {
    .services-item__text p{
        font-size: 8px;
        line-height: 10px;
    }
    .services-item__img{
        max-width: 95px;
    }
    .services-item__text{
        max-width: calc(100% - 100px);
    }
    .services-item__button.button{
        font-size: 10px;
        line-height: 25px;
        max-width: 115px;
    }
    .services-main>p{
        font-size: 8px;
        line-height:13px;
    }
}
.services-catalog__list{
    margin-top: -30px;
}
.services-catalog__list .catalog-list__item{
	flex: 1 calc(50% - 20px);
	max-width:calc(50% - 20px);
}
.services-catalog .catalog-menu>div>p{
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin-top: 0px;
}
.services-catalog__block{
    margin-top: 50px;
}
.services-sub__catalog{
    background: #F0F0F0;
    border-radius: 0px 0px 5px 5px;
    margin-top: 0px;
    max-width: calc(100% - 28px);
    width: 100%;
    margin: 0 auto;
}
.services-sub__catalog li{
	text-align:center;
	padding:0px 30px;
}
.services-sub__catalog li:first-child{padding-top:15px;}
.services-sub__catalog li:last-child{padding-bottom: 15px;}
.services-sub__catalog a{
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}
.services-nav__list li.active .services-sub__catalog{
    display: block;
}
@media only screen and (max-width: 800px) {
	.services-catalog__list .catalog-list__item{
	flex: 1 100%;
	max-width:none;
}
}
@media only screen and (max-width: 600px) {
    .services-catalog__block{
        margin-top: 0px;
    }
    .services-catalog .catalog-menu>div>p{
        font-size:15px;
        line-height:20px;
    }
    .services-catalog.content{
        padding-top: 0px !important;
        margin-top: -20px;
    }
}
.news-main__item{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    padding: 10px 10px;
    align-items: center;
    margin-top: 25px;
}
.news-item__img{
    max-width: 540px;
    width: 100%;
}
.news-item__info{
    max-width: calc(100% - 540px);
    padding-left: 25px;
}
.news-item__title.title{
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}
.news-item__button.button{
    border-color:#0E4F95;
    background: transparent;
    color: #0E4F95;
    margin: 0 auto;
    margin-top: 25px;
    max-width:190px
}
.news-item__button.button:hover{
    background: #0E4F95;
    color:#fff;
}
.news-main__item>span{
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 35px;
    color: #FFFFFF;
    max-width: 180px;
    width: 100%;
    height: 35px;
    background: #0E4F95;
    border-radius: 0px 0px 5px 0px;
    text-transform: uppercase;
    text-align: center;
}
@media only screen and (max-width: 1170px) {
    .news-item__info{
        max-width: 100%;
        padding-left: 0px;
    }
    .news-item__title.title{
     text-align: left;   
    }
}
@media only screen and (max-width: 400px) {
    .news-item__title.title{
        font-size: 12px;
        line-height: 15px;
    }
    .news-item__info>p{
        margin-top: 10px;
    }
    .news-main__item>span{
        font-size: 8px;
        line-height: 15px;
        max-width: 80px;
        width: 100%;
        height: 15px;
    }
    .news-main.content{
        padding-top: 0px !important;
        margin-top: -20px;
    }
}
.about-us__main.content{
    padding-top: 0px !important;
}
.about-us__info{
    padding-top: 50px;
    max-width: 1440px;
    margin: 0 auto;
}
.about-gallery__title.title,
.about-info__title.title{
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
}
.about-us__main p{
    font-size: 20px;
    line-height: 30px;
}
.about-us__gallery{
    padding-top:70px
}
.about-gallery__list{
    align-items: stretch;
    margin-top: 40px;
}
.about-gallery__left{
    max-width: 1065px;
    width: 100%;
    height: 600px;
}
.about-gallery__item{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.about-gallery__right{
    padding-left: 45px;
    max-width: calc(100% - 1065px);
    width: 100%;
}
.about-gallery__bottom,
.about-gallery__top{
    width: 100%;
    height: 290px;
}
.about-gallery__bottom{
    margin-top: 20px;
}
@media only screen and (max-width: 1550px) {
    .about-gallery__left{
        max-width: 850px;
     }
    .about-gallery__right{
        max-width: calc(100% - 850px);
    }
}
@media only screen and (max-width: 1320px) {
    .about-gallery__left{
        max-width: 650px;
     }
    .about-gallery__right{
        max-width: calc(100% - 650px);
        padding-left: 20px;
    }
}
@media only screen and (max-width: 1320px) {
    .about-gallery__left{
        max-width: 100%;
        height: 500px
     }
    .about-gallery__right{
        max-width: calc(100% + 20px);
        width: calc(100% + 20px);
        margin-left: -20px;
        padding-left: 0px;
    }
    .about-gallery__right .about-gallery__item{
        margin-left: 20px;
        max-width: calc(50% - 20px);
    }
    .about-gallery__top,
    .about-gallery__bottom{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 1270px) {
    .about-info__title.title,
    .about-gallery__title.title{
        font-size: calc(10px + 28 * (100vw / 1710));
        line-height: calc(10px + 34 * (100vw / 1710));
    }
}
@media only screen and (max-width: 840px) {
    .about-us__info iframe{
        height: 400px;
    }
}
@media only screen and (max-width: 520px) {
    .about-us__info iframe{
        height: 250px;
    }
    .about-us__main p{
        font-size: 15px;
        line-height: 25px;
        margin-top: 20px;
    }
    .about-gallery__left{
        height: 300px
     }
    .about-gallery__right .about-gallery__item{
        height: 200px;
    }
}
@media only screen and (max-width: 400px) {
    .about-us__info{
        padding-top: 10px;
    }
    .about-us__info iframe{
        height: 200px;
    }
    .about-us__main p{
        font-size: 10px;
        line-height: 14px;
        margin-top: 10px;
    }
    .about-us__main{
        margin-top: -20px;
    }
    .about-us__gallery{
        padding-top:20px;
    }
    .about-gallery__list{
        margin-top: 10px;
    }
    .about-gallery__left{
        height: 280px
     }
    .about-gallery__right .about-gallery__item{
        height: 140px;
    }
    .about-gallery__right{
        max-width: calc(100% + 5px);
        width: calc(100% + 5px);
        margin-left: -5px;
    }
    .about-gallery__right .about-gallery__item{
        margin-left: 5px;
        max-width: calc(50% - 5px);
        margin-top: 5px;
    }
}
.manufacturer-main.content{
    padding-top: 0px !important;
}
.manufacturer-main__title.title{
    text-align: center;
}
.manufacturer-main>p{
    max-width: 1415px;
    margin: 0 auto;
    margin-top: 15px;
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #000000;
}
.manufacturer-main__list{
    margin-left: -90px;
    width: calc(100% + 90px);
    justify-content: center;
}
.manufacturer-main__item{
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 90px;
    width: calc(33.33% - 90px);
    height: 310px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:20px 20px;
    margin-top: 40px;
	z-index:0;
}
.manufacturer-main__item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}
.manufacturer-item__title.title{
    font-weight: bold;
    font-size: 42px;
    line-height: 51px;
    color: #FFFFFF;
    text-align: center;
z-index: 0;
}
.manufacturer-main__item>span{
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
z-index: 0;
}
@media only screen and (max-width: 1230px) {
    .manufacturer-main__list{
        margin-left: -30px;
        width: calc(100% + 30px);
    }
    .manufacturer-main__item{
        margin-left: 30px;
        width: calc(33.33% - 30px);
    }
}
@media only screen and (max-width: 1080px) {
    .manufacturer-main__item{
        width: calc(50% - 30px);
    }
}
@media only screen and (max-width: 780px) {
    .manufacturer-main__list{
        margin-left: 0px;
        max-width: 100%;
    }
    .manufacturer-main__item{
        width: 100%;
        display: flex !important;
        margin-left: 0px;
    }
    .manufacturer-main__list{
        margin-top: 50px;
        padding-bottom: 50px;
        padding-top: 10px;
    }
}
@media only screen and (max-width: 570px) {
    .manufacturer-main p{
        font-size: 15px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 390px) {
    .manufacturer-main{
        margin-top: -20px;
    }
    .manufacturer-main p{
        font-size: 8px;
        line-height: 14px;
    }
    .manufacturer-main__list{
        margin-top: 10px;
    }
    .manufacturer-main__item{
        height: 155px;
    }
    .manufacturer-item__title.title{
        font-size: 24px;
        line-height: 30px;
    }
    .manufacturer-main__item>span{
        font-size: 12px;
        line-height: 14px;
    }
}

/.tab {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  min-height: 360px;
}
.tab ul {
  list-style: none;
  margin: 0;
}
.tab__header > ul {
  justify-content: flex-start;
}
.tab__header li {
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding-bottom: 9px;
  margin-bottom: 15px;
}
.tab__header li:hover,
.tab__header li.active {
  font-weight: bold;
}
.tab__header li:not(:first-child) {
  margin-left: 30px;
}
.tab__header li:before,
.tab__header li:after {
  content: "";
  position: absolute;
  bottom: 2px;
  background-color: #b33a3a;
  height: 2px;
  width: 0%;
  transition: all 0.4s ease-in-out;
}
.tab__header li:before {
  left: 50%;
}
.tab__header li:after {
  right: 50%;
}
.tab__header li:hover:before,
.tab__header li:hover:after,
.tab__header li.active:before,
.tab__header li.active:after {
  width: 50%;
}

.tab__body > div {
  display: none;
}
.tab__body > div.active {
  display: block;
  padding: 45px;
  background-color: #f2f2f2;
}
.tab__body > div.tab__question.active{
  display: flex;
}
.tab__body > div li {
  flex-wrap: nowrap;
  align-items: center;
  width: 45%;
  padding-bottom: 9px;
  margin-bottom: 25px;
  border-bottom: 2px solid #c4c4c4;
}
.tab__body b {
  padding-right: 25px;
}
.tab__body i {
  font-style: normal;
  white-space: nowrap;
}
.tab__question ul{
  width: 44%;
}
.tab__question ul li{
  width: 100% !important;
}
.tab__body .tab__question li {
  cursor: pointer;
  position: relative;
}
.tab__body .tab__question li .question__title {
  flex-wrap: nowrap;
  align-items: center;
}
.tab__body .tab__question li.active {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.tab__body .tab__question li svg.minus {
  display: none;
}
.tab__body .tab__question li svg.plus {
  display: block;
}
.tab__body .tab__question li.active svg.minus {
  display: block;
}
.tab__body .tab__question li.active svg.plus {
  display: none;
}
.tab__body .question__dropblock {
  position: absolute;
  transform: scale(0);
}
.tab__body .tab__question li.active .question__dropblock {
  position: relative;
  transform: scale(1);
  z-index: 10;
  width: 100%;
  margin-top: 9px;
  margin-bottom: 20px;
  padding: 25px;
  font-size: 16px;
  background-color: #fff;
}
.tab__body p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 22px;
}
/* *** tab $end *** */

/* *** card $end *** */
.card {
  font-size: 20px;
  line-height: 24px;
}
.sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
.card-big__photo {
  overflow: hidden;
  max-width: 810px;
  width: 100%;
  height: 550px;
  position: relative;
}
.card-photo__list {
  max-width: 810px;
  width: 100%;
}
.card-big__photo img {
  position: absolute;
  top: 0;
  left: -9999px;
  right: -9999px;
  margin: 0 auto;
  max-width: none;
  height: 550px;
  min-width: 100%;
}
.card-photo__list a {
  position: relative;
  width: calc(1/4*100% - (1 - 1/4)*30px);
  height: 120px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 20px;
}
.card-photo__list img {
  position: absolute;
  top: 0;
  left: -9999px;
  right: -9999px;
  margin: 0 auto;
  max-width: none;
  height: auto;
  width: auto;
  opacity: 0.5;
}
.card-photo__img img.active {
  opacity: 1;
}

.card-big__photo img {
  display: none;
}

.card-big__photo .active {
  display: block;
}
.item-card__list {
  align-items: center;
}
.item-card__info a.card-button {
  width: auto !important;
}
.item-card__info,
.item-card__info ul {
  font-weight: bold;
}
.item-card__info ul {
  margin: 47px 0;
}
.item-card__info li:not(:last-child) {
  margin-bottom: 20px;
}
.item-card__info li > span {
  font-weight: normal;
}
.item-card__info .card-price {
  color: #0e4f95;
  text-align: center;
}
.item-card__info .card-title {
  font-size: 24px;
}
.button.card-button {
  background: #0e4f95;
  border: 1px solid #0e4f95;
  display: inline-block;
  padding: 0 60px;
max-height: 55px;
line-height: 55px;
font-size: 22px;
}
.button.card-button:hover {
  color: #0e4f95;
  background: transparent;
}
.item-card__photo {
  width: 55%;
}
.item-card__info {
  width: 45%;
  margin-bottom: 130px;
  text-align: center;
	padding-left:25px;
}
.item-card__info li {
  white-space: nowrap;
}
.item-card__info>p,
.item-card__info>p>a{
	font-size:25px;
	line-height:32px
}
/* *** card $end *** */
/* template media quires*/
/* calc(120px + 400 * (100vw / 1710)) */
@media only screen and (max-width: 1200px) {
  .card,
  .tab {
    font-size: calc(10px + 10 * (100vw / 1710));
    line-height: calc(12px + 10 * (100vw / 1710));
  }
  .item-card__info .card-title {
    font-size: calc(12px + 12 * (100vw / 1710));
    line-height: calc(14px + 12 * (100vw / 1710));
  }
  .item-card__photo {
    width: 60%;
  }
  .item-card__info {
    width: 35%;
  }
  .sub-title {
    font-size: calc(13px + 12 * (100vw / 1710));
    line-height: calc(15px + 12 * (100vw / 1710));
    font-weight: normal;
  }
  .card-big__photo {
    height: calc(120px + 400 * (100vw / 1710));
    max-width: calc(280px + 530 * (100vw / 1710));
  }
  .card-photo__list {
    max-width: calc(280px + 530 * (100vw / 1710));
  }
  .card-big__photo img {
    height: calc(120px + 400 * (100vw / 1710));
  }
  .card-photo__list a {
    width: calc(1/4*100% - (1 - 1/4)*10px);
    height: calc(40px + 80 * (100vw / 1710));
    margin-top: calc(11px + 8 * (100vw / 1710));
  }
  .item-card__info li:not(:last-child) {
    margin-bottom: calc(8px + 12 * (100vw / 1710));
  }
  .button.card-button {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: calc(30px + 30 * (100vw / 1710));
    padding-right: calc(30px + 30 * (100vw / 1710));;
    line-height: calc(25px + 20 * (100vw / 1710));
  }

  .tab__body > div.active {
    padding: calc(10px + 35 * (100vw / 1710));
    padding-bottom: calc(1px + 35 * (100vw / 1710));
  }
  .tab__body > div li {
    padding-bottom: calc(5px + 4 * (100vw / 1710));
    margin-bottom: calc(15px + 10 * (100vw / 1710));
  }
  .tab__body .tab__question li.active .question__dropblock {
    padding: calc(5px + 20 * (100vw / 1710));
    font-size: calc(8px + 8 * (100vw / 1710));
    line-height: calc(11px + 11 * (100vw / 1710));
  }
  .tab__body p {
    font-size: calc(10px + 8 * (100vw / 1710));
    line-height: calc(13px + 9 * (100vw / 1710));
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  .item-card__photo {
    width: 100%;
  }
  .tab__body > div li {
    width: 48%;
  }
  .tab__body > div.tab__question ul {
    width: 48%;
  }
  .title.general.card-price {
    margin-bottom: 8px;
  }
  .item-card__info {
    margin-top: 30px;
    margin-bottom: 15px;
    width: 100%;
padding-left:0px;
  }
  .item-card__info ul {
    width: 40%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 581px) {
  .item-card__info ul {
    width: 50%;
    margin: 0 auto;
  }
.item-card__info>p,
.item-card__info>p>a{
	font-size:15px;
	line-height:25px
}
}
@media only screen and (max-width: 450px) {
  .item-card__info ul {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 350px) {
  .item-card__info ul {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 950px) {
  .tab__body > div li {
    width: 100%;
  }
  .tab__body > div.tab__question ul {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .tab__header > ul {
    flex-direction: column;
  }
  .tab__header li:not(:first-child) {
    margin-left: 0;
  }
  .tab__header li {
    margin-bottom: calc(5px + 5 * (100vw / 1710));
  }
}

/*=============== contacts style ===============*/
/*=============== contacts $begin ===============*/
.contacts {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  padding-top: 0;
}
.contact-container {
  position: relative;
  padding: 40px;
  padding-top: 0;
  border-radius: 5px;
  text-align: left
}
.contact-container:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 25px);
  border: 1px solid #000;
  z-index: -1;
  border-radius: 5px;
}
.contact-title {
  display: inline-block;
  width: auto;
  padding: 1px 25px;
  text-align: left;
  background: #fff;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 15px;
  margin-top: 0px !important;
}
.contact-map {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  height: 640px;
}
.contact-info {
  background: #FFFFFF;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 15px;
  flex-wrap: nowrap;
  margin-top: 35px;
}
.contact-info__item h4.title.lower {
  color: #000;
  white-space: pre-wrap;
}
.contact-data {
  justify-content: flex-start;
}
.contact-tel {
  text-align: right;
  margin-left: 20px;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
}
.contact-info__item.contact-tel .button{
	color:#fff !important
}
.contact-tel__info br{
display:none;}
.mod-job {
  text-align: left;
  padding-right: 50px;
  margin-top: 30px;
}
.mod-job__label {
  font-weight: normal;
}
.contact-email {
  text-align: left;
  padding-right: 50px;
  margin-left: 100px;
  margin-top: 30px;
}
.contact-email__label {
  font-weight: normal;
}
.contact-tel__label {
  font-weight: normal;
}
.bx-yandex-map{
	width: 100%;
	min-width: 100%;
	height: 640px !important;
}
@media only screen and (max-width: 1600px) {
  /* calc(120px + 400 * (100vw / 1710)) */
  .contact-info__item h4.title.lower {
    color: #000;
    white-space: pre-wrap;
  }
.bx-yandex-map,
.contact-map {
  height: calc(100px + 540 * (100vw / 1710)) !important;
}
  .contacts,
  .contact-info__item h4.title.lower {
    font-size: calc(10px + 10 * (100vw / 1710));
    line-height: calc(14px + 10 * (100vw / 1710));
  }
  .contact-container {
    padding: calc(6px + 32 * (100vw / 1710));
    padding-top: 0;
  }
  .contact-title {
    font-size: calc(9px + 20 * (100vw / 1710));
  }
  .contact-info {
    padding: calc(5px + 10 * (100vw / 1710));
    margin-top: calc(18px + 15 * (100vw / 1710));
  }
  .mod-job {
    padding-right: calc(30px + 20 * (100vw / 1710));
    margin-top: calc(10px + 20 * (100vw / 1710));
  }
  .contact-email {
    padding-right: calc(30px + 20 * (100vw / 1710));
    margin-left: calc(-60px + 100 * (100vw / 1710));
    margin-top: calc(10px + 20 * (100vw / 1710));
  }
}
@media only screen and (max-width: 800px) {
  .contact-info {
    flex-wrap: wrap;
  }
  .contact-data {
    flex-direction: column;
  }
  .contact-email {
    margin-left: 0;
  }
  .contact-tel {
    margin-top: calc(10px + 20 * (100vw / 1710));
    margin-left: 0;
    text-align: left;
  }
}

/*=============== contacts $end ===============*/
.partners h1.title.title.general {
  padding-bottom: 80px;
}
.partners-list {
  justify-content: space-around;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-bottom: 30px;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px 30px;
  margin-bottom: 40px;
  max-width: 470px;
  margin-left: 50px;
  width: 100%;
  height: 200px;
}


@media only screen and (max-width: 1060px) {
  .partners h1.title.title.general {
    padding-bottom: calc(25px + 50 * (100vw / 1710));
  }
  .partners-list {
    margin-left: 0;
  }
  .partner-item {
    margin-left: calc(20px + 30 * (100vw / 1710));
    padding: 10px 30px;
    margin-bottom: calc(20px + 20 * (100vw / 1710));
    max-width: calc(210px + 255 * (100vw / 1710));
    width: 100%;
    height: 200px;
    height: calc(95px + 100 * (100vw / 1710));
  }
}
@media only screen and (max-width: 500px) {
  .partner-item {
    margin-left: 0;
  }
}
/*=============== partners style ===============*/
/*=============== partners $begin ===============*/
.partners h1.title.title.general {
  padding-bottom: 80px;
}
.partners-list {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-bottom: 30px;
}
.partner-item {
  flex: 0 1 calc(33.333% - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
background:#fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px 30px;
  margin-bottom: 40px;
  margin-left: 50px;
  height: 200px;
}


@media only screen and (max-width: 1060px) {
  .partners h1.title.title.general {
    padding-bottom: calc(25px + 50 * (100vw / 1710));
  }
  .partners-list {
    margin-left: -35px;
  }
  .partner-item {
    flex: 0 1 calc(33.333% - 35px);
    margin-left: 35px;
    padding: 10px 30px;
    margin-bottom: calc(20px + 20 * (100vw / 1710));
    width: 100%;
    height: calc(95px + 100 * (100vw / 1710));
  }
}
@media only screen and (max-width: 800px) {
  .partner-item {
    flex: 0 1 calc(50% - 35px);
  }
}
@media only screen and (max-width: 500px) {
  .partners-list {
    margin-left: 0;
  }
  .partner-item {
    flex: 0 1 100%;
    margin-left: 0;
  }
}
/*=============== partners $end ===============*/


.card-services__content{
    max-width: 870px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    margin:0 auto;
    align-items: center;
    padding: 25px 30px;
}
.card-services__img{
    max-width: 60%;
    width: 100%;
}
.card-services__text{
    max-width: 40%;
    width: 100%;
}
.card-services__text p{
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    text-align: center;
    margin-top: 0px;
}
.card-services__text a{
    font-weight: normal;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    border-bottom: 2px solid#B33A3A;
}
@media only screen and (max-width: 680px) {
    .card-services__content{
        flex-wrap:nowrap;
    }
    .card-services__text a,
    .card-services__text p{
        font-size: 15px;
        line-height: 20px;
    }
    .card-services__content{
        padding: 15px 10px;
    }
}
@media only screen and (max-width: 410px) {
    .card-services__text a,
    .card-services__text p{
        font-size: 10px;
        line-height: 16px;
    }
}



.services-double-nav__list li{
	width: 100%;
  padding: 8px 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #000000;
  white-space: pre-wrap;
  background: #f0f0f0;
  cursor: pointer;
text-align:center;
}

.services-double-nav__list li:hover,
.services-double-nav__list li.mixitup-control-active {
  transition: all 0.6s;
  background: #b33a3a;
  color: #fff;
}
.brand-detail__catalog,
.brand-detail__services{
	margin-top:-30px;
}
.popup-window{
	max-width:370px;
	width:100%;
}
/*=============== documents $begin ===============*/
.docs {
  text-align: left;
  color: #000;
}
.docs h1.title.general {
  margin-bottom: 100px;
}
.document {
  margin-top: 50px;
}
.document h4.title.lower {
  font-weight: normal;
  margin-top: 8px;
}
.doc-item {
  position: relative;
  padding: 15px;
  margin-top: 45px;
  max-width: 715px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.doc-item.flex-block {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.doc-item .extreme-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 100%;
  max-height: 54px;
  max-width: 54px;
  width: 100%;
  height: 100%;
  right: -25px;
  top: -25px;
}
.doc-icon {
  position: relative;
  background: #ffffff;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.doc-info {
  margin-left: 25px;
}
.doc-info p {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 12px;
  color: #000;
}
.doc-info i {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
}
/* template */
/* calc(20px + 20 * (100vw / 1710)); */
@media only screen and (max-width: 1500px) {
  .docs h1.title.general {
    margin-bottom: calc(25px + 25 * (100vw / 1710));
  }
  .document {
    margin-top: calc(20px + 30 * (100vw / 1710));
  }
  .document h4.title.lower {
    margin-top: 8px;
  }
  .document h3.title.middle {
    font-size: calc(12px + 12 * (100vw / 1710));
    line-height: calc(16px + 12 * (100vw / 1710));
  }
  .document h4.title.lower {
    font-size: calc(7px + 13 * (100vw / 1710));
    line-height: calc(11px + 9 * (100vw / 1710));
  }
  .doc-item {
    padding: calc(5px + 15 * (100vw / 1710));
    margin-top: calc(25px + 20 * (100vw / 1710));
  }
  .doc-item .extreme-circle {
    padding: 5px;
    max-height: 54px;
    max-width: 54px;
    right: -25px;
    top: -25px;
  }
  .doc-icon {
    width: calc(22px + 38 * (100vw / 1710));
    height: calc(22px + 38 * (100vw / 1710));
  }
  .doc-info {
    margin-left: calc(7px + 15 * (100vw / 1710));
  }
  .doc-info p {
    font-size: calc(9px + 8 * (100vw / 1710));
  }
  .doc-info i {
    margin-top: 6px;
    font-size: 16px;
    line-height: 20px;
    font-size: calc(8px + 8 * (100vw / 1710));
    line-height: calc(12px + 8 * (100vw / 1710));
  }
}
@media only screen and (max-width: 1300px) {
  .doc-item .extreme-circle svg {
    width: calc(18px + 13 * (100vw / 1710));
    height: calc(18px + 13 * (100vw / 1710));
  }
  .doc-item .extreme-circle {
    padding: 5px;
    max-height: calc(30px + 24 * (100vw / 1710));
    max-width: calc(30px + 24 * (100vw / 1710));
  }
}
@media only screen and (max-width: 800px) {
  .doc-item {
    max-width: calc(100% - 30px);
  }
  .doc-item .extreme-circle {
    padding: 3px;
    right: -20px;
    top: -20px; 
  }
}
@media only screen and (max-width: 600px) {
  .doc-item .extreme-circle {
    padding: 2px;
    right: -15px;
    top: -15px;
  }
}
.extreme-circle {
  display: inline-block;
  position: absolute;
  right: -45px;
  top: -45px;
  padding: 15px;
  border-radius: 100%;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  cursor: pointer;
  max-height: 55px;
  max-width: 55px;
}
/*=============== documents $end ===============*/
/*=============== leaders $begin ===============*/
.leaders,
.leaders .sub-title  {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  text-align: left;
}
.leaders .sub-title {
  font-weight: normal;
  margin-top: 10px;
}
.leads {
  margin-top: 65px;
}
.leads p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  margin-top: 6px;
}
.leads-list {
  justify-content: flex-start;
}
.lead-item {
  flex: 0 1 calc(100% / 3 - 30px);
  min-height: 350px;
  margin-right: 30px;
  margin-top: 30px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.lead-item div {
  text-align: center;
  margin-bottom: 30px;
}
.lead-item strong {
  display: inline-block;
  white-space: pre-wrap;
  font-size: 20px;
  line-height: 28px;
  border-bottom: 2px solid #B33A3A;
  padding-bottom: 2px;
white-space: nowrap;
}
.lead-item b {
  display: block;
  font-size: 16px;
}
.lead-item i {
  display: block;
  font-style: normal;
}.lead-item i:not(:last-child) {
  margin-bottom: 28px;
}
/* calc(30px + 24 * (100vw / 1710)); */
@media only screen and (max-width: 1400px) {
  .leaders,
  .leaders .sub-title  {
    font-size: calc(9px + 10 * (100vw / 1710));
    line-height: calc(12px + 10 * (100vw / 1710));
  }
  .leaders h1.title.general {
    font-size: calc(14px + 14 * (100vw / 1710));;
  }
  .leaders h3.title.middle {
    font-size: calc(12px + 14 * (100vw / 1710));;
  }
  .leaders .sub-title {
    margin-top: calc(2px + 8 * (100vw / 1710));
  }
  .leads {
    margin-top: calc(20px + 45 * (100vw / 1710));
  }
  .leads p {
    font-size: calc(7px + 10 * (100vw / 1710));
    line-height: calc(10px + 10 * (100vw / 1710));
    margin-top: calc(1px + 8 * (100vw / 1710));
  }
  .lead-item {
    min-height: calc(125px + 225 * (100vw / 1710));
    margin-top: calc(20px + 10 * (100vw / 1710));
    padding: calc(8px + 10 * (100vw / 1710));
  }
  .lead-item div {
    margin-bottom: calc(10px + 20 * (100vw / 1710));
  }
  .lead-item strong {
    font-size: calc(10px + 10 * (100vw / 1710));
    line-height: calc(14px + 10 * (100vw / 1710));
  }
  .lead-item b {
    font-size: calc(7px + 9 * (100vw / 1710));
  }
  .lead-item i:not(:last-child) {
    margin-bottom: calc(9px + 19 * (100vw / 1710));
  }
}
@media only screen and (max-width: 800px) {
  .lead-item {
    flex: 0 1 calc(100% / 2 - 30px);
    margin-right: 30px;
  }
}
@media only screen and (max-width: 550px) {
  .lead-item {
    flex: 0 1 100%;
    margin-right: 0;
  }
}

/*=============== leaders $end ===============*/
/*=============== vacancy $begin ===============*/
.vacancy {
  font-size: 18px;
  line-height: 22px;
}
.vacancy__sub-title {
  margin-top: 15px;
  margin-bottom: 70px;
  text-align: left;
}
.vacancy-category {
  color: #000;
  padding: 25px 0;
  text-align: left;
  max-width: 1200px;
  width: 100%;
}
.vacancy-category h3 {
  margin-bottom: 20px;
}
.vacancy-category b {
  display: inline-block;
width:100%;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 6px;
}
.vacancy-category i {
  display: block;
  width: 100%;
  font-style: normal;
}
.vacancy-item {
  padding: 25px;
  background: #ffffff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-bottom: 45px;
}
.vacancy-item .flex-block {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.vacancy-item__left {
  flex: 0 1 50%;
}
.vacancy-item__right {
  flex: 0 1 calc(50% - 40px);
  margin-left: 40px;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #0E4F95;
}
.vacancy__pop-up {
  position: absolute;
  top: 0;
  left: -200%;
  transform: scale(0.9);
  transition: transform 0.4s ease-in-out;
	z-index:-1;
opacity:0;
}
.vacancy-item .flex-block.active + .vacancy__pop-up {
  position: relative;
  transform: scale(1);
  left: 0;
z-index:0;
opacity:1;
}
.vacancy__pop-up b {
  display: inline-block;
  width: auto;
  padding: 2px 0;
  border-bottom: 2px solid #0E4F95;
}
.vacancy__pop-up div {
  margin-top: 25px;
}
.vacancy__pop-up a {
  display: inline-block;
}
.extreme-circle {
  display: inline-block;
  position: absolute;
  right: -45px;
  top: -45px;
  padding: 15px;
  border-radius: 100%;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  cursor: pointer;
  max-height: 55px;
  max-width: 55px;
}
.vacancy-item .flex-block .extreme-circle > svg.vac-minus {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}
.vacancy-item .flex-block .extreme-circle > svg.vac-plus {
  position: relative;
  opacity: 1;
  transform: scale(1);
}
.vacancy-item .flex-block.active .extreme-circle > svg.vac-minus {
  position: relative;
  opacity: 1;
  transform: scale(1);
}
.vacancy-item .flex-block.active .extreme-circle > svg.vac-plus {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

/* template */
/* calc(20px + 20 * (100vw / 1710)); */
@media only screen and (max-width: 1300px) {
  .vacancy {
    font-size: calc(9px + 10 * (100vw / 1710));
    line-height: calc(12px + 10 * (100vw / 1710));
  }
  .vacancy__sub-title {
    font-size: calc(10px + 10 * (100vw / 1710));
    line-height: calc(12px + 10 * (100vw / 1710));
    margin-top: calc(2px + 12 * (100vw / 1710));
    margin-bottom: calc(17px + 50 * (100vw / 1710));
  }
  .vacancy-category {
    padding: 25px 0;
    max-width: calc(100% - 30px);
    width: 100%;
  }
  .vacancy-category h3.title.middle {
    font-size: calc(12px + 12 * (100vw / 1710));
    line-height: calc(14px + 14 * (100vw / 1710));
    margin-bottom: 20px;
  }
  .vacancy-category b {
    font-size: 20px;
    line-height: 24px;
    font-size: calc(10px + 12 * (100vw / 1710));
    line-height: calc(12px + 14 * (100vw / 1710));
    margin-bottom: 6px;
  }
  .vacancy-item {
    margin-bottom: calc(30px + 20 * (100vw / 1710));
  }
  .vacancy-item__left {
    flex: 0 1 50%;
  }
  .vacancy-item__right {
    flex: 0 1 calc(50% - 40px);
    margin-left: 40px;
    font-size: calc(12px + 12 * (100vw / 1710));
    line-height: calc(14px + 14 * (100vw / 1710));
  }
  .vacancy-item .flex-block.active + .vacancy__pop-up {
    position: relative;
    transform: scale(1);
    left: 0;
  }
  .vacancy__pop-up b {
    display: inline-block;
    width: auto;
    padding: 2px 0;
    border-bottom: 2px solid #0E4F95;
  }
  .vacancy__pop-up div {
    margin-top: calc(9px + 14 * (100vw / 1710));
  }
  .extreme-circle {
    right: -45px;
    top: -45px;
    padding: calc(5px + 10 * (100vw / 1710));
    max-height: calc(30px + 25 * (100vw / 1710));
    max-width: calc(30px + 25 * (100vw / 1710));
  }
  .extreme-circle svg {
    width: calc(15px + 10 * (100vw / 1710));
    height: calc(15px + 10 * (100vw / 1710));
  }
}
@media only screen and (max-width: 800px) {
  .vacancy-item {
    padding: 15px;
  }
  .vacancy-item__left {
    flex: 0 1 100%;
  }
  .vacancy-item__right {
    flex: 0 1 100%;
    margin-left: 0;
    margin-top: 5px;
  }
  .vacancy-category {
    padding: 10px 0;
  }
  .extreme-circle {
    right: -30px;
    top: -30px;
  }
  .content.vacancy {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .content.vacancy {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .vacancy-item {
    padding: 5px;
  }
  .extreme-circle {
    right: -20px;
    top: -20px;
  }
}
@media only screen and (max-width: 500px) {
  .vacancy-category {
    padding: 0;
  }
  .content.vacancy {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 449px) {
  .link-back-content {
    padding-bottom: 0 !important;
  }
}

/*=============== vacancy $end ===============*/
.sender__title{
	text-align:center;
	
}
.sender__form{
    max-width: 520px;
    width: 100%;
    margin: 0 auto;

}
.sender__form input:not(.inputfile){
	width: 100%;
height: 50px;
padding: 0px 15px;
border: 2px solid #0E4F95;
outline: none;
border-radius: 10px;
margin-top: 30px;
font-family: 'Montserrat';
}
.inputfile{
margin-top:30px; width:100%;}
.sender__form form{
text-align:left;}
.sender__form input[type="submit"]{
	max-width:200px;
	border: 2px solid #0E4F95;
background:#0E4F95;
cursor:pointer;
font-size:18px;
color:#fff;
}
.header-none:after,
.header-none header,
.header-none footer{
	display:none;
}
.wrapper{
    position: relative;
    max-width: 1000px;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0,0,0,0.6);
}
.contacts__logo{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: calc(30px + 70 * (100vw / 1710));
}
.wrapper__content{
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    padding: 0px 30px;
	margin-top:150px;
	padding-bottom:50px;
}
.wrapper__content .title{
    text-align: center;
}
.wrapper__form{
    max-width: 520px;
    width: 100%;
    margin:0 auto;
    margin-top: 40px;
}
.wrapper__form input{
    height: 40px;
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border: none;
    font-family: Montserrat;
    font-weight: normal;
    font-size: calc(12px + 6 * (100vw / 1710));
    line-height: 22px;
    color: #FFFFFF;
    border-bottom: 2px solid #fff;
    padding: 0px calc(12px + 13 * (100vw / 1710));
    outline: none;
}
.wrapper__form input[type="submit"]{
    display: block;
    border: 2px solid #fff;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.5s;
text-transform:uppercase;
}
.wrapper__form input[type="submit"]:hover{
    background: #fff;
    color: #000;
}
.popup-contacts{
	position: fixed;
	top: -100%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 1s;
	max-width:700px;
	width:calc(100% - 60px);
z-index: 1000;
}
.popup-contacts.active{
	top:50%;
	
}
.popup-close.left{
	position: absolute;
top: 20px;
background: transparent;
z-index: 1;
left: 20px;
width: 40px;
height: 40px;
}
.popup-close.right{
position: absolute;
top: 20px;
background: transparent;
z-index: 1;
right: 20px;
width: 40px;
height: 40px;
}
@media only screen and (max-width: 520px) {
	.wrapper__content{
		margin-top:70px
	}
}
@media only screen and (max-width: 420px) {
    .wrapper__content{
        padding:0px 20px;
	padding-bottom: 50px;
    }
}
.contacts-right__logo{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: calc(30px + 70 * (100vw / 1710));
}
/*=============== history $begin ===============*/
.history-list.mob {
  display: none;
}
.histories,
.histories .sub-title {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  text-align: left;
}
.histories .sub-title {
  font-weight: normal;
  margin-top: 10px;
}
.history-list {
  justify-content: space-around;
}
.history-block {
  flex: 0 1 calc(50% - 86px);
}
.history-item {
    width: 49%;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  min-height: 250px;
  padding: 50px;
  margin-top: 48px;
}
.history-item .history-item__info {
  padding-right: 20px;
  display: block;
  width: 100%;
}
.history-item b {
  font-weight: bold;
  font-size: 48px;
  line-height: 59px;
  color: #0E4F95;
}
.history-item i {
  display: block;
  width: 100%;
  font-style: normal;
  font-weight: bold;
}
.history-row {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.history-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
}
.history-column .flex-block {
  max-width: 50%;
  display: flex !important;
}

@media only screen and (max-width: 1700px) {
  .histories,
  .histories .sub-title {
    font-size: calc(10px + 10 * (100vw / 1710));
    line-height: calc(12px + 10 * (100vw / 1710));
  }
  .histories .sub-title {
    margin-top: calc(2px + 8 * (100vw / 1710));
  }
  .history-list {
    justify-content: space-around;
  }
  .history-block {
    flex: 0 1 calc(50% - 86px);
  }
  .history-item {
    min-height: calc(85px + 165 * (100vw / 1710));
    margin-top: calc(20px + 28 * (100vw / 1710));
  }
  .history-item.history-row {
    padding: calc(10px + 40 * (100vw / 1710));
  }
  .history-item .history-item__info {
    padding-right: calc(3px + 40 * (100vw / 1710));
  }
  .history-item b {
    font-size: calc(20px + 24 * (100vw / 1710));
    line-height: calc(24px + 30 * (100vw / 1710));
  }
}
@media only screen and (max-width: 1300px) {
  .history-block {
    flex: 0 1 calc(50% - 50px);
  }
}
@media only screen and (max-width: 1000px) {

  .history-list.mob {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .history-item {
    max-width: 730px;
  }
}
@media only screen and (max-width: 860px) {
    .history-block {
        flex-flow: column;
    }
  .history-item {
      width: 100%;
    padding: calc(7px + 40 * (100vw / 1710));
  }
}
/*=============== history $end ===============*/
.contact-map>ymaps,
.locations .locations__item>ymaps{
	width:100% !important;
}
.contact-map>ymaps{
	height:100% !important;
}
.news-detail img{
	max-width:500px;
}
.history-back{
	display:inline-block;
	width:100%;
	text-align:left;
	margin-top:25px;
}
.vakancy-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(0,0,0,0.5);
display:none;
transition: all 0.5s
}
.vakancy-popup__content{
	max-width: 540px;
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: rgb(255,255,255);
	padding: 30px 20px;
	border-radius: 10px;
	transition:all 0.5s;
}
.vakancy-popup.active{
	display:block;
}
.vakancy-popup.active .vakancy-popup__content{
	top:50%;
}
.vakancy-popup .popup-close.right{
	width:20px;
	height:20px;
	right:10px;
	top:10px;
}
.services-item__popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
z-index:100;
display:none;
}
.services-popup__content{
position: absolute;
top: -100%;
left: 50%;
transform: translate(-50%,-50%);
max-width: 520px;
width: 100%;
border-radius: 15px;
background: rgb(255,255,255);
padding: 20px 25px;
}
.services-item__popup.is-show,
.services-item__popup.active{
	display:block;
}
.services-item__popup.is-show .services-popup__content,
.services-item__popup.active .services-popup__content{
	top:50%;
}
.services-popup__content .popup-close.right{
	top:10px;
	right:10px;
	width:20px;
	height:20px;
}
.services-popup__title.title{
	text-align:center;
}
.brands-detail .content{
	padding:0px 0px !important
}
.wrapper__form input::-webkit-input-placeholder {color:#fff;}
.wrapper__form input::-moz-placeholder          {color:#fff;}/* Firefox 19+ */
.wrapper__form input:-moz-placeholder           {color:#fff;}/* Firefox 18- */
.wrapper__form input:-ms-input-placeholder      {color:#fff;}
.wrapper__form  input[placeholder]          {text-overflow:ellipsis;}
.wrapper__form  input::-moz-placeholder     {text-overflow:ellipsis;} 
.wrapper__form  input:-moz-placeholder      {text-overflow:ellipsis;} 
.wrapper__form  input:-ms-input-placeholder {text-overflow:ellipsis;}  
.sub-menu__servic li{width:33.333%;margin-top:20px !important}
.sub-menu__servic {display:none;align-items:center;flex-wrap:wrap;justify-content:space-between;padding-top:30px !important}
.header-menu__list li:hover .sub-menu__servic{display:flex !important}
.sub-menu__servic .sub-menu__icon{max-width:60px !important}
.services-popup__content>p{color:#0E4F95;font-size:20px}
.blog-page-navigation{margin-top:30px;display: flex;justify-content: center;}
.blog-page-navigation a,
.blog-page-navigation span{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 30px;
    white-space: nowrap;
border-radius:5px;
    padding: 10px 10px;
margin-left:20px;
}
.blog-page-navigation a:hover,
.blog-page-navigation span{background: #0e4f95;color: #fff;}
.blog-page-previous,
.blog-vert-separator,
.blog-page-next{display:none !important;}


/****a3hack style START*****/
.catalog-section-left{
    width: 25%;
}
.catalog-section-right{
    width: 72%;
}
.services-catalog__list{
    margin-top: 0;
    flex-flow: column;
}

.services-catalog__list .catalog-list__item{
    width: auto;
    max-width: unset;
    display: inline-block;
    padding: 7px;
    margin-top: 10px;
}

.services-catalog__list .catalog-list__item:first-child{
    margin-top: 0;
}

.product-name{
    text-transform: none;
    font-size: 16px;
    line-height: 20px;
}
.catalog-section-map-block{
    margin-bottom: 20px;
}

.catalog-section-description{
    text-align: left;
}
.catalog-element-content{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}
.catalog-element-top,
.catalog-element-bottom{
    width: 100%;
}
.catalog-element-top{
    margin-bottom: 30px;
}
.catalog-element-left,
.catalog-element-right{
    width: 50%;
}
.catalog-element-right{
    padding-left: 20px;
}
.catalog-element-left .sender__form{
    margin: 0;
}
.catalog-nav-service{
    margin-top: 35px;
}
.catalog-element-form-header{
    text-align: center;
}
.catalog-element-form input[type="submit"]{
    display: block;
    margin: 30px auto 0 auto;
}

.main-section{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.main-section-left,
.main-section-right{
    width: 49%;
}

.section-list__block-list{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
}

.section-list-block{
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 49%;
    max-width: 590px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 25%);
    border-radius: 5px;
    padding: 20px 15px;
    align-items: flex-start;
    margin-top: 45px;
    margin-bottom: 45px;
    margin: 0px 2% 45px 0px;
}

.section-list-block:nth-child(2n){
    margin-right: 0;
}

.services-item__elements-list{
    padding-left: 20px;
}

.services-item__title .services-item__element{
    margin-bottom: 15px;
    font-size: 18px;
}

.services-item__element{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
}

.brands-detail-services .title{
    margin-bottom: 20px;
}

.brands-detail-catalogs{
    margin-bottom: 30px;
}

.brands-detail-catalogs .catalog-nav{
    display: block !important;
    /*width: auto;*/
    /*height: auto;*/
    /*max-width: unset;*/
    /*max-height: unset;*/
}

.brands-detail-catalogs .catalog-nav__list{
    display: flex;
    flex-flow: column wrap;
    background-color: #f0f0f0;
}

.brands-detail-catalogs-link{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    white-space: normal;
    padding: 5px 0px;
}

.brands-detail-catalogs .services-double-nav__item{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /*max-width: 33%;*/
}

.services-item__elements-list{
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.margin-bottom-30{
    margin-bottom: 30px;
}

@media(max-width: 1024px) {
    .section-list-block{
        width: 100%;
        margin-right: 0;
    }
}

@media(max-width: 768px) {
    .catalog-element-content{
        flex-flow: column;
        align-self: center;
    }
    .catalog-element-left,
    .catalog-element-right{
        width: 100%;
    }
    .catalog-element-left{
        margin-bottom: 30px;
    }

    .main-section{
        flex-flow: column;
    }

    .main-section-left,
    .main-section-right{
        width: 100%;
    }

    .brands-detail-catalogs .services-double-nav__item {
        max-width: 100%;
    }

    .brands-detail-catalogs .catalog-nav__list {
        flex-flow: column nowrap;
    }
}
/****a3hack style END*****/