/* ------------ Font Family ------------ */
@font-face {
    font-family: 'Montserrat-Light';
    src: url('font/light/Montserrat-Light.eot?#iefix') format('embedded-opentype'), url('font/light/Montserrat-Light.woff') format('woff'), url('font/light/Montserrat-Light.ttf') format('truetype'), url('font/light/Montserrat-Light.svg#OpenSans-Light') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('font/Regular/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('font/Regular/Montserrat-Regular.woff') format('woff'), url('font/Regular/Montserrat-Regular.ttf') format('truetype'), url('font/Regular/Montserrat-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('font/Bold/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('font/Bold/Montserrat-Bold.woff') format('woff'), url('font/Bold/Montserrat-Bold.ttf') format('truetype'), url('font/Bold/Montserrat-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-ExtraLight';
    src: url('font/ExtraLight/Montserrat-ExtraLight.eot?#iefix') format('embedded-opentype'), url('font/ExtraLight/Montserrat-ExtraLight.woff') format('woff'), url('font/ExtraLight/Montserrat-ExtraLight.ttf') format('truetype'), url('font/ExtraLight/Montserrat-ExtraLight.svg#Montserrat-ExtraLight') format('svg');
    font-weight: normal;
    font-style: normal;
    font-dislay: swap;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('font/Medium/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('font/Medium/Montserrat-Medium.woff') format('woff'), url('font/Medium/Montserrat-Medium.ttf') format('truetype'), url('font/Medium/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: normal;
    font-style: normal;
    font-dislay: swap;
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('font/SemiBold/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('font/SemiBold/Montserrat-SemiBold.woff') format('woff'), url('font/SemiBold/Montserrat-SemiBold.ttf') format('truetype'), url('font/SemiBold/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}






/* CSS Document */
html, body {
    font-family: 'Montserrat-Regular';
    box-sizing: border-box;
    position: relative;
    background-color: #fff;
    color: #3b3b3a;
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

img {
    border: 0;
}

a {
    padding: 0;
    text-decoration: none;
    color: #3b3b3a;
}

    a:focus, a:hover {
        text-decoration: none;
        color: #3b3b3a;
    }

p {
    margin: 0;
}

:focus {
    outline: none;
}

.clear {
    clear: both;
}

div, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

.main {
    width: 1200px;
    margin: 0 auto;
}

.relative {
    position: relative;
}

.height100 {
    height: 100%;
}

#page {
    width: 100%;
    position: relative;
}

.img_center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}



.banner {
    position: fixed;
    display: table;
    background: #fff;
    width: 100%;
    top: 0;
    z-index: 10;
    transition: all ease-in-out .5s;
}

    .banner.fixed {
        -webkit-box-shadow: 0px 10px 10px -5px rgba(41,37,41,0.1);
        -moz-box-shadow: 0px 10px 10px -5px rgba(41,37,41,0.1);
        box-shadow: 0px 10px 10px -5px rgba(41,37,41,0.1);
    }

.logo {
    position: relative;
    width: 22%;
    height: 80px;
    display: block;
    float: left;
    padding: 21px 0 0 46px;
    transition: all ease-in-out .5s;
}

    .logo img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .logo a {
        display: block;
        width: 100%;
        height: 100%;
    }


.banner-right {
    width: 420px;
    display: table;
    float: right;
    transition: all ease-in-out .5s;
}

.banner-right-left {
    width: 228px;
    padding: 0 14px 0 0;
    display: table;
    float: left;
    transition: all ease-in-out .5s;
}

.banner-button {
    width: 95px;
    height: 73px;
    display: block;
    float: left;
    transition: all ease-in-out .5s;
}

    .banner-button.b2b {
        background-color: #e3000f;
    }

    .banner-button.offer {
        display: table;
        background-color: #009ee3;
    }

    .banner-button a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .banner-button.b2b a {
        background-image: url(../images/icon-b2b.png);
        background-position: center center;
        background-repeat: no-repeat;
    }

    .banner-button.offer a {
        width: 100%;
        height: 100%;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        color: #fff;
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 20px;
    }

    .banner-button.offer:hover {
        background-color: #0289c4;
    }

    .banner-button.b2b:hover {
        background-color: #cc0915;
    }


.searchBlock {
    /*width: 100%;*/
    float: left;
    height: 32px;
    display: table;
    margin: 2px 0 0 0;
    border-bottom: 1px solid #009ee3;
    transition: all ease-in-out .5s;
}

.textbox {
    width: 100%;
    height: 100%;
    background: none;
    display: block;
    border: none;
    padding: 6px 2px 6px 7px;
    font-size: 11px;
    line-height: 20px;
    font-family: 'Montserrat-Regular';
    color: #3b3b3a;
    resize: none;
    -webkit-appearance: none;
    transition: all ease-in-out .5s;
}

.searchBlock .textbox {
    width: calc(100% - 25px);
    float: left;
}

.textbox::placeholder {
    color: #c4c4c4;
    opacity: 1;
}

.searchBtn {
    width: 25px;
    height: 22px;
    margin: 5px 0;
    display: table;
    border: none;
    background: transparent;
    cursor: pointer;
    background-image: url(../images/icon-search.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-appearance: none;
    transition: all ease-in-out .5s;
}

.lang {
    width: auto;
    height: 20px;
    display: table;
    float: right;
    margin: 7px 0 0 0;
    transition: all ease-in-out .5s;
}

    .lang a {
        display: block;
        text-align: right;
        color: #3b3b3a;
        font-family: 'Montserrat-Bold';
        font-size: 16px;
        line-height: 20px;
        transition: all ease-in-out .5s;
    }

        .lang a:hover {
            color: #009ee3;
        }


.menu {
    width: calc(78% - 420px);
    float: left;
    display: table;
    padding: 41px 0 0 0;
    transition: all ease-in-out .5s;
}


    .menu ul {
        list-style: none;
        padding: 0;
        position: relative;
        white-space: nowrap;
        width: auto;
        margin: 0 auto;
        display: table;
    }

        .menu ul li {
            float: left;
        }

            .menu ul li a {
                width: auto;
                display: block;
                cursor: pointer;
                position: relative;
                margin: 0 11px;
                padding: 0 10px;
                float: left;
                font-family: 'Montserrat-Regular';
                font-size: 16px;
                line-height: 30px;
                text-align: center;
                color: #3b3b3a;
                transition: all ease-in-out .5s;
            }

.underline {
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 120px;
    opacity: 0;
    background: #009ee3;
    pointer-events: none;
    mix-blend-mode: multiply;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

    .underline:nth-child(1) {
        background: #009ee3;
        -webkit-transition: calc(0.5s * 0.8);
        transition: calc(0.5s * 0.8);
    }

    .underline:nth-child(2) {
        background: #e3000f;
        -webkit-transition: calc(0.5s * 1.2);
        transition: calc(0.5s * 1.2);
    }

    .underline:nth-child(3) {
        background: #9d9d9d;
    }

.menu:hover .underline {
    opacity: 1;
}

.banner.fixed .logo {
    height: 60px;
    padding-top: 5px;
    padding-bottom: 7px;
}

.banner.fixed .menu {
    padding-top: 15px;
}

.banner.fixed .searchBlock {
    height: auto;
}

    .banner.fixed .searchBlock .textbox {
        padding: 4px 2px 4px 7px;
    }

.banner.fixed .searchBtn {
    height: 18px;
}

.banner.fixed .lang {
    margin-top: 5px;
}

    .banner.fixed .lang a {
        font-size: 15px;
    }

.banner.fixed .banner-button {
    height: 60px;
}



.slider {
    margin-top: 95px;
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
    position: relative;
}

.swiper-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

    .swiper-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-back video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-back video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

.swiper-text {
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
}

    .swiper-text a {
        width: 100%;
        height: 100%;
        display: table;
    }

.swiper-content {
    display: table-cell;
    vertical-align: middle;
}

.swiper-content-block {
    width: 350px;
    margin: 0 0 0 220px;
}

.slider-text {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Medium';
    font-size: 45px;
    line-height: 55px;
    color: #3b3b3a;
    margin: 0 0 8px 0;
}

    .slider-text span {
        width: 100%;
        display: table;
        color: #009ee3;
    }

    .slider-text.slogan {
        font-family: 'Montserrat-Light';
        font-size: 25px;
        line-height: 32px;
        color: #767673;
    }


.animated .roll-in-left {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rollInLeft;
    animation-name: rollInLeft;
}

.animated .roll-in-right {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rollInRight;
    animation-name: rollInRight;
}

.animated .in-top {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: InTop;
    animation-name: InTop;
}

.animated .in-left {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: InLeft;
    animation-name: InLeft;
}

.animated .in-right {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: InRight;
    animation-name: InRight;
}

@-webkit-keyframes rollInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-60deg);
        transform: translateX(-100%) rotate(-60deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-60deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

@-webkit-keyframes rollInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(60deg);
        transform: translateX(100%) rotate(60deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollInRight {
    0% {
        opacity: 0;
        transform: translateX(100%) rotate(60deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

@-webkit-keyframes InLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes InLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@-webkit-keyframes InRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes InRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@-webkit-keyframes InTop {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes InTop {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.SliderPagination {
    width: 25px;
    height: 14px;
    margin: 0 6px 50px 0;
    background-color: #009ee3;
    cursor: pointer;
    float: left;
    display: block;
    position: relative;
    transition: all ease-in-out .5s;
}

    .SliderPagination:first-child {
        margin-left: 50px;
    }

    .SliderPagination.swiper-pagination-bullet-active {
        background-color: #e3000f;
    }


.main-products {
    width: 100%;
    display: table;
    margin: 0 0 90px 0;
}

.main-product-item {
    width: 24%;
    height: 535px;
    margin: 0 1% 0 0;
    display: block;
    float: left;
    position: relative;
}

    .main-product-item.text {
        width: 25%;
        margin: 0;
        padding: 54px 75px 0 75px;
    }

    .main-product-item a {
        width: 100%;
        height: 100%;
        background: #f2f2f2;
        display: table;
    }

.main-product-head {
    width: 100%;
    height: 140px;
    display: table;
    margin: 15px 0 0 0;
    padding: 0 110px;
}

    .main-product-head span {
        display: table-cell;
        vertical-align: middle;
        font-family: 'Montserrat-Bold';
        color: #3b3b3a;
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }

.main-product-img {
    width: 100%;
    height: 380px;
    padding: 15px 55px 5px 55px;
    display: block;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

    .main-product-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.main-product-item.prod a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 41%;
    background-color: #dcdcdc;
}

.main-product-item.prod a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 20px;
    background-color: #009fe3;
    transition: all ease-in-out .5s;
}

.main-product-item.prod:nth-child(1) a::after {
    background-color: #009fe3;
}

.main-product-item.prod:nth-child(2) a::after {
    background-color: #e3000f;
}

.main-product-item.prod:nth-child(3) a::after {
    background-color: #3b3b3a;
}

.main-product-item.prod a:hover::after {
    width: 100%;
    height: 41%;
}


.main-product-text-head {
    width: 100%;
    display: table;
    margin: 0 0 35px 0;
    font-family: 'Montserrat-Bold';
    font-size: 30px;
    line-height: 40px;
    color: #3b3b3a
}

    .main-product-text-head h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .main-product-text-head span {
        color: #009fe3;
        width: 100%;
        display: table;
    }

.main-product-text-content {
    width: 100%;
    height: 195px;
    display: block;
    color: #767673;
    font-family: 'Montserrat-Light';
    font-size: 18px;
    line-height: 28px;
}

.button {
    width: 185px;
    height: 50px;
    display: table;
    background: transparent;
    border: thin solid #009fe3;
    transition: all ease-in-out .5s;
}

    .button a {
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: table-cell;
        vertical-align: middle;
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        color: #009fe3;
        transition: all ease-in-out .5s;
    }

    .button:hover a {
        color: #fff;
        background-color: #009fe3;
    }


.main-corporate {
    width: 100%;
    display: table;
    margin: 0 0 90px 0;
}

.main-corporate-left {
    width: 40%;
    height: 520px;
    display: table;
    float: left;
    padding: 0 155px 0 135px;
}

.main-corporate-right {
    width: 60%;
    height: 520px;
    display: block;
    float: right;
    position: relative;
}

    .main-corporate-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.main-corporate-heads {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 44px;
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    padding: 3px 15px;
    background-color: rgba(0, 158, 227, .6);
    transition: all ease-in-out .5s;
}

    .main-corporate-heads span {
        width: 100%;
        display: table;
        font-family: 'Montserrat-SemiBold';
        font-size: 16px;
        line-height: 20px;
    }

    .main-corporate-heads div {
        float: left;
        width: 33.3%;
        display: table;
        height: 36px;
    }

    .main-corporate-heads span.title {
        width: 100%;
        display: table;
        font-size: 14px;
        font-family: 'Montserrat-Regular';
    }

    .main-corporate-heads div span {
        display: table-cell;
        vertical-align: middle;
    }

    .main-corporate-heads .header-1 {
        text-align: left;
    }

    .main-corporate-heads .header-2 {
        text-align: center;
    }

    .main-corporate-heads .header-3 {
        text-align: right;
    }

.main-corporate-head {
    width: 100%;
    display: table;
    margin: 85px 0 20px 0;
    font-family: 'Montserrat-Bold';
    font-size: 30px;
    line-height: 40px;
    color: #3b3b3a;
}

    .main-corporate-head span {
        color: #009fe3;
        width: 100%;
        display: table;
    }

.main-corporate-text {
    width: 100%;
    height: 195px;
    display: block;
    font-family: 'Montserrat-Light';
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    color: #767673;
}

.main-sectors {
    width: 100%;
    height: auto;
    display: table;
    position: relative;
    margin: 0 0 90px 0;
}

.main-secktors-back {
    width: 80%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

    .main-secktors-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.main-sectors-right {
    width: 39.5%;
    height: 100%;
    padding: 0 25px 0 0;
    position: relative;
    display: table;
    float: right;
}

.main-sectors-item-top {
    width: 100%;
    height: 295px;
    display: table;
    background: #fff;
    padding: 0 0 20px 0;
}

.main-sectors-item-bottom {
    width: 50%;
    height: 275px;
    float: right;
    display: table;
    background: #fff;
}

.main-sectors-item {
    width: 50%;
    height: 100%;
    display: table;
    float: left;
    padding: 0 0 0 20px;
}

    .main-sectors-item a {
        width: 100%;
        height: 100%;
        display: table;
        position: relative;
    }

.main-sectors-item-img {
    width: 100%;
    height: 100%;
    display: table;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .main-sectors-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-sectors-item-img span {
        display: table-cell;
        vertical-align: middle;
        font-family: 'Montserrat-Bold';
        font-size: 30px;
        line-height: 36px;
        text-align: center;
        color: #fff;
        position: relative;
    }

    .main-sectors-item-img::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: .75;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        transition: all ease-in-out .5s;
    }

    .main-sectors-item-img.red::before {
        background-color: rgba(227, 0, 15, 1);
    }

    .main-sectors-item-img.gray::before {
        background-color: rgba(59, 59, 58, 1);
    }

    .main-sectors-item-img.blue::before {
        background-color: rgba(0, 159, 227, 1);
    }

    .main-sectors-item-img.red:hover::before {
        opacity: .9;
    }

    .main-sectors-item-img:hover::before {
        opacity: .95;
    }

.main-sectors-item-bottom .main-sectors-item {
    width: 100%;
}

.main-new-catalog {
    width: 100%;
    display: table;
    margin: 0 0 50px 0;
}

.main-news-left {
    width: 60%;
    height: 260px;
    float: left;
    display: block;
    position: relative;
    background-color: #f7f7f7;
    background-image: url(../images/main-news-img.png);
    background-position: left -9px;
    background-repeat: no-repeat;
    border: 1px solid #dcdcdc;
    border-left: 0px solid transparent;
    padding: 45px 0 0 555px;
}

.main-news-block {
    width: 460px;
    display: block;
}

.main-news-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    line-height: 30px;
    color: #009fe3;
    margin: 0 0 23px 0;
}

.main-news-text {
    width: 100%;
    height: 78px;
    display: block;
    color: #767673;
    font-family: 'Montserrat-Light';
    font-size: 15px;
    line-height: 25px;
    transition: all ease-in-out .5s;
}

.news-item:hover a .main-news-text {
    color: #009fe3;
}

.main-news-detail-link {
    width: auto;
    float: left;
    display: table;
}

    .main-news-detail-link a {
        display: block;
        color: #e3000f;
        font-family: 'Montserrat-Light';
        font-size: 16px;
        line-height: 26px;
        transition: all ease-in-out .5s;
    }

.main-news-all-link {
    width: auto;
    float: right;
    display: table;
    margin: 7px 30px 0 0;
    position: relative;
}

    .main-news-all-link a {
        display: block;
        color: #e3000f;
        font-family: 'Montserrat-Light';
        font-size: 16px;
        line-height: 26px;
        transition: all ease-in-out .5s;
    }

.main-news-detail-link a:hover {
    color: #009fe3;
}

.main-news-all-link a:hover {
    color: #009fe3;
}

.main-brands-block {
    width: 100%;
    height: 135px;
    display: block;
    position: relative;
    margin: 0 0 50px 0;
}

.brands-item-container {
    height: 100%;
    position: relative;
    display: block;
}

.brands-item {
    height: 135px;
    display: table;
    margin: 0;
    padding: 10px 25px;
}

.centercenter {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.brands-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.news-item {
    height: 100%;
    height: 150px;
    position: relative;
    display: block;
}



.main-catalog-right {
    width: 40%;
    height: 260px;
    display: table;
    float: right;
}

.main-catalog-block {
    width: 500px;
    height: auto;
    display: table;
    position: relative;
    margin: 0 auto;
}

    .main-catalog-block a {
        cursor: pointer;
    }

.main-catalog-center {
    display: table-cell;
    vertical-align: middle;
}

.main-catalog-img {
    width: 180px;
    height: 180px;
    display: block;
    float: left;
}

    .main-catalog-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.main-catalog-content {
    width: calc(100% - 180px);
    height: 180px;
    display: table;
    position: relative;
    padding: 0 0 0 44px;
    float: right;
    font-family: 'Montserrat-Regular';
    font-size: 26px;
    line-height: 35px;
    text-align: left;
    color: #3b3b3a;
    transition: all ease-in-out .5s;
}

    .main-catalog-content div {
        display: table-cell;
        vertical-align: middle;
    }

    .main-catalog-content span {
        font-family: 'Montserrat-Bold';
    }

.main-catalog-block a {
    display: table;
    width: 100%;
    height: 100%;
}

    .main-catalog-block a:hover .main-catalog-content {
        color: #009fe3;
    }



.footer {
    width: 100%;
    height: 400px;
    display: table;
    position: relative;
    background-image: url(../images/footer-back-img.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-bottom {
    width: 100%;
    height: auto;
    display: table;
    background: #fff;
}

.footer-logo {
    width: 340px;
    height: 75px;
    display: block;
    float: left;
    margin: 0 0 0 80px;
    display: none;
}

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.owner {
    width: auto;
    float: left;
    display: table;
    margin: 0 0 0 80px;
}

.design {
    width: auto;
    float: right;
    display: table;
    margin: 0 70px 0 0;
}

    .owner a, .design a {
        font-family: 'Montserrat-Light';
        font-size: 14px;
        line-height: 40px;
        color: #3b3b3a;
        transition: all ease-in-out .5s;
    }

        .owner a:hover, .design a:hover {
            color: #009fe3;
        }


.footer-left {
    width: 30%;
    height: 100%;
    display: table;
    float: left;
    padding: 50px 115px 0 80px;
    display: none;
}

.footer-left-item {
    width: 100%;
    height: 110px;
    display: table;
    position: relative;
    padding: 0 0 0 50px;
    background-position: left 6px;
    background-repeat: no-repeat;
}

    .footer-left-item.quality {
        background-image: url(../images/icon-footer-quality.png);
    }

    .footer-left-item.approved {
        background-image: url(../images/icon-footer-approved.png);
    }

    .footer-left-item.secure {
        background-image: url(../images/icon-footer-secure.png);
    }

.footer-left-item-head {
    width: 100%;
    display: table;
    margin: 0 0 2px 0;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #009fe3;
}

.footer-left-item-text {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Light';
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #767673;
}

.footer-left-item-title {
    display: block;
    font-family: 'Montserrat-Bold';
}

.footer-left-item-text.address {
    margin: 6px 0 12px 0;
    padding: 0 60px 0 0;
}

.footer-menu {
    width: 17%;
    padding: 50px 0 0 80px;
    display: table;
    float: left;
}

.footer-links-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #3b3b3a;
    margin: 0 0 10px 0;
}

    .footer-links-head.enews {
        color: #fff;
        margin: 0 0 18px 0;
    }

.footer-links-list {
    width: 100%;
    margin: 0;
    padding: 0;
    display: table;
    list-style: none;
}

    .footer-links-list.product {
        margin: 0 0 22px 0;
    }

    .footer-links-list li {
        width: 100%;
        display: table;
        margin: 8px 0;
    }

        .footer-links-list li a {
            font-family: 'Montserrat-Light';
            font-size: 16px;
            line-height: 20px;
            text-align: left;
            color: #767673;
            transition: all ease-in-out .5s;
        }

            .footer-links-list li a:hover {
                color: #009fe3;
            }

.footer-products {
    width: 18%;
    display: table;
    float: left;
    padding: 50px 0 0 0;
}

.footer-contact {
    width: 17%;
    display: table;
    float: left;
    padding: 50px 0 0 0;
}

.footer-sectors {
    width: 16.5%;
    display: table;
    float: left;
    padding: 50px 0 0 0;
}

.footer-contaxt-phone {
    width: 100%;
    display: table;
}

    .footer-contaxt-phone a {
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 24px;
        text-align: left;
        color: #009fe3;
        transition: all ease-in-out .5s;
    }

        .footer-contaxt-phone a:hover {
        }

.footer-contaxt-mail {
    width: 100%;
    display: table;
}

    .footer-contaxt-mail a {
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 24px;
        text-align: left;
        color: #009fe3;
        transition: all ease-in-out .5s;
    }

        .footer-contaxt-mail a:hover {
        }

.footer-enew {
    width: 26%;
    height: 100%;
    display: table;
    float: right;
    background-color: #009fe3;
    background-image: url(../images/footer-enews-img.png);
    background-position: right calc(100% + 75px);
    background-repeat: no-repeat;
    padding: 50px 65px 0 50px;
}


.enewbox {
    background: transparent;
    border: thin solid #fff;
    width: 82.5%;
    height: 50px;
    display: block;
    float: left;
    position: relative;
}

    .enewbox .textbox {
        font-size: 14px;
        padding: 0 0 0 24px;
        font-family: 'Montserrat-Light';
        color: #fff;
    }

        .enewbox .textbox::placeholder {
            color: #fff;
        }

.enewbtn {
    width: 17.5%;
    height: 50px;
    padding: 0;
    margin: 0;
    display: block;
    float: right;
    background: #fff;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
    background-image: url(../images/icon-send-blue.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.enews-content {
    width: 100%;
    display: inline-table;
    margin: 32px 0 0 0;
    padding: 0 170px 0 0;
    font-family: 'Montserrat-Light';
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: #fff;
}

.footer-social-block {
    display: table;
    width: 100%;
    margin: 40px 0 0 0;
}

.footer-social-item {
    display: table;
    float: left;
    width: 38px;
    height: 30px;
    margin: 0 13px 0 0;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
}

    .footer-social-item a {
        width: 100%;
        height: 100%;
        display: table;
    }

    .footer-social-item.facebook {
        background-color: #225a9c;
        background-image: url(../images/icon-social-facebook-white.png);
    }

    .footer-social-item.twitter {
        background-color: #00cdff;
        background-image: url(../images/icon-social-twitter-white.png);
    }

    .footer-social-item.instagram {
        background-color: #fe3990;
        background-image: url(../images/icon-social-instagram-white.png);
    }

    .footer-social-item.youtube {
        background-color: #ff0000;
        background-image: url(../images/icon-social-youtube-white.png);
    }

    .footer-social-item.linkedin {
        background-color: #007abc;
        background-image: url(../images/icon-social-linkedin-white.png);
    }

    .footer-social-item:hover {
        transform: translateY(-3px);
    }


.router-block {
    width: 100%;
    height: 90px;
    display: block;
    position: relative;
    margin-top: 95px;
    background: #fff;
    border: thin solid #f3f3f3;
}

.content {
    width: 100%;
    display: table;
    position: relative;
    padding: 0 95px;
    margin: 30px 0 30px 0;
}

    .content.contact {
        padding: 0 225px;
    }

.router-img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

    .router-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.router-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: table;
    padding: 0 95px;
}

.router-head {
    width: 100%;
    display: table;
    margin: 26px 0 0 0;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 23px;
    text-align: left;
    color: #009fe3;
    transition: all ease-in-out .5s;
}

    .router-head h1 {
        font-size: 18px;
        line-height: 23px;
    }

.router-links {
    width: 100%;
    display: table;
}

    .router-links ul {
        width: 100%;
        padding: 0;
        margin: 0;
        display: table;
        list-style: none;
    }

        .router-links ul li {
            width: auto;
            display: table;
            position: relative;
            float: left;
            margin: 0 4px 0 0;
            transition: all ease-in-out .5s;
        }

            .router-links ul li a {
                font-family: 'Montserrat-Regular';
                font-size: 11px;
                line-height: 18px;
                text-align: left;
                color: #767673;
                padding: 0 6px 0 0;
                display: block;
                transition: all ease-in-out .5s;
            }

            .router-links ul li::after {
                width: 1px;
                height: 10px;
                right: 0px;
                top: 4px;
                content: '';
                position: absolute;
                background: #767673;
            }

            .router-links ul li:last-child::after {
                content: none;
            }

            .router-links ul li:hover a {
                color: #009fe2;
            }


.corporate-container {
    width: 100%;
    display: table;
    margin: 0 0 75px 0;
}

.corporate-right {
    width: calc(100% - 400px);
    display: table;
    float: left;
    margin: 0 0 0 55px;
}

    .corporate-right.mission {
        width: calc(100% - 450px);
        margin: 0 0 0 105px;
    }

    .corporate-right.history {
        width: calc(100% - 440px);
        margin: 0 0 0 95px;
    }

    .corporate-right img {
        width: 100%;
        object-fit: contain;
    }

    .corporate-right p {
        width: 100%;
        display: table;
        font-family: 'Montserrat-Regular';
        font-size: 15px;
        line-height: 25px;
        color: #767673;
        text-align: justify;
    }

    .corporate-right strong {
        width: 100%;
        display: table;
        font-family: 'Montserrat-Medium';
        font-size: 15px;
        line-height: 25px;
        color: #3b3b3a;
        margin: 18px 0 0 0;
    }

.corporate-left {
    width: 345px;
    display: table;
    float: left;
    padding: 25px 60px 45px 50px;
    background-color: #f7f7f7;
}

    .corporate-left ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: table;
        list-style: none;
    }

        .corporate-left ul li {
            width: 100%;
            border-top: thin solid #d8d8d8;
        }

            .corporate-left ul li:first-child {
                border-top: none;
            }

            .corporate-left ul li a {
                display: block;
                position: relative;
                width: 100%;
                padding: 15px 0;
                font-family: 'Montserrat-Regular';
                font-size: 16px;
                line-height: 25px;
                text-align: left;
                color: #3b3b3a;
                transition: all ease-in-out .5s;
            }

                .corporate-left ul li a.active,
                .corporate-left ul li:hover a {
                    color: #009fe2;
                }

                .corporate-left ul li a::after {
                    position: absolute;
                    content: '';
                    width: 17px;
                    height: 10px;
                    left: -50px;
                    top: 21px;
                    opacity: 0;
                    background: #e3000f;
                    transition: all ease-in-out .5s;
                }

                .corporate-left ul li a.active::after,
                .corporate-left ul li:hover a::after {
                    opacity: 1;
                }

.about-us-img {
    width: 40%;
    height: 560px;
    float: left;
    display: block;
    position: relative;
}

    .about-us-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-us-top {
    width: 350px;
    height: 300px;
    bottom: -15px;
    right: -15px;
    position: absolute;
    display: block;
    padding: 215px 15px 0 110px;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 24px;
    text-align: right;
    color: #fff;
    background-image: url(../images/about-us-top-img.png);
    background-repeat: no-repeat;
    background-size: contain;
}

    .about-us-top span {
        width: 100%;
        display: table;
        font-size: 24px;
        line-height: 30px;
    }

    .about-us-top.two {
        background: rgba(0, 158, 227, .6);
        width: 100% !important;
        height: auto !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        padding-top: 3px !important;
    }

.about-us-text {
    width: 60%;
    float: left;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    color: #767673;
    padding: 0 0 0 50px;
}

    .about-us-text p {
        margin: 0 0 36px 0;
    }

    .about-us-text img {
        width: auto;
    }

.mission-head {
    width: 100%;
    min-height: 100px;
    display: block;
    padding: 36px 0 15px 0;
    font-family: 'Montserrat-Medium';
    font-size: 20px;
    line-height: 36px;
    text-align: left;
    color: #3b3b3a;
}

    .mission-head p {
        font-family: 'Montserrat-Medium';
        color: #3b3b3a;
        font-size: 20px;
        line-height: 36px;
    }

.about-box-block {
    width: 100%;
    display: table;
}

.about-box {
    width: 310px;
    /*width: 300px;*/
    height: 270px;
    display: table;
    float: left;
    margin: 0 23px 25px 0;
    border: thin solid #dadada;
    /*background-image: url(../images/about-box-img.png);
	background-repeat: no-repeat;
	background-position: calc(100% + 24px) calc(100% + 21px);*/
    padding: 30px 50px 10px 40px;
}

    .about-box:last-child {
        margin-right: 0;
    }

    .about-box p {
        text-align: left;
    }

.about-box-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-SemiBold';
    font-size: 16px;
    line-height: 30px;
    color: #e3000f;
    margin: 0 0 10px 0;
}

.about-box-text {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Regular';
    color: #767673;
    font-size: 16px;
    line-height: 30px;
}

.corporate-sube-list {
    width: 100%;
    display: table;
    padding: 22px 0 3px 95px;
    background: url(../images/icon-subeler.png);
    background-position: 1px 19px;
    background-repeat: no-repeat;
}

.sube-list-box {
    width: auto;
    height: 55px;
    display: table;
    float: left;
    font-family: 'Montserrat-Medium';
    font-size: 18px;
    line-height: 22px;
    color: #3b3b3a;
    margin: 0 30px 20px 0;
    min-width: 247px;
}

    .sube-list-box a {
        padding: 0 15px;
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        color: #e3000f;
        border: thin solid #dadada;
        cursor: pointer;
    }

        .sube-list-box a.active {
            border-color: #009fe3;
            border-width: 2px;
        }

.corporate-sube-content {
    width: 100%;
    display: none;
}

    .corporate-sube-content.active {
        display: table;
    }

.corporate-sube-content-text {
    width: 100%;
    min-height: 100px;
    text-align: justify;
    display: block;
    margin: 0 0 50px 0;
}

    .corporate-sube-content-text p {
        display: table;
        color: #767673;
        font-family: 'Montserrat-Regular';
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-sube-content-text strong {
        display: inline;
        margin: 0 0 10px 0;
        font-family: 'Montserrat-Medium';
        font-size: 16px;
        line-height: 30px;
        color: #3b3b3a;
    }

    .corporate-sube-content-text a {
        color: #767673;
    }

    .corporate-sube-content-text div {
        float: left;
        margin-right: 20px;
    }

.corporate-sube-content-gallery {
    width: 100%;
    display: table;
}

    .corporate-sube-content-gallery ul {
        display: table;
        list-style: none;
        width: 103%;
        padding: 0;
        margin: 0;
    }

        .corporate-sube-content-gallery ul li {
            width: 22%;
            height: 200px;
            display: block;
            float: left;
            margin: 0 3% 30px 0;
        }

            .corporate-sube-content-gallery ul li a {
                width: 100%;
                height: 100%;
                display: block;
            }

            .corporate-sube-content-gallery ul li img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }

.corporate-promotion-film {
    width: 100%;
    height: 520px;
    margin: 20px 0;
    position: relative;
    display: block;
}


.corporate-ik-content {
    width: 100%;
    display: table;
    padding: 40px 0 0 0;
}

.corporate-ik-text {
    width: 100%;
    min-height: 100px;
    display: block;
    padding: 0 0 15px 0;
    margin: 0 0 10px 0;
}

    .corporate-ik-text p {
        display: table;
        font-family: 'Montserrat-Regular';
        font-size: 15px;
        line-height: 25px;
        color: #767673;
    }

    .corporate-ik-text strong {
        display: table;
        font-family: 'Montserrat-Bold';
        font-size: 20px;
        line-height: 30px;
        color: #3b3b3a;
        margin: 0;
    }

.corporate-ik-block {
    width: 880px;
    display: table;
}



.cv-load {
    width: 100%;
    height: 100px;
    display: block;
    float: left;
    margin: 0 0 30px 0;
    padding: 25px 40px;
    background-color: #fafafa;
    background-image: url(../images/img-cv-back-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
}

.cv-upload {
    position: relative;
    display: block;
    width: 160px;
    height: 50px;
    float: left;
    z-index: 1;
    background: #e3000f;
    border: 1px solid #e3000f;
    margin: 0 20px 0 0;
}

.file {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all ease-in-out .2s;
}

    .file:hover {
    }

    .file::-webkit-file-upload-button {
        visibility: hidden;
    }

    .file::before {
        content: '';
        position: absolute;
        width: 49px;
        height: 100%;
        left: 12px;
        display: table;
        outline: none;
        background: url("../images/../images/icon-cv-load-white.png");
        background-position: center center;
        background-repeat: no-repeat;
        white-space: nowrap;
        -webkit-user-select: none;
        cursor: pointer;
    }

    .file:hover::before {
        animation: none;
    }

    .file:active {
        outline: 0;
    }

        .file:active::before {
        }

.file-custom {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Montserrat-Medium';
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    width: 100%;
    height: 100%;
    padding: 0 0 0 60px;
}
/*.file-custom::before {
	content: ''; position: absolute; display: block;
	width: 60px; height: 100%; left: 0; top: 0; }*/
/*.file:hover .file-custom::before {
	animation: none; } */
.file input[type=file] {
    display: none;
    opacity: 0;
    position: absolute;
}

.FileError {
    width: calc(100% - 200px);
    height: 100%;
    display: none;
    position: relative;
    font-family: 'Montserrat-Regular';
    color: #e3000f;
    font-size: 14px;
    line-height: 20px;
}

    .FileError label, .FileError span {
        display: table-cell;
        vertical-align: middle;
    }

    .FileError.WError {
        color: #c30b1c;
        display: table;
    }

    .FileError.WFile {
        padding: 0 0 0 20px;
        display: table;
        color: #009fe3;
    }

        .FileError.WFile::after {
            width: 15px;
            height: 100%;
            position: absolute;
            content: '';
            left: 0;
            top: 0;
            background-image: url(../images/icon-close-blue.png);
            background-repeat: no-repeat;
            background-position: right center;
            background-size: 14px;
        }

.cv-send {
    width: 100%;
    float: left;
    position: relative;
    display: table;
    background: #fff;
}


.securitybox {
    width: 225px;
    height: 50px;
    display: block;
    border: none;
    position: relative;
    float: left;
    background: transparent;
    margin: 0 44px 0 0;
}

    .securitybox .textbox {
        background: transparent;
        float: left;
        padding: 0 0 0 25px;
        margin: 0;
        -webkit-appearance: none;
        color: #3b3b3a;
        font-family: 'Montserrat-Regular';
        font-size: 14px;
        line-height: 30px;
        border: thin solid #dadada;
    }

        .securitybox .textbox::placeholder {
            color: #b6b6b6;
        }

.security-code {
    width: 75px;
    height: 25px;
    display: block;
    float: left;
    margin: 13px 5px 0 5px;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #3b3b3a;
}

    .security-code img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.security-refresh {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 13px 0 0 35px;
    display: block;
    float: left;
    border-radius: 50%;
    border: 0px;
    -webkit-appearance: none;
    background-color: transparent;
    cursor: pointer;
    background-image: url(../images/icon-refresh-black.png);
    background-position: center center;
    background-repeat: no-repeat;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.security-refresh:hover {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.BtnCVSend {
    width: 187px;
    height: 50px;
    float: left;
    display: block;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    border: thin solid #009fe3;
    font-family: 'Montserrat-Regular';
    color: #009fe3;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    transition: all ease-in-out .5s;
}

    .BtnCVSend:hover {
        background: #009fe3;
        color: #fff;
    }

.corporate-history-content {
    width: 1110px;
    display: table;
    position: relative;
    overflow: hidden;
}

    .corporate-history-content::before {
        content: '';
        position: absolute;
        width: 3px;
        height: calc(100% - 285px);
        left: calc(50% - 3px);
        top: 50px;
        background: #009ee3;
    }

.corporate-history-top {
    width: 100%;
    height: 55px;
    display: block;
    position: relative;
    font-family: 'Montserrat-Medium';
    font-size: 22px;
    line-height: 36px;
    text-align: left;
    color: #3b3b3a;
    padding: 0 0 0 47px;
    margin-top: -3px;
}

    .corporate-history-top.bottom {
        margin: 0 0 150px 0;
    }

    .corporate-history-top::after {
        content: '';
        position: absolute;
        width: 47px;
        height: 48px;
        left: 0;
        top: 18px;
        background-image: url(../images/history-top-left-icon.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .corporate-history-top::before {
        content: '';
        position: absolute;
        width: calc(50% - 25px);
        height: 10px;
        background-color: transparent;
        left: 25px;
        bottom: 0;
        border-right: 3px solid #009ee3;
        border-top: 3px solid #009ee3;
    }

.corporet-history-item-block {
    width: 100%;
    display: table;
    margin: 0 0 120px 0;
    padding: 0 120px;
}

    .corporet-history-item-block.last {
        margin: 150px 0 0 0;
    }

.corporate-history-item-left {
    width: 41.5%;
    min-height: 170px;
    float: left;
}

.corporate-history-item-volume {
    padding: 30px 0 0 45px;
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #3b3b3a;
}

.corporate-history-item-address {
    padding: 0 0 0 45px;
    width: 100%;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    line-height: 20px;
    text-align: right;
    color: #767673;
}

    .corporate-history-item-address p {
        text-align: right;
    }

.corporate-history-item-center {
    width: 17%;
    height: 170px;
    float: left;
}

.corporate-history-year-icon {
    width: 98px;
    height: 98px;
    display: table;
    border-radius: 50%;
    position: relative;
    border: 3px solid #009ee3;
    background: #fff;
    margin: 23px auto 0 auto;
}

    .corporate-history-year-icon span {
        font-family: 'Montserrat-Bold';
        font-size: 24px;
        line-height: 36px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        color: #009ee3;
    }

.corporate-history-item-right {
    width: 41.5%;
    height: 170px;
    float: right;
}

    .corporate-history-item-right img,
    .corporate-history-item-left img {
        width: 100%; /*height: 100%;*/
        height: 170px;
        object-fit: contain;
        border-radius: 20px;
    }

    .corporate-history-item-right .corporate-history-item-volume,
    .corporate-history-item-right .corporate-history-item-address {
        text-align: left !important;
        padding-left: 0;
        padding-right: 45px;
    }

        .corporate-history-item-right .corporate-history-item-volume p,
        .corporate-history-item-right .corporate-history-item-address p {
            text-align: left !important;
        }

.product-container {
    width: 100%;
    display: table;
    margin: 0 0 40px 0;
}

.product-item-list {
    width: 100%;
    display: table;
}

    .product-item-list ul {
        width: 102.4%;
        padding: 0;
        margin: 0;
        list-style: none;
        display: table;
    }

        .product-item-list ul li {
            width: 14.6%;
            height: 480px;
            display: block;
            float: left;
            margin: 0 2% 44px 0;
        }

            .product-item-list ul li a {
                width: 100%;
                height: 100%;
                display: block;
            }

.product-item-block {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 5px 15px;
    display: block;
    border: thin solid #dcdcdc;
    background-image: url(../images/about-box-img.png);
    background-position: calc(100% + 26px) calc(100% + 36px);
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
}

.product-item-head {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    /*color: #009ee3;*/ color: #fff;
    transition: all ease-in-out .5s;
}

    .product-item-head span {
        display: table-cell;
        vertical-align: middle;
    }

.product-item-img {
    width: 200%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: -50%;
    transition: all ease-in-out .5s;
}

    .product-item-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-item-img::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        bottom: 0;
        /*background-color: rgba(255,255,255, 0.2);*/
        background-color: rgba(59,59,58,.5);
        transition: all ease-in-out .5s;
    }



.product-item-list ul li:hover .product-item-head {
    color: #fff;
    /*transform: rotateX(360deg); transition-duration: 1.4s;*/
    height: 80px;
    color: #009ee3;
}

.product-item-list ul li:hover .product-item-block {
    border-color: #009ee3;
}

.product-item-list ul li:hover .product-item-img {
    height: calc(100% - 80px);
}

    .product-item-list ul li:hover .product-item-img::before {
        height: 0;
    }



.product-list {
    width: 345px;
    display: table;
    float: left;
    padding: 25px 40px 45px 50px;
    background-color: #f7f7f7;
}

    .product-list ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: table;
        list-style: none;
    }

        .product-list ul li {
            width: 100%;
            border-top: thin solid #d8d8d8;
        }

            .product-list ul li:first-child {
                border-top: none;
            }

            .product-list ul li a {
                display: block;
                position: relative;
                width: 100%;
                padding: 15px 0;
                font-family: 'Montserrat-Regular';
                font-size: 16px;
                line-height: 25px;
                text-align: left;
                color: #3b3b3a;
                transition: all ease-in-out .5s;
            }

                .product-list ul li a.active,
                .product-list ul li a:hover {
                    color: #009fe2;
                }

                .product-list ul li a::after {
                    position: absolute;
                    content: '';
                    width: 17px;
                    height: 10px;
                    left: -50px;
                    top: 21px;
                    opacity: 0;
                    background: #e3000f;
                    transition: all ease-in-out .5s;
                }

                .product-list ul li a.active::after,
                .product-list ul li a:hover::after {
                    opacity: 1;
                }

        .product-list ul ul {
            padding: 0 0 0 20px;
            display: none;
            border-top: thin solid #d8d8d8;
        }

        .product-list ul li.open > ul {
            display: block;
        }

        .product-list ul ul li a {
            font-size: 14px;
            padding: 10px 0;
        }

            .product-list ul ul li a::after {
                top: 16px;
                width: 10px;
                height: 6px;
                left: -20px;
            }

.product-item-list.list {
    width: calc(100% - 450px);
    margin: 0 0 0 105px;
    float: left;
}

    .product-item-list.list ul li {
        width: 23%;
        height: 350px;
    }

    .product-item-list.list .product-item-block {
        background-position: calc(100% + 16px) calc(100% + 20px);
        background-size: 70px;
        padding: 22px 25px;
    }

    .product-item-list.list .product-item-head {
        height: 48px;
        color: #767673;
        font-family: 'Montserrat-Regular';
        font-size: 18px;
        line-height: 24px;
    }

    .product-item-list.list .product-item-img {
        height: 220px;
        padding: 20px 0;
        width: 100%;
        left: 0;
        position: relative;
    }

    .product-item-list.list ul li:hover .product-item-head {
        height: 48px;
    }

    .product-item-list.list .product-item-img::before {
        content: none;
    }

    .product-item-list.list ul li:hover .product-item-img {
        height: 220px;
    }

.product-detail {
    width: calc(100% - 450px);
    float: left;
    margin: 0 0 0 105px;
    padding: 35px 0 0 0;
}

.product-detail-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    font-size: 30px;
    line-height: 36px;
    text-align: left;
    color: #009fe3;
    margin: 0 0 20px 0;
}

    .product-detail-head h1 {
        font-size: 30px;
        line-height: 36px;
    }

.product-detail-left {
    width: 440px;
    display: table;
    float: left;
    margin: 10px 0 0 0;
}

.product-detail-right {
    width: calc(100% - 440px);
    min-height: 650px;
    display: block;
    float: right;
    padding: 0 0 0 40px;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    color: #767673;
}

    .product-detail-right p {
        margin: 0 0 20px 0;
    }

.product-detail-gallery {
    width: 440px;
    height: 350px;
    display: block;
    position: relative;
    border: thin solid #dcdcdc;
    background-image: url(../images/about-box-img.png);
    background-position: calc(100% + 18px) calc(100% + 20px);
    background-repeat: no-repeat;
    background-size: 70px;
}

.gallerysilder {
    padding: 0 40px;
}

.prod-gallery-item {
    width: 100%;
    height: 350px;
    padding: 30px;
    display: block;
    position: relative;
}

    .prod-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.product-detail-document {
    width: 100%;
    display: table;
}

.product-detail-document-head {
    width: 100%;
    height: auto;
    display: table;
}

    .product-detail-document-head span {
        width: calc(100% - 55px);
        height: auto;
        float: left;
        display: table;
        background-color: #f2f2f2;
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 35px;
        text-align: left;
        color: #e3000f;
        padding: 5px 0 5px 14px;
    }

.product-detail-document-icon {
    width: 55px;
    height: 45px;
    display: block;
    float: left;
    background: #e3000f;
    background-image: url(../images/icon-pdf.png);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0 0 0 4px;
}

.product-detail-document ul {
    width: 100%;
    padding: 5px 0 0 55px;
    margin: 0;
    display: table;
    list-style: none;
}

    .product-detail-document ul li {
        width: 100%;
        display: table;
    }

        .product-detail-document ul li a {
            width: 100%;
            display: block;
            font-family: 'Montserrat-Regular';
            font-size: 14px;
            line-height: 26px;
            text-align: left;
            color: #767673;
            padding: 5px 0 5px 15px;
            background-image: url(../images/icon-document-red.png);
            background-position: left center;
            background-repeat: no-repeat;
            transition: all ease-in-out .5s;
            cursor: pointer;
        }

            .product-detail-document ul li a:hover {
                color: #e3000f;
            }

.sector-container {
    width: 100%;
    display: table;
    margin: 0 0 40px 0;
}

.sector-list {
    width: 345px;
    display: table;
    float: left;
    padding: 25px 40px 45px 50px;
    background-color: #f7f7f7;
}

    .sector-list ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: table;
        list-style: none;
    }

        .sector-list ul li {
            width: 100%;
            border-top: thin solid #d8d8d8;
        }

            .sector-list ul li:first-child {
                border-top: none;
            }

            .sector-list ul li a {
                display: block;
                position: relative;
                width: 100%;
                padding: 15px 0;
                font-family: 'Montserrat-Regular';
                font-size: 16px;
                line-height: 25px;
                text-align: left;
                color: #3b3b3a;
                transition: all ease-in-out .5s;
            }

                .sector-list ul li a.active,
                .sector-list ul li:hover a {
                    color: #009fe2;
                }

                .sector-list ul li a::after {
                    position: absolute;
                    content: '';
                    width: 17px;
                    height: 10px;
                    left: -50px;
                    top: 21px;
                    opacity: 0;
                    background: #e3000f;
                    transition: all ease-in-out .5s;
                }

                .sector-list ul li a.active::after,
                .sector-list ul li:hover a::after {
                    opacity: 1;
                }

.sector-detail {
    width: calc(100% - 400px);
    margin: 0 0 0 55px;
    float: left;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    color: #767673;
}

    .sector-detail img {
        width: 100%;
        margin: 0 0 15px 0;
        max-width: 100%;
    }

    .sector-detail p {
        margin: 0 0 20px 0;
    }

.brands-container {
    width: 100%;
    display: table;
    margin: 0 0 40px 0;
}

    .brands-container ul {
        width: 103%;
        padding: 0;
        margin: 0;
        display: table;
        list-style: none;
    }

        .brands-container ul li {
            width: 14%;
            height: 150px;
            display: block;
            float: left;
            margin: 0 2.6% 40px 0;
        }

.brands-item-block {
    position: relative;
    display: table;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 15px;
    border: thin solid #dcdcdc;
}

    .brands-item-block img {
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }

    .brands-item-block::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        border-left: thin solid #009ee3;
        border-top: thin solid #009ee3;
        transition: all ease-in-out .3s;
    }

    .brands-item-block::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 50px;
        border-right: thin solid #009ee3;
        border-bottom: thin solid #009ee3;
        transition: all ease-in-out .3s;
    }

    .brands-item-block:hover::after, .brands-item-block:hover::before {
        width: 100%;
        height: 100%;
    }

.contact-container {
    width: 100%;
    display: table;
    margin: 0 0 65px 0;
}

.contact-top {
    width: 100%;
    display: table;
    margin: 0 0 60px 0;
}

.contact-top-item {
    /*width: 24%;*/
    width: 32%;
    display: flex;
    float: left;
    /*margin: 0 1% 0 0;*/
    margin: 0 2% 0 0;
    padding: 20px 0 0 0;
    min-height: 420px;
    flex-direction: column;
}

    .contact-top-item:last-child {
        margin: 0;
    }

.contact-top-item-top {
    width: 100%;
    display: table;
    padding: 0 35px 0 25px;
}

.contact-address-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    color: #3b3b3a;
    font-size: 18px;
    line-height: 36px;
    margin: 0 0 5px -25px;
    padding: 0 0 0 25px;
    background-image: url(../images/icon-address.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.contact-address-text {
    width: 100%;
    height: 80px;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    line-height: 24px;
    color: #767673;
}

.phone-block {
    width: 100%;
    /* float: left; */
    display: table;
}

    .phone-block strong {
        width: 100%;
        /* display: table; */
        font-family: 'Montserrat-Medium';
        font-size: 16px;
        line-height: 30px;
        color: #767673;
    }

    .phone-block a {
        color: #767673;
        font-family: 'Montserrat-Regular';
        font-size: 16px;
        line-height: 30px;
        transition: all ease-in-out .5s;
    }

        .phone-block a:hover {
            color: #009ee3;
        }

.contact-top-item-map {
    width: 100%;
    height: 170px;
    display: block;
    margin: auto 0 0 0;
    position: relative;
    border: thin solid #dadada;
}

.contact-bottom {
    width: 100%;
    height: 520px;
    position: relative;
    display: table;
    background: #f9f9f9;
    padding: 0 265px 0 265px;
    -webkit-box-shadow: 0px 0px 25px -10px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 25px -10px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 25px -10px rgba(0,0,0,0.5);
}

.contact-icon {
    width: 77px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e3000f;
    background-image: url(../images/contact-icon.png);
    background-repeat: no-repeat;
    background-position: 10px 10px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.contact-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    line-height: 36px;
    color: #3b3b3a;
    margin: 30px 0 15px 0;
}

.contact-box {
    width: 48%;
    height: 50px;
    float: left;
    position: relative;
    display: table;
    border: thin solid #dadada;
    background: #fff;
    margin: 0 0 25px 0;
}

    .contact-box:nth-child(2n) {
        float: right;
    }

    .contact-box.big {
        width: 100%;
        height: 130px;
        display: block;
    }

    .contact-box .textbox {
        font-family: 'Montserrat-Regular';
        font-size: 14px;
        line-height: 30px;
        color: #3b3b3a;
        padding: 10px 15px 10px 25px;
    }

        .contact-box .textbox:placeholder {
            color: #b6b6b6;
        }

.contact-send-block {
    width: auto;
    float: right;
}

.offer-container {
    width: 100%;
    display: table;
    margin: 0 0 90px 0;
}


.offer-left {
    width: 550px;
    height: 570px;
    display: block;
    float: left;
    background-image: url(../images/offer-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .offer-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.offer-left-content {
    width: 160px;
    display: table;
    margin: 65px 0 0 40px;
    font-family: 'Montserrat-Regular';
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}

    .offer-left-content span {
        width: 100%;
        display: table;
        margin: 0 0 10px 0;
        color: #009fe3;
        font-family: 'Montserrat-Bold';
        font-size: 30px;
        line-height: 30px;
    }

.offer-right {
    width: calc(100% - 550px);
    float: left;
    display: table;
    padding: 18px 180px 0 60px;
}


/*the container must be positioned relative:*/
.custom-select {
    width: 100%;
    position: relative;
    font-family: 'Montserrat-Regular';
}

    .custom-select:after {
        position: absolute;
        content: "";
        transform: translate(-50%, -50%);
        top: 50%;
        right: 20px;
        width: 9px;
        height: 5px;
        background-image: url(../images/icon-dropbox.png);
        background-position: center center;
        background-repeat: no-repeat;
        transition: all ease-in-out .5s;
    }

    .custom-select select {
        display: block;
        width: 100%;
        height: 48px;
        cursor: pointer;
        padding: 0 0 0 25px;
        -webkit-appearance: none;
        border: none;
        font-family: 'Montserrat-Regular';
        font-size: 14px;
        line-height: 28px;
        color: #b6b6b6;
    }

.contact-box.small2 {
    width: 25%;
    margin-right: 4%;
    float: left;
}

.contact-box.counter {
    width: 9%;
    float: left;
}

.quantity {
    width: 4%;
    height: 50px;
    display: table;
    float: right;
    padding: 8px 0 0 0;
}

.increase {
    width: 15px;
    height: 15px;
    cursor: pointer;
    display: block;
    float: right;
    margin: 0 0 7px 15px;
    background-image: url(../images/icon-quantity-up.png);
    background-position: right center;
    background-repeat: no-repeat;
}

.decrease {
    width: 15px;
    height: 15px;
    cursor: pointer;
    display: block;
    float: right;
    background-image: url(../images/icon-quantity-down.png);
    background-position: right center;
    background-repeat: no-repeat;
}

.news-container {
    width: 100%;
    min-height: 570px;
    display: block;
    margin: 0 0 90px 0;
}

    .news-container.detail {
        min-height: inherit;
        margin: 0 0 10px 0;
    }

        .news-container.detail .news-detail {
            margin: 0;
        }

.news-item-list {
    width: 100%;
    display: table;
}

    .news-item-list ul {
        width: 104.2%;
        padding: 0;
        margin: 0;
        list-style: none;
        display: table;
    }

        .news-item-list ul li {
            width: 21%;
            height: 420px;
            display: block;
            float: left;
            margin: 0 4% 44px 0;
        }

            .news-item-list ul li a {
                width: 100%;
                height: 100%;
                display: block;
            }

.news-item-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px 10px 30px;
    border: thin solid #dcdcdc;
    display: block;
    background-color: #fff;
    background-image: url(../images/about-box-img.png);
    background-position: calc(100% + 26px) calc(100% + 36px);
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
}

.news-item-img {
    width: 100%;
    height: 185px;
    display: block;
    margin: 0 0 7px 0;
}

    .news-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-item-content {
    width: 100%;
    height: 155px;
    display: table;
}

.news-item-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-SemiBold';
    font-size: 16px;
    line-height: 24px;
    color: #009ee3;
    padding: 3px 0;
    margin: 0 0 10px 0;
}

.news-item-text {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 24px;
    color: #767673;
}

.news-item-link {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 12px;
    line-height: 26px;
    text-align: left;
    color: #e3000f;
    transition: all ease-in-out .5s;
}

.news-item-block:hover {
    border-color: #009ee3;
}

    .news-item-block:hover .news-item-link {
        color: #009ee3;
    }

.news-detail {
    display: table;
    width: 100%;
    margin: 0 0 45px 0;
}

.news-detail-img {
    width: 560px;
    display: block;
    float: left;
}

    .news-detail-img img {
        width: 100%;
        object-fit: contain;
    }

.news-detail-content {
    width: calc(100% - 560px);
    float: left;
    display: table;
    padding: 0 350px 0 35px;
}

.news-detail-head {
    width: 100%;
    display: table;
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    line-height: 24px;
    color: #009ee3;
    padding: 5px 0 10px 0;
}

.news-detail-text {
    width: 100%;
    min-height: 250px;
    display: block;
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: #767673;
    padding: 0 0 15px 0;
}

    .news-detail-text p {
        margin: 0 0 10px 0;
    }

    .news-detail-text a {
        color: #767673;
    }

    .news-detail-text strong {
        font-family: 'Montserrat-Bold';
    }

.news-detail-gallery {
    width: 100%;
    display: table;
}

    .news-detail-gallery ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: table;
        list-style: none;
    }

        .news-detail-gallery ul li {
            width: 30%;
            height: 135px;
            display: block;
            float: left;
            margin: 0 3% 25px 0;
        }

            .news-detail-gallery ul li img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

.other-news {
    width: 1920px;
    padding: 0 60px 0 95px;
    margin: 0 0 160px 0;
    display: block;
    position: relative;
}

    .other-news::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 305px;
        background-color: #eeeeee;
    }

.newslider {
    width: 100%;
    padding: 0;
}

    .newslider .news-item-block {
        width: 380px;
        height: 420px;
        float: left;
    }

    .newslider .slick-prev {
        left: -35px;
    }

    .newslider .slick-next {
        right: 0px;
    }

    .newslider .slick-prev, .newslider .slick-next {
        opacity: 0;
        transition: all ease-in-out .5s;
    }

.other-news:hover .slick-prev, .other-news:hover .slick-next {
    opacity: 1;
}

.other-newshead {
    width: 100%;
    display: table;
    position: relative;
    padding: 25px 0;
    color: #3b3b3a;
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    line-height: 24px;
}

.error-container {
    width: 680px;
    display: table;
    margin: 85px auto 80px auto;
}

.error-left {
    width: 248px;
    height: 220px;
    display: table;
    float: left;
    padding: 0 14px;
}

.error-icon {
    width: 220px;
    height: 220px;
    display: block;
    cursor: pointer;
}

    .error-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.error-right {
    width: 432px;
    height: 220px;
    display: table;
    float: right;
    padding: 20px 0 0 43px;
}


.error-head {
    width: 100%;
    display: table;
    margin: 0 0 20px 0;
    font-family: 'Montserrat-Bold';
    font-size: 60px;
    line-height: 50px;
    text-align: left;
    color: #3b3b3a;
}

.error-text {
    width: 100%;
    display: table;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    line-height: 24px;
    color: #767673;
}

    .error-text strong {
        margin: 0 0 10px 0;
        display: table;
        font-size: 18px;
        line-height: 24px;
        font-family: 'Montserrat-Bold';
    }


.aramabaslik {
    width: 100%;
    display: table;
    padding: 10px 0 20px 0;
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    line-height: 30px;
    color: #009fe3;
}

.FormError {
    position: absolute;
    left: 8px;
    top: 8px;
}

.contact-box .FormError {
    top: 14px;
}

.securitybox .FormError {
    color: red;
    left: 14px;
    top: 12px;
}

.enews-result {
    position: relative;
    display: table;
    width: 100%;
    height: 40px;
    padding: 5px 0 0 0;
    font-family: 'Montserrat-Light';
    color: #e3000f;
    font-size: 10px;
    line-height: 14px;
}

.error-message {
    width: 100%;
    display: table;
    padding: 10px 0 0 0;
    font-family: 'Montserrat-Regular';
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    color: #767673;
}

    .error-message.ik {
        text-align: left;
        padding: 20px 0 0 40px;
    }

.success {
    color: green;
}

.error {
    color: #e3000f;
}

.btnMobileSearch {
    height: 30px;
    width: 30px;
    cursor: pointer;
    display: none;
    float: right;
    margin: 7px 0 0 0;
    background-image: url(../images/icon-search.png);
    background-position: center center;
    background-repeat: no-repeat;
}

/* ---------------- Mobile Menu ---------------- */
nav:not(.mm-menu) {
    display: none;
}

.mmenu {
    display: none;
    position: absolute;
    width: 40px;
    height: 35px;
    left: 25px;
    top: 23px;
}

    .mmenu a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 34px;
        height: 26px;
        padding: 4px 0;
        margin: 2px;
    }

        .mmenu a:before, .mmenu a:after {
            content: '';
            display: block;
            background-color: #e3000f;
            height: 2px;
        }

        .mmenu a:after {
            background-color: #3b3b3a;
        }

        .mmenu a span {
            background-color: #009ee3;
            display: block;
            height: 2px;
            margin: 8px 0;
        }

.mm-btn.mm-btn_close.mm-navbar__btn {
    position: absolute;
    right: 0;
}

.contact-address-text.no-height {
    height: auto;
    margin-bottom: 10px;
    color: #767680;
}

.contact-box.big-line {
    width: 100%;
}

.contact-box.fileload {
    width: 100%;
    border: 0;
    background: none
}

.error {
    color: red;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.success {
    color: green;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.send-form-box {
    width: 100%;
    display: table;
    margin-bottom: 10px
}

    .send-form-box .security-refresh {
        margin-left: 0
    }

    .send-form-box .securitybox {
        margin-right: 20px;
    }

.modal.document-mail {
    width: 36.50% !important;
    left: 47.5%;
    top: 22% !important;
    background: #f7f7f7;
}

.modal-header.general button {
    width: 35px;
    height: 35px;
    color: #000;
}

.help-block {
    font-size: 16px;
    width: 100%;
    display: table;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 3px 7px 2px rgb(0 0 0 / 13%);
    border-radius: 8px;
}

.help-block-head {
    background: url(../images/artilast.png) no-repeat;
    background-position: left;
    padding: 27px 63px;
    cursor: pointer;
    border-radius: 5px;
    color: #403e3e;
    font-size: 18px;
    font-family: 'Montserrat-Medium';
    width: 100%;
    margin-left: 30px;
}

.help-block.active .help-block-head {
    background-color: #fff;
    border-color: #ffad00;
    transition: all .3s;
    border-radius: 11px;
    background-image: url(../images/eksilast.png);
    margin-left: 30px;
    font-size: 18px;
    color: #e3000f;
    width: 97%;
    padding: 20px 0 16px 67px;
}

.help-block-text {
    width: 100%;
    padding: 38px 96px;
    font-size: 16px;
    line-height: 25px;
    display: none;
    border-top: 0;
    border-radius: 5px;
    font-family: 'Montserrat-Regular';
    color: #767673;
}

.help-block-editor {
    width: 80%;
    float: left;
    padding-bottom: 20px;
}

.help-block.active .help-block-text {
    display: block;
    animation: fadeIn .3s;
    padding-top: 0px;
}

.btnIK {
    background: #009fe3;
    color: #fff;
    padding: 10px;
    float: right;
    margin-top: 22px;
}

    .btnIK:hover {
        color: #009fe3;
        background: transparent;
    }

.modal.application {
    width: 45.6123% !important;
    left: 43%;
    top: 22% !important;
    background: #f7f7f7
}

    .modal.application .modal-body {
        width: 75%;
        margin: 30px auto;
    }

.file-img {
    background: url(../images/file.svg) no-repeat left;
    display: inline-block;
    width: 35px;
    height: 24px;
    float: left;
    background-size: 100%;
}

input[type=file] {
    display: block;
}

.file-upload {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: table;
    background: #e8f0f8;
    border-radius: 10px;
    padding: 18px 25px 18px 35px;
    border: 2px solid #c1dbf5;
}

    .file-upload input {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        cursor: pointer;
        opacity: 0;
    }

.list-check {
    padding: 0;
    display: inline-block;
    margin: 0
}

    .list-check a {
        color: #009fe3;
        font-family: 'Montserrat-SemiBold'
    }

    .list-check input[type="checkbox"] {
        display: none
    }

        .list-check input[type="checkbox"] + label,
        .list-check input[type="radio"] + label {
            font-family: 'Montserrat-Light';
            font-size: 14px;
            color: #00529c;
            position: relative;
            bottom: 3px;
            cursor: pointer
        }

        .list-check input[type="checkbox"]:checked + label span,
        .list-check input[type="radio"]:checked + label span {
            background: url(../images/check.svg) no-repeat center;
            background-size: 63%;
        }

        .list-check input[type="checkbox"] + label span,
        .list-check input[type="radio"] + label span {
            border: 2px solid #009fe3;
            width: 25px;
            height: 20px;
            border-radius: 2px;
            display: inline-block;
            margin: -4px 10px 0 0;
            vertical-align: middle;
        }

.cv {
    font-size: 14px;
    font-family: 'Montserrat-Light';
    color: #00529c;
    float: right;
    line-height: 2.2;
    width: 91%;
}

    .cv span {
        float: right;
        display: inline-block;
        color: #ed1c24;
        font-family: 'Montserrat-SemiBold';
        border-bottom: 1px solid #ed1c24;
        line-height: 1.1;
        margin-top: 8px;
    }

.modal.detail {
    width: 45.6123% !important;
    left: 43%;
    top: 22% !important;
    background: #f7f7f7;
}

.modal-body.agreement .modal-text {
    max-height: 455px;
    overflow-y: scroll;
    padding: 0 20px 25px;
    margin: 25px 10px;
    font-size: 16px;
    font-family: 'Montserrat-Light';
    color: #797979;
}

    .modal-body.agreement .modal-text span {
        font-family: 'Montserrat-SemiBold';
        display: block;
        margin: 25px 0;
    }

.modal.detail .modal-body {
    width: 93.3%
}

.modal-text::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(250, 250, 250, 0.3);
    background-color: #e4e4e4;
    border-radius: 10px
}

.modal-text::-webkit-scrollbar {
    width: 8px;
    background-color: #e4e4e4;
    border-radius: 10px
}

.modal-text::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 10px
}

.BtnCVSend.right {
    float: right;
}

.FileErrors {
    display: block;
    width: 82%;
    margin: 0 auto 0;
}

label#lblCVError {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: 'Montserrat-Light';
    color: #00529c
}

.WError label#lblCVError {
    color: #e3000f;
}

.en-btn {
    background: url(../images/en.png) no-repeat center top;
    padding-top: 15px;
    min-height: 30px;
    background-size: 90%;
}

.ik-btn {
    background: #0b96ee;
    color: #fff;
    padding: 6px;
    text-align: center;
    width: 100%;
    font-family: 'Montserrat-Regular';
    font-size: 17px;
    display: inline-block;
    cursor: pointer;
    transition: all ease-in-out .5s;
}

    .ik-btn:hover {
        background: #000;
        color: #fff;
    }
/* width 1280 */
@media only screen and (min-width:1025px) and (max-width:1280px) {
    .modal.detail {
        width: 59.6123% !important;
        left: 43%;
        top: 17% !important;
    }

    .modal.application {
        width: 56.6123% !important;
        left: 45%;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .help-block-editor {
        width: 75%;
    }

    .modal.document-mail {
        width: 53.5% !important;
    }

    .logo {
        width: 20%;
        padding: 15px 0 0 10px;
    }

    .menu {
        width: calc(80% - 290px);
        padding: 34px 0 0 0;
    }

        .menu ul li a {
            font-size: 14px;
        }

    .banner-right {
        width: 290px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 7px 0 0;
    }

    .searchBlock {
        margin: 8px 0 0 0;
    }

    .lang {
        margin: 10px 0 0 0;
    }

        .lang a {
            font-size: 14px;
        }

    .banner-button {
        width: 80px;
        height: 40px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 46px;
        }

    .banner.fixed .logo {
        height: 60px;
    }

    .banner.fixed .menu {
        padding-top: 15px;
    }

    .banner.fixed .searchBlock {
        height: auto;
    }

        .banner.fixed .searchBlock .textbox {
            padding: 1px 2px 1px 7px;
        }

    .banner.fixed .searchBtn {
        margin: 2px 0;
    }

    .banner.fixed .lang {
        height: auto;
    }

        .banner.fixed .lang a {
            line-height: 16px;
        }

    .banner.fixed .banner-button {
        height: 30px;
    }

        .banner.fixed .banner-button.b2b a {
            background-size: 40px;
        }

    .swiper-content-block {
        width: 285px;
        margin: 0 0 0 60px;
    }

    .slider-text {
        font-size: 30px;
        line-height: 35px;
    }

        .slider-text.slogan {
            font-size: 18px;
            line-height: 24px;
        }

    .SliderPagination {
        width: 20px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 30px;
        }

    .main-products {
        margin: 0 0 40px 0;
    }

    .main-product-item {
        height: auto;
    }

    .main-product-head {
        height: 110px;
        padding: 0 75px;
    }

        .main-product-head span {
            font-size: 18px;
            line-height: 22px;
        }

    .main-product-img {
        height: 260px;
        padding: 15px 70px 0 70px;
    }

    .main-product-item.text {
        padding: 30px 25px 0 30px;
    }

    .main-product-text-head {
        margin: 0 0 30px 0;
    }

        .main-product-text-head h1 {
            font-size: 22px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 190px;
        font-size: 16px;
        line-height: 26px;
    }

    .button {
        width: 165px;
        height: 45px;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        height: 430px;
        padding: 0 30px 0 35px;
    }

    .main-corporate-head {
        margin: 45px 0 15px 0;
        font-size: 22px;
        line-height: 30px;
    }

    .main-corporate-text {
        font-size: 16px;
    }

    .main-corporate-right {
        height: 430px;
    }

    .main-sectors {
        height: 440px;
        margin: 0 0 40px 0;
    }

    .main-sectors-right {
        padding: 0 20px 0 0;
    }

    .main-sectors-item-top {
        height: 230px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item-bottom {
        height: 210px;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-img span {
        font-size: 26px;
        line-height: 32px;
    }

    .main-new-catalog {
        margin: 0 0 30px 0;
    }

    .main-news-left {
        height: 240px;
        padding: 40px 40px 0 320px;
        background-size: 280px;
        background-position: left top;
    }

    .main-news-block {
        width: 410px;
    }

    .news-item {
        height: 130px;
    }

    .main-news-head {
        font-size: 20px;
        line-height: 26px;
    }

    .main-news-text {
        font-size: 15px;
        line-height: 24px;
    }

    .main-catalog-right {
        height: 240px;
    }

    .main-catalog-block {
        width: 400px;
    }

    .main-catalog-img {
        width: 160px;
        height: 160px;
    }

    .main-catalog-content {
        width: calc(100% - 160px);
        height: 160px;
        padding: 0 0 0 24px;
        font-size: 24px;
        line-height: 30px;
    }

    .main-brands-block {
        margin: 0 0 30px 0;
    }

    .footer {
        height: 350px;
    }

    .footer-left {
        width: 28%;
        padding: 35px 15px 0 20px;
    }

    .footer-menu {
        width: 16%;
        padding: 35px 0 0 20px;
    }

    .footer-products {
        width: 20%;
        padding: 35px 0 0 0;
    }

    .footer-contact {
        width: 18%;
        padding: 35px 0 0 0;
    }

    .footer-enew {
        width: 24%;
        padding: 35px 20px 0 25px;
        background-size: 200px;
    }

    .footer-sectors {
        padding-top: 35px;
    }

    .footer-left-item {
        height: 100px;
        padding: 0 0 0 32px;
        background-position: left 4px;
        background-size: 22px;
    }

    .footer-left-item-head {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-links-list li {
        margin: 6px 0;
    }

        .footer-links-list li a {
            font-size: 14px;
        }

    .footer-left-item-text.address {
        padding: 0 20px 0 0;
    }

    .footer-contaxt-phone a, .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-social-block {
        /* margin: 90px 0 0 0; */
    }

    .footer-social-item {
        width: 34px;
        margin: 0 5px 0 0;
    }

    .enewbox {
        width: 84%;
        height: 40px;
    }

        .enewbox .textbox {
            font-size: 12px;
            padding: 0 0 0 14px;
        }

    .enewbtn {
        width: 16%;
        height: 40px;
        background-size: 22px;
    }

    .enews-content {
        padding: 0 75px 0 0;
        margin: 10px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-bottom {
        height: auto;
    }

    .footer-logo {
        width: 240px;
        height: 40px;
        margin: 0 0 0 20px;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            font-size: 12px;
        }

    .router-content, .content {
        padding: 0 25px;
    }

    .news-container {
        min-height: inherit;
        margin: 0 0 40px 0;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 23%;
            height: 390px;
            margin: 0 2% 35px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-position: calc(100% + 20px) calc(100% + 28px);
        background-size: 90px;
    }

    .news-item-img {
        height: 160px;
    }

    .news-item-content {
        height: 160px;
    }

    .news-item-head {
        font-size: 15px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 480px;
    }

    .news-detail-content {
        width: calc(100% - 480px);
        padding: 0 0 0 30px;
    }

    .news-detail-head {
        font-size: 18px;
        line-height: 22px;
    }

    .other-news {
        width: 1280px;
        padding: 0 25px 0 50px;
    }

    .newslider .slick-next {
        right: -10px;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
        margin: 0 25px 0 0;
    }

    .newslider .news-item-img {
        height: 140px;
    }

    .newslider .news-item-head {
        font-size: 14px;
    }

    .newslider .news-item-text {
        font-size: 13px;
        line-height: 22px;
    }

    .offer-left {
        width: 450px;
        height: 520px;
    }

    .offer-left-content {
        width: 120px;
        margin: 45px 0 0 35px;
        font-size: 14px;
        line-height: 22px;
    }

        .offer-left-content span {
            font-size: 26px;
            line-height: 26px;
        }

    .offer-right {
        width: calc(100% - 450px);
        padding: 0 0 0 30px;
    }

    .contact-box {
        width: 49%;
    }

    .custom-select select {
        padding: 0 0 0 15px;
    }

    .contact-box.small2 {
        width: 27%;
        margin-right: 2%;
    }

    .contact-box .textbox {
        padding: 10px 10px 10px 15px;
    }

    .increase {
        margin: 0 0 7px 5px;
    }

    .securitybox {
        margin: 0 30px 0 0;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .content.contact {
        padding: 0 25px;
    }

    .contact-top {
        margin: 0 0 45px 0;
    }

    .contact-top-item-top {
        padding: 0 25px 0 20px;
    }

    .contact-address-head {
        margin: 0 0 0 -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        font-size: 14px;
        line-height: 22px;
    }

    .phone-block strong {
        font-size: 14px;
        line-height: 26px;
    }

    .phone-block a {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-top-item-map {
    }

    .contact-bottom {
        padding: 0 190px;
    }

    .brands-container ul {
        width: 102%;
    }

        .brands-container ul li {
            width: 18%;
            height: 130px;
            margin: 0 2% 30px 0;
        }

    .brands-item-block {
        padding: 15px;
    }

        .brands-item-block img {
            max-width: 160px;
            max-height: 90px;
        }

    .sector-list {
        width: 270px;
        padding: 20px 20px 30px 25px;
    }

        .sector-list ul li a {
            font-size: 15px;
            line-height: 20px;
        }

            .sector-list ul li a::after {
                width: 12px;
                height: 8px;
                left: -25px;
            }

    .sector-detail {
        width: calc(100% - 300px);
        margin: 0 0 0 30px;
        font-size: 14px;
        line-height: 26px;
    }

        .sector-detail img {
            margin: 0 0 10px 0;
        }

        .sector-detail p {
            margin: 0 0 10px 0;
        }
    /*.product-item-list ul { width: 102%; } .product-item-list ul li { width: 23%; height: 390px; margin: 0 2% 40px 0; }*/ /*.product-item-block { padding: 25px 20px 0 20px; background-position: calc(100% + 20px) calc(100% + 30px); background-size: 90px; } .product-item-head {margin: 0 0 5px 0; font-size: 20px; line-height: 28px; display: table; } .product-item-img { height: 220px; padding: 10px 0; }*/
    .product-list {
        width: 310px;
        padding: 20px 20px 25px 25px;
    }

        .product-list ul li a {
            line-height: 20px;
        }

            .product-list ul li a::after {
                width: 14px;
                height: 8px;
                left: -25px;
            }

    .product-item-list.list {
        width: calc(100% - 350px);
        margin: 0 0 0 40px;
    }

        .product-item-list.list ul li {
            width: 31.3%;
        }

    .product-detail {
        width: calc(100% - 350px);
        margin: 0 0 0 40px;
        padding: 10px 0 0 0;
    }

    .product-detail-head {
        font-size: 26px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 26px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 340px;
    }

    .product-detail-gallery {
        width: 340px;
        height: 300px;
    }

    .prod-gallery-item {
        height: 300px;
    }

    .product-detail-document-head span {
        font-size: 14px;
    }

    .product-detail-document ul li a {
        line-height: 22px;
    }

    .product-detail-right {
        width: calc(100% - 340px);
        padding: 0 0 0 35px;
        font-size: 15px;
        line-height: 32px;
    }

    .corporate-right p {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-left {
        width: 260px;
        padding: 20px 20px 25px 25px;
    }

        .corporate-left ul li a {
            font-size: 15px;
            line-height: 20px;
        }

            .corporate-left ul li a::after {
                width: 12px;
                height: 9px;
                left: -25px;
            }

    .corporate-right {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
    }

    .about-us-img {
        height: 400px;
    }

    .about-us-top {
        width: 225px;
        height: 195px;
        padding: 148px 10px 5px 50px;
        font-size: 13px;
        line-height: 16px;
        right: -10px;
        bottom: -10px;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 20px;
        }

    .about-us-text {
        padding: 0 0 0 22px;
    }

        .about-us-text p {
            margin: 0 0 16px 0;
        }

    .corporate-right.mission {
        width: calc(100% - 310px);
        margin: 0 0 0 50px;
    }

    .mission-head {
        min-height: inherit;
        padding: 5px 0 15px 0;
        font-size: 18px;
        line-height: 30px;
    }

        .mission-head p {
            font-size: 18px;
            line-height: 30px;
        }

    .about-box {
        width: 240px;
        height: 280px;
        margin: 0 15px 25px 0;
        padding: 25px 20px 10px 20px;
        background-size: 90px;
    }

    .about-box-head {
        font-size: 15px;
        line-height: 25px;
    }

    .about-box-text {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-right.history {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporet-history-item-block {
        padding: 0 75px;
    }

    .corporate-sube-list {
        padding: 15px 0 0 70px;
        background-position: 1px 12px;
        background-size: 50px;
    }

    .sube-list-box {
        min-width: 178px;
        height: 45px;
        font-size: 15px;
        margin: 0 15px 20px 0;
        line-height: 20px;
    }

        .sube-list-box a {
            /* max-width: 170px; */
        }

    .corporate-sube-content-text strong {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-sube-content-gallery ul {
        width: 102%;
    }

        .corporate-sube-content-gallery ul li {
            width: 23%;
            height: 125px;
            margin: 0 2% 30px 0;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-content {
        padding: 15px 0 0 0;
    }

    .corporate-ik-text {
        min-height: inherit;
    }

        .corporate-ik-text strong {
            font-size: 18px;
            line-height: 25px;
        }

    .corporate-promotion-film {
        height: 500px;
        margin: 0;
    }
}

/* width 1366 */
@media only screen and (min-width:1281px) and (max-width:1366px) {
    .modal.detail {
        width: 55.6123% !important;
        left: 43%;
        top: 18% !important;
    }

    .modal.application {
        width: 53.6123% !important;
        left: 44%;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .help-block-editor {
        width: 75%;
    }

    .modal.document-mail {
        width: 50.5% !important;
        left: 45.5%;
    }

    .logo {
        width: 18%;
        padding: 10px 0 0 20px;
    }

    .menu {
        width: calc(82% - 380px);
        padding: 31px 0 0 0;
    }

        .menu ul li a {
            font-size: 14px;
        }

    .banner-right {
        width: 380px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0px 10px 0 0;
    }

    .lang {
        margin: 7px 0 0 0;
    }

        .lang a {
            font-size: 14px;
        }

    .banner-button {
        width: 85px;
        height: 65px;
    }

        .banner-button.b2b a {
            background-size: 64px;
        }

    .banner.fixed .logo {
        height: 50px;
    }

    .banner.fixed .menu {
        padding-top: 10px;
    }

    .banner.fixed .searchBlock {
        height: auto;
    }

        .banner.fixed .searchBlock .textbox {
            padding: 1px 2px 1px 7px;
        }

    .banner.fixed .searchBtn {
        margin: 2px 0;
    }

    .banner.fixed .lang {
        height: auto;
    }

        .banner.fixed .lang a {
            line-height: 16px;
        }

    .banner.fixed .banner-button {
        height: 50px;
    }

    .swiper-content-block {
        margin: 0 0 0 100px;
    }

    .SliderPagination {
        width: 20px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 30px;
        }

    .main-products {
        margin: 0 0 40px 0;
    }

    .main-product-item {
        height: 485px;
    }

    .main-product-head {
        padding: 0 50px;
    }

        .main-product-head span {
            font-size: 24px;
            line-height: 28px;
        }

    .main-product-img {
        height: 330px;
    }

    .main-product-item.text {
        padding: 30px 20px 0 25px;
    }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        height: 430px;
        padding: 0 30px 0 35px;
    }

    .main-corporate-head {
        margin: 45px 0 15px 0;
    }

    .main-corporate-right {
        height: 430px;
    }

    .main-sectors {
        height: 440px;
        margin: 0 0 40px 0;
    }

    .main-sectors-right {
        padding: 0 20px 0 0;
    }

    .main-sectors-item-top {
        height: 230px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item-bottom {
        height: 210px;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-img span {
        font-size: 26px;
        line-height: 32px;
    }

    .main-new-catalog {
        margin: 0 0 30px 0;
    }

    .main-news-left {
        padding: 45px 40px 0 365px;
        background-size: 315px;
        background-position: left top;
    }

    .main-news-block {
        width: 415px;
    }

    .main-catalog-block {
        width: 400px;
    }

    .main-catalog-img {
        width: 160px;
        height: 160px;
    }

    .main-catalog-content {
        width: calc(100% - 160px);
        height: 160px;
        padding: 0 0 0 24px;
        font-size: 24px;
        line-height: 30px;
    }

    .main-brands-block {
        margin: 0 0 30px 0;
    }

    .footer {
        height: 350px;
    }

    .footer-left {
        width: 28%;
        padding: 35px 25px 0 20px;
    }

    .footer-menu {
        width: 16%;
        padding: 35px 0 0 20px;
    }

    .footer-products {
        width: 17%;
        padding: 35px 0 0 0;
    }

    .footer-contact {
        width: 18%;
        padding: 35px 0 0 0;
    }

    .footer-enew {
        width: 24%;
        padding: 35px 20px 0 30px;
        background-size: 200px;
    }

    .footer-sectors {
        padding-top: 35px;
    }

    .footer-left-item {
        height: 100px;
        padding: 0 0 0 32px;
        background-position: left 4px;
        background-size: 22px;
    }

    .footer-left-item-head {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-links-list li {
        margin: 6px 0;
    }

        .footer-links-list li a {
            font-size: 14px;
        }

    .footer-left-item-text.address {
        padding: 0 25px 0 0;
    }

    .footer-contaxt-phone a, .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-social-block {
        /* margin: 90px 0 0 0; */
    }

    .footer-social-item {
        width: 34px;
        margin: 0 5px 0 0;
    }

    .enewbox {
        width: 84%;
        height: 40px;
    }

        .enewbox .textbox {
            font-size: 12px;
            padding: 0 0 0 14px;
        }

    .enewbtn {
        width: 16%;
        height: 40px;
        background-size: 22px;
    }

    .enews-content {
        padding: 0 85px 0 0;
        margin: 10px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-bottom {
        height: auto;
    }

    .footer-logo {
        width: 240px;
        height: 40px;
        margin: 0 0 0 20px;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            font-size: 12px;
        }

    .router-block {
        margin-top: 80px;
    }

    .router-content, .content {
        padding: 0 35px;
    }

    .news-container {
        min-height: inherit;
        margin: 0 0 40px 0;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 23%;
            height: 390px;
            margin: 0 2% 35px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-position: calc(100% + 20px) calc(100% + 28px);
        background-size: 90px;
    }

    .news-item-img {
        height: 160px;
    }

    .news-item-content {
        height: 160px;
    }

    .news-item-head {
        font-size: 15px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 480px;
    }

    .news-detail-content {
        width: calc(100% - 480px);
        padding: 0 0 0 30px;
    }

    .other-news {
        width: 1349px;
        padding: 0 25px 0 50px;
    }

    .newslider .slick-next {
        right: -10px;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
        margin: 0 25px 0 0;
    }

    .newslider .news-item-img {
        height: 140px;
    }

    .newslider .news-item-head {
        font-size: 14px;
    }

    .newslider .news-item-text {
        font-size: 13px;
        line-height: 22px;
    }

    .offer-left {
        width: 500px;
        height: 520px;
    }

    .offer-left-content {
        width: 120px;
        margin: 45px 0 0 35px;
        font-size: 14px;
        line-height: 22px;
    }

        .offer-left-content span {
            font-size: 26px;
            line-height: 26px;
        }

    .offer-right {
        width: calc(100% - 500px);
        padding: 0 0 0 30px;
    }

    .contact-box {
        width: 49%;
    }

    .custom-select select {
        padding: 0 0 0 15px;
    }

    .contact-box.small2 {
        width: 27%;
        margin-right: 2%;
    }

    .contact-box .textbox {
        padding: 10px 10px 10px 15px;
    }

    .increase {
        margin: 0 0 7px 5px;
    }

    .securitybox {
        margin: 0 30px 0 0;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .content.contact {
        padding: 0 35px;
    }

    .contact-top {
        margin: 0 0 45px 0;
    }

    .contact-top-item-top {
        padding: 0 25px 0 20px;
    }

    .contact-address-head {
        margin: 0 0 0 -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        font-size: 14px;
        line-height: 22px;
    }

    .phone-block strong {
        font-size: 14px;
        line-height: 26px;
    }

    .phone-block a {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-top-item-map {
    }

    .contact-bottom {
        padding: 0 190px;
    }

    .brands-container ul {
        width: 102%;
    }

        .brands-container ul li {
            width: 18%;
            margin: 0 2% 30px 0;
        }

    .sector-list {
        width: 270px;
        padding: 20px 20px 30px 25px;
    }

        .sector-list ul li a {
            font-size: 16px;
            line-height: 20px;
        }

            .sector-list ul li a::after {
                width: 12px;
                height: 8px;
                left: -25px;
            }

    .sector-detail {
        width: calc(100% - 300px);
        margin: 0 0 0 30px;
        font-size: 14px;
        line-height: 26px;
    }

        .sector-detail img {
            margin: 0 0 10px 0;
        }

        .sector-detail p {
            margin: 0 0 10px 0;
        }
    /*.product-item-list ul { width: 102%; } .product-item-list ul li { width: 23%; height: 390px; margin: 0 2% 40px 0; }*/ /*.product-item-block { padding: 25px 20px 0 20px; background-position: calc(100% + 20px) calc(100% + 30px); background-size: 90px; } .product-item-head {margin: 0 0 5px 0; font-size: 20px; line-height: 28px; display: table; } .product-item-img { height: 220px; padding: 10px 0; }*/
    .product-list {
        width: 310px;
        padding: 20px 20px 25px 25px;
    }

        .product-list ul li a {
            line-height: 20px;
        }

            .product-list ul li a::after {
                width: 14px;
                height: 8px;
                left: -25px;
            }

    .product-item-list.list {
        width: calc(100% - 350px);
        margin: 0 0 0 40px;
    }

        .product-item-list.list ul li {
            width: 31.3%;
        }

    .product-detail {
        width: calc(100% - 350px);
        margin: 0 0 0 40px;
        padding: 10px 0 0 0;
    }

    .product-detail-head {
        font-size: 26px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 26px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 340px;
    }

    .product-detail-gallery {
        width: 340px;
        height: 300px;
    }

    .prod-gallery-item {
        height: 300px;
    }

    .product-detail-document-head span {
        font-size: 14px;
    }

    .product-detail-document ul li a {
        line-height: 22px;
    }

    .product-detail-right {
        width: calc(100% - 340px);
        padding: 0 0 0 35px;
        font-size: 15px;
        line-height: 32px;
    }

    .corporate-right p {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-left {
        width: 260px;
        padding: 20px 20px 25px 25px;
    }

        .corporate-left ul li a {
            font-size: 15px;
            line-height: 20px;
        }

            .corporate-left ul li a::after {
                width: 12px;
                height: 9px;
                left: -25px;
            }

    .corporate-right {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
    }

    .about-us-img {
        height: 420px;
    }

    .about-us-top {
        width: 235px;
        height: 200px;
        padding: 150px 10px 5px 50px;
        font-size: 13px;
        line-height: 18px;
    }

        .about-us-top span {
            font-size: 17px;
            line-height: 20px;
        }

    .about-us-text {
        padding: 0 0 0 25px;
    }

        .about-us-text p {
            margin: 0 0 18px 0;
        }

    .corporate-right.mission {
        width: calc(100% - 310px);
        margin: 0 0 0 50px;
    }

    .mission-head {
        min-height: inherit;
        padding: 5px 0 15px 0;
        font-size: 18px;
        line-height: 30px;
    }

        .mission-head p {
            font-size: 18px;
            line-height: 30px;
        }

    .about-box {
        width: 260px;
        height: 250px;
        margin: 0 15px 25px 0;
        padding: 25px 20px 10px 20px;
        background-size: 90px;
    }

    .about-box-head {
        font-size: 15px;
        line-height: 25px;
    }

    .about-box-text {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-right.history {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporet-history-item-block {
        padding: 0 75px;
    }

    .corporate-sube-list {
        padding: 20px 0 0 80px;
        background-position: 1px 15px;
    }

    .sube-list-box {
        min-width: 190px;
        height: 50px;
        font-size: 15px;
        margin: 0 20px 20px 0;
    }

    .corporate-sube-content-text strong {
        font-size: 15px;
        line-height: 25px;
    }

    .corporate-sube-content-gallery ul li {
        height: 140px;
    }

    .corporate-ik-content {
        padding: 15px 0 0 0;
    }

    .corporate-ik-text {
        min-height: inherit;
    }

        .corporate-ik-text strong {
            font-size: 18px;
            line-height: 25px;
        }

    .corporate-promotion-film {
        height: 500px;
        margin: 0;
    }
}

@media only screen and (min-width:1367px) and (max-width:1409px) {
    .about-box {
        width: 290px !important;
    }

    .sube-list-box {
        min-width: 200px;
    }
}
/* width 1440 */
@media only screen and (min-width:1367px) and (max-width:1440px) {
    .modal.detail {
        width: 50.6123% !important;
        left: 46%;
    }

    .modal.application {
        width: 50.6123% !important;
        left: 46%;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .help-block-editor {
        width: 75%;
    }

    .modal.document-mail {
        width: 47.5% !important;
        left: 46.5%;
    }

    .logo {
        width: 20%;
        padding: 20px 0 0 25px;
    }

    .menu {
        width: calc(80% - 398px);
    }

    .banner-right {
        width: 396px;
    }

    .banner-right-left {
        width: 216px;
        padding: 0 12px 0 0;
    }

    .lang {
        margin: 6px 0 0 0;
    }

    .banner-button {
        width: 90px;
        height: 70px;
    }

    .main-product-item.text {
        padding: 54px 25px 0 40px;
    }

    .swiper-content-block {
        margin: 0 0 0 140px;
    }

    .main-corporate-left {
        padding: 0 90px 0 80px;
    }

    .main-sectors-item-top {
        height: 270px;
    }

    .main-sectors-item-bottom {
        height: 250px;
    }

    .main-product-img {
        padding: 15px 60px 0 60px;
    }

    .main-news-left {
        padding: 45px 0 0 415px;
    }

    .main-product-head {
        padding: 0 40px;
    }

    .footer {
        height: 370px;
    }

    .footer-left {
        width: 28%;
        padding: 40px 50px 0 30px;
    }

    .footer-left-item {
        height: 100px;
        padding: 0 0 0 42px;
        background-position: left 5px;
        background-size: 28px;
    }

    .footer-left-item-head {
        font-size: 17px;
        line-height: 26px;
    }

    .footer-left-item-text {
        font-size: 15px;
        line-height: 20px;
    }

    .footer-menu {
        width: 16%;
        padding: 40px 0 0 30px;
    }

    .footer-links-head {
        font-size: 17px;
        line-height: 26px;
        margin: 0 0 7px 0;
    }

    .footer-links-list li a {
        font-size: 15px;
        line-height: 18px;
    }

    .footer-products {
        width: 18%;
        padding: 40px 0 0 0;
    }

    .footer-links-list.product {
        margin: 0 0 15px 0;
    }

    .footer-contact {
        width: 18%;
    }

    .footer-left-item-text.address {
        padding: 0 30px 0 0;
    }

    .footer-contaxt-phone a, .footer-contaxt-mail a {
        font-size: 15px;
        line-height: 22px;
    }

    .footer-social-block {
        /* margin: 100px 0 0 0; */
    }

    .footer-social-item {
        width: 34px;
        margin: 0 10px 0 0;
    }

    .footer-enew {
        width: 25%;
        padding: 40px 25px 0 30px;
        background-size: 230px;
    }

    .enews-content {
        margin: 5px 0 0 0;
        padding: 0 130px 0 0;
    }

    .footer-sectors {
        padding-top: 40px;
    }

    .footer-logo {
        width: 300px;
        height: 60px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

    .router-content, .content {
        padding: 0 50px;
    }

    .news-container {
        min-height: 470px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 23%;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 25px 25px 10px 25px;
    }

    .news-item-img {
        height: 160px;
    }

    .news-item-content {
        height: 175px;
    }

    .news-detail-img {
        width: 525px;
    }

    .news-detail-content {
        width: calc(100% - 525px);
        padding: 0 0 0 35px;
    }

    .other-news {
        width: 1440px;
        padding: 0 25px 0 50px;
    }

    .newslider .news-item-block {
        width: calc(100% - 30px);
        margin-right: 30px;
    }

    .offer-left {
        width: 500px;
    }

    .offer-right {
        width: calc(100% - 500px);
        padding: 18px 0 0 40px;
    }

    .contact-box .textbox {
        padding: 10px 15px 10px 18px;
    }

    .custom-select select {
        padding: 0 0 0 18px;
    }

    .securitybox .textbox {
        padding: 0 0 0 18px;
    }

    .contact-top-item-top {
        padding: 0 35px 0 25px;
    }

    .content.contact {
        padding: 0 50px;
    }

    .brands-container ul li {
        height: 125px;
    }

    .sector-list {
        width: 320px;
        padding: 25px 30px 45px 35px;
    }

        .sector-list ul li a::after {
            left: -35px;
        }

    .sector-detail {
        width: calc(100% - 375px);
    }
    /*.product-item-list ul { width: 103%; } .product-item-list ul li { width: 22%; height: 450px; margin: 0 3% 40px 0; }*/ /*.product-item-head { font-size: 20px; line-height: 26px; } .product-item-block { padding: 25px; background-size: 95px; background-position: calc(100% + 20px) calc(100% + 26px); } .product-item-img { height: 265px; padding: 15px 0; }*/
    .product-item-list.list {
        width: calc(100% - 420px);
        margin: 0 0 0 75px;
    }

        .product-item-list.list ul {
            width: 104%;
        }

            .product-item-list.list ul li {
                width: 31.3%;
                height: 330px;
            }

        .product-item-list.list .product-item-img {
            height: 200px;
            padding: 10px 0 20px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 200px;
        }

    .product-list {
        width: 320px;
        padding: 25px 30px 45px 35px;
    }

        .product-list ul li a::after {
            left: -35px;
        }

    .product-detail {
        width: calc(100% - 370px);
        margin: 0 0 0 50px;
        padding: 15px 0 0 0;
    }

    .product-detail-head {
        margin: 0 0 15px 0;
    }

    .product-detail-left {
        width: 400px;
    }

    .product-detail-gallery {
        width: 400px;
    }

    .product-detail-right {
        width: calc(100% - 400px);
        padding: 0 0 0 30px;
    }

    .corporate-left {
        width: 280px;
        padding: 25px 30px 45px 35px;
    }

        .corporate-left ul li a::after {
            left: -35px;
        }

    .corporate-right {
        width: calc(100% - 320px);
        margin: 0 0 0 40px;
    }

    .about-us-img {
        height: 450px;
    }

    .about-us-top {
        width: 300px;
        height: 255px;
        padding: 185px 15px 5px 80px;
        font-size: 16px;
        line-height: 20px;
    }

        .about-us-top span {
            font-size: 20px;
            line-height: 26px;
        }

    .about-us-text {
        padding: 0 0 0 30px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

    .corporate-right.mission {
        width: calc(100% - 365px);
        margin: 0 0 0 45px;
    }

    .mission-head {
        min-height: inherit;
        padding: 10px 0 15px 0;
        font-size: 18px;
        line-height: 30px;
    }

        .mission-head p {
            font-size: 18px;
            line-height: 30px;
        }

    .about-box {
        width: 290px;
        height: 250px;
        padding: 20px 20px 10px 20px;
        margin: 0 15px 25px 0;
        background-size: 90px;
        background-position: calc(100% + 18px) calc(100% + 20px);
    }

    .about-box-head {
        margin: 0 0 5px 0;
    }

    .about-box-text {
        font-size: 15px;
        line-height: 26px;
    }

    .corporate-right.history {
        width: calc(100% - 385px);
        margin: 0 0 0 65px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-sube-list {
        padding: 22px 0 3px 95px;
    }

    .sube-list-box {
        height: 50px;
        font-size: 16px;
        margin: 0 2% 20px 0;
        font-size: 16px;
        min-width: 130px;
    }

    .corporate-sube-content-text {
        margin: 0 0 30px 0;
    }

        .corporate-sube-content-text p, .corporate-sube-content-text strong {
            font-size: 14px;
        }

    .corporate-sube-content-gallery ul li {
        height: 130px;
    }

        .corporate-sube-content-gallery ul li img {
            border-radius: 14px;
        }

    .corporate-ik-content {
        padding: 25px 0 0 0;
    }

    .corporate-ik-text {
        min-height: inherit;
    }

        .corporate-ik-text p {
            font-size: 14px;
        }

        .corporate-ik-text strong {
            font-size: 18px;
        }
}

@media only screen and (min-width:1441px) and (max-width:1550px) {
    .modal.detail {
        width: 51.6123% !important;
        left: 43%;
        top: 15% !important;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .modal.application {
        width: 48.6123% !important;
    }

    .modal.document-mail {
        width: 45.5% !important;
    }

    .logo {
        width: 20%;
        padding: 20px 0 0 25px;
    }

    .menu {
        width: calc(80% - 390px);
    }

    .banner-right {
        width: 390px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 10px 0 0;
    }

    .lang {
        margin: 5px 0 0 0;
    }

    .banner-button {
        width: 90px;
        height: 70px;
    }

    .main-product-item.text {
        padding: 54px 25px 0 40px;
    }

    .swiper-content-block {
        margin: 0 0 0 140px;
    }

    .main-corporate-left {
        padding: 0 90px 0 80px;
    }

    .main-sectors-item-top {
        height: 270px;
    }

    .main-sectors-item-bottom {
        height: 250px;
    }

    .main-product-head {
        padding: 0 55px;
    }

    .main-product-img {
        padding: 15px 70px 0 70px;
    }

    .main-news-left {
        padding: 45px 0 0 415px;
    }

    .footer {
        height: 370px;
    }

    .footer-left {
        width: 28%;
        padding: 40px 50px 0 30px;
    }

    .footer-left-item {
        height: 100px;
        padding: 0 0 0 42px;
        background-position: left 5px;
        background-size: 28px;
    }

    .footer-left-item-head {
        font-size: 17px;
        line-height: 26px;
    }

    .footer-left-item-text {
        font-size: 15px;
        line-height: 20px;
    }

    .footer-menu {
        width: 16%;
        padding: 40px 0 0 30px;
    }

    .footer-links-head {
        font-size: 17px;
        line-height: 26px;
        margin: 0 0 7px 0;
    }

    .footer-links-list li a {
        font-size: 15px;
        line-height: 18px;
    }

    .footer-products {
        width: 20%;
        padding: 40px 0 0 0;
    }

    .footer-links-list.product {
        margin: 0 0 15px 0;
    }

    .footer-contact {
        width: 18%;
    }

    .footer-left-item-text.address {
        padding: 0 30px 0 0;
    }

    .footer-contaxt-phone a, .footer-contaxt-mail a {
        font-size: 15px;
        line-height: 22px;
    }

    .footer-social-block {
        margin: 100px 0 0 0;
    }

    .footer-social-item {
        width: 34px;
        margin: 0 10px 0 0;
    }

    .footer-sectors {
        padding-top: 40px;
    }

    .footer-enew {
        width: 25%;
        padding: 40px 25px 0 30px;
        background-size: 230px;
    }

    .enews-content {
        margin: 5px 0 0 0;
        padding: 0 130px 0 0;
    }

    .footer-logo {
        width: 300px;
        height: 60px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

    .router-content, .content {
        padding: 0 50px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 23%;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 30px 25px 10px 25px;
    }

    .news-item-img {
        height: 180px;
    }

    .news-detail-content {
        padding: 0 80px 0 35px;
    }

    .other-news {
        width: 1500px;
    }

    .newslider .news-item-block {
        width: calc(100% - 30px);
        margin-right: 30px;
    }

    .offer-right {
        padding: 18px 80px 0 40px;
    }

    .contact-box .textbox {
        padding: 10px 15px 10px 18px;
    }

    .custom-select select {
        padding: 0 0 0 18px;
    }

    .securitybox .textbox {
        padding: 0 0 0 18px;
    }

    .contact-top-item-top {
        padding: 0 35px 0 25px;
    }

    .content.contact {
        padding: 0 100px;
    }

    .brands-container ul li {
        height: 135px;
    }
    /*.product-item-list ul { width: 103%; } .product-item-list ul li { width: 22%; height: 465px; margin: 0 3% 40px 0; }*/ /*.product-item-block { padding: 25px; } .product-item-img { height: 290px; }*/
    .product-item-list.list {
        width: calc(100% - 420px);
        margin: 0 0 0 75px;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 330px;
        }

        .product-item-list.list .product-item-img {
            height: 215px;
            padding: 10px 0 20px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 215px;
        }

    .product-detail {
        width: calc(100% - 420px);
        margin: 0 0 0 75px;
        padding: 15px 0 0 0;
    }

    .product-detail-head {
        margin: 0 0 15px 0;
    }

    .product-detail-left {
        width: 400px;
    }

    .product-detail-gallery {
        width: 400px;
    }

    .product-detail-right {
        width: calc(100% - 400px);
        padding: 0 0 0 30px;
    }

    .corporate-left {
        width: 320px;
        padding: 25px 30px 45px 35px;
    }

        .corporate-left ul li a::after {
            left: -35px;
        }

    .corporate-right {
        width: calc(100% - 365px);
        margin: 0 0 0 45px;
    }

    .about-us-img {
        height: 470px;
    }

    .about-us-top {
        width: 300px;
        height: 255px;
        padding: 185px 15px 5px 80px;
        font-size: 16px;
        line-height: 20px;
    }

        .about-us-top span {
            font-size: 20px;
            line-height: 26px;
        }

    .about-us-text {
        padding: 0 0 0 40px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

    .corporate-right.mission {
        width: calc(100% - 365px);
        margin: 0 0 0 45px;
    }

    .mission-head {
        min-height: 80px;
        padding: 25px 0 15px 0;
    }

    .about-box {
        width: 300px;
        padding: 25px 25px 10px 25px;
        margin: 0 15px 25px 0;
    }

    .corporate-right.history {
        width: calc(100% - 385px);
        margin: 0 0 0 65px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-sube-list {
        padding: 22px 0 3px 95px;
    }

    .sube-list-box {
        min-width: 19%;
        margin: 0 1% 20px 0;
        font-size: 16px;
    }

    .corporate-sube-content-gallery ul li {
        height: 160px;
    }

        .corporate-sube-content-gallery ul li img {
            border-radius: 14px;
        }

    .corporate-ik-content {
        padding: 25px 0 0 0;
    }

    .corporate-ik-text {
        height: 85px;
    }
}

@media only screen and (min-width:1535px) and (max-width:1550px) {
    .other-news {
        width: 1536px;
    }
}

@media only screen and (min-width:1540px) and (max-width:1550px) {
    .other-news {
        width: 1540px;
    }
}

@media only screen and (min-width:1545px) and (max-width:1550px) {
    .other-news {
        width: 1545px;
    }
}

@media only screen and (min-width:1549px) and (max-width:1550px) {
    .other-news {
        width: 1550px;
    }
}

/* width 1600 */
@media only screen and (min-width:1551px) and (max-width:1600px) {
    .modal.detail {
        width: 45.6123% !important;
        left: 47%;
    }

    .modal.application {
        left: 47%;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .modal.document-mail {
        width: 43.5% !important;
        left: 45.5%;
    }

    .logo {
        width: 20%;
        padding: 20px 0 0 25px;
    }

    .menu {
        width: calc(80% - 414px);
    }

    .banner-right {
        width: 414px;
    }

    .banner-right-left {
        width: 229px;
        padding: 1px 19px 0 0;
    }

    .lang {
        margin: 6px 0 0 0;
    }

    .banner-button {
        width: 90px;
        height: 70px;
    }

    .main-product-item.text {
        padding: 54px 35px 0 45px;
    }

    .swiper-content-block {
        margin: 0 0 0 140px;
    }

    .main-corporate-left {
        padding: 0 90px 0 80px;
    }

    .main-sectors-item-top {
        height: 270px;
    }

    .main-sectors-item-bottom {
        height: 250px;
    }

    .main-product-img {
        padding: 15px 90px 0 90px;
    }

    .main-product-head {
        padding: 0 70px;
    }

    .main-news-left {
        padding: 45px 0 0 415px;
    }

    .footer {
        height: 370px;
    }

    .footer-left {
        width: 28%;
        padding: 40px 50px 0 30px;
    }

    .footer-left-item {
        height: 100px;
        padding: 0 0 0 42px;
        background-position: left 5px;
        background-size: 28px;
    }

    .footer-left-item-head {
        font-size: 17px;
        line-height: 26px;
    }

    .footer-left-item-text {
        font-size: 15px;
        line-height: 20px;
    }

    .footer-menu {
        width: 16%;
        padding: 40px 0 0 30px;
    }

    .footer-links-head {
        font-size: 17px;
        line-height: 26px;
        margin: 0 0 7px 0;
    }

    .footer-links-list li a {
        font-size: 15px;
        line-height: 18px;
    }

    .footer-products {
        width: 18%;
        padding: 40px 0 0 0;
    }

    .footer-links-list.product {
        margin: 0 0 15px 0;
    }

    .footer-contact {
        width: 18%;
    }

    .footer-left-item-text.address {
        padding: 0 30px 0 0;
    }

    .footer-contaxt-phone a, .footer-contaxt-mail a {
        font-size: 15px;
        line-height: 22px;
    }

    .footer-social-block {
        /* margin: 100px 0 0 0; */
    }

    .footer-social-item {
        width: 34px;
        margin: 0 10px 0 0;
    }

    .footer-sectors {
        padding-top: 40px;
    }

    .footer-enew {
        width: 25%;
        padding: 40px 25px 0 30px;
        background-size: 230px;
    }

    .enews-content {
        margin: 5px 0 0 0;
        padding: 0 130px 0 0;
    }

    .footer-logo {
        width: 300px;
        height: 60px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

    .router-content, .content {
        padding: 0 50px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 23%;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 30px 25px 10px 25px;
    }

    .news-item-img {
        height: 180px;
    }

    .news-detail-content {
        padding: 0 80px 0 35px;
    }

    .other-news {
        width: 1600px;
    }

    .newslider .news-item-block {
        width: calc(100% - 30px);
        margin-right: 30px;
    }

    .offer-right {
        padding: 18px 80px 0 40px;
    }

    .contact-box .textbox {
        padding: 10px 15px 10px 18px;
    }

    .custom-select select {
        padding: 0 0 0 18px;
    }

    .securitybox .textbox {
        padding: 0 0 0 18px;
    }

    .content.contact {
        padding: 0 120px;
    }

    .brands-container ul li {
        height: 135px;
    }
    /*.product-item-list ul { width: 103%; } .product-item-list ul li { width: 22%; height: 465px; margin: 0 3% 40px 0; }*/ /*.product-item-block { padding: 25px; } .product-item-img { height: 290px; }*/
    .product-item-list.list {
        width: calc(100% - 420px);
        margin: 0 0 0 75px;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 330px;
        }

        .product-item-list.list .product-item-img {
            height: 215px;
            padding: 10px 0 20px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 215px;
        }

    .product-detail {
        width: calc(100% - 420px);
        margin: 0 0 0 75px;
        padding: 15px 0 0 0;
    }

    .product-detail-head {
        margin: 0 0 15px 0;
    }

    .product-detail-left {
        width: 400px;
    }

    .product-detail-gallery {
        width: 400px;
    }

    .product-detail-right {
        width: calc(100% - 400px);
        padding: 0 0 0 30px;
    }

    .corporate-left {
        width: 320px;
        padding: 25px 30px 45px 35px;
    }

        .corporate-left ul li a::after {
            left: -35px;
        }

    .corporate-right {
        width: calc(100% - 365px);
        margin: 0 0 0 45px;
    }

    .about-us-img {
        height: 470px;
    }

    .about-us-top {
        width: 300px;
        height: 255px;
        padding: 185px 15px 5px 85px;
        font-size: 16px;
        line-height: 20px;
    }

        .about-us-top span {
            font-size: 20px;
            line-height: 28px;
        }

    .about-us-text {
        padding: 0 0 0 40px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

    .corporate-right.mission {
        width: calc(100% - 365px);
        margin: 0 0 0 45px;
    }

    .mission-head {
        min-height: 80px;
        padding: 25px 0 15px 0;
    }

    .about-box {
        width: 300px;
        padding: 25px 30px 10px 30px;
    }

    .corporate-right.history {
        width: calc(100% - 385px);
        margin: 0 0 0 65px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-sube-list {
        padding: 22px 0 3px 95px;
    }

    .sube-list-box {
        min-width: 189px;
    }

    .corporate-sube-content-gallery ul li {
        height: 160px;
    }

        .corporate-sube-content-gallery ul li img {
            border-radius: 14px;
        }

    .corporate-ik-content {
        padding: 25px 0 0 0;
    }

    .corporate-ik-text {
        height: 85px;
    }
}

/* width 1920 */
@media only screen and (min-width:1681px) and (max-width:1920px) {
    .main-product-img {
        padding: 15px 120px 0 120px;
    }
}
/* width:1680 */
@media only screen and (min-width:1601px) and (max-width: 1680px) {
    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .sube-list-box {
        min-width: 156px;
    }

    .modal.document-mail {
        width: 41.5% !important;
        left: 46.5%;
    }
}



/* iphone 5/5s dikey */
@media only screen and (max-width:359px) {
    .main-corporate-heads span.title {
        font-size: 11px;
    }

    .modal-body.agreement .modal-text {
        padding: 0 5px 21px;
    }

    .modal.detail .modal-body {
        width: 100%;
    }

    .cv span {
        float: left;
    }

    .cv {
        line-height: 1.8;
        width: 84%;
    }

    .file-upload {
        padding: 18px 10px 18px 10px;
    }

    .modal.application .modal-body {
        width: 100%;
    }

    .modal.application {
        width: 94% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 94% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block.active .help-block-head {
        width: 92%;
        margin-left: 20px;
        padding: 20px 0 16px 32px;
    }

    .help-block-head {
        margin-left: 20px;
        padding: 20px 0 16px 32px;
        width: 93%;
    }

    .help-block-text {
        padding: 38px 23px;
        width: 280px;
        font-size: 14px;
    }

    .help-block.active, .help-block {
        width: 280px;
    }

    .help-block-editor {
        word-wrap: break-word;
        width: 100%;
    }

    .ik-btn {
        position: absolute;
        top: -35px;
        right: 0;
        padding: 10px;
        width: 109px;
        font-size: 12px;
    }

    .modal.document-mail {
        width: 92% !important;
        left: 4%;
        top: 3% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .banner {
        padding: 45px 0 0 0;
        height: 100px;
    }

    .logo {
        width: 100%;
        height: 45px;
        padding: 0 62px;
        margin: 0;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 12px;
        top: 49px;
        width: 30px;
    }

        .mmenu a {
            width: 26px;
        }

    .btnMobileSearch {
        display: table;
        margin: 20px 0 0 0;
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .banner-right {
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
    }

    .banner-right-left {
        width: 55px;
        padding: 0 5px 0 0;
        position: absolute;
        right: 0;
        top: 35px;
    }

    .searchBlock {
        margin: 0;
        position: absolute;
        width: 310px;
        top: 65px;
        z-index: 3;
        right: 5px;
        opacity: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        border: 1px solid #009ee3;
        border-radius: 5px;
        padding: 0 5px 0 0;
        transition: all ease-in-out .8s;
    }

        .searchBlock.open {
            opacity: 1;
            top: 75px;
            z-index: 6;
        }

    .lang {
        height: auto;
        margin: 16px 0 0px 8px;
    }

        .lang a {
            font-size: 12px;
            line-height: 16px;
        }

    .banner-button {
        width: 33%;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 12px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 15px;
            }

            .banner.fixed .logo {
                height: 45px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .lang a {
                font-size: 12px;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

    .router-block {
        margin-top: 30px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 145px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 16px;
        height: 6px;
        margin: 0 6px 5px 0;
    }

        .SliderPagination:first-child {
            margin-left: 20px;
        }

    .swiper-content-block {
        width: 145px;
        margin: 0 0 0 20px;
    }

    .slider-text {
        font-size: 14px;
        line-height: 20px;
        margin: 0;
    }

        .slider-text.slogan {
            font-size: 10px;
            line-height: 14px;
        }

    .main-products {
        margin: 20px 0 40px 0;
        padding: 0 20px;
    }

    .main-product-item {
        width: 100%;
        height: 325px;
        margin: 0 0 30px 0;
    }

    .main-product-head {
        height: 90px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 16px;
            line-height: 24px;
        }

    .main-product-img {
        height: 220px;
        padding: 10px 70px 5px 70px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 110px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 120px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 200px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 8px;
        line-height: 10px;
        padding: 2px 5px;
    }

        .main-corporate-heads span {
            font-size: 10px;
            line-height: 16px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 100%;
        height: 160px;
        position: relative;
    }

    .main-sectors-right {
        width: 100%;
        padding: 10px 10px 0 0;
    }

    .main-sectors-item-top {
        height: 95px;
        padding: 0;
        width: 67%;
        float: left;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 95px;
        width: 33%;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 100%;
        height: 230px;
        background-image: none;
        padding: 20px 0 0 20px;
    }

    .main-news-block {
        width: 290px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 20px 0 15px;
    }

    .main-catalog-img {
        width: 85px;
        height: 85px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 45px;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

        .footer-left-item-text.address {
            padding: 0 60px 0 0;
        }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-contact {
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 100%;
        height: 310px;
        padding: 35px 20px 0 20px;
        background-size: 180px;
        background-position: right calc(100% + 65px);
    }

    .enewbox {
        width: 86%;
        height: 45px;
    }

        .enewbox .textbox {
            padding: 0 0 0 15px;
        }

    .enewbtn {
        width: 14%;
        height: 45px;
    }

    .enews-content {
        padding: 0 91px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-logo {
        display: none;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            line-height: 15px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 10px;
            padding: 10px 0;
            display: block;
        }

    .router-block {
        display: table;
    }

    .router-content, .content, .content.contact {
        padding: 0 20px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 100%;
        height: auto;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 135px 5px 5px 40px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 20px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 100%;
                float: left;
                text-align: left;
                line-height: 22px;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 100%;
        height: 200px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 20px 20px 5px 20px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content::before {
        height: calc(100% - 330px);
        left: calc(100% - 43px);
    }

    .corporate-history-top::before {
        width: calc(100% - 65px);
    }

    .corporate-history-item-left {
        width: 70%;
    }

    .corporate-history-item-center {
        width: 30%;
    }

    .corporate-history-item-right {
        width: 70%;
        float: left;
    }

    .corporate-history-top::after {
        width: 35px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 16px;
        padding: 37px 0 0 26px;
    }

    .corporet-history-item-block {
        margin: 0 0 55px 0;
        padding: 0;
    }

        .corporet-history-item-block:nth-child(2n+1) {
            margin: 0 0 20px 0;
        }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 12px;
        line-height: 20px;
        padding: 15px 0 0 0;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
            font-size: 12px;
        }

    .corporate-history-item-center {
        height: 110px;
    }

    .corporate-history-year-icon {
        width: 66px;
        height: 66px;
        margin: 15px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 18px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 110px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 75px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 0;
        background-size: 38px;
    }

    .sube-list-box {
        min-width: 100%;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 0 13px 0;
    }

        .sube-list-box:nth-child(2n) {
            margin-right: 0;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 47%;
            height: 80px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 190px;
        margin: 0;
    }

    .cv-load {
        height: auto;
        padding: 15px 20px;
        background-size: cover;
    }

    .cv-upload {
        width: 140px;
    }

    .file::before {
        width: 40px;
        left: 10px;
    }

    .file-custom {
        font-size: 16px;
        padding: 0 0 0 50px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 48%;
            height: 300px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
                font-size: 16px;
                line-height: 20px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 100%;
            height: 325px;
            margin: 0 0 30px 0;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 220px;
            padding: 10px 0;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 100%;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 48%;
                height: 100px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 110px;
            max-height: 60px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        /* height: auto; */
        /* display: table; */
        margin: 0 0 20px 0;
        padding: 0;
        min-height: 340px;
    }

    .contact-top-item-top {
        padding: 0 0 0 25px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: 75px;
        padding: 0;
        font-size: 12px;
        line-height: 20px;
    }

    .phone-block {
        /* width: 50%; */
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item-map {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 15px 40px 15px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 100%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(100% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box {
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /*    .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .security-refresh {
        margin: 13px 0 0 0;
    }

    .securitybox {
        width: 135px;
        margin: 0;
        float: right;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
            font-size: 12px;
        }

    .BtnCVSend {
        width: 100%;
        float: right;
        font-size: 14px;
        margin: 10px 0 15px 0;
    }

    .news-item-list ul {
        width: 100%;
    }

        .news-item-list ul li {
            width: 100%;
            height: 380px;
            margin: 0 0 40px 0;
        }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 150px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 165px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul {
        width: 103%;
    }

        .news-detail-gallery ul li {
            width: 47%;
            height: 110px;
        }

    .other-news {
        width: 320px;
        padding: 0 20px;
        margin: 0 0 70px 0;
    }

    .other-newshead {
        padding: 25px 20px;
    }

    .newslider .news-item-block {
        width: 100%;
        height: 365px;
        margin: 0;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: -10px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* Samsung S3 dikey */
@media only screen and (min-width:360px) and (max-width:369px) {
    .main-corporate-heads span.title {
        font-size: 11px;
    }

    .cv span {
        float: left;
    }

    .cv {
        line-height: 1.8;
        width: 84%;
    }

    .file-upload {
        padding: 18px 10px 18px 10px;
    }

    .modal.application .modal-body {
        width: 91%;
        margin: 30px auto;
    }

    .modal.application {
        width: 92% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 92% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block-text {
        width: 330px;
        padding: 5px 25px;
        font-size: 14px;
    }

    .help-block-head {
        margin-left: 15px;
        padding: 27px 35px;
        width: 90%;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 35px;
        width: 95%;
        margin-left: 15px;
    }

    .help-block-editor {
        width: 100%;
        word-wrap: break-word;
    }

    .ik-btn {
        position: absolute;
        top: -35px;
        right: 0;
        padding: 8.5px;
        width: 133px;
        font-size: 14px;
    }

    .modal.document-mail {
        width: 90% !important;
        left: 5%;
        top: 3% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .banner {
        padding: 45px 0 0 0;
        height: 100px;
    }

    .logo {
        width: 100%;
        height: 45px;
        padding: 0 73px;
        margin: 0;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 12px;
        top: 49px;
    }

    .btnMobileSearch {
        display: table;
        margin: 20px 10px 0 0;
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .banner-right {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }

    .banner-right-left {
        width: 75px;
        padding: 0 10px 0 0;
        position: absolute;
        right: 0;
        top: 35px;
    }

    .searchBlock {
        margin: 0;
        position: absolute;
        width: 345px;
        top: 65px;
        z-index: 3;
        right: 5px;
        opacity: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        border: 1px solid #009ee3;
        border-radius: 5px;
        padding: 0 5px 0 0;
        transition: all ease-in-out .8s;
    }

        .searchBlock.open {
            opacity: 1;
            top: 75px;
            z-index: 6;
        }

    .lang {
        height: auto;
        margin: 15px 0 0 0;
    }

        .lang a {
            font-size: 12px;
            line-height: 16px;
        }

    .banner-button {
        width: 33%;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 15px;
            }

            .banner.fixed .logo {
                height: 45px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

            .banner.fixed .lang a {
                font-size: 12px;
            }

    .router-block {
        margin-top: 35px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 160px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 16px;
        height: 6px;
        margin: 0 6px 5px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 170px;
        margin: 0 0 0 20px;
    }

    .slider-text {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }

        .slider-text.slogan {
            font-size: 13px;
            line-height: 20px;
        }

    .main-products {
        margin: 20px 0 40px 0;
        padding: 0 20px;
    }

    .main-product-item {
        width: 80%;
        height: 325px;
        margin: 0 10% 30px 10%;
    }

    .main-product-head {
        height: 90px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 16px;
            line-height: 24px;
        }

    .main-product-img {
        height: 220px;
        padding: 10px 55px 5px 55px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 90px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 120px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 200px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 8px;
        line-height: 10px;
        padding: 2px 5px;
    }

        .main-corporate-heads span {
            font-size: 10px;
            line-height: 16px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 100%;
        height: 200px;
        position: relative;
    }

    .main-sectors-right {
        width: 100%;
        padding: 10px 10px 0 0;
    }

    .main-sectors-item-top {
        height: 110px;
        padding: 0;
        width: 67%;
        float: left;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 110px;
        width: 33%;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 100%;
        height: 230px;
        background-image: none;
        padding: 20px 0 0 20px;
    }

    .main-news-block {
        width: 330px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 20px 0 15px;
    }

    .main-catalog-img {
        width: 85px;
        height: 85px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 45px;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

        .footer-left-item-text.address {
            padding: 0 75px 0 0;
        }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contact {
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 100%;
        height: 310px;
        padding: 35px 20px 0 20px;
        background-size: 180px;
        background-position: right calc(100% + 40px);
    }

    .enewbox {
        width: 86%;
        height: 45px;
    }

        .enewbox .textbox {
            padding: 0 0 0 15px;
        }

    .enewbtn {
        width: 14%;
        height: 45px;
    }

    .enews-content {
        padding: 0 95px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            line-height: 15px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 10px;
            padding: 10px 0;
            display: block;
        }

    .router-block {
        display: table;
    }

    .router-content, .content, .content.contact {
        padding: 0 20px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 100%;
        height: auto;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 132px 5px 5px 50px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 20px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 100%;
                float: left;
                text-align: left;
                line-height: 22px;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 100%;
        height: 200px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 5px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content::before {
        height: calc(100% - 365px);
        left: calc(100% - 50px);
    }

    .corporate-history-top::before {
        width: calc(100% - 72px);
    }

    .corporate-history-item-left {
        width: 70%;
    }

    .corporate-history-item-center {
        width: 30%;
    }

    .corporate-history-item-right {
        width: 70%;
        float: left;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

        .corporet-history-item-block:nth-child(2n+1) {
            margin: 0 0 20px 0;
        }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 130px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 0;
        background-size: 38px;
    }

    .sube-list-box {
        width: 100%;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 0 13px 0;
    }

        .sube-list-box:nth-child(2n) {
            margin-right: 0;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 47%;
            height: 100px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 190px;
        margin: 0;
    }

    .cv-load {
        height: auto;
        padding: 15px 20px;
        background-size: cover;
    }

    .cv-upload {
        width: 140px;
    }

    .file::before {
        width: 40px;
        left: 10px;
    }

    .file-custom {
        font-size: 16px;
        padding: 0 0 0 50px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 48%;
            height: 350px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
                font-size: 18px;
                line-height: 22px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 48%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 48%;
                height: 110px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 120px;
            max-height: 80px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        height: auto;
        display: table;
        margin: 0 0 30px 0;
        padding: 0;
        min-height: inherit;
    }

    .contact-top-item-top {
        padding: 0 0 0 25px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: 75px;
        padding: 0;
        font-size: 12px;
        line-height: 20px;
    }

    .phone-block {
        width: 50%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item-map {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 100%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(100% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box {
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /*      .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .security-refresh {
        margin: 13px 0 0 0;
    }

    .securitybox {
        width: 150px;
        margin: 0;
        float: right;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .BtnCVSend {
        width: 100%;
        float: right;
        font-size: 14px;
        margin: 10px 0 15px 0;
    }

    .news-item-list ul li {
        width: 80%;
        height: 380px;
        margin: 0 10% 40px 10%;
    }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 150px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 165px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul {
        width: 103%;
    }

        .news-detail-gallery ul li {
            width: 47%;
            height: 110px;
        }

    .other-news {
        width: 360px;
        padding: 0;
        margin: 0 0 70px 0;
    }

    .other-newshead {
        padding: 25px 20px;
    }

    .newslider .news-item-block {
        width: calc(100% - 40px);
        height: 365px;
        margin: 0 20px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: 15px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone 6/6s dikey */
@media only screen and (min-width:370px) and (max-width:399px) {
    .main-corporate-heads span.title {
        font-size: 11px;
    }

    .modal-body.agreement .modal-text {
        padding: 0 5px 21px;
    }

    .modal.detail .modal-body {
        padding: 0 15px;
        width: 100%;
    }

    .cv span {
        float: left;
    }

    .cv {
        line-height: 1.8;
        width: 84%;
    }

    .file-upload {
        padding: 18px 10px 18px 10px;
    }

    .modal.application .modal-body {
        width: 100%;
    }

    .modal.application {
        width: 94% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 94% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block.active .help-block-head {
        width: 92%;
        margin-left: 20px;
        padding: 20px 0 16px 32px;
    }

    .help-block-head {
        margin-left: 20px;
        padding: 20px 0 16px 32px;
        width: 94%;
    }

    .help-block-text {
        padding: 38px 23px;
        width: 340px;
        font-size: 14px;
    }

    .help-block.active, .help-block {
        width: 330px;
    }

    .help-block-editor {
        width: 100%;
        word-wrap: break-word;
    }

    .ik-btn {
        position: absolute;
        top: -35px;
        right: 0;
        padding: 8.5px;
        width: 133px;
        font-size: 14px;
    }

    .contact-box.big-line {
        padding: 5px;
    }

    .modal.document-mail {
        width: 93% !important;
        left: 3.5%;
        top: 5% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .banner {
        padding: 45px 0 0 0;
        height: 100px;
    }

    .logo {
        width: 100%;
        height: 45px;
        padding: 0 85px;
        margin: 0;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 12px;
        top: 49px;
    }

    .btnMobileSearch {
        display: table;
        margin: 20px 16px 0 0;
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .banner-right {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }

    .banner-right-left {
        width: 75px;
        padding: 0 5px 0 0;
        position: absolute;
        right: 0;
        top: 35px;
    }

    .searchBlock {
        margin: 0;
        position: absolute;
        width: 365px;
        top: 65px;
        z-index: 3;
        right: 5px;
        opacity: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        border: 1px solid #009ee3;
        border-radius: 5px;
        padding: 0 5px 0 0;
        transition: all ease-in-out .8s;
    }

        .searchBlock.open {
            opacity: 1;
            top: 75px;
            z-index: 6;
        }

    .lang {
        height: auto;
        margin: 18px 0 0 0;
    }

        .lang a {
            font-size: 12px;
            line-height: 10px;
        }

    .banner-button {
        width: 33%;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 15px;
            }

            .banner.fixed .logo {
                height: 45px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

            .banner.fixed .lang a {
                font-size: 12px;
            }

    .router-block {
        margin-top: 15px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 170px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 180px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 3px 0;
    }

        .slider-text.slogan {
            font-size: 14px;
            line-height: 20px;
        }

    .main-products {
        margin: 20px 0 40px 0;
        padding: 0 20px;
    }

    .main-product-item {
        width: 80%;
        height: 325px;
        margin: 0 10% 30px 10%;
    }

    .main-product-head {
        height: 90px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 16px;
            line-height: 24px;
        }

    .main-product-img {
        height: 220px;
        padding: 10px 65px 5px 65px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 90px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 120px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 200px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 8px;
        line-height: 10px;
        padding: 2px 5px;
    }

        .main-corporate-heads span {
            font-size: 10px;
            line-height: 16px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 100%;
        height: 200px;
        position: relative;
    }

    .main-sectors-right {
        width: 100%;
        padding: 10px 10px 0 0;
    }

    .main-sectors-item-top {
        height: 110px;
        padding: 0;
        width: 67%;
        float: left;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 110px;
        width: 33%;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 100%;
        height: 230px;
        background-image: none;
        padding: 20px 0 0 20px;
    }

    .main-news-block {
        width: 340px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 20px 0 15px;
    }

    .main-catalog-img {
        width: 85px;
        height: 85px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 45px;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

        .footer-left-item-text.address {
            padding: 0 115px 0 0;
        }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-contact {
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 100%;
        height: 310px;
        padding: 35px 20px 0 20px;
        background-size: 180px;
        background-position: right calc(100% + 40px);
    }

    .enewbox {
        width: 86%;
        height: 45px;
    }

        .enewbox .textbox {
            padding: 0 0 0 15px;
        }

    .enewbtn {
        width: 14%;
        height: 45px;
    }

    .enews-content {
        padding: 0 95px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-logo {
        display: none;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            line-height: 20px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
            padding: 10px 0;
            display: block;
        }

    .router-block {
        display: table;
    }

    .router-content, .content, .content.contact {
        padding: 0 20px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 100%;
        height: 300px;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 132px 5px 5px 40px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 22px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 100%;
        height: 200px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 5px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content::before {
        height: calc(100% - 365px);
        left: calc(100% - 50px);
    }

    .corporate-history-top::before {
        width: calc(100% - 72px);
    }

    .corporate-history-item-left {
        width: 70%;
    }

    .corporate-history-item-center {
        width: 30%;
    }

    .corporate-history-item-right {
        width: 70%;
        float: left;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

        .corporet-history-item-block:nth-child(2n+1) {
            margin: 0 0 20px 0;
        }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 140px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 0;
        background-size: 38px;
    }

    .sube-list-box {
        min-width: 49%;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 2% 13px 0;
    }

        .sube-list-box a {
            max-width: 130px;
        }

        .sube-list-box:nth-child(2n) {
            margin-right: 0;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 47%;
            height: 100px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 210px;
    }

    .cv-load {
        height: auto;
        padding: 15px 30px;
        background-size: cover;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 48%;
            height: 375px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
                font-size: 18px;
                line-height: 20px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 48%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 48%;
                height: 110px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 120px;
            max-height: 70px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        margin: 10px 0 20px 0;
        padding: 0;
        min-height: inherit;
    }

    .contact-top-item-top {
        padding: 0 0 0 25px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: auto;
        padding: 0 20px 0 0;
        font-size: 12px;
        line-height: 20px;
    }

    .phone-block {
        /* width: 50%; */
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item-map {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 100%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(100% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box {
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /*.contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .security-refresh {
        margin: 13px 0 0 0;
    }

    .securitybox {
        width: 150px;
        margin: 0;
        float: right;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .BtnCVSend {
        width: 100%;
        float: right;
        font-size: 14px;
        margin: 10px 0 15px 0;
    }

    .news-item-list ul li {
        width: 80%;
        height: 380px;
        margin: 0 10% 40px 10%;
    }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 150px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 165px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul {
        width: 103%;
    }

        .news-detail-gallery ul li {
            width: 47%;
            height: 110px;
        }

    .other-news {
        width: 375px;
        padding: 0;
        margin: 0 0 70px 0;
    }

    .other-newshead {
        padding: 25px 20px;
    }

    .newslider .news-item-block {
        width: calc(100% - 40px);
        height: 365px;
        margin: 0 20px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: 15px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone Plus dikey */
@media only screen and (min-width:400px) and (max-width:479px) {
    .main-corporate-heads span.title {
        font-size: 11px;
    }

    .modal-body.agreement .modal-text {
        padding: 0 5px 21px;
    }

    .modal.detail .modal-body {
        width: 100%;
        padding: 0 15px;
    }

    .cv span {
        float: left;
    }

    .cv {
        line-height: 1.8;
        width: 84%;
    }

    .file-upload {
        padding: 18px 10px 18px 10px;
    }

    .modal.application .modal-body {
        width: 100%;
    }

    .modal.application {
        width: 94% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 94% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block.active .help-block-head {
        width: 94%;
        margin-left: 20px;
        padding: 20px 0 16px 32px;
    }

    .help-block-head {
        margin-left: 20px;
        padding: 20px 0 16px 32px;
    }

    .help-block-text {
        padding: 38px 23px;
        width: 368px;
        font-size: 14px;
    }

    .help-block.active, .help-block {
        width: 370px;
    }

    .help-block-editor {
        width: 100%;
        word-wrap: break-word;
    }

    .ik-btn {
        position: absolute;
        top: -35px;
        right: 0;
        padding: 8.5px;
        width: 141px;
        font-size: 14px;
    }

    .modal.document-mail {
        width: 91% !important;
        left: 4.5%;
        top: 5% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .banner {
        padding: 45px 0 0 0;
        height: 100px;
    }

    .logo {
        width: 100%;
        height: 45px;
        padding: 0 85px;
        margin: 0;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 12px;
        top: 49px;
    }

    .btnMobileSearch {
        display: table;
        margin: 20px 12px 0 0;
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .banner-right {
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
    }

    .banner-right-left {
        width: 75px;
        padding: 0 10px 0 0;
        position: absolute;
        right: 0;
        top: 35px;
    }

    .searchBlock {
        margin: 0;
        position: absolute;
        width: 404px;
        top: 65px;
        z-index: 3;
        right: 5px;
        opacity: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        border: 1px solid #009ee3;
        border-radius: 5px;
        padding: 0 5px 0 0;
        transition: all ease-in-out .8s;
    }

        .searchBlock.open {
            opacity: 1;
            top: 75px;
            z-index: 6;
        }

    .lang {
        height: auto;
        margin: 15px 0 0 0;
    }

        .lang a {
            font-size: 12px;
            line-height: 16px;
        }

    .banner-button {
        width: 33%;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 15px;
            }

            .banner.fixed .logo {
                height: 45px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

            .banner.fixed .lang a {
                font-size: 12px;
            }

    .router-block {
        margin-top: 45px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 185px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 225px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 20px;
        line-height: 26px;
    }

        .slider-text.slogan {
            font-size: 14px;
            line-height: 20px;
        }

    .main-products {
        margin: 20px 0 40px 0;
        padding: 0 20px;
    }

    .main-product-item {
        width: 70%;
        height: 325px;
        margin: 0 15% 30px 15%;
    }

    .main-product-head {
        height: 90px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 16px;
            line-height: 24px;
        }

    .main-product-img {
        height: 220px;
        padding: 10px 65px 5px 65px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 80px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 260px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 10px;
        line-height: 12px;
        padding: 2px 10px;
    }

        .main-corporate-heads span {
            font-size: 12px;
            line-height: 16px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 100%;
        height: 200px;
        position: relative;
    }

    .main-sectors-right {
        width: 100%;
        padding: 10px 10px 0 0;
    }

    .main-sectors-item-top {
        height: 110px;
        padding: 0;
        width: 67%;
        float: left;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 110px;
        width: 33%;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 100%;
        height: 230px;
        background-image: none;
        padding: 20px 0 0 20px;
    }

    .main-news-block {
        width: 390px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 20px 0 15px;
    }

    .main-catalog-img {
        width: 85px;
        height: 85px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 45px;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

        .footer-left-item-text.address {
            padding: 0 115px 0 0;
        }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contact {
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 100%;
        height: 310px;
        padding: 35px 20px 0 20px;
        background-size: 180px;
        background-position: right calc(100% + 40px);
    }

    .enewbox {
        width: 86%;
        height: 45px;
    }

        .enewbox .textbox {
            padding: 0 0 0 15px;
        }

    .enewbtn {
        width: 14%;
        height: 45px;
    }

    .enews-content {
        padding: 0 95px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            line-height: 20px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
            padding: 10px 0;
            display: block;
        }

    .router-content, .content, .content.contact {
        padding: 0 20px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 100%;
        height: 300px;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 135px 5px 5px 50px;
        font-size: 12px;
        line-height: 16px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 20px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 100%;
        height: 200px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 5px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content::before {
        height: calc(100% - 365px);
        left: calc(100% - 65px);
    }

    .corporate-history-top::before {
        width: calc(100% - 87px);
    }

    .corporate-history-item-left {
        width: 70%;
    }

    .corporate-history-item-center {
        width: 30%;
    }

    .corporate-history-item-right {
        width: 70%;
        float: left;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

        .corporet-history-item-block:nth-child(2n+1) {
            margin: 0 0 20px 0;
        }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 140px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 0;
        background-size: 38px;
    }

    .sube-list-box {
        min-width: 148px;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 7% 13px 0;
    }

        .sube-list-box a {
            max-width: 149px;
        }

        .sube-list-box:nth-child(2n) {
            margin-right: 0;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 47%;
            height: 120px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 210px;
    }

    .cv-load {
        height: auto;
        padding: 15px 30px;
        background-size: cover;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 48%;
            height: 375px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
                font-size: 20px;
                line-height: 24px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 48%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 48%;
                height: 125px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 150px;
            max-height: 80px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        height: auto;
        display: table;
        margin: 0 0 30px 0;
        padding: 0;
        min-height: inherit
    }

    .contact-top-item-top {
        padding: 0 0 0 25px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: auto;
        padding: 0 70px 0 0;
        font-size: 12px;
        line-height: 20px;
    }

    .phone-block {
        width: 50%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item-map {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 49%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(49% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box {
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /*.contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .security-refresh {
        margin: 13px 0 0 30px;
    }

    .securitybox {
        width: 150px;
        margin: 0 30px 0 0;
        float: right;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .BtnCVSend {
        width: 100%;
        float: right;
        font-size: 14px;
        margin: 10px 0 15px 0;
    }

    .news-item-list ul li {
        width: 80%;
        height: 380px;
        margin: 0 10% 40px 10%;
    }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 165px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 150px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul {
        width: 103%;
    }

        .news-detail-gallery ul li {
            width: 47%;
            height: 110px;
        }

    .other-news {
        width: 414px;
        padding: 0;
        margin: 0 0 70px 0;
    }

    .other-newshead {
        padding: 25px 20px;
    }

    .newslider .news-item-block {
        width: 80%;
        height: 365px;
        margin: 0 10%;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: 15px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone 4 yatay */
@media only screen and (min-width:480px) and (max-width:559px) {
    .modal.application .modal-body {
        width: 100%;
    }

    .cv {
        width: 87%;
    }

    .modal.application {
        width: 97% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 98% !important;
        left: 3%;
        top: 10% !important;
    }

        .modal.detail .modal-body {
            width: 100%;
        }

    .help-block.active .help-block-head {
        width: 93%;
        padding: 20px 0 16px 39px;
    }

    .help-block-text {
        width: 416px;
        padding: 38px 15px 38px 40px;
        font-size: 14px;
    }

    .help-block-editor {
        width: 100%;
        word-wrap: break-word;
    }

    .ik-btn {
        position: absolute;
        top: 0;
        right: 14.5%;
        width: 106px;
        font-size: 12px;
        padding: 10px;
    }

    .modal.document-mail {
        width: 91% !important;
        left: 4.5%;
        top: 2% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 0 0 0 75px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 20px;
        top: 18px;
    }

    .btnMobileSearch {
        display: table;
        margin: 36px 13px 0 0;
    }

    .banner-right {
        width: 160px;
    }

    .banner-right-left {
        width: 90px;
        padding: 0 15px 0 0;
    }

    .searchBlock {
        margin: 0;
        position: absolute;
        width: 98%;
        top: 65px;
        z-index: 3;
        right: 1%;
        opacity: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
        border: 1px solid #009ee3;
        border-radius: 5px;
        padding: 0 5px 0 0;
        transition: all ease-in-out .8s;
    }

        .searchBlock.open {
            opacity: 1;
            top: 80px;
            z-index: 6;
        }

    .lang {
        margin: 38px 0 0 0;
    }

        .lang a {
            font-size: 14px;
            line-height: 16px;
        }

    .banner-button {
        width: 70px;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 38px;
            }

            .banner.fixed .logo {
                height: 70px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

    .router-block {
        margin-top: 40px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 250px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 225px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 20px;
        line-height: 26px;
    }

        .slider-text.slogan {
            font-size: 14px;
            line-height: 20px;
        }

    .main-products {
        margin: 0 0 40px 0;
        padding: 0 18px;
    }

    .main-product-item {
        width: 31.3%;
        height: 260px;
        margin: 0 1%;
    }

    .main-product-head {
        height: 60px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 14px;
            line-height: 20px;
        }

    .main-product-img {
        height: 185px;
        padding: 10px 25px 5px 25px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 80px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 260px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 10px;
        line-height: 12px;
        padding: 2px 10px;
    }

        .main-corporate-heads span {
            font-size: 12px;
            line-height: 16px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
        padding: 0 10px 0 0;
    }

    .main-sectors-item-top {
        height: 115px;
        padding: 0 0 10px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 100px;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        height: 230px;
        background-image: none;
        padding: 20px 0 0 20px;
    }

    .main-news-block {
        width: 285px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 20px 0 15px;
    }

    .main-catalog-img {
        width: 85px;
        height: 85px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 70px;
        padding: 0;
        font-size: 16px;
        line-height: 20px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contact {
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 100%;
        height: 310px;
        padding: 35px 20px 0 20px;
        background-size: 180px;
        background-position: right calc(100% + 40px);
    }

    .enewbox {
        width: 86%;
        height: 45px;
    }

        .enewbox .textbox {
            padding: 0 0 0 15px;
        }

    .enewbtn {
        width: 14%;
        height: 45px;
    }

    .enews-content {
        padding: 0 95px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .owner {
        margin: 0 0 0 20px;
    }

    .design {
        margin: 0 20px 0 0;
    }

        .owner a, .design a {
            line-height: 20px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
            padding: 10px 0;
            display: block;
        }

    .router-content, .content, .content.contact {
        padding: 0 20px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 330px;
        height: 300px;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 135px 5px 5px 50px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 18px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 100%;
        height: 200px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 5px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content::before {
        height: calc(100% - 365px);
        left: calc(100% - 65px);
    }

    .corporate-history-top::before {
        width: calc(100% - 87px);
    }

    .corporate-history-item-left {
        width: 70%;
    }

    .corporate-history-item-center {
        width: 30%;
    }

    .corporate-history-item-right {
        width: 70%;
        float: left;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 140px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 3px;
        background-size: 40px;
    }

    .sube-list-box {
        min-width: 47%;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 6% 13px 0;
    }

        .sube-list-box a {
            max-width: 172px;
        }

        .sube-list-box:nth-child(2n) {
            margin-right: 0;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 47%;
            height: 120px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 250px;
    }

    .cv-load {
        height: auto;
        padding: 15px 30px;
        background-size: cover;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 48%;
            height: 300px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
                font-size: 20px;
                line-height: 24px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 48%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 48%;
                height: 125px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            width: 100%;
            height: 100%;
            max-width: 160px;
            max-height: 90px;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        /* height: auto; */
        /* display: table; */
        margin: 0 0 20px 0;
        padding: 0;
        min-height: 300px;
    }

    .contact-top-item-top {
        padding: 0 0 0 25px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: 75px;
        padding: 0 110px 0 0;
        font-size: 12px;
        line-height: 20px;
    }

    .phone-block {
        width: 50%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item-map {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 49%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(49% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box {
        width: 49%;
        height: auto;
        margin: 0 0 20px 0;
    }

        .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .security-refresh {
        margin: 13px 0 0 0;
    }

    .securitybox {
        width: 150px;
        margin: 0;
    }

        .securitybox .textbox {
            padding: 0 0 0 15px;
        }

    .BtnCVSend {
        width: 130px;
        float: right;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 48%;
            height: 345px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 105px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 150px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul {
        width: 103%;
    }

        .news-detail-gallery ul li {
            width: 47%;
            height: 110px;
        }

    .other-news {
        width: 480px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone 5/5s yatay */
@media only screen and (min-width:560px) and (max-width:639px) {
    .file-upload {
        padding: 18px 10px 18px 15px;
    }

    .modal.application .modal-body {
        width: 90%;
    }

    .modal.application {
        width: 94% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 94% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block.active .help-block-head {
        width: 94%;
        padding: 20px 0 16px 40px;
    }

    .help-block-text {
        padding: 38px 20px 38px 40px;
        font-size: 14px;
    }

    .help-block-head {
        padding: 27px 44px;
        margin-left: 20px;
    }

    .help-block-editor {
        width: 70%;
    }

    .modal.document-mail {
        width: 83.5% !important;
        left: 8%;
        top: 4% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 0 0 0 75px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 20px;
        top: 18px;
    }

    .banner-right {
        width: 280px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 6px 0 0;
    }

    .searchBlock {
        margin: 4px 0 0 0;
    }

        .searchBlock .textbox {
            padding: 10px 2px 6px 7px;
        }

    .ik-btn {
        margin-top: 3px;
    }

    .lang {
        margin: 6px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 70px;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 6px;
            }

            .banner.fixed .logo {
                height: 70px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

    .router-block {
        margin-top: 45px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 250px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 225px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 20px;
        line-height: 26px;
    }

        .slider-text.slogan {
            font-size: 14px;
            line-height: 20px;
        }

    .main-products {
        margin: 0 0 40px 0;
        padding: 0 18px;
    }

    .main-product-item {
        width: 31.3%;
        height: 260px;
        margin: 0 1%;
    }

    .main-product-head {
        height: 60px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 14px;
            line-height: 20px;
        }

    .main-product-img {
        height: 185px;
        padding: 10px 25px 5px 25px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 80px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 300px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 12px;
        line-height: 16px;
    }

        .main-corporate-heads span {
            font-size: 14px;
            line-height: 18px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
        padding: 0 10px 0 0;
    }

    .main-sectors-item-top {
        height: 115px;
        padding: 0 0 10px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 100px;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-news-block {
        width: 330px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 15px;
    }

    .main-catalog-img {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 70px;
        padding: 0;
        font-size: 20px;
        line-height: 26px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contact {
        width: 45%;
        padding: 35px 0 0 25px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 55%;
        height: 310px;
        padding: 35px 25px 0 30px;
        background-size: 160px;
        background-position: right calc(100% + 40px);
    }

    .enews-content {
        padding: 0 75px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 330px;
        height: 300px;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 135px 5px 5px 40px;
        font-size: 12px;
        line-height: 16px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 20px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 20px 20px 5px 20px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 140px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 3px;
        background-size: 40px;
    }

    .sube-list-box {
        min-width: 218px;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 14px 13px 0;
    }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30.3%;
            height: 100px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 290px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 31.3%;
            height: 300px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 31.3%;
                height: 110px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            width: 100%;
            height: 100%;
            max-width: 130px;
            max-height: 70px;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 48%;
        /* height: auto; */
        /* display: table; */
        margin: 0 2% 0 0;
        padding: 0;
        min-height: 340px;
    }

        .contact-top-item:first-child {
            /* width: 100%; */
            /* margin: 0 0 40px 0; */
        }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 20px 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-top-item:first-child .contact-address-text {
        /* height: 50px; */
        /* padding: 0 160px 0 0; */
    }

    .contact-address-text {
        height: auto;
        font-size: 12px;
        line-height: 20px;
        padding: 0 40px 0 0;
    }

    .contact-top-item:first-child .phone-block {
        width: 50%;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item:first-child .contact-top-item-map {
        /* height: 240px; */
    }

    .contact-top-item-map {
        /* margin: 15px 0 0 0; */
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 49%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(49% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .securitybox {
        width: 180px;
        margin: 0 15px 0 0;
    }

    .contact-box {
        width: 49%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /* .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .securitybox .textbox {
        padding: 0 0 0 15px;
    }

    .BtnCVSend {
        width: 120px;
        float: right;
        font-size: 14px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 48%;
            height: 345px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 135px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 150px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 568px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* Samsung S3 yatay */
@media only screen and (min-width:640px) and (max-width:659px) {
    .modal.application {
        width: 94% !important;
        left: 3%;
        top: 11% !important;
    }

        .modal.application .modal-body {
            width: 85%;
        }

    .modal.detail {
        width: 94% !important;
        left: 3%;
        top: 10% !important;
    }

    .help-block.active .help-block-head {
        margin-left: 20px;
        width: 95%;
        padding: 20px 0 16px 35px;
    }

    .help-block-head {
        margin-left: 20px;
        padding: 20px 0 16px 35px;
    }

    .help-block-text {
        padding: 38px 14px 0 30px;
        font-size: 14px;
    }

    .help-block-editor {
        width: 75%;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .modal.document-mail {
        width: 80% !important;
        left: 10%;
        top: 2% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 0 0 0 75px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
        left: 20px;
        top: 18px;
    }

    .banner-right {
        width: 280px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 7px 0 0;
    }

    .searchBlock {
        margin: 4px 0 0 0;
    }

    .ik-btn {
        margin-top: 3px;
    }

    .lang {
        margin: 6px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 70px;
        height: 35px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 42px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 6px;
            }

            .banner.fixed .logo {
                height: 70px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 35px;
            }

    .router-block {
        margin-top: 40px;
    }

    .slider {
        height: 280px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 225px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 20px;
        line-height: 26px;
    }

        .slider-text.slogan {
            font-size: 14px;
            line-height: 20px;
        }

    .main-products {
        margin: 0 0 40px 0;
        padding: 0 18px;
    }

    .main-product-item {
        width: 31.3%;
        height: 260px;
        margin: 0 1%;
    }

    .main-product-head {
        height: 60px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 14px;
            line-height: 20px;
        }

    .main-product-img {
        height: 185px;
        padding: 10px 35px 5px 35px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 80px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 360px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 12px;
        line-height: 16px;
    }

        .main-corporate-heads span {
            font-size: 14px;
            line-height: 18px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
        padding: 0 10px 0 0;
    }

    .main-sectors-item-top {
        height: 115px;
        padding: 0 0 10px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 10px;
    }

    .main-sectors-item-bottom {
        height: 100px;
    }

    .main-sectors-item-img span {
        font-size: 14px;
        line-height: 20px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-news-block {
        width: 360px;
    }

    .main-news-head {
        font-size: 16px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 15px;
    }

    .main-catalog-img {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 70px;
        padding: 0;
        font-size: 20px;
        line-height: 26px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-phone {
        margin: 25px 0 10px 0;
    }

    .footer-social-block {
        display: none;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-contact {
        width: 45%;
        padding: 35px 0 0 25px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 55%;
        height: 310px;
        padding: 35px 25px 0 30px;
        background-size: 160px;
        background-position: right calc(100% + 40px);
    }

    .enews-content {
        padding: 0 75px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        width: 370px;
        height: 300px;
        display: table;
        float: initial;
        margin: 0 auto;
    }

    .about-us-top {
        width: 210px;
        height: 180px;
        bottom: -5px;
        right: -5px;
        padding: 135px 5px 5px 50px;
        font-size: 12px;
        line-height: 16px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 16px;
            line-height: 18px;
        }

    .about-us-text {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
        padding: 30px 0 0 0;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 20px 20px 5px 20px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

        .about-box-text p {
            font-family: 'Montserrat-Regular';
            line-height: 20px;
        }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }

        .corporate-history-item-address p {
            line-height: 20px;
        }

    .corporate-history-item-center {
        height: 140px;
    }

    .corporate-history-year-icon {
        width: 74px;
        height: 74px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 140px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-history-item-right .corporate-history-item-volume, .corporate-history-item-right .corporate-history-item-address {
        padding-right: 0;
    }

    .corporate-sube-list {
        padding: 0 0 3px 50px;
        background-position: 1px 3px;
        background-size: 40px;
    }

    .sube-list-box {
        min-width: 100px;
        height: 40px;
        font-size: 12px;
        line-height: 18px;
        margin: 0 5px 6px 0;
    }

        .sube-list-box a {
            max-width: 163px;
        }

    .corporate-sube-content-text p {
        line-height: 20px;
        margin: 0 0 5px 0;
    }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30.3%;
            height: 100px;
        }

            .corporate-sube-content-gallery ul li img {
                border-radius: 10px;
            }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 290px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 31.3%;
            height: 300px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 100%;
        margin: 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
        margin: 0 auto;
    }

    .product-detail-right {
        width: 100%;
        padding: 20px 0 0 0;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document {
        width: 300px;
        margin: 0 auto;
    }

        .product-detail-document ul {
            padding: 5px 0 0 45px;
        }

            .product-detail-document ul li a {
                line-height: 20px;
            }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 31.3%;
                height: 110px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 140px;
            max-height: 80px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 100%;
        display: flex;
        margin: 0 4% 20px 0;
        padding: 0;
        min-height: 200px;
    }

        .contact-top-item:first-child {
            width: 100%;
            margin: 0 0 40px 0;
        }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-top-item:first-child .contact-address-text {
        height: 50px;
        padding: 0 0px 0 0;
    }

    .contact-address-text {
        height: auto;
        font-size: 12px;
        line-height: 20px;
        padding: 0;
    }

    .contact-top-item:first-child .phone-block {
        width: 50%;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 12px;
            line-height: 20px;
        }

    .contact-top-item:first-child .contact-top-item-map {
        height: 240px;
    }

    .contact-top-item-map {
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 20px 40px 20px;
    }

    .contact-head {
        text-align: center;
    }

    .contact-send-block {
        width: 100%;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 49%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(49% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .securitybox {
        width: 180px;
        margin: 0 15px 0 0;
    }

    .contact-box {
        width: 49%;
        height: auto;
        margin: 0 0 20px 0;
    }

        .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .securitybox .textbox {
        padding: 0 0 0 15px;
    }

    .BtnCVSend {
        width: 130px;
        float: right;
        font-size: 14px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 48%;
            height: 345px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 15px 15px 10px 15px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 135px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 150px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 20px;
        font-size: 12px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 640px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone 6/6s yatay */
@media only screen and (min-width:660px) and (max-width:699px) {
    .modal.application .modal-body {
        width: 90%;
    }

    .cv {
        width: 87%;
    }

    .modal.application {
        width: 97% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 97% !important;
        left: 3%;
        top: 10% !important;
    }

        .modal.detail .modal-body {
            width: 100%;
        }

    .help-block.active .help-block-head {
        width: 95%;
    }

    .help-block-text {
        padding: 38px 15px 0 41px;
    }

    .modal.document-mail {
        width: 82.5% !important;
        left: 8.5%;
        top: 3% !important;
    }

    .help-block-editor {
        width: 64%;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 5px 0 5px 80px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
    }

    .banner-right {
        width: 290px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 8px 0 0;
    }

    .ik-btn {
        margin-top: 7px;
    }

    .searchBlock {
        margin: 8px 0 0 0;
    }

    .lang {
        margin: 10px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 80px;
        height: 40px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 50px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 10px;
            }

            .banner.fixed .logo {
                height: 80px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 40px;
            }

    .router-block {
        margin-top: 45px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 295px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 255px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 24px;
        line-height: 30px;
    }

        .slider-text.slogan {
            font-size: 16px;
            line-height: 20px;
        }

    .main-products {
        margin: 0 0 40px 0;
        padding: 0 18px;
    }

    .main-product-item {
        width: 31.3%;
        height: 310px;
        margin: 0 1%;
    }

    .main-product-head {
        height: 80px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 20px;
            line-height: 22px;
        }

    .main-product-img {
        height: 215px;
        padding: 10px 35px 5px 35px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 14px;
        line-height: 24px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main-corporate-text {
        height: 80px;
        font-size: 14px;
        line-height: 24px;
    }

    .main-corporate-right {
        width: 100%;
        height: 360px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 12px;
        line-height: 16px;
    }

        .main-corporate-heads span {
            font-size: 14px;
            line-height: 18px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
        padding: 0 15px 0 0;
    }

    .main-sectors-item-top {
        height: 130px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-bottom {
        height: 115px;
    }

    .main-sectors-item-img span {
        font-size: 16px;
        line-height: 24px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-news-block {
        width: 395px;
    }

    .main-news-head {
        font-size: 18px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 15px;
    }

    .main-catalog-img {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 70px;
        padding: 0;
        font-size: 20px;
        line-height: 26px;
        text-align: center
    }

    .main-brands-block {
        height: auto;
    }

    .brands-item {
        height: 110px;
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-phone a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contaxt-mail a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-contact {
        width: 45%;
        padding: 35px 0 0 25px;
    }

    .footer-social-block {
        margin: 80px 0 0 0;
    }

    .footer-enew {
        width: 55%;
        height: 310px;
        padding: 35px 25px 0 30px;
        background-size: 160px;
        background-position: right calc(100% + 40px);
    }

    .enews-content {
        padding: 0 75px 0 0;
        margin: 5px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        height: 260px;
    }

    .about-us-top {
        width: 180px;
        height: 155px;
        bottom: -5px;
        right: -5px;
        padding: 115px 5px 5px 40px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 14px;
            line-height: 16px;
        }

    .about-us-text {
        font-size: 14px;
        line-height: 30px;
        padding: 0 0 0 30px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                display: table;
                width: 50%;
                float: left;
                text-align: left;
                line-height: 22px;
                padding: 3px 0;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 10px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0 0 0 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .corporate-history-item-center {
        height: 150px;
    }

    .corporate-history-year-icon {
        width: 84px;
        height: 84px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 150px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-sube-list {
        padding: 15px 0 3px 65px;
        background-position: 1px 15px;
        background-size: 44px;
    }

    .sube-list-box {
        min-width: 100px;
        height: 45px;
        font-size: 14px;
        line-height: 20px;
        margin: 0px 9px 13px 0;
    }

        .sube-list-box a {
            max-width: 161px;
            padding: 0 5px;
        }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30.3%;
            height: 120px;
        }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 380px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 31.3%;
            height: 330px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

            .product-item-list ul li .product-item-head {
                height: 80px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 300px;
        margin: 10px 0 0 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
    }

    .product-detail-right {
        width: calc(100% - 300px);
        padding: 0 0 0 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document ul {
        padding: 5px 0 0 45px;
    }

        .product-detail-document ul li a {
            line-height: 20px;
        }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 31.3%;
                height: 125px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 150px;
            max-height: 80px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 48%;
        height: auto;
        display: table;
        margin: 0 4% 0 0;
        padding: 0;
        min-height: 360px;
    }

        .contact-top-item:first-child {
            width: 45%;
            margin: 0 3% 20px 0;
            min-height: 340px;
        }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-top-item:first-child .contact-address-text {
        height: 50px;
    }

    .contact-address-text {
        height: 75px;
        font-size: 14px;
        line-height: 20px;
    }

    .contact-top-item:first-child .phone-block {
        width: 50%;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 14px;
            line-height: 20px;
        }

    .contact-top-item:first-child .contact-top-item-map {
        height: 240px;
    }

    .contact-top-item-map {
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 40px 40px 40px;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 49%;
        margin-right: 2%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    .contact-box.counter {
        width: calc(49% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .securitybox {
        width: 180px;
        margin: 0 25px 0 0;
    }

    .contact-box {
        width: 49%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /*.contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .securitybox .textbox {
        padding: 0 0 0 15px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 48%;
            height: 350px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 150px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 140px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 667px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 365px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* iphone Plus yatay */
@media only screen and (min-width:700px) and (max-width:759px) {
    .modal.application .modal-body {
        width: 95%;
    }

    .cv {
        width: 87%;
    }

    .modal.application {
        width: 95% !important;
        left: 3%;
        top: 11% !important;
    }

    .modal.detail {
        width: 96% !important;
        left: 3%;
        top: 10% !important;
    }

        .modal.detail .modal-body {
            width: 100%;
        }

    .help-block.active .help-block-head {
        width: 95%;
    }

    .help-block-text {
        padding: 38px 45px;
    }

    .help-block-editor {
        width: 67%;
    }

    .modal.document-mail {
        width: 74.5% !important;
        left: 12.5%;
        top: 3% !important;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 5px 0 5px 90px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
    }

    .banner-right {
        width: 290px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0px 8px 0 0;
    }

    .ik-btn {
        margin-top: 7px;
    }

    .searchBlock {
        margin: 8px 0 0 0;
    }

    .lang {
        margin: 10px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 80px;
        height: 40px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 50px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 10px;
            }

            .banner.fixed .logo {
                height: 80px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 40px;
            }

    .router-block {
        margin-top: 40px;
    }

    .corporate-ik-content {
        padding: 0;
    }

    .slider {
        height: 334px;
        margin-top: 0;
    }

    .SliderPagination {
        width: 22px;
        height: 10px;
        margin: 0 6px 10px 0;
    }

        .SliderPagination:first-child {
            margin-left: 25px;
        }

    .swiper-content-block {
        width: 270px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 32px;
        line-height: 38px;
    }

        .slider-text.slogan {
            font-size: 18px;
            line-height: 24px;
        }

    .main-products {
        margin: 0 0 40px 0;
        padding: 0 18px;
    }

    .main-product-item {
        width: 31.3%;
        height: 310px;
        margin: 0 1%;
    }

    .main-product-head {
        height: 80px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 20px;
            line-height: 22px;
        }

    .main-product-img {
        height: 215px;
        padding: 10px 40px 5px 40px;
    }

    .main-product-item.text {
        padding: 25px 7px 0 7px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 16px;
        line-height: 26px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 24px;
        line-height: 30px;
    }

    .main-corporate-text {
        height: 100px;
        font-size: 16px;
        line-height: 30px;
    }

    .main-corporate-right {
        width: 100%;
        height: 360px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
        font-size: 12px;
        line-height: 16px;
    }

        .main-corporate-heads span {
            font-size: 14px;
            line-height: 18px;
        }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
    }

    .main-sectors-item-top {
        height: 150px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-bottom {
        height: 135px;
    }

    .main-sectors-item-img span {
        font-size: 16px;
        line-height: 24px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-news-block {
        width: 450px;
    }

    .main-news-head {
        font-size: 18px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 15px;
    }

    .main-catalog-img {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 80px;
        padding: 0;
        font-size: 22px;
        line-height: 30px;
        text-align: center
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-contact {
        width: 45%;
        padding: 35px 0 0 25px;
    }

    .footer-social-block {
        margin: 95px 0 0 0;
    }

    .footer-enew {
        width: 55%;
        height: 340px;
        padding: 35px 25px 0 30px;
        background-size: 210px;
    }

    .enews-content {
        padding: 0 105px 0 0;
        margin: 15px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
            font-family: 'Montserrat-ExtraLight';
            font-size: 12px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        height: 260px;
    }

    .about-us-top {
        width: 180px;
        height: 155px;
        bottom: -5px;
        right: -5px;
        padding: 115px 5px 5px 50px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 14px;
            line-height: 18px;
        }

    .about-us-text {
        font-size: 14px;
        line-height: 30px;
        padding: 0 0 0 30px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                width: 50%;
                display: table;
                float: left;
                padding: 0;
                line-height: 24px;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 10px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0 0 0 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .corporate-history-item-center {
        height: 150px;
    }

    .corporate-history-year-icon {
        width: 84px;
        height: 84px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 150px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-sube-list {
        padding: 15px 0 3px 65px;
        background-position: 1px 15px;
        background-size: 44px;
    }

    .sube-list-box {
        min-width: 107px;
        height: 45px;
        font-size: 14px;
        line-height: 20px;
        margin: 0 10px 13px 0;
    }

        .sube-list-box a {
            max-width: 209px;
            padding: 0 6px;
        }

    .corporate-sube-content-gallery ul {
        width: 103%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30.3%;
            height: 120px;
        }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 380px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 31.3%;
            height: 330px;
            margin: 0 2% 30px 0;
        }

            .product-item-list ul li .product-item-head {
                height: 80px;
            }

            .product-item-list ul li .product-item-img {
                padding-top: 80px;
            }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 300px;
        margin: 10px 0 0 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
    }

    .product-detail-right {
        width: calc(100% - 300px);
        padding: 0 0 0 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document ul {
        padding: 5px 0 0 45px;
    }

        .product-detail-document ul li a {
            line-height: 20px;
        }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 23%;
                height: 100px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 120px;
            max-height: 70px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 45%;
        height: auto;
        display: table;
        margin: 0 4% 0 0;
        padding: 0;
        min-height: 362px;
    }

        .contact-top-item:first-child {
            width: 45%;
            margin: 0px 6% 20px 0;
            min-height: auto;
        }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-top-item:first-child .contact-address-text {
        height: 50px;
    }

    .contact-address-text {
        height: 75px;
        font-size: 14px;
        line-height: 20px;
    }

    .contact-top-item:first-child .phone-block {
        width: 50%;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 14px;
            line-height: 20px;
        }

    .contact-top-item:first-child .contact-top-item-map {
        height: 240px;
    }

    .contact-top-item-map {
        margin: 15px 0 0 0;
    }

    .contact-bottom {
        height: auto;
        padding: 0 40px 40px 40px;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        width: 27%;
        margin-right: 2%;
    }

    .contact-box.counter {
        width: calc(13% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 8px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .securitybox {
        width: 180px;
        margin: 0 25px 0 0;
    }

    .contact-box {
        width: 49%;
        height: auto;
        margin: 0 0 20px 0;
    }

    /* .contact-box .textbox {
            padding: 5px 5px 5px 15px;
        }*/

    .custom-select select {
        height: 38px;
        padding: 0 0 0 15px;
    }

    .contact-box.big {
        height: 110px;
    }

    .securitybox .textbox {
        padding: 0 0 0 15px;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 31.3%;
            height: 375px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 115px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 190px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 736px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
        height: 390px;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* tablet2 */
@media only screen and (min-width:760px) and (max-width:811px) {
    .modal.document-mail {
        left: 47.5% !important;
        top: 7% !important;
    }

    .modal.application {
        width: 92% !important;
        left: 43% !important;
    }

    .modal.detail {
        width: 92% !important;
        left: 43% !important;
    }
}

/* tablet dikey */
@media only screen and (min-width:760px) and (max-width:999px) {
    .modal.application {
        width: 92% !important;
        left: 40%;
    }

    .modal.detail {
        width: 92% !important;
        left: 40%;
    }

    .help-block.active .help-block-head {
        width: 96%;
    }

    .help-block-text {
        padding: 14px 25px 14px 66px;
    }

    .help-block-editor {
        width: 72%;
    }

    .BtnCVSend {
        width: 162px;
    }

    .modal.document-mail {
        width: 83.5% !important;
        top: 2% !important;
        left: 42.5%;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 35%;
        height: 70px;
        padding: 0;
        margin: 5px 0 5px 90px;
    }

    .menu {
        display: none;
    }

    .mmenu {
        display: block;
    }

    .banner-right {
        width: 298px;
    }

    .banner-right-left {
        width: 218px;
        padding: 0 15px 0 0;
    }

    .searchBlock {
        margin: 8px 0 0 0;
    }

    .ik-btn {
        margin-top: 7px;
    }

    .lang {
        margin: 8px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 80px;
        height: 40px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 50px;
        }

    .banner {
        position: relative;
    }

        .banner.fixed {
            position: fixed;
        }

            .banner.fixed .lang {
                margin-top: 10px;
            }

            .banner.fixed .logo {
                height: 80px;
                padding-top: 0;
                margin-top: 0;
                margin-bottom: 0;
            }

            .banner.fixed .banner-button {
                height: 40px;
            }

    .router-block {
        margin-top: 80px;
    }

    .slider {
        height: 350px;
        margin-top: 0;
    }

    .swiper-content-block {
        width: 270px;
        margin: 0 0 0 25px;
    }

    .slider-text {
        font-size: 32px;
        line-height: 38px;
    }

        .slider-text.slogan {
            font-size: 18px;
            line-height: 24px;
        }

    .main-products {
        margin: 0 0 40px 0;
    }

    .main-product-item {
        width: 29.3%;
        height: 310px;
        margin: 0 2%;
    }

    .main-product-head {
        height: 80px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 20px;
            line-height: 22px;
        }

    .main-product-img {
        height: 215px;
        padding: 10px 40px 5px 40px;
    }

    .main-product-item.text {
        padding: 25px 20px 0 20px;
        width: 100%;
        height: auto;
    }

    .main-product-text-head {
        margin: 0 0 10px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 70px;
        font-size: 16px;
        line-height: 26px;
    }

    .button {
        width: 150px;
        height: 45px;
        float: right;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 100%;
        height: auto;
        padding: 0 25px;
        margin: 0 0 25px 0;
    }

    .main-corporate-head {
        margin: 15px 0 10px 0;
        font-size: 24px;
        line-height: 30px;
    }

    .main-corporate-text {
        height: 100px;
        font-size: 16px;
        line-height: 30px;
    }

    .main-corporate-right {
        width: 100%;
        height: 360px;
        padding: 0 25px;
    }

    .main-corporate-heads {
        width: calc(100% - 50px);
        left: 25px;
    }

    .main-sectors {
        margin: 0 0 40px 0;
    }

    .main-secktors-back {
        width: 76%;
    }

    .main-sectors-right {
        width: 45%;
    }

    .main-sectors-item-top {
        height: 150px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-bottom {
        height: 135px;
    }

    .main-sectors-item-img span {
        font-size: 16px;
        line-height: 24px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 65%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-news-block {
        width: 450px;
    }

    .main-news-head {
        font-size: 18px;
        line-height: 24px;
    }

    .main-news-text {
        font-size: 14px;
        line-height: 22px;
    }

    .slick-dots li {
        width: 16px;
    }

        .slick-dots li button {
            width: 100%;
            height: 8px;
        }

    .main-news-all-link a {
        font-size: 14px;
        line-height: 25px;
    }

    .main-catalog-right {
        width: 35%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 15px;
    }

    .main-catalog-img {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: table;
        float: inherit;
    }

    .main-catalog-content {
        width: 100%;
        height: 80px;
        padding: 0;
        font-size: 22px;
        line-height: 30px;
        text-align: center
    }

    .footer {
        height: auto;
    }

    .footer-left, .footer-menu, .footer-products {
        display: none;
    }

    .footer-contact {
        width: 40%;
        padding: 50px 0 0 25px;
    }

    .footer-social-block {
        margin: 95px 0 0 0;
    }

    .footer-enew {
        width: 55%;
        height: 340px;
        padding: 35px 25px 0 30px;
        background-size: 210px;
    }

    .enews-content {
        padding: 0 85px 0 0;
        margin: 15px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-sectors {
        display: none;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        display: none;
    }

    .corporate-right, .corporate-right.mission, .corporate-right.history {
        width: 100%;
        margin: 0;
    }

    .about-us-img {
        height: 260px;
    }

    .about-us-top {
        width: 180px;
        height: 155px;
        bottom: -5px;
        right: -5px;
        padding: 115px 5px 5px 50px;
        font-size: 12px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 14px;
            line-height: 16px;
        }

    .about-us-text {
        font-size: 14px;
        line-height: 30px;
        padding: 0 0 0 30px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                width: 50%;
                display: table;
                float: left;
                padding: 0;
                line-height: 22px;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 10px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0 0 0 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .corporate-history-item-center {
        height: 150px;
    }

    .corporate-history-year-icon {
        width: 84px;
        height: 84px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 150px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-sube-list {
        padding: 15px 0 3px 65px;
        background-position: 1px 15px;
        background-size: 44px;
    }

    .sube-list-box {
        min-width: 110px;
        height: 45px;
        font-size: 14px;
        line-height: 20px;
        margin: 0 20px 13px 0;
    }

        .sube-list-box a {
            max-width: 190px;
            padding: 0 7px;
        }

    .corporate-sube-content-gallery ul {
        width: 104%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30%;
            height: 150px;
        }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 380px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            width: 31.3%;
            height: 490px;
        }

    .product-list {
        display: none;
    }

    .product-item-list.list, .product-detail {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .product-item-list.list ul li {
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list .product-item-img {
            height: 170px;
            margin: 10px 0 0 0;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 300px;
        margin: 10px 0 0 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
    }

    .product-detail-right {
        width: calc(100% - 300px);
        padding: 0 0 0 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document ul {
        padding: 5px 0 0 45px;
    }

        .product-detail-document ul li a {
            line-height: 20px;
        }

    .sector-list {
        display: none;
    }

    .sector-detail {
        width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container {
        min-height: 360px;
    }

        .brands-container ul {
            width: 102%;
        }

            .brands-container ul li {
                width: 23%;
                height: 100px;
                margin: 0 2% 30px 0;
            }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 120px;
            max-height: 120px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
        width: 47%;
        padding: 0;
        min-height: 340px;
        margin-bottom: 40px;
    }

        .contact-top-item:first-child {
        }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-top-item:first-child .contact-address-text {
        height: 50px;
    }

    .contact-address-text {
        height: 75px;
        font-size: 14px;
        line-height: 20px;
    }

    .contact-top-item:first-child .phone-block {
        width: 50%;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 14px;
            line-height: 20px;
        }

    .contact-top-item:first-child .contact-top-item-map {
        /* height: 240px; */
    }

    .contact-top-item-map {
        /* margin: 15px 0 0 0; */
    }

    .contact-bottom {
        height: auto;
        padding: 0 40px 40px 40px;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        display: none;
    }

    .offer-right {
        width: 100%;
        padding: 0;
    }

    .contact-box.small2 {
        margin-right: 3%;
    }

    .contact-box.counter {
        width: calc(16% - 25px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 8px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .securitybox {
        width: 180px;
        margin: 0 25px 0 0;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 31.3%;
            height: 375px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 115px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 190px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .news-detail-content {
        width: 100%;
        padding: 0;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 768px;
        padding: 0 0 0 25px;
        margin: 0 0 70px 0;
    }

    .newslider {
        padding: 0 20px;
    }

        .newslider .news-item-block {
            width: calc(100% - 25px);
            height: 390px;
        }

        .newslider .slick-prev {
            left: -10px;
        }

        .newslider .slick-next {
            right: 15px;
        }

        .newslider .slick-prev, .newslider .slick-next {
            opacity: 1;
        }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}

/* tabley yatay */
@media only screen and (min-width:1000px) and (max-width:1024px) {
    .modal.detail {
        width: 68.6123% !important;
        top: 20% !important;
    }

    .modal.application {
        width: 65.6123% !important;
        left: 46%;
    }

    .modal.document-mail {
        width: 61.5% !important;
        left: 48.5%;
    }

    .help-block-head {
        padding: 27px 36px;
    }

    .help-block.active .help-block-head {
        padding: 20px 0 16px 36px;
        width: 95%;
    }

    .help-block-text {
        padding: 38px 47px;
    }

    .help-block-editor {
        width: 66%;
    }

    .lightBoxSlide {
        width: auto !important;
        max-width: 100% !important;
    }

    .logo {
        width: 20%;
        height: 65px;
        padding: 10px 0 0 15px;
        margin: 0 0 5px 0;
    }

    .menu {
        width: calc(80% - 290px);
        padding: 30px 0 0 0;
    }

        .menu ul li a {
            margin: 0 5px;
            padding: 0 5px;
            font-size: 14px;
        }

    .banner-right {
        width: 290px;
    }

    .banner-right-left {
        width: 210px;
        padding: 0 11px 0 0;
    }

    .searchBlock {
        margin: 8px 0 0 0;
    }

    .ik-btn {
        margin-top: 8px;
    }

    .lang {
        margin: 7px 0 0 0;
    }

        .lang a {
            font-size: 15px;
            line-height: 16px;
        }

    .banner-button {
        width: 80px;
        height: 40px;
    }

        .banner-button.offer a {
            font-size: 14px;
        }

        .banner-button.b2b a {
            background-size: 50px;
        }

    .banner.fixed .lang {
        margin-top: 10px;
    }

    .banner.fixed .logo {
        height: 80px;
        padding-top: 0;
        margin: 0;
    }

    .banner.fixed .banner-button {
        height: 40px;
    }

    .slider {
        height: 465px;
        margin-top: 80px;
    }

    .swiper-content-block {
        margin: 0 0 0 65px;
    }

    .main-products {
        margin: 0 0 40px 0;
    }

    .main-product-item {
        height: 390px;
    }

    .main-product-head {
        height: 100px;
        padding: 0 10px;
    }

        .main-product-head span {
            font-size: 22px;
            line-height: 24px;
        }

    .main-product-img {
        height: 260px;
    }

    .main-product-item.text {
        padding: 50px 20px 0 20px;
    }

    .main-product-text-head {
        margin: 0 0 20px 0;
    }

        .main-product-text-head, .main-product-text-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .main-product-text-content {
        height: 175px;
        font-size: 16px;
        line-height: 26px;
    }

    .button {
        width: 150px;
        height: 45px;
    }

        .button a {
            font-size: 14px;
        }

    .main-corporate {
        margin: 0 0 40px 0;
    }

    .main-corporate-left {
        width: 45%;
        height: 360px;
        padding: 0 25px;
    }

    .main-corporate-head {
        margin: 30px 0 20px 0;
        font-size: 24px;
        line-height: 30px;
    }

    .main-corporate-text {
        height: 170px;
        font-size: 16px;
        line-height: 30px;
    }

    .main-corporate-right {
        width: 55%;
        height: 360px;
        padding: 0 25px 0 0;
    }

    .main-corporate-heads {
        font-size: 12px;
        line-height: 16px;
        width: calc(100% - 25px);
    }

        .main-corporate-heads span {
            font-size: 14px;
            line-height: 18px;
        }

    .main-sectors-item-top {
        height: 180px;
        padding: 0 0 15px 0;
    }

    .main-sectors-item {
        padding: 0 0 0 15px;
    }

    .main-sectors-item-bottom {
        height: 170px;
    }

    .main-sectors-item-img span {
        font-size: 20px;
        line-height: 26px;
    }

    .main-new-catalog {
        margin: 0 0 40px 0;
    }

    .main-news-left {
        width: 55%;
        background-image: none;
        padding: 35px 0 0 25px;
    }

    .main-catalog-right {
        width: 45%;
    }

    .main-catalog-block {
        width: 100%;
        padding: 0 25px 0 30px;
    }

    .main-catalog-img {
        width: 160px;
        height: 160px;
    }

    .main-catalog-content {
        width: calc(100% - 160px);
        padding: 0 0 0 35px;
        font-size: 24px;
        line-height: 32px;
    }

    .footer-left {
        width: 50%;
        height: 370px;
        padding: 35px 135px 0 25px;
    }

    .footer-left-item {
        padding: 6px 0 0 30px;
    }

        .footer-left-item.quality {
            background-size: 24px;
        }

        .footer-left-item.approved {
            background-size: 22px;
        }

        .footer-left-item.secure {
            background-size: 21px;
        }

    .footer-left-item-head {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-left-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-menu {
        width: 24%;
        padding: 35px 0 0 25px;
        height: 250px;
    }

    .footer-links-head {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 5px 0;
    }

    .footer-links-list li a {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-products {
        width: 24%;
        padding: 35px 0 0 0;
        height: 250px;
    }

    .footer-sectors {
        width: 18%;
        padding-top: 35px;
    }

    .footer-contact {
        width: 34%;
        padding: 35px 0 0 25px;
    }

    .footer-social-block {
        margin-top: 15px;
    }

    .footer-enew {
        width: 100%;
        height: 280px;
        padding: 30px 40% 0 25px;
        background-size: 230px;
    }

    .enews-content {
        padding: 0 85px 0 0;
        margin: 15px 0 0 0;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-logo {
        width: 240px;
        height: 50px;
        margin: 0 0 0 25px;
    }

    .owner {
        margin: 0 0 0 25px;
    }

    .design {
        margin: 0 25px 0 0;
    }

        .owner a, .design a {
            line-height: 30px;
        }

    .router-content, .content, .content.contact {
        padding: 0 25px;
    }

    .corporate-left {
        width: 240px;
        padding: 20px 30px 25px 25px;
    }

        .corporate-left ul li a {
            padding: 10px 0;
            font-size: 14px;
            line-height: 30px;
        }

            .corporate-left ul li a::after {
                width: 12px;
                height: 8px;
                left: -25px;
                top: 16px;
            }

    .corporate-right {
        width: calc(100% - 265px);
        margin: 0 0 0 25px;
    }

    .about-us-img {
        height: 260px;
    }

    .about-us-top {
        width: 180px;
        height: 155px;
        bottom: -5px;
        right: -5px;
        padding: 115px 5px 5px 40px;
        font-size: 10px;
        line-height: 14px;
        background-size: cover;
    }

        .about-us-top span {
            font-size: 13px;
            line-height: 18px;
        }

    .about-us-text {
        font-size: 14px;
        line-height: 30px;
        padding: 0 0 0 30px;
    }

        .about-us-text p {
            margin: 0 0 20px 0;
        }

        .about-us-text table tr {
            display: block;
        }

            .about-us-text table tr td {
                width: 50%;
                display: table;
                float: left;
                padding: 0;
                line-height: 22px;
            }

    .corporate-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .corporate-right strong {
        font-size: 14px;
        line-height: 24px;
        margin: 15px 0 0 0;
    }

    .corporate-right.mission {
        width: calc(100% - 280px);
        margin: 0 0 0 40px;
    }

    .mission-head {
        min-height: inherit;
        padding: 15px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .about-box {
        width: 48%;
        height: 230px;
        margin: 0 4% 25px 0;
        background-position: calc(100% + 15px) calc(100% + 20px);
        background-size: 84px;
        padding: 25px 25px 10px 25px;
    }

    .about-box-head {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box-text {
        font-size: 14px;
        line-height: 20px;
    }

    .about-box:nth-child(2) {
        margin-right: 0;
    }

    .corporate-right.history {
        width: calc(100% - 280px);
        margin: 0 0 0 40px;
    }

    .corporate-history-content {
        width: 100%;
    }

    .corporate-history-top {
        font-size: 18px;
    }

    .corporet-history-item-block {
        margin: 0 0 85px 0;
        padding: 0;
    }

    .corporate-history-item-left {
    }

    .corporate-history-item-volume {
        font-size: 14px;
        line-height: 22px;
    }

    .corporate-history-item-address {
        padding: 0 0 0 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .corporate-history-item-center {
        height: 150px;
    }

    .corporate-history-year-icon {
        width: 84px;
        height: 84px;
        margin: 30px auto 0 auto;
    }

        .corporate-history-year-icon span {
            font-size: 20px;
            line-height: 30px;
        }

    .corporate-history-item-right {
        height: 150px;
    }

    .corporate-history-top.bottom {
        margin: 0 0 110px 0;
    }

    .corporate-sube-list {
        padding: 15px 0 3px 65px;
        background-position: 1px 15px;
        background-size: 44px;
    }

    .sube-list-box {
        min-width: 85px;
        height: 45px;
        font-size: 14px;
        line-height: 20px;
        margin: 0px 10px 13px 0;
    }

        .sube-list-box a {
            /* max-width: 170px; */
        }

        .sube-list-box a {
            padding: 0 10px;
        }

    .corporate-sube-content-gallery ul {
        width: 104%;
    }

        .corporate-sube-content-gallery ul li {
            width: 30%;
            height: 150px;
        }

    .corporate-ik-block {
        width: 100%;
    }

    .corporate-promotion-film {
        height: 380px;
    }

    .product-item-list ul {
        width: 102%;
    }

        .product-item-list ul li {
            height: 360px;
        }

    .product-item-head {
        font-size: 18px;
        line-height: 24px;
    }

    .product-list {
        width: 260px;
        padding: 20px 20px 25px 25px;
    }

        .product-list ul li a {
            padding: 10px 0;
            font-size: 14px;
            line-height: 25px;
        }

            .product-list ul li a::after {
                width: 12px;
                height: 8px;
                left: -25px;
                top: 18px;
            }

    .product-item-list.list {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
    }

        .product-item-list.list ul li {
            width: 31.3%;
            height: 305px;
        }

        .product-item-list.list .product-item-block {
            padding: 20px 15px;
        }

        .product-item-list.list .product-item-head {
            font-size: 16px;
            line-height: 20px;
            margin: 0 0 5px 0;
        }

        .product-item-list.list ul li .product-item-img {
            height: 170px;
            padding: 10px 0;
        }

        .product-item-list.list ul li:hover .product-item-img {
            height: 170px;
        }

    .product-detail {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
        padding: 10px 0 0 0;
    }

    .product-detail-head {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 10px 0;
    }

        .product-detail-head h1 {
            font-size: 20px;
            line-height: 30px;
        }

    .product-detail-left {
        width: 300px;
        margin: 10px 0 0 0;
    }

    .product-detail-gallery {
        width: 300px;
        height: 280px;
    }

    .product-detail-right {
        width: calc(100% - 300px);
        padding: 0 0 0 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .prod-gallery-item {
        height: 280px;
    }

    .product-detail-document-icon {
        width: 45px;
        background-size: 26px;
    }

    .product-detail-document-head span {
        width: calc(100% - 45px);
        height: auto;
        font-size: 14px;
        line-height: 35px;
    }

    .product-detail-document ul {
        padding: 5px 0 0 45px;
    }

        .product-detail-document ul li a {
            line-height: 20px;
        }

    .sector-list {
        width: 260px;
        padding: 20px 20px 25px 25px;
    }

        .sector-list ul li a {
            padding: 10px 0;
            font-size: 14px;
            line-height: 20px;
        }

            .sector-list ul li a::after {
                width: 12px;
                height: 8px;
                left: -25px;
                top: 15px;
            }

    .sector-detail {
        width: calc(100% - 300px);
        margin: 0 0 0 40px;
        font-size: 14px;
        line-height: 24px;
    }

        .sector-detail p {
            margin: 0 0 10px 0;
        }

        .sector-detail img {
            margin: 0 0 5px 0;
        }

    .brands-container ul {
        width: 102%;
    }

        .brands-container ul li {
            width: 23%;
            margin: 0 2% 30px 0;
        }

    .brands-item-block {
        padding: 10px;
    }

        .brands-item-block img {
            max-width: 190px;
            max-height: 100px;
            width: 100%;
            height: 100%;
        }

    .contact-container {
        margin: 0 0 50px 0;
    }

    .contact-top {
        margin: 0 0 40px 0;
    }

    .contact-top-item {
       /* width: 23%;
        margin: 0 2% 0 0;
        padding: 10px 0 0 0;*/
        min-height: 391px;
    }

    .contact-top-item-top {
        padding: 0 0 0 20px;
    }

    .contact-address-head {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 5px -20px;
        padding: 0 0 0 20px;
        background-size: 12px;
    }

    .contact-address-text {
        height: 90px;
        font-size: 14px;
        line-height: 20px;
    }

    .phone-block {
        width: 100%;
    }

        .phone-block strong {
            font-size: 14px;
            line-height: 20px;
        }

        .phone-block a {
            font-size: 14px;
            line-height: 20px;
        }

    .contact-top-item-map {
    }

    .contact-bottom {
        height: auto;
        padding: 0 85px 40px 85px;
    }

    .offer-container {
        margin: 0 0 40px 0;
    }

    .offer-left {
        width: 400px;
        height: 420px;
    }

    .offer-right {
        width: calc(100% - 400px);
        padding: 1px 0 0 25px;
    }

    .contact-box {
        height: auto;
        margin: 0 0 20px 0;
    }

        .contact-box:nth-child(2n) {
            margin-right: 0;
        }

    .custom-select select {
        height: 40px;
        padding: 0 0 0 20px;
    }

    .contact-box.small2 {
        width: 48%;
        margin-right: 4%;
    }

        .contact-box.small2:nth-child(2n) {
            margin-right: 0;
        }

    /*.contact-box .textbox {
        padding: 5px 15px 5px 20px;
    }*/

    .contact-box.counter {
        width: calc(48% - 30px);
    }

    .quantity {
        width: 18px;
        height: auto;
        padding: 3px 0 0 0;
    }

    .increase {
        margin: 0 0 7px 0;
    }

    .contact-box.big {
        height: 110px;
    }

    .securitybox {
        width: 180px;
        margin: 0 25px 0 0;
    }

    .news-item-list ul {
        width: 102%;
    }

        .news-item-list ul li {
            width: 31.3%;
            height: 480px;
            margin: 0 2% 44px 0;
        }

    .news-item-block {
        padding: 20px 20px 10px 20px;
        background-size: 80px;
        background-position: calc(100% + 15px) calc(100% + 20px);
    }

    .news-item-img {
        height: 165px;
        margin: 0 0 5px 0;
    }

    .news-item-content {
        height: 165px;
    }

    .news-item-head {
        font-size: 14px;
        line-height: 20px;
    }

    .news-item-text {
        line-height: 22px;
    }

    .news-detail-img {
        width: 400px;
    }

    .news-detail-content {
        width: calc(100% - 400px);
        padding: 0 0 0 25px;
    }

    .news-detail-head {
        font-size: 18px;
    }

    .news-detail-gallery ul li {
        height: 110px;
    }

    .other-news {
        width: 1024px;
        padding: 0 15px 0 45px;
        margin: 0 0 70px 0;
    }

    .newslider .news-item-block {
        width: calc(100% - 25px);
    }

    .newslider .slick-prev, .newslider .slick-next {
        opacity: 1;
    }

    .slick-prev::before {
        opacity: 1;
    }

    .slick-next::before {
        opacity: 1;
    }
}
