@font-face {
	font-family: 'HelveticaNeueCyr-Thin';
	src: url('../fonts/HelveticaNeueCyr-Thin.eot');
	src: local('☺'), url('../fonts/HelveticaNeueCyr-Thin.woff') format('woff'), url('../fonts/HelveticaNeueCyr-Thin.ttf') format('truetype'), url('../fonts/HelveticaNeueCyr-Thin.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'HelveticaNeueCyr-Roman';
	src: url('../fonts/HelveticaNeueCyr-Roman.eot');
	src: local('☺'), url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff'), url('../fonts/HelveticaNeueCyr-Roman.ttf') format('truetype'), url('../fonts/HelveticaNeueCyr-Roman.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'HelveticaNeueCyr-Medium';
	src: url('../fonts/HelveticaNeueCyr-Medium.eot');
	src: local('☺'), url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff'), url('../fonts/HelveticaNeueCyr-Medium.ttf') format('truetype'), url('../fonts/HelveticaNeueCyr-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'HelveticaNeueCyr-Bold';
	src: url('../fonts/HelveticaNeueCyr-Bold.eot');
	src: local('☺'), url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff'), url('../onts/HelveticaNeueCyr-Bold.ttf') format('truetype'), url('../fonts/HelveticaNeueCyr-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
h1, h2, h3, p{
    font-family: 'HelveticaNeueCyr-Roman', Tahoma, Arial, Arial-bold, Tahoma-bold
} 
:root{
    --HelveticaNeueCyr-Roman: 'HelveticaNeueCyr-Roman', Tahoma, Arial;
    --HelveticaNeueCyr-Medium: 'HelveticaNeueCyr-Medium', Tahoma, Arial;
    --HelveticaNeueCyr-Bold: 'HelveticaNeueCyr-Bold', Tahoma, Arial;
    --transition: 0.3s;
    --color_dark_gray: #6E6E73;
    --color_gray_white: #f5f5f7;
    --color_gray_text_top: #1d1d1f;
    --color_link: #1675c2;
}
a{
    transition: var(--transition);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
body {
    margin: 0 auto;
    overflow-y: scroll;
    font-family: 'HelveticaNeueCyr-Roman', Tahoma, Arial;
}
.link_web{
    color: var(--color_link);
    text-decoration: none;
}
.button_new{
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    color: white;
    background: #1d1d1f;
    width: fit-content;
    padding: 13px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-family: var(--HelveticaNeueCyr-Roman);
    transition: 0.5s;
}
.button_new:hover{
    background: #616161;
}

/* МЕНЮ */
header{
    max-width: 1920px;
    width: 100%;    
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 3px 16%;
    background-color: rgb(255, 255, 255, 0.8);

    position: sticky;
    top: 0px;
    left: 0;
    /* opacity: 0.93; */
    z-index: 999;
    backdrop-filter: blur(10px);
}
ul li{
    position: relative;
    font-family: HelveticaNeueCyr-Roman;
}
ul li a{
    flex-grow: 1;
    display: block;
    font-size: 14px; 
}
nav ul li ul li{
    width: 100%;
    padding: 6px 0;
}
nav ul li:hover ul{
    display: initial;
}
.nav-1{
    width: 100%;
    margin-top: 3px;

}
.ul-1{
    display: flex;
    justify-content: space-around;
}

.nav_link{
    color: #1d1d1f;
    text-decoration: none;
}

.nav_link_1{
    text-align: center;
    color: #f7f7f7;
}
.mobile_logo{
    /* max-width: 160px; */
    width: 39px;
    margin-right: 50px;
    padding-top: 3px;
}
.ul_2{
    padding-top: 9px;
    padding-bottom: 12px;

}
.li_2{
    padding-top: 16px;
    padding-bottom: 6px;
    text-align: center;
    color: #000000;
    text-decoration: none;
}

/* BURGER */
.menu{
    position: relative;
    min-width: 30px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.menu span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 8px;
    transition: .5s;
}
.menu span:nth-child(1){
    top: 0;
    transform-origin: left center;
}
.menu span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}
.menu span:nth-child(3){
    top: 100%;
    transform: translateY(-100%);
    transform-origin: left center;
}
input[type=checkbox]{
    display: none;
}
/* КРЕСТИК */
.header_checkbox:checked ~ label span:nth-child(1){
    transform: rotate(45deg);
    top: 0;
    left: 0px;
}
.header_checkbox:checked ~ label span:nth-child(2){
    width: 0;
    opacity: 0;
}
.header_checkbox:checked ~ label span:nth-child(3){
    transform: rotate(-45deg);
    top: 21px;
    left: 0px;
}
header label{
    display: none;
}
/* ------------------- */


.box-index{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f7;
    border-radius: 10px;
    padding: 6px;
}

.box-item{
    align-items: center;
    margin: 0 auto;
    width: 100px;
    flex-basis: 0%;
}

.box-icon{
    width: 100px;
    height: 100px;
    background-color: rgb(193, 193, 193);
    align-items: center;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
}
.text-1{
    font-size: 10px;
    text-align: center;
    align-items: center;
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
}
.box-img{
    max-width: 1920px;
    width: 100%;
    background-color: #f5f5f7;
    margin: 0 auto;
    margin-bottom: 6px;
    display: none;
}
.box-img-midi{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.img-item{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.box_img_contact{
    max-width: 1920px;
    height: 500px;
    background-color: #f5f5f7;
    margin: 0 auto;
    margin-bottom: 6px;    
}

.text-img-max{
    text-align: center;
    font-size: 46px;
    color: #1d1d1f;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    padding: 50px 10px 0px 10px;
}
.text-img-min{
    text-align: center;
    font-size: 26px;
    color: #1d1d1f;
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
}

.button-text{
    text-align: center;
    text-decoration: none;
    color: #f5f5f7;
    align-items: center;
    font-size: 14px; 
    transition: var(--transition);
}

/*--CONTACT--*/
.box-contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding: 6px;
}

.box-contact-1{
    height: 100%;
    width: auto;
    flex-basis: 48%;
    padding: 6px;
    display: flex;
    justify-content: end;
    object-fit: cover;
    overflow: hidden;
}

.box-contact-2{
    height: 100%;
    width: auto;
    flex-basis: 48%;
    padding: 6px;
    display: flex;
    justify-content: start;
}

.text-contact-big{
    font-size: 30px;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    color: #1d1d1f;
}

.text-contact{
    font-size: 20px;
    line-height: 28px;
    text-decoration: none;
    color: #1d1d1f;
}
/*--bottom--*/
.box-bottom{
    max-width: 1920px;
    width: 100%; 
    margin: 0 auto;
    background-color: #f5f5f7;
    margin-top: 10px;
    padding: 20px 0px 30px 0px;
}
.box_bottom_min{
    max-width: 1920px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}
.box_bottom_min_1{
    max-width: 1920px;
    width: 100%;
    display: flex;
    justify-content: start;
    padding-left: 50px;
    margin-top: 10px;
}
.box_bottom_min_2{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.bottom_text_min{
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.6;
}
.bottom_text_min_socset{
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.6;
    transition: var(--transition);
}
.bottom_text_min_socset::before{
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url(../img/icon/instagram.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    margin-right: 5px;
    margin-left: 7px;
}
.bottom_text_min_socset:hover{
    opacity: 0.8;
}

.box-bottom-text-1{
    width: 50%;
}

.box-bottom-text-2{
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #1d1d1f;
    line-height: 1.6;
    text-decoration: none;
    padding-top: 10px;
}

/*--flex-conteiner--*/
    .flex-conteiner{
        display: flex;
        flex-wrap: wrap;
        margin: auto;
        max-width: 1920px;
    }
    .flex-item{
        background-color: #f5f5f7;
        flex-grow: 1;
        width: 460px;
        margin: 6px 6px;
    }
    .flex-img{
        object-fit: cover;
        overflow: hidden;
        width: 100%;
    }
/*--------company-------*/
    .body{
    background-color: #ffffff;
    }
    .img_logo_icon{
        width: 200px;
        margin-top: 60px;
    }
    .img_min_icon{
        width: 100px;
        margin-bottom: 30px;
    }
    .img_logo_icon-1{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .company{
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 1200px;
        align-items: center;
    }
    .company-text-1{
        font-size: 46px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 10px;
        color: #3a3a3a;
    }
    .company-text-2{
        font-size: 32px;
        text-align: center;
        margin: 0 auto;
        color: #93939f;
        font-family: 'HelveticaNeueCyr-Medium', Arial, Helvetica, sans-serif;
        padding-left: 10%;
        padding-right: 10%;
        margin-bottom: 60px;
        line-height: 36px;
    }
    .company-item{
        border-radius: 20px;
        padding: 30px 30px;
        margin-bottom: 10px;
        width: 100%;
        background-color: #FAFAFC;
    }
    .company-text-3{
        font-size: 18px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
        line-height: 24px;
        color: #70707a;
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 20px;
    }
    .company-text-4{
        font-size: 26px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        line-height: 24px;
        color: #464646;
        margin-bottom: 10px;
        margin-top: 30px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .company-text-5{
        font-size: 40px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        color: #1d1d1f;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ff3806, #5185ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .company-item-2{
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }
    .company-item-3{
        width: 400px;
        margin: 5px;
        background-color: #f8f8f8;
        border-radius: 20px;
        flex-grow: 1;
        overflow: hidden;
        box-shadow: 0px 0px 20px rgb(239, 239, 239);
    }

/* company new */
    .body_comp{
        max-width: 1920px;
        height: 100%;
        margin: auto;
    }
    .grid_company{
        display: grid;
        grid-template-columns: minmax(300px, 1fr);
        grid-row: auto;
        margin: auto;
    }

    .grid_company_icon_1{
        width: 100%;
        background-color: #F4F4F4;
        margin: auto;
        align-items: center;
    }
    .grid_company_icon_2{
        background-color: #000000;
    }

    .logo_max{
        width: 187px;
        margin-top: 100px;
        opacity: 0.22;
    }
    .company_text_grid{
        text-align: center;
        color: #C6C6C6;
        font-size: 66px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        margin-top: 58px;
    }
    .company_text_grid-2{
        display: grid;
        grid-template-columns: minmax(300px, 600px);
        justify-content: center;
        margin: auto;
    }
    .company_text_grid-2_text{
        margin: auto;
        text-align: center;
        font-size: 30px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E4602A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 26px;
    }
    .company_text_grid-3{
        display: grid;
        grid-template-columns: minmax(300px, 800px);
        justify-content: center;

    }
    .company_text_grid-1{
        text-align: center;
        margin: auto;
        font-size: 23px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        color: #838383;
        line-height: 28px;
        margin-top: 23px;
        margin-bottom: 100px;
    }

    .setca{
        margin-left: 10%;
        max-width: 700px;
        min-width: 300px;
    }
    .company_text_grid-4_box{
        display: grid;
        grid-template-columns: minmax(300px, 700px);
    }
    .company_text_grid-4{
        margin-top: 100px;
        font-size: 66px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E4602A 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .company_text_grid-5{
        color: white;
        font-size: 33px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        margin-top: 14px;
    }

    .designe_grid{
        display: grid;
        grid-template-columns: minmax(300px, 1fr) minmax(500px, 1fr);
        gap: 20px;
        margin-top: 100px;
    }
    .designe_grid_box{
        background-color: #000000;
    }
    .designe_grid_text{
        color: #838383;
        font-size: 24px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        line-height: 30px;
        margin-right: 6%;
        padding: 0 6px;
    }
    .designe_grid_box_1{
        background-image: url(..//img/company/laptop2.png);
        background-repeat: no-repeat;
        background-size: cover;
        backface-visibility: hidden;
    }
    .laptop{
        display: none;
    }
    .black{
        color: #000;
    }
    .white{
        color: white;
    }
    .prod_text_h1{
        max-width: 700px;
        min-width: auto;
        margin: auto;
    }
    .prod_text_h2{
        text-align: center;
        font-size: 66px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E42AA3 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
    }

    .product{
        max-width: 1300px;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(300px, 570px) minmax(300px, 570px);
        gap: 30px;
        justify-content: center;
        margin: auto;
        margin-top: 60px;

    }
    .product_box{
        background-color: #000000;
    }

    .prod_text_h3{
        color: #838383;
        font-size: 24px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        line-height: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .prod_icon{
        width: 70px;
        height: 70px;
        margin-left: 10px;
        margin-bottom: 40px;

        animation-name: prod_icon;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }
    @keyframes prod_icon {
        0%{
            
        }
        50%{
            transform: scale(1.1);
        }

        100%{
            
        }
    }

    .line_company{
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E42AA3);
        width: 300px;
        height: 3px;
        margin-left: 10px;
        margin-top: 37px;
        margin-bottom: 100px;
    }
    .line_company_box{
        width: 300px;
        height: 6px;
        margin-left: 10px;
        margin-top: 37px;
        background: #000000;
        position: absolute;
    }

    .product > div:nth-child(3){
        grid-column: 1 / -1;
    }

    .text_materials_grid{
        display: grid;
        grid-template-columns: minmax(320px, 1920px);
        justify-content: center;
        margin: auto;
    }
    .text_materials_img{
        width: 100%;
        margin: auto;
        margin-top: 80px;
        overflow: hidden;
    }
    .text_materials_img_min{
        display: none;
    }

    .innovac_teh_text{
        margin: auto;
        font-size: 76px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E4602A 60%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
    }
    .innovac_teh_text-box{
        display: grid;
        grid-template-columns: minmax(300px, 1100px);
        margin: auto;
        justify-content: center;
        margin-top: 40px;
    }
    .innovac_teh_text-1{
        background-color: whitesmoke;
    }
    .button-text-min-company{
        text-align: left;
        text-decoration: none;
        color: #1675c2;
        align-items: center;
        font-size: 18px;
        margin-top: 40px;
    }

    .prof_text{
        color: white;
        margin-top: 200px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        font-size: 76px;
        text-align: center;
    }
    .line_2{
        background: linear-gradient(90deg, #3C90F0, #B047FF, #E42AA3);
        width: 300px;
        height: 3px;
        margin: auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .prod_text_h4{
        color: #838383;
        font-size: 24px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        line-height: 30px;
        text-align: center;
        padding: 0px 30px;
    }
    .logistica_grid{
        display: grid;
        grid-template-columns: minmax(300px, 1100px);
        justify-content: center;
        align-items: center;
    }
    .logistica_text{
        margin: auto;
        font-size: 76px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        background: linear-gradient(90deg, #F0B653, #E4602A 60%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 200px;
    }
    .logistica_grid_2{
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 500px) minmax(300px, 500px));        
        grid-template-rows: auto;
        justify-content: center;
        margin: auto;
        gap: 140px 50px;
        margin-top: 100px;
    }

    .logistica_grid_img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    .logistica_grid_img_min{
        width: 100%;
        display: none;
    }
    .logistic_box{
        background-color: #000000;
    }
    .logistica_text_h1{
        text-align: left;
        font-size: 38px;
        font-family: 'HelveticaNeueCyr-Bold', Arial, sans-serif;
        color: white;
        margin-bottom: 40px;
        margin-left: 10px;
    }
    .logistica_text_h2{
        text-align: left;
        font-size: 22px;
        font-family: 'HelveticaNeueCyr-Medium', Arial, sans-serif;
        color: #838383;
        line-height: 28px;
        margin-left: 10px;
    }
    .line_logostica{
        background: linear-gradient(90deg, #F0B653, #E4602A 60%);
        width: 300px;
        height: 3px;
        align-items: start;
        margin: 70px 13px;

    }

    .button-text-min_company{
        text-align: center;
        text-decoration: none;
        color: #1675c2;
        align-items: center;
        font-size: 14px;
        padding: 100px 0px;
    }

/*----------------------*/

/*-technical_requirements-------*/
    .body-tehnical{
        background-color: white;
    }

    .img_icon-tehnical{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: start;
        margin-left: 10px;
    }
    .img_min_icon-tehnical{
        width: 60px;
        margin-top: 20px;
    }
    .img_icon-tehnical-1{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .img_min_icon-tehnical-1{
        width: 300px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .tehnical-item{
        border-radius: 20px;
        padding: 30px 30px;
        margin-bottom: 10px;
        width: 100%;
        background-color: #FAFAFC;
        z-index: 1;
    }
    .tehnical-item-4{
        width: 400px;
        margin: 5px;
        background-color: white;
        border-radius: 20px;
        flex-grow: 1;
        transition: 0.9s;
        padding: 30px;
    }
     .tehnic_box_top{
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
     }
     .tehnic_text_top{
        font-size: 100px;
        text-align: center;
        padding: 0 20px;
        margin: 60px 0px 30px 0px;
        font-family: var(--HelveticaNeueCyr-Bold);
        color: var(--color_gray_text_top);
     }
     .tehnic_text_top_min{
        font-size: 36px;
        line-height: 46px;
        text-align: center;
        color: #9d9d9d;        
        font-family: var(--HelveticaNeueCyr-Medium);
        margin-bottom: 60px;
        padding: 0px 20px;
     }
    .tehnical-text-1{
        font-size: 26px;
        text-align: left;
        margin-left: 10px;
        font-family: var(--HelveticaNeueCyr-Roman);
        color: #9d9d9d;
        margin-bottom: 20px;
    }
    .tehnical-text-3{
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
        color: #93939f;
        text-decoration: none;
    }
    .tehnical-text-4{
        font-size: 22px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        line-height: 24px;
        color: #575757;
        margin-top: 30px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .tehnical-text-5{
        font-size: 60px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        color: var(--color_gray_text_top);
        margin-bottom: 20px;
        margin-left: 10px;
    }
    .tehnical-text-6{
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
        color: #1675c2;
        text-decoration: none;
    }
    .tehnical-text-7{
        font-size: 20px;
        line-height: 24px;
        color: var(--color_gray_text_top);
        font-family: var(--HelveticaNeueCyr-Bold);
    }
    .text-center{
        text-align: center;
    }
    .tehnical-text-8{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Medium', Arial, Helvetica, sans-serif;
        color: var(--color_gray_text_top);
    }
    .tehnical-text-9{
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        color: var(--color_gray_text_top);
        margin-bottom: 10px;
    }
    .tehnical-text-10{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 6px;
        text-align: left;
        font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
        color: #515151;
        text-decoration: none;
    }
    .tehnical-text-11{
        font-size: 60px;
        text-align: center;
        font-family: var(--HelveticaNeueCyr-Bold);
        color: var(--color_gray_text_top);
    }
    .tehnical-box{
        width: 100%;
        background-color: #df3434;
    }
    .tehnik_item_flex{
        display: flex;
        justify-content: left;
        gap: 10px;
        align-items: center;
        margin-bottom: 26px;
        background-color: #000000;
        width: fit-content;
        border-radius: 26px;
        padding: 10px 20px;
    }    
    .tehnik_item{
        width: fit-content;
        color: white;
        font-size: 16px;
        font-family: var(--HelveticaNeueCyr-Roman);

    }
    .tehnik_item_icon{
        width: 30px;
        height: 30px;
    }

/*-----Вырубные штампы-----------*/
    .shtamp-item-1_box{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .shtamp-item{   
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 10px;
    }
    .shtamp-item-1{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        transition: 1.1s;
    }
    .shtamp-item-1:hover{
        transform: scale(1.16);
    }
    .shtamp-item-color-profil{
        width: 280px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .shtamp-text-1{
        margin-top: 40px;
        font-size: 38px;
        line-height: 24px;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        color: var(--color_gray_text_top);
        margin-left: 16px;
        margin-right: 16px;
    }

/*-----ШТАМПЫ----------*/
.stamp-item{
    border-radius: 20px;
    padding: 30px 30px;
    margin-bottom: 10px;
    width: 100%;
    background-color: #ffffff;
}


.stamp-item-1{
    width: 180px;
    margin: 5px;
    background-color: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.8s;
}
/* .stamp-item-1:hover{
    transform: scale(1.035);
} */
.button-text-min{
    text-align: center;
    text-decoration: none;
    color: #1675c2;
    align-items: center;
    font-size: 14px;
    padding: 20px 0;
}
.stamp-text-1{
    font-size: 28px;
    text-align: left;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    line-height: 24px;
    color: #3a3a3a;
    margin-top: 30px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 6px;
}
.shtamp-text-2{
    font-size: 12px;
    text-align: center;
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
    line-height: 18px;
    color: #3a3a3a;
    margin-left: 16px;
    margin-right: 16px;
}
.stamp-text-3{
    font-size: 14px;
    text-align: center;
    font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
    line-height: 18px;
    color: #3a3a3a;
    margin-left: 16px;
    margin-right: 16px;
}
.hr{
    margin-top: 26px;
    opacity: 0.3;
}
/*----------------------*/
/*-----Календарная продукция----------*/
    .calendar-1{
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        justify-content: center;
    }
    .calendar-2{
        width: 230px;
        margin: 5px;
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .calendar-3{
        width: 160px;
        overflow: hidden;
        margin-top: 6px;
        margin-bottom: 6px;
        margin-right: 9px;
    }
    .calendar-4{
        width: 270px;
        overflow: hidden;
        margin-bottom: 6px;
        margin-right: 9px;
    }
    .calendar-5{
        width: 330px;
        margin: 5px;
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .calendar-6{
        width: 200px;
        overflow: hidden;
        margin-bottom: 6px;
        margin-right: 9px;
    }
    .calendar-7{
        width: 320px;
        overflow: hidden;
        margin-bottom: 6px;
        margin-right: 9px;
    }
    .calendar-8{
        width: 360px;
        margin: 5px;
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .calendar-text-1{
        font-size: 13px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Medium', Arial, Helvetica, sans-serif;
        line-height: 18px;
        color: #3a3a3a;
        margin-left: 16px;
        margin-right: 16px;
    }
    .calendar-text-2{
        font-size: 20px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        line-height: 22px;
        color: #3a3a3a;
        margin-left: 16px;
        margin-right: 16px;
    }
    .calendar-text-3{
        font-size: 40px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
        color: #1d1d1f;
        margin-bottom: 20px;
        margin-top: 50px;
    }
    .calendar-text-4{
        font-size: 11px;
        text-align: center;
        font-family: 'HelveticaNeueCyr-Roman', Arial, Helvetica, sans-serif;
        line-height: 14px;
        color: #3a3a3a;
        margin-left: 16px;
        margin-right: 16px;
    }
    .calendar-item{
        border-radius: 20px;
        padding-left: 30px;
        padding-top: 30px;
        padding-right: 30px;
        margin-bottom: 10px;
        width: 100%;
        background-color: #ffffff;
    }
/*----------------------*/
/*-----Представительская продукция----------*/
    .pr-prod-img{
        width: 270px;
        overflow: hidden;
        margin-bottom: 6px;
        margin-right: 9px;
        margin-top: 3px;
    }
/*----------------------*/
/*-----Статьи----------*/
.articles{
    border-radius: 20px;
    padding: 30px 30px;
    margin-bottom: 10px;
    width: 100%;
    background-color: #ffffff;
}
.articles-text-1{
    font-size: 40px;
    text-align: center;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    color: #1d1d1f;
    margin-bottom: 20px;
}
.articles-img{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.articles-img-1{
    width: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    overflow: hidden;
}
.articles-img-2{
    width: 800px;
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    overflow: hidden;
}
/*----------------------*/

.video-2{
    max-width: 1170px;
    width: 100%;
    margin-bottom: 100px;
}
/*-----Текстурные материалы----*/
.texture_materials_text-1{
    font-size: 60px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, #062a45, #5483a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.texture_materials-item{
    padding: 30px 30px;
    margin-bottom: 10px;
    width: 100%;
    background-color: #f7f7f7;
}
.texture_materials_text-2{
    font-size: 40px;
    text-align: center;
    font-family: 'HelveticaNeueCyr-Bold', Arial, Helvetica, sans-serif;
    color: #1d1d1f;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #062a45, #5483a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.texture-img-1{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
}
.texture-img-2{
    max-width: 1100px;
    align-items: center;
    margin: 0 auto;
    object-fit: cover;
    overflow: hidden;
    margin-bottom: 20px;
}
/*----------------------*/



/* форма яндекс */
.form_yandex_box{
    max-width: 1920px;
    width: 100%;
    padding: 20px 20px;
    margin: 0 auto;
    margin-top: 50px;
    background: #e7e7e7;
}
.form_yandex{
    margin: 0 auto;
    max-width: 1250px;
    width: 100%;
    margin-top: 30px;
}

.form_yandex_title{
    text-align: center;
    font-family: var(--HelveticaNeueCyr-Bold);
    font-size: 30px;
    color: #000000;
    padding-top: 30px;
    padding-bottom: 30px;
}
.botton_zayavka_top{
    position: fixed;
    right: 2.7%;
    bottom: 1%;
    z-index: 999;
    opacity: 0.8;
}
.botton_zayavka{
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    background: #b8b8b8;
    border-radius: 100%;
    opacity: 0.8;
    transform: scale(0.8);
    background-image: url(../img/index/icon_form.svg);
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.2s;
    
    animation: zaayvka;
    animation-duration: 0.7s;
}
.botton_zayavka:hover{
    opacity: 1;
    transform: scale(0.9);
}

@keyframes zaayvka {
    0%{
        opacity: 0;
        right: -300px;
        bottom: -850px;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        right: 0px;
        bottom: 0px;
    }
}

.product_box_inedex{
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 6px;
}
.video_1_index{
    margin: 0 auto;
}
.video_2_index{
    width: 100%;    
    max-width: 1920px;
}

/* НОВОЕ ВИДЕО */
.video_index_new{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.mobul_video{
    width: 100%;
    max-width: 860px;
    height: 100%;
    margin: 0 auto;
    display: none;
    margin-bottom: 6px;
}

.mobul_video_video{
    width: 100%;
    /* max-width: 860px; */
    height: 420px;
    margin: 0 auto;
    object-fit: cover;
    overflow: hidden;
}
.fon_gray{
    background-color: #fcfcfc;
    padding-bottom: 30px;
    margin: 0 auto;
    margin-bottom: 6px;
}



/* MEDIA */

@media screen and (max-width: 1366px){
    .botton_zayavka{
        width: 80px;
        height: 80px;
    }

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

    .box-index{
        margin-left: 0;
        margin-right: 0;
    }
    .box-contact{
        flex-direction: column;
        text-align: center;
        margin-top: 6px;
        padding-top: 20px;
    }
       .mobile_box_header{
        padding-left: 2%;
        padding-right: 0;  
    }
    .video-1{
        width: 100%;
        overflow: hidden;
        object-fit: cover;
    }
    .designe_grid{
        grid-template-columns: none;
    }
    .laptop{
        display: block;
        object-fit: cover;
        width: 90%;
        margin: auto;
        margin-top: 50px;
    }
    .designe_grid_text{
        text-align: l;
        margin: 0 3%;
    }
    .designe_grid{
        margin-top: 30px;
    }
    .form_yandex_1{
    max-width: 900px;
    width: 100%;
}
    .form_yandex{
        width: 900px;
        margin: 0 auto;
    }
}

@media screen and (max-width:980px){
    .box-index-min{
        flex-direction: column;
    }
    .box-index-min-1{
        object-fit: contain;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .text-img-max{
        font-size: 36px;
    }
    .text-img-min{
        font-size: 18px;
    }
    .img_logo_icon{
        width: 120px;
    }
    .company-text-1{
        font-size: 40px;
    }
    .company-text-2{
        font-size: 28px;
        line-height: 29px;
    }
    .video-1{
        visibility: hidden;
        display: none;
    }

}

@media screen and (max-width:860px){
    header{
        padding: 0px;
        justify-content: space-between;
    }
    header nav{
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
        background-color: rgb(255, 255, 255);
        z-index: 999;
        display: none;
        padding-bottom: 40px;
        height: 100vh;
    }
    .nav_link{
        font-size: 22px;
        padding-top: 24px;
        padding-left: 26px;
        font-family: HelveticaNeueCyr-Medium;
    }
    header nav ul li{
        width: 100%;
        text-align: left;
    }
    header nav ul li ul{
        width: 100%;
        position: relative;
    }
    .button{
        margin-top: 20px;  
    }
    .li_2{
        padding-top: 6px;
        padding-bottom: 6px;
        display: none;
    }
    header label{
        display: initial;
        margin: 0 30px;
    }
    #menu:checked ~ nav{
        display: initial;
    }
    .mobile_logo{
        margin-left: 20px;
    }
    .ul-1{
        display: flex;
        justify-content: start;
        flex-direction: column;
    }
    .icon_inst{
        display: none;
        visibility: hidden;
    }
    .icon_inst_2{
        display: block;
        visibility: visible;
        width: 30px;
        height: 30px;
    }
    .tehnic_text_top{
        font-size: 70px;
    }

/* --- */
    .box-index-min{
        flex-direction: column;
    }
    .box-index-min-1{
        object-fit: contain;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .text-img-max{
        font-size: 36px;
        padding-top: 30px;
    }
    .text-img-min{
        font-size: 18px;
    }
    .img_logo_icon{
        width: 120px;
    }
    .company-text-1{
        font-size: 40px;
    }
    .company-text-2{
        font-size: 27px;
        line-height: 29px;
    }
    .tehnical-item-4{
        width: auto;
    }
    .company-item{
        padding-left: 6px;
        padding-right: 6px;
        padding-top: 20px;
        border-radius: 0px;
    }
    .company-item-3{
        width: auto;
    }
    .img_min_icon-tehnical-1{
        width: 200px;
    }
    .tehnical-text-5{
        font-size: 32px;
        text-align: center;
    }
    .company-text-5{
        font-size: 30px;
    }
    .text-img-max{
        font-size: 30px;
    }
    .box_bottom_min{
        flex-direction: column;
    }
    .box-bottom-text-1{
        width: 100%;
    }
    .company-text-1{
        font-size: 29px;
    }
    .company-text-2{
        font-size: 19px;
        line-height: 23px;
    }
    .tehnical-text-1{
        font-size: 20px;
        text-align: center;
    }
    .tehnical-item{
        padding: 20px 20px;
        border-radius: 0;
    }

    .text-contact-big{
        font-size: 26px;
    }
    .text-contact{
        font-size: 15px;
        line-height: 22px;
    }
    .box-contact{
        width: auto;
        margin: auto;
        overflow: hidden;
    }
    .box-contact-1{
        height: auto;
        width: 100%;
        flex-basis: auto;
        justify-content: center;
    }
    .box-contact-2{
        margin-right: 10px;
    }
    .tehnical-text-11{
        font-size: 32px;
    }
    .stamp-item{
        width: auto;
    }
    .stamp-item-1{
        width: auto;
    }
    .company{
        width: auto;
    }
    .company-item-2{
        justify-content: center;
    }
    .stamp-text-1{
        text-align: center;
    }
    .calendar-5{
        width: auto;
    }
    .calendar-4{
        width: auto;
    }
    .calendar-8{
        width: auto;
    }
    .calendar-7{
        width: auto;
    }
    .pr-prod-img{
        width: 200px;
    }
    .articles-img-1{
        width: 100%;
    }
    .articles-img-2{
        width: 100%;
    }
    .video-1{
        visibility: hidden;
        display: none;
    }
    .texture-img-2{
        width: 300px;
        height: 360px;
        overflow: visible;
    }
    .texture_materials_text-1{
        font-size: 36px;
        text-align: center;
    }
    .texture_materials_text-2{
        font-size: 30px;
    }
    .texture_materials-item{
        width: 100%;
        margin: auto;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    .stamp-item-1:hover{
        display: none;
    }
    .product{
        grid-template-columns: none;
        grid-template-columns: minmax(300px, 600px);
    }
    .logistica_grid_2{
        grid-template-columns: none;
        grid-template-columns: minmax(300px, 600px);
        gap: 80px 0px;
    }
    .logistica_grid_img{
        display: none;
    }
    .logistica_grid_img_min{
        display: block;
        border-radius: 16px;
    }
    .prod_text_h2{
        font-size: 56px;
    }
    .innovac_teh_text{
        font-size: 56px;
    }
    .prof_text{
        font-size: 56px;
    }
    .logistica_text{
        font-size: 56px;
    }
    .company_text_grid-2_text{
        padding: 0 30px;
    }
    .text_materials_img{
        display: none;
    }
    .text_materials_img_min{
        display: block;
        margin-top: 100px;
        object-fit: cover;
        width: 100%;
        margin: auto;
        margin-top: 80px;
        margin-bottom: 30px;
    }
    .form_yandex_1{
    max-width: 600px;
    width: 100%;
}
    .form_yandex{
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .form_yandex_title{
        font-size: 26px;
    }
    
    .product_box_inedex{
        display: none;
    }
    .video_index_new{
        display: none;
    }
    .box-img{
        display: block;
        height: 460px;
    }
    .box_img_contact{
        height: 300px;
    }   
    .mobul_video{
        display: block;
    } 
}

@media screen and (max-width: 763px){
    .botton_zayavka{
        width: 60px;
        height: 60px;
        right: 1%;
    }     
}

@media screen and (max-width: 540px) {
    .logo_max{
        width: 110px;
        margin-top: 73px;
    }
    .company_text_grid{
        font-size: 36px;
        margin-top: 30px;
    }
    .company_text_grid-2_text{
        font-size: 26px;
        padding: 0 30px;
    }
    .company_text_grid-1{
        font-size: 16px;
        line-height: 20px;
        padding: 0 30px;
        margin-bottom: 73px;
    }
    .prod_text_h2{
        font-size: 32px;
    }
    .prod_icon{
        margin: auto;
        margin-bottom: 40px;
        animation: none;
    }
    .prod_text_h3{
        font-size: 16px;
        line-height: 20px;
        padding: 0 20px;
    }
    .line_company{
        width: 150px;
        margin: auto;
        margin-top: 40px;
    }
    .innovac_teh_text{
        font-size: 32px;
        padding-left: 26px;
        margin-top: 30px;
    }
    .line_2{
        width: 150px;
    }
    .button-text-min-company{
        padding-left: 7px;
    }
    .prod_text_h4{
        font-size: 16px;
        line-height: 20px;
        padding: 0 20px;
    }
    .prof_text{
        font-size: 32px;
        margin-top: 130px;
    }
    .logistica_text{
        font-size: 39px;
        padding: 0 26px;
        margin-top: 130px;
    }
    .logistica_text_h1{
        font-size: 29px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .logistica_text_h2{
        font-size: 16px;
        line-height: 20px;
        padding: 0 20px;
    }
    .line_logostica{
        width: 150px;
        margin-left: 32px;
    }
    .logistica_grid_2{
        margin-top: 70px;
    }
    .line_company{
        margin-bottom: 50px;
    }

    .company_text_grid-4{
        font-size: 32px;
        text-align: center;
        margin-top: 50px;
    }
    .company_text_grid-5{
        font-size: 20px;
        text-align: center;
        margin-top: 30px;
    }
    .designe_grid_text{
        font-size: 16px;
        line-height: 20px;
        padding: 0 20px; 
    }
    .setca{
        margin: auto;
    }
    .button-text-min_company{
        padding: 60px 0px;
    } 
    .form_yandex{
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }
    .form_yandex_title{
        font-size: 26px;
    }

    .bottom_text_min{
        font-size: 12px;
    }

    .bottom_text_min_socset, .bottom_text_min_socset::before{
        margin-right: 5px;
        margin-left: 0px;
        font-size: 14px;
    }
    .box_bottom_min_2{
        flex-direction: column;
        justify-content: start;
    }
    .box_bottom_min, .box_bottom_min_1{
        padding-left: 20px;
        padding-right: 20px;
    }

    .tehnic_text_top{
        font-size: 40px;
        margin: 36px 0px 16px 0px;
    }
    .tehnik_item{
        font-size: 14px;
    }    
    .tehnic_text_top_min{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 30px;
    }   
}








