@media screen and (max-width:1240px) {

    .wrapper {
        height: 100%;
        width: 100%;
        position: absolute;
    }


    .menu-toggle {
        display: block;
        position: fixed;
        z-index: 2;
        line-height: 50%;
        top: 27px;
        right: 5%;
        width: 25px;
        height: 25px;
        outline: none;
        transition: opacity 0.2s ease-out;
    }

    .menu-toggle:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        right: auto;
        width: 100%;
        background: linear-gradient(to bottom, #8a8a8a, #8a8a8a 20%, transparent 20%, transparent 40%, #8a8a8a 40%, #8a8a8a 60%, transparent 60%, transparent 80%, #8a8a8a 80%, #8a8a8a 100%);
        transition: opacity 0.2s ease-out, width 0.2s 0.2s ease-out;
    }

    .menu-toggle:after {
        opacity: 0;
        content: '×';
        color: white;
        position: absolute;
        top: 16px;
        left: -4px;
        font-family: Arial, sans-serif;
        font-size: 56px;
        line-height: 0;
        transition: opacity 0.4s ease-out;
    }

    .menu-toggle:active {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    .menu-toggle:hover {
        opacity: 1;
    }

    .open .menu-toggle {
        opacity: 1;
    }

    .open .menu-toggle:before {
        opacity: 0;
        width: 0;
    }

    .open .menu-toggle:after {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
        transform: translate3d(0, 0, 0) rotate(360deg);
        transition: opacity 0.4s 1s ease-out, -webkit-transform 0.4s 1s ease-out;
        transition: transform 0.4s 1s ease-out, opacity 0.4s 1s ease-out;
        transition: transform 0.4s 1s ease-out, opacity 0.4s 1s ease-out, -webkit-transform 0.4s 1s ease-out;
    }

    nav {
        z-index: 1;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden;
    }

    nav:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
        -webkit-transform: scale(0.04), translateY(9999px);
        transform: scale(0.04), translateY(9999px);
        overflow: hidden;
    }

    .open nav {
        top: 0;
    }

    .open nav:before {
        -webkit-animation: menu-animation 0.8s ease-out forwards;
        animation: menu-animation 0.8s ease-out forwards;
    }

    ul.menu {
        position: fixed;
        display: block;
        top: 40%;
        left: 50%;
        width: 50%;
        height: 70%;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        color: white;
        overflow: auto;
    }

    ul.menu li {
        opacity: 0;
        text-align: center;
        -webkit-transform: translate3d(0, 36px, 0);
        transform: translate3d(0, 36px, 0);
        padding: 20px;
    }

    .menu li a {
        padding: 0;
    }

    ul.menu li:before {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        left: auto;
        height: 100%;
        width: 0;
        overflow: hidden;
        transition: width 0.14s ease-out;
    }

    ul.menu li:after {
        opacity: 0;
        content: attr(data-text);
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        color: rgba(0, 0, 0, 0);
        overflow: hidden;
        -webkit-transform: translate(-24px, 6px);
        transform: translate(-24px, 6px);
        transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
        transition: transform 0.1s ease-out, opacity 0.1s ease-out;
        transition: transform 0.1s ease-out, opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
    }

    ul.menu li:hover:before {
        left: 0;
        right: auto;
        width: 100%;
    }

    ul.menu li:hover:after {
        opacity: 1;
        padding: 0 20px;
        -webkit-transform: translate(0px, 6px);
        transform: translate(0px, 6px);
        transition: opacity 0.2s 0.14s ease-out, -webkit-transform 0.2s 0.14s ease-out;
        transition: transform 0.2s 0.14s ease-out, opacity 0.2s 0.14s ease-out;
        transition: transform 0.2s 0.14s ease-out, opacity 0.2s 0.14s ease-out, -webkit-transform 0.2s 0.14s ease-out;
    }

    .open ul.menu li {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
    }

    .open ul.menu li:nth-child(1) {
        transition-delay: 0.75s;
    }

    .open ul.menu li:nth-child(2) {
        transition-delay: 0.85s;
    }

    .open ul.menu li:nth-child(3) {
        transition-delay: 0.95s;
    }

    .open ul.menu li:nth-child(4) {
        transition-delay: 1.15s;
    }

    .open ul.menu li:nth-child(5) {
        transition-delay: 1.25s;
    }

    .open ul.menu li:nth-child(6) {
        transition-delay: 1.35s;
    }


    @-webkit-keyframes menu-animation {
        0% {
            opacity: 0;
            -webkit-transform: scale(0.04) translateY(300%);
            transform: scale(0.04) translateY(300%);
        }

        40% {
            -webkit-transform: scale(0.04) translateY(0);
            transform: scale(0.04) translateY(0);
            transition: ease-out;
        }

        40% {
            -webkit-transform: scale(0.04) translateY(0);
            transform: scale(0.04) translateY(0);
        }

        60% {
            opacity: 1;
            -webkit-transform: scale(0.02) translateY(0px);
            transform: scale(0.02) translateY(0px);
        }

        61% {
            -webkit-transform: scale(0.04);
            transform: scale(0.04);
        }

        99.9% {
            height: 0;
            padding-bottom: 100%;
            border-radius: 100%;
        }

        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
            height: 100%;
            padding-bottom: 0;
            border-radius: 0;
        }
    }

    @keyframes menu-animation {
        0% {
            opacity: 0;
            -webkit-transform: scale(0.04) translateY(300%);
            transform: scale(0.04) translateY(300%);
        }

        40% {
            -webkit-transform: scale(0.04) translateY(0);
            transform: scale(0.04) translateY(0);
            transition: ease-out;
        }

        40% {
            -webkit-transform: scale(0.04) translateY(0);
            transform: scale(0.04) translateY(0);
        }

        60% {
            opacity: 1;
            -webkit-transform: scale(0.02) translateY(0px);
            transform: scale(0.02) translateY(0px);
        }

        61% {
            -webkit-transform: scale(0.04);
            transform: scale(0.04);
        }

        99.9% {
            height: 0;
            padding-bottom: 100%;
            border-radius: 100%;
        }

        100% {
            -webkit-transform: scale(2);
            transform: scale(2);
            height: 100%;
            padding-bottom: 0;
            border-radius: 0;
        }
    }


}

/**  продукция **/

@media only screen and (min-width: 1000px) {

.footer-capcha {
		margin:120px 0 0 60px;
	}

    .products-menu {
        width: 400px;
        margin: 0;
        height: 100vh;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 400px;
        flex: 0 0 400px;
        max-width: 400px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .left-menu-clear {
        width: 400px;

    }


    .products-mbopen-menu {
        display: none
    }

    .left-menu-napravlenie {
        margin: 120px 0 0 0;
        width: 100%;
    }

    .menu-li-number {
        display: block;
        color: #5f5f5f;
        font-family: 'Roboto-Light';
        padding: 0 0 0 25px;
        font-size: 18px;
        line-height: 36px;
        /* Text style for "0, 2." */
        letter-spacing: -0.9px;
        transition: 0.3s linear;
    }

    .left-menu-li-position {
        margin: 0
    }

    .left-menu-li li:hover .menu-li-number {
        -webkit-transform: scale(1.3);
        transform: scale(1.3) translate(-5px, 0);
        color: #a0a0a0;
    }

    .left-menu-li li a {
        padding: 0px 35px 0 15px;
        color: #5f5f5f;
        font-family: 'Roboto-Light';
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        width: 100%;
        display: inline-block;
        position: relative;
        text-decoration: none;
        transition: 0.3s linear;
    }

    .left-menu-li li:hover a {
        transform: scale(1.1) translate(25px, 0);
        color: #a0a0a0
    }


    .active-left-menu span {
        -webkit-transform: scale(1.3);
        transform: scale(1.3) translate(-5px, 0);
        color: #a0a0a0;
    }

    .active-left-menu a {
        transform: scale(1.1) translate(25px, 0);
        color: #a0a0a0;
    }

    .product-content-h1 h1 {
        font-size: 36px;



    }

    .product-content-full {
        padding: 0 40px;
    }

    .products-content div:nth-child(1) {
        order: 1;
    }

    .products-content div:nth-child(2) {
        order: 2;
    }

    .products-content div:nth-child(3) {
        order: 3;
    }

    .products-content div:nth-child(4) {
        order: 4;
    }


    .button-back {
        width: 40px;
        height: 180px;
        display: flex;
        top: 30%;
        right: 0;
        justify-content: center;
        align-items: center;
        background-color: #9f0000;
        position: absolute;


    }

    .button-back a {
        color: #fff;
        font-size: 25px;
        letter-spacing: -0.75px;
        font-family: "Roboto-Light";
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    /**  деталка бренда **/

    .left-menu-clear-detail {
        width: 350px;
        height: 80px;
        position: fixed;
        z-index: 1;
        background: #121212;
    }

    .products-menu-detail {
        width: 350px;
        margin: 0;
        height: 100vh;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 350px;
        flex: 0 0 350px;
        max-width: 350px;
        overflow-y: auto;
        overflow-x: hidden;
        
    }

    /** бренд**/
    .brands-content-position {

        flex-direction: row;

    }

    .brands-detail-img span {
        position: absolute;
        z-index: 1
    }

    .brands-img-float-1 {
        top: 20%;
    }

    .brands-img-float-2 {
        top: 55%;
    }


    .brands-content {
        display: flex;
        box-sizing: border-box;
        flex-direction: column
    }

    .brands-logo-name {
        height: 60px;
        border-left: 5px solid #9f0000;
        margin: 40px;
        display: block;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-brand-detail {
        padding: 0 0 0 10px;
    }


    /*  */

    .brands-detail-img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 300px;
        flex: 0 0 300px;
        height: 100%;
        max-width: 300px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: -60px;
    }

    .brands-detail-img img {
        max-width: 300px;
        max-height: 100%;
    }



    .brands-logo-name {
        height: 40px;
        border-left: 6px solid #9f0000;
        margin: 30px;
        display: block;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-brand-detail img {
        max-height: 40px;
    }

    .brands-title-h1 {
        padding: 0 50px 0 40px;
    }

    .brands-title-h1 h1 {
        color: #bbbbbb;
        font-family: 'Roboto';
        font-size: 18px;
        font-weight: 400;
        line-height: 20.59px;
        /* Text style for "А, втозапч" */
        letter-spacing: -0.79px;
    }

    .brands-discr-p {
        color: #000000;
        font-family: "Roboto-Light";
        font-size: 14px;
        text-align: justify;
        line-height: 19px;
        /* Text style for "• широкий" */
        letter-spacing: -0.41px;
        padding: 0px 60px 0 40px;
    }

    .mob-margin-brend {
        margin: 0;
    }


    .brands-line-bottom {
        background: #9f0000;
        height: 1px;
        margin: 30px;

    }



    /*****

career

******/


    .products-title-wrapper p{
        font-size: 15px;
        line-height: 21px;
        letter-spacing: -0.75px;

    }


    .career-block-p p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.45px;

    }

    .career-preim-detail {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .career-link-img p {
        font-size: 15px;
        line-height: 21px;
        letter-spacing: -0.66px;
    }

    /*******
    новости
    ************/

    .news-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }


    .news-blok-50 {
        width: 45%;
        display: flex;
        flex-direction: column
    }

    .news-blok-50 p {
        padding: 0 20px 0 55px;
        color: #000000;
        font-family: "Roboto-Light";
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        /* Text style for "Надежное с" */
        letter-spacing: -0.54px;

    }

    .news-iframe, .news-blok-50 img {
        padding: 0 10px 0 25px;
        max-width:100%;
    }


    .news-block-100 {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap
    }

    .news-prev-block-100 {
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-prev-block-100 p {
        padding: 20px 20px 20px 55px
    }

    .news-prev-block-100 p img {
        max-width: 100%
    }



    .news-block-smalImg {
        width: 45%;
        padding: 10px 10px 10px 25px;
        display: flex;
        flex-direction: column;
        font-family: "Roboto-Light";
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        /* Text style for "Надежное с" */
        letter-spacing: -0.54px;
    }


    .gbo-downloads-links {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row
    }

    .name-program {
        width: 50%;

    }

    /*****

контакты

******/

    .contacts-margin {
        margin: 100px 0 0 0;
        height: 100%
    }



    .contacts-left-block-top {
        font-size: 22px;
        line-height: 28px;
        padding: 0 0 90px 0
    }

    .contacts-left-block-top p {

        font-size: 20px;

        line-height: 28px;

    }


    .contacts-button-style {
        width: 60%;
        font-size: 22px;
        line-height: 28px;
        padding: 5px;
        cursor: pointer
    }
    
    /* авторизация */
    
    
    .auth-header-bg {
    height: 80px;
    width: 100%;
    position: fixed;
    background: #000
}
    
    
    .bg-auth {
    width: 100%;
    height: 100%;
    background: url(../img/cars.jpg) no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: auto;
}
    
    .auth-form-wrapper {
    width: 900px;
    height: 550px;
    margin: 190px auto;
}
    
  
.form-auth-ul {
    width: 550px;
    margin: 0 auto
}

.form-auth-ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    display: flex;
    align-items: flex-end;
    height: 80px;
}


.form-auth-ul li img {
    height: 30px;
    padding: 0 40px 15px 55px;
    opacity: 0.6
}
    
    
.auth-form-wrapper>input {
	display: none
}

.auth-form-wrapper>label {
	display: block;
	float: left;
    padding: 30px 27px;
    width: 393px;
	cursor: pointer;
	color: #ffffff;
    font-family: "Roboto-Black";
    font-size: 35px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.4px;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out
}

.label-form-left {
    text-align: right;
    border-right: 6px solid #9f0000
}

  .form-auth-ul li input {
   
    font-size: 20px;
    
}
  
    .auth-form-wrapper>label:hover,
.auth-form-wrapper>input:checked+label {
	background: rgba(0, 0, 0, 0.6);
}

  .tabs>div {
	background: rgba(0, 0, 0, 0.6);
}  
    
    
  .text-vost-pass {
    color: #fff;
    padding: 50px 200px;
    opacity: .5;
    line-height: 24px;
    font-size: 14px
}  
    
    
    .auth-button-style {
    border: 1px solid #9f0000;
    background: rgba(18, 18, 18, 0);
    color: #fff;
    font-family: "Roboto-Light";
        font-size: 22px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.22px;
       width: 400px;
    padding: 10px 80px;
    cursor: pointer
}

    .target form{
   height: 550px ;
       display: flex;
    flex-direction: column

}
    /****
    
    модальное окно
    
    ***/
    
  .modal {
	background: #fff;

	width: 700px;
	max-width: 90%;
	height: 70%;
 	margin-top: 6%;
}
  
    textarea {
    width: 550px;
    height: 100px;
   
       color: #141414;
    
}

.footer-form-button {
    /*margin: -75px 0 0 350px ;*/
    width: 50%;
    margin: 0 auto;
}
    
    
    .textarea-name {
    font-family: "Roboto-Light";
    opacity: 0.5;
        font-size: 20px;
            color: #141414;
}
    
    .footer-form-button button {  
        font-size: 22px;
      
}
    
    .modal-mob li img {
    height: 35px;
        padding: 0 25px 8px 55px;
    
}
   .modal-mob li {
    height: 80px;
      
    
}

.modal-mob li input {

   
    font-size: 22px;
   
}


}

@media only screen and (min-width: 1300px) {

	.footer-capcha {
		margin:120px 0 0 75px;
	}

    .products-menu {
        width: 500px;
        margin: 0;
        height: 100vh;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 500px;
        flex: 0 0 500px;
        max-width: 500px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .left-menu-clear {
        width: 500px;

    }

    .left-menu-li li {
        height: 90px;
        padding: 0;
    }

    .products-content {
        z-index: 200;
        margin: 80px 0 0 -70px;
    }

    .products-title-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between
    }


    .product-content-h1 {
        padding: 0;
        width: 400px;

    }

    .product-content-h1 h1 {
        line-height: 40px;
        font-size: 30px;
    }

    .product-content-p {
        font-size: 18px;
        padding: 0 25px 0 125px;
        line-height: 27px
    }


    .product-content-full {
        padding: 0 60px 0 100px;
    }

    .menu-li-number {
        font-size: 24px;

    }

    .left-menu-li li:hover .menu-li-number {
        -webkit-transform: scale(1.5);
        transform: scale(1.5) translate(0, 0);
        color: #a0a0a0;
    }

    .left-menu-li li:hover a {
        transform: scale(1.1) translate(40px, 0);
        color: #a0a0a0
    }


    .active-left-menu span {
        -webkit-transform: scale(1.5);
        transform: scale(1.5) translate(0px, 0);
        color: #a0a0a0;
    }

    .active-left-menu a {
        transform: scale(1.1) translate(40px, 0);
        color: #a0a0a0;
    }

    .napravlenie-zindex-img {
        padding: 0 0 0 70px;
    }


    .left-menu-li-brand {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }


    /** бренд** 1300 */

    .brands-content-position {

        flex-direction: row;

    }

    .left-menu-margin {
        margin: 0
    }
    
    .products-menu-detail {
        z-index: 0;
    }

    .brands-detail-img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 420px;
        flex: 0 0 420px;
        height: 100%;
        max-width: 420px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 -60px;
    }


    .brands-detail-img span {
        position: absolute;
        z-index: 1
    }

    .brands-img-float-1 {
        top: 20%;
    }

    .brands-img-float-2 {
        top: 55%;
    }

    .brands-detail-img img {
        max-width: 420px
    }

    .brands-content {
        display: flex;
        box-sizing: border-box;
        flex-direction: column
    }

    .brands-logo-name {
        height: 60px;
        border-left: 5px solid #9f0000;
        margin: 40px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .logo-brand-detail img {
        max-height: 60px;
    }

    .logo-brand-detail {
        padding: 0 0 0 10px;
    }

    .brands-title-h1 {
        padding: 0 50px 0 40px;
    }

    .brands-title-h1 h1 {
        color: #bbbbbb;
        font-family: 'Roboto';
        font-size: 19px;
        font-weight: 400;
        line-height: 20.59px;
        /* Text style for "А, втозапч" */
        letter-spacing: -0.79px;
    }

    .brands-discr-p {
        color: #000000;
        font-family: "Roboto-Light";
        font-size: 14px;

        line-height: 19.44px;
        /* Text style for "• широкий" */
        letter-spacing: -0.41px;
        padding: 0px 60px 0px 40px;
    }

    .brands-line-bottom {
        background: #9f0000;
        height: 1px;
        margin: 30px;

    }

    .brands-download {
        margin: 0 40px;

    }

    .download-link-brands {
        background: url(../bg/pdf.png) no-repeat left;
        background-size: 20px;
        padding: 10px 0
    }

    .download-link-brands a {
        color: #000;
        padding: 0 0 0 40px;
        font-family: 'Roboto';
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.6px;


    }

    /*****

career

******/


    .products-title-wrapper p{
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.75px;

    }


    .career-block-p p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.55px;

    }

    .career-preim-detail {
        width: 25%;
    }

    .career-link-img p {
        font-size: 15px;
        line-height: 21px;
        letter-spacing: -0.66px;
    }



    .career-form {
        background: #fff;
        width: 70%;
        margin: 40px auto;
        height: 400px;
        box-shadow: 0 0px 20px 10px rgba(0, 0, 0, 0.1)
    }

    .career-form p {
        color: #363636;
        font-family: 'Roboto-Thin';
        font-size: 30px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.3px;
        text-align: center;
        padding: 20px
    }


    .flex-outer {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }


    .flex-outer li {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 50%;
        padding-bottom: 20px;
    }

    .flex-outer li input:not([type='checkbox']),
    .flex-outer li textarea {
        padding: 15px;
        border: none;
        border-bottom: 1px solid #8e8e8e;
        color: #363636;
        font-family: "Roboto-Thin";
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0.22px;
        width: 80%
    }

    .position-upload-button {
        text-align: center;
        padding: 0 0 0 0;
        width: 50%;
		margin: -100px 0 0 340px;
    }

    .uploadButton {
        color: #363636;
        font-family: "Roboto-Light";
        font-size: 22px;
        font-weight: 400;
        line-height: 38px;
        letter-spacing: 0.22px;
        cursor: pointer;

    }

    .form-button-style {
        width: 110%;
        border: 1px solid #9f0000;
        background: #fff;
        color: #363636;
        font-family: "Roboto-Light";
        font-size: 22px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.22px;
        padding: 5px;
        cursor: pointer;
        /*margin: 50px 0*/
    }



    /******************
        news
********************/
    .news-blok-50 p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.45px;
    }

    .news-iframe {
        height: 175px;
        padding: 0 20px 0 55px
    }

    .news-block-smalImg {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        /* Text style for "Надежное с" */
        letter-spacing: -0.54px;
    }


    /*****
   деталка новостей 
            ******/
    .detail-news-content p {
        padding: 0 60px 0 55px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        /* Text style for "Дым — усто" */
        letter-spacing: -0.54px;
    }

    .detal-news-leftimg {
        float: left;
        margin: 0px 40px 40px 0;
        width: 50%;
        cursor: pointer;
    }

    /**********

увеличение картинки

*****************/




    /* увеличенная картинка */
    #magnify {
        display: none;

        /* position: absolute; upd: 24.10.2016 */
        position: fixed;
        max-width: 80%;
        height: auto;
        z-index: 9999;
    }



}

/********
    
    1700px
    
    **********/

@media only screen and (min-width: 1700px) {

	.footer-capcha {
		margin:150px 0 0 75px;
	}
	
    .products-menu {
        width: 625px;
        margin: 0;
        height: 100vh;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 625px;
        flex: 0 0 625px;
        max-width: 625px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .left-menu-clear {
        width: 625px;

    }

    /**  деталка бренда **/

    .left-menu-clear-detail {
        width: 470px;
        height: 80px;
        position: fixed;
        z-index: 1;
    }

    .products-menu-detail {
        width: 470px;
        margin: 0;
        height: 100vh;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 470px;
        flex: 0 0 470px;
        max-width: 470px;
        overflow-y: auto;
        overflow-x: hidden;
    }


    .left-menu-napravlenie {
        margin: 120px 0 0 0;
        width: 100%;
    }

    .left-menu-li li {
        height: 130px;
        padding: 0;
    }

    .menu-li-number {
        color: #5f5f5f;
        font-family: 'Roboto-Light';
        padding: 0 0 0 95px;
        font-size: 24px;
        font-weight: 400;
        line-height: 42px;
        /* Text style for "0, 2." */
        letter-spacing: -0.9px;
        transition: 0.3s linear;
    }

    .left-menu-li li:hover .menu-li-number {
        -webkit-transform: scale(1.8);
        transform: scale(1.8) translate(-20px, 0);
        color: #a0a0a0;
    }

    .left-menu-li li a {
        padding: 0px 70px 0 15px;
        color: #5f5f5f;
        font-family: 'Roboto-Light';
        font-size: 22px;
        font-weight: 400;
        line-height: 30px;
        width: 100%;
        display: inline-block;
        position: relative;
        text-decoration: none;
        transition: 0.3s linear;
    }


    .active-left-menu span {
        -webkit-transform: scale(1.8);
        transform: scale(1.8) translate(-20px, 0);
        color: #a0a0a0;
    }


    .product-content-h1 {
        padding: 0 60px 0 30px;
        width: 525px;
    }



    .product-content-h1 h1 {
        color: #a5a5a5;
        font-family: "Roboto-Black";
        font-size: 40px;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: 0.8px;
    }


    .product-content-p {
        font-size: 25px;
        font-weight: 400;
        line-height: 38px;
        letter-spacing: -0.75px;
        padding: 0 35px 0 125px;
    }


    .product-content-full {
        font-family: "Roboto";
        font-size: 19px;
        line-height: 30px;
        letter-spacing: -0.75px;
        padding: 0 110px 0 125px;
        text-align: justify;
    }


    .pcf-float {
        margin: -10px 0 0 0;
    }


    /** бренд**/


    .brands-detail-img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 500px;
        flex: 0 0 500px;
        height: 100%;
        max-width: 500px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: -60px;
    }


    .brands-detail-img span {
        position: absolute;
        z-index: 1
    }

    .brands-img-float-1 {
        top: 15%;
    }

    .brands-img-float-2 {
        top: 55%;
    }

    .brands-detail-img img {
        max-width: 500px
    }

    .brands-content {
        display: flex;
        box-sizing: border-box;
        flex-direction: column
    }

    .brands-logo-name {
        height: 80px;
        border-left: 6px solid #9f0000;
        margin: 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .logo-brand-detail img {
        max-height: 80px
    }

    .logo-brand-detail {
        padding: 0 0 0 10px;
    }

    .brands-title-h1 {
        padding: 0 50px 0 40px;
    }

    .brands-title-h1 h1 {
        color: #bbbbbb;
        font-family: 'Roboto';
        font-size: 35px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -1.05px;
    }

    .brands-discr-p {
        color: #000000;
        font-family: "Roboto";
        line-height: 30px;
        font-size: 19px;
        letter-spacing: -0.75px;
        padding: 0 110px 0 40px;
    }

    .brands-line-bottom {
        background: #9f0000;
        height: 1px;
        margin: 40px;

    }

    .brands-download {
        margin: 0 40px;

    }

    .download-link-brands {
        background: url(../bg/pdf.png) no-repeat left;
        padding: 10px 0;
        background-size: 20px
    }

    .download-link-brands a {
        color: #000;
        padding: 0 0 0 40px;
        font-family: 'Roboto';
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.6px;


    }





    /*****

career

******/


    .cereer-block-top {
        padding: 0 20px;
    }

    .products-title-wrapper p{
        color: #212121;
        font-size: 23px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.75px;
        padding: 0 0px 0 15px;
    }


    .career-block-p {
        padding: 0 80px 0 55px;
    }

    .career-block-p p {

        font-size: 19px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.75px;
        /* Text style for ", • широки" */

    }

    .career-preim {
        padding: 20px;
        display: flex;
        flex-wrap: wrap
    }

    .career-preim-detail {
        width: 25%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .career-preim-detail img {
        max-height: 115px
    }

    .career-link-img p {
        font-family: 'Roboto';
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.66px;
    }

    .news-blok-50 p {
        padding: 0 20px 0 55px;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.54px;

    }

    .news-iframe  {
       height:320px
  
    }
    .news-iframe, .news-blok-50 img  {
       
        max-width: 100%;
        padding: 0 20px 0 55px
    }

    .news-block-smalImg {
        width: 45%;
        padding: 20px 20px 20px 55px;
        display: flex;
        flex-direction: column;
        font-family: "Roboto-Light";
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        /* Text style for "Надежное с" */
        letter-spacing: -0.54px;
    }

    .news-img-small p {
        padding: 0 10px;
        width: 45%;
    }


    /*****
   деталка новостей 
            ******/
    .detail-news-content p {
        font-size: 19px;
        line-height: 30px;

    }
    
    
    
/*** 
модальное окно 
**/





.modal-overlay {
/* 	background: rgba(39, 179, 96, 1); */
   background: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
}

.modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	pointer-events: none;
      
}

.modal {
	background: #ffffff;
	color: #666871;
	text-align: center;
	width: 800px;
	max-width: 90%;
	height: 70%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	margin: auto;
	padding: 40px;
	pointer-events: auto;
	font-weight: bold;
	visibility: hidden;
 
}


.open-modal {
   text-align: center;
	border: none;
	margin: 10em 0 7em 0;
	background: #27ae60;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 20px;
	padding: 1em 2em;
	font-weight: bold;
	border-radius: 40px;
   cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}

.open-modal:hover {
	background: #2ecc71;
}

.close-modal {
	color: #aaa;
	background: none;
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	width: 20px;
	height: 20px;
	line-height: 15px;
	font-size: 22px;
	font-weight: bold;
   cursor: pointer;
}

.close-modal:hover {
	color: #666871;
}

textarea {
    width: 650px;
    background: #ffffff;
    border-color: #555555;
    color: #151515
    
}

.footer-form-button {
    /*margin: -65px 0 0 315px ;*/
}



}
