/*
 *! Подключение Ресетера для оптимизации для всех браузеров
*/
@import url('./reseter.min.css');

/* #region Fonts */
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Thin.woff2') format('woff2'),
    url('/fonts/Gilroy-Thin.woff') format('woff'),
    url('/fonts/Gilroy-Thin.ttf') format('truetype');
    font-display: swap;
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Light.woff2') format('woff2'),
    url('/fonts/Gilroy-Light.woff') format('woff'),
    url('/fonts/Gilroy-Light.ttf') format('truetype');
    font-display: swap;
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.woff2') format('woff2'),
    url('/fonts/Gilroy-Regular.woff') format('woff'),
    url('/fonts/Gilroy-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Medium.woff2') format('woff2'),
    url('/fonts/Gilroy-Medium.woff') format('woff'),
    url('/fonts/Gilroy-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Semibold.woff2') format('woff2'),
    url('/fonts/Gilroy-Semibold.woff') format('woff'),
    url('/fonts/Gilroy-Semibold.ttf') format('truetype');
    font-display: swap;
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2'),
    url('/fonts/Gilroy-Bold.woff') format('woff'),
    url('/fonts/Gilroy-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Extrabold.woff2') format('woff2'),
    url('/fonts/Gilroy-Extrabold.woff') format('woff'),
    url('/fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-display: swap;
    font-weight: 800;
    font-style: normal;
}
/* #endregion */

/* #region Main */
*, *::after, *::before{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
html{
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 320px;
    min-height: 100vh;
}
body{
    overflow: hidden;
    min-height: 100vh;
    background-color: #FFFFFF;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    display: flex;
    flex-direction: column;
}
body > form{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main{
    flex: 1 0 auto;
}
.container{
    max-width: 1180px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}
.container-fw{
    max-width: 100%!important;
}
.btn{
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 134px;
    background-color: #FA8B20;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 16px 15px;
    border-radius: 4px;
    position: relative;
    transition: color .2s ease, background-color .2s ease;
}
.btn::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    opacity: .6;
    top: 4px;
    left: 0;
    position: absolute;
}
.btn::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    opacity: .6;
    bottom: 4px;
    left: 0;
    position: absolute;
}
.btn:hover, .btn:focus{
    background-color: #417059;
    text-decoration: none;
    color: #FFFFFF;
}
.sn_tl{
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
    color: #417059;
    margin: 0 0 35px;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 5;
}
.sn_tl::after{
    content: '';
    background-image: url(/img/zigzag.svg);
    width: 78px;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}
.sn_sub_tl {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #417059;
    margin: 0 0 25px;
    padding-bottom: 8px;
    text-align: left;
    border-bottom: 1px solid #417059;
}
.hs_drp{
    position: relative;
}
.drp_mn{
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #FFF;
    min-width: 250px;
    z-index: 100;
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.15);
    padding-bottom: 5px;
}
.drp_mn::after{
    content: '';
    width: 100%;
    height: 5px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FA8B20;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.hs_drp.active .drp_mn{
    display: block;
    animation: drp_down .5s ease-in-out both;
}
@keyframes drp_down {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.drp_in_lst{
    list-style: none;
    padding: 0;
    margin: 0;
}
.drp_in_lst li{
    display: flex;
}
.drp_in_lst li:first-child a{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.drp_in_lst a{
    width: 100%;
    display: inline-flex;
    color: #000000;
    padding: 4px 15px;
    font-size: 16px;
}
.drp_in_lst a:hover, .drp_in_lst a:focus{
    background-color: #417059;
    color: #FFFFFF;
    text-decoration: none;
}
.no-photo{
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 50px;
    color: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-photo::before{
    content: "\f8c4";
}
table{
    width: 100%;
    margin-bottom: 10px;
}
table td {
    border: 1px solid #E5E5E5;
    padding: 5px;
    line-height: 1.1;
}
table td p {
    margin-bottom: 5px;
}
tbody tr:nth-child(odd) {
    background-color: #F2F2F2;
}
/* #endregion */

/* #region Header */
.header{
    z-index: 100;
    background-color: #FFFFFF;
    width: 100%;
}
.hr_in{
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    align-items: center;
}
.hr_in_lg{
    display: grid;
    grid-template-columns: 110px auto;
    align-items: center;
    column-gap: 25px;
}
.hr_lg{
    display: flex;
    transition: opacity .2s ease;
}
.hr_lg > img{
    max-width: 106px;
    max-height: 89px;
    object-fit: contain;
}
.hr_lg:hover, .hr_lg:focus{
    opacity: .6;
}
.hr_lg_tx{
    height: calc(100% - 20px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    border-left: 1px solid #E5E5E5;
    padding-left: 35px;
    font-size: 18px;
    line-height: 1.2;
    color: #417059;
    font-weight: 600;
    max-width: 310px;
}
.hr_in_cts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    column-gap: 15px;
    grid-row-gap: 10px;
    row-gap: 10px;
    align-items: center;
}
.hr_cts_lnk{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #000000;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    transition: color .2s ease;
}
.hr_cts_lnk > i{
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    border-radius: 100%;
    background-color: #FA8B20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #FFFFFF;
    margin-right: 12px;
    position: relative;
    transition: background-color .2s ease;
}
.hr_cts_lnk > i::after{
    content: '';
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 100%;
    border: 1px solid #FFFFFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hr_cts_lnk:hover, .hr_cts_lnk:focus{
    color: #417059;
    text-decoration: none;
}
.hr_cts_lnk:hover > i, .hr_cts_lnk:focus > i{
    background-color: #417059;
}
.hr_nv{
    background-color: #417059;
}
.hr_nv > .container{
    display: flex;
    flex-direction: column;
}
.hr_nv_btn {
    display: none;
    margin: 15px auto;
    border-radius: 4px;
    border: 1px solid #FFF;
    padding: 10px 15px;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    transition: color .2s ease, background-color .2s ease;
}
.hr_nv_btn > i{
    margin-right: 10px;
    font-size: 18px;
    color: #FA8B20;
    transition: color .2s ease;
}
.hr_nv_btn:hover, .hr_nv_btn:focus{
    background-color: #FA8B20;
    color: #FFFFFF;
}
.hr_nv_btn:hover > i, .hr_nv_btn:focus > i{
    color: #FFFFFF;
}
body.mbl_shw .hr_nv_btn i::before{
    content: '\f00d';
}
.hr_nv_cls{
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    border: 1px solid #FA8B20;
    padding: 10px 15px;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #FA8B20;
    transition: color .2s ease, background-color .2s ease;
}
.hr_nv_cls:hover, .hr_nv_cls:focus{
    background-color: #FA8B20;
    color: #FFFFFF;
}
.hr_nv_ovrl{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .60);
    z-index: 90;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: visibility .6s ease, opacity .6s ease;
    transition-delay: .6s, 0ms;
}
body.mbl_shw .hr_nv_ovrl{
    opacity: 1;
    visibility: visible;
    transition-delay: 0ms, .2s;
}
.hr_nv_lst{
    list-style: none;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    column-gap: 12px;
}
.hr_lst_itm{
    display: flex;
}
.hr_lst_itm:last-child{
    margin-right: auto;
}
.hr_itm_lnk{
    display: inline-flex;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
    padding: 14px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: transparent;
    transition: background-color .2s ease, color .2s ease;
}
.hr_itm_lnk:hover, .hr_itm_lnk:focus{
    color: #FFFFFF;
    text-decoration: none;
    background-color: #FA8B20;
}
.hs_drp.active .hr_itm_lnk{
    background-color: #FA8B20;
    color: #FFFFFF;
}
.hs_drp .hr_itm_lnk::before{
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.hs_drp.active .hr_itm_lnk::before{
    content: "\f106";
}
/* #endregion */

/* #region Banner */
.br_sl{
    min-height: 483px;
}
.br_sl .owl-stage-outer, .br_sl .owl-stage, .br_sl .owl-item, .br_sl_itm, .br_sl_itm > .container{
    height: 100%;
}
.br_sl .owl-item{
    display: flex;
}
.br_sl .owl-dots{
    position: absolute;
    right: 40px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}
.br_sl .owl-dot{
    display: flex;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,.3)!important;
    border-radius: 100%;
    transition: border-color .3s ease;
}
.br_sl .owl-dot.active{
    border-color: #FFFFFF!important;
}
.br_sl .owl-dot:not(:last-child){
    margin-bottom: 15px;
}
.br_sl_itm{
    position: relative;
    width: 100%;
}
.br_sl_itm::before{
    content: '';
    background-color: rgba(0, 0, 0, .60);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.br_itm_img{
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.br_sl_itm > .container{
    z-index: 2;
    padding: 54px 30px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.br_itm_tl{
    font-size: 45px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 35px;
}
.br_itm_stl{
    font-size: 25px;
    font-weight: 600;
    color: #FA8B20;
    line-height: 1.2;
    margin-bottom: 35px;
    text-align: center;
}
.br_itm_lst{
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-column-gap: 60px;
    column-gap: 60px;
    grid-row-gap: 20px;
    row-gap: 20px;
    margin-bottom: 70px;
    padding: 0;
}
.br_itm_lst > li{
    font-size: 25px;
    line-height: 1.4;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.br_itm_lst.br_itm_lst--circle > li::before{
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #FA8B20;
    font-size: inherit;
    margin-right: 10px;
    margin-top: 4px;
}
/* #endregion */

/* #region Production */
.production{
    background-color: #F9F9F9;
}
.pr_bck{
    background-image: url('/img/prod_background.png');
    background-position: top center;
    background-size: contain;
    width: 100%;
    max-width: 1326px;
    margin: 0 auto;
    padding: 53px 0 63px;
}
.pn_in{
    display: flex;
    flex-direction: column;
}
.pn_lst{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 107px;
    grid-column-gap: 30px;
    column-gap: 30px;
    grid-row-gap: 30px;
    row-gap: 30px;
    padding: 10px 0 20px;
}
.pn_lst_itm{
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 20px 20px 20px 65px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #474747;
    transition: color .2s ease, background-color .2s ease;
}
.pn_itm_tx{
    margin: 0;
}
.pn_itm_img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 66px;
    height: 66px;
    margin-right: 55px;
}
.pn_itm_img::before{
    content: '';
    background-color: #FFFFFF;
    width: 66px;
    height: 66px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity .4s ease-in;
}
.pn_itm_img > img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    z-index: 1;
}
.pn_lst_itm:hover, .pn_lst_itm:focus{
    background-color: #FA8B20;
    color: #FFFFFF;
    text-decoration: none;
}
.pn_lst_itm:hover .pn_itm_img::before, .pn_lst_itm:focus .pn_itm_img::before{
    opacity: 1;
} 
/* #endregion */

/* #region Advantages */
.advantages{
    padding: 44px 0;
    background-color: #417059;
    border-bottom: 34px solid #F0F0F0;
}
.as_lst{
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    column-gap: 15px;
    grid-row-gap: 15px;
    row-gap: 15px;
}
.as_lst_itm{
    display: flex;
    align-items: flex-start;
}
.as_itm_img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    min-width: 47px;
    min-height: 47px;
}
.as_itm_img > img{
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}
.as_itm_tx{
    color: #FFFFFF; 
    line-height: 1.2;
    max-width: 200px;
}
.as_itm_tx > b{
    font-size: 17px;
    margin-bottom: 11px;
    display: inline-flex;
    line-height: 1.3;
}
.as_itm_tx *:last-child{
    margin-bottom: 0;
}
/* #endregion */

/* #region About */
.about{
    padding: 45px 0 70px;
    overflow: hidden;
}
.at_in{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 45px;
    column-gap: 45px;
    grid-row-gap: 15px;
    row-gap: 15px;
    padding: 10px 0;
}
.at_in_imgs{
    height: 471px;
    position: relative;
}
.at_in_imgs::after{
    content: '';
    background-image: url('/img/logo_back.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 672px;
    width: 663px;
    display: block;
    position: absolute;
    left: calc(100% - 135px);
    top: -120px;
    z-index: 1;
}
.at_in_imgs > img:nth-child(1) {
    max-width: 406px;
    max-height: 310px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: 4px;
}
.at_in_imgs > img:nth-child(3) {
    max-width: 297px;
    max-height: 227px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 0;
    border-radius: 4px;
}
.at_lg_alt {
    width: 219px;
    height: 219px;
    background-color: #417059;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    right: 0;
    top: 46px;
    padding: 15px;
}
.at_lg_alt > img{
    max-width: 146px;
    object-fit: contain;
}
.at_in_tx{
    position: relative;
    z-index: 3;
    line-height: 1.8;
}
.at_in_tx *:not(:last-child){
    margin-bottom: 35px;
}
.at_in_tx *:last-child{
    margin-bottom: 0;
}
/* #endregion */

/* #region Footer */
.footer{
    position: relative;
}
.fr_bck{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: .5;
}
.footer::before{
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.footer > .container{
    z-index: 2;
}
.fr_in{
    padding: 45px 0 72px;
    display: grid;
    grid-template-columns: 1fr 290px 347px;
    grid-column-gap: 15px;
    column-gap: 15px;
    grid-row-gap: 15px;
    row-gap: 15px;
}
.fr_in_lg{
    display: grid;
    grid-template-columns: 110px auto;
    align-items: center;
    column-gap: 25px;
    margin-bottom: 40px;
}
.fr_lg{
    display: flex;
    transition: opacity .2s ease;
}
.fr_lg > img{
    max-width: 106px;
    max-height: 89px;
    object-fit: contain;
}
.fr_lg:hover, .fr_lg:focus{
    opacity: .6;
}
.fr_lg_tx{
    height: calc(100% - 20px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    border-left: 1px solid #E5E5E5;
    padding-left: 35px;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 600;
    max-width: 310px;
}
.fr_in_cpr{
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}
.fr_in_cpr a{
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-position: under;
    transition: color .2s ease;
}
.fr_in_cpr a:hover, .fr_in_cpr a:focus{
    color: #FA8B20;
}
.fr_in_lst{
    padding: 0;
    margin: 0;
    list-style: none;
}
.fr_lst_itm:not(:last-child){
    margin-bottom: 5px;
}
.fr_lst_itm:first-child .fr_itm_lnk{
    color: #FA8B20;
}
.fr_itm_lnk{
    color: #FFFFFF;
    transition: color .2s ease;
}
.fr_itm_lnk:hover, .fr_itm_lnk:focus{
    color: #FA8B20;
    text-decoration: none;
}
.fr_lst_itm:first-child .fr_itm_lnk:hover, .fr_lst_itm:first-child .fr_itm_lnk:focus{
    color: #417059;
}
.fr_cts_lnk{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    transition: color .2s ease;
}
.fr_cts_lnk > i{
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    border-radius: 100%;
    background-color: #FA8B20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #FFFFFF;
    margin-right: 12px;
    position: relative;
    transition: background-color .2s ease;
}
.fr_cts_lnk > i::after{
    content: '';
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 100%;
    border: 1px solid #FFFFFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.fr_cts_lnk:hover, .fr_cts_lnk:focus{
    color: #417059;
    text-decoration: none;
}
.fr_cts_lnk:hover > i, .fr_cts_lnk:focus > i{
    background-color: #417059;
}
.fr_in_cts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
}
.fr_in_cts a:not(:last-child), .fr_in_cts p:not(:last-child){
    margin-bottom: 20px;
}
.fr_in_cts a:last-child, .fr_in_cts p:last-child{
    margin-bottom: 0;
}
.fr_in_scl{
    display: flex;
    align-items: center;
}
.fr_in_scl *:not(:last-child){
    margin-right: 20px;
}
.fr_scl_lnk{
    min-width: 36px;
    color: #FA8B20;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease;
}
.fr_scl_lnk:hover, .fr_scl_lnk:focus{
    color: #417059;
    text-decoration: none;
}
/* #endregion */

/* #region Breadcrumbs */
.breadcrumbs{
    background-color: #F0F0F0;
}
.bdcs_lst{
    padding: 15px 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.bdcs_lst li:not(:last-child)::after{
    content: '/';
    color: #474747;
    margin: 0 5px;
}
.bdcs_lst a{
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
    transition: color .1s ease;
    color: #417059;
}
.bdcs_lst span{
    font-size: 16px;
    line-height: 1.1;
    color: #FA8B20;
    font-weight: 600;
}
.bdcs_lst a:hover, .bdcs_lst a:focus{
    color: #FA8B20;
}
/* #endregion */

/* #region Page */
.page{
    padding: 35px 0 45px;
}
.pge_in{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.pge_in iframe {
    width: 100%;
    border: 1px solid #f0f0f0;
    height: 500px;
    box-shadow: 0 0 11px 0 rgba(0,0,0,.15);
}
.pge_in_tx img{
    max-width: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    border-radius: 4px;
    color: #e4e4e4;
    margin: 7px 5px;
}
.pge_in_tx::after{
    content: '';
    display: table;
    clear: both;
}
/* #endregion */

/* #region Catalog */
.catalog{
    background-color: #F9F9F9;
}
.ctg_bck{
    background-image: url('/img/prod_background.png');
    background-position: top center;
    background-size: contain;
    width: 100%;
    max-width: 1326px;
    margin: 0 auto;
    padding: 35px 0 45px;
}
.ctg_in{
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 25px;
}
.ctg_in_side{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.ctg_in_bdy{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.navctg_lst{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.navctg_lst li{
    display: flex;
    width: 100%;
}
.navctg_lst li:not(:last-child){
    margin-bottom: 10px;
}
.navctg_lnk{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 4px;
    color: #000000;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
    transition: background-color .2s ease, color .2s ease;
}
.navctg_lnk:hover, .navctg_lnk:focus{
    color: #FFFFFF;
    background-color: #FA8B20;
    text-decoration: none;
}
.navctg_lnk.navctg_lnk--active{
    color: #FFFFFF;
    background-color: #FA8B20;
}
.navctg_img{
    margin-right: 10px;
    position: relative;
}
.navctg_img::before{
    content: '';
    background-color: #FFFFFF;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity .4s ease-in;
}
.navctg_lnk:hover .navctg_img::before, .navctg_lnk:focus .navctg_img::before{
    opacity: 1;
}
.navctg_lnk.navctg_lnk--active .navctg_img::before{
    opacity: 1;
}
.navctg_img img{
    max-height: 35px;
    max-width: 100%;
    object-fit: contain;
    z-index: 1;
    position: relative;
}
.subctg_lst{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 35px;
}
.subctg_lst li{
    display: flex;
}
.subctg_lnk {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: color .2s ease, box-shadow .4s ease-in-out, transform .2s ease;
    padding: 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.03);
    text-align: center;
    font-size: 16px;
    line-height: 1.1;
    color: #000;
    font-weight: 700;
}
.subctg_lnk:hover, .subctg_lnk:focus{
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.15);
    color: #fa8b20;
    text-decoration: none;
    transform: translateY(-2px);
}
.subctg_itm_img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.subctg_itm_img > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gds_lst{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 35px;
}
.gds_lst li{
    display: flex;
}
.gds_lnk {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: color .2s ease, box-shadow .4s ease-in-out, transform .2s ease;
    padding: 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.03);
    text-align: center;
    font-size: 16px;
    line-height: 1.1;
    color: #000;
    font-weight: 700;
}
.gds_lnk:hover, .gds_lnk:focus{
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.15);
    color: #fa8b20;
    text-decoration: none;
    transform: translateY(-2px);
}
.gds_itm_img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.gds_itm_img > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.ctg_text{
    margin-top: 50px;
}
.ctg_text img{
    max-width: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    border-radius: 4px;
    color: #e4e4e4;
    margin: 7px 5px;
}
.ctg_text::after{
    content: '';
    display: table;
    clear: both;
}
/* #endregion */

/* #region Good */
.good{
    padding: 35px 0 45px;
}
.gd_in{
    width: 100%;
    display: flex;  
    flex-direction: column;
    align-items: center;
}
.gd_in_img {
    height: 220px;
    max-width: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #FA8B20;
}
.gd_in_img > img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gd_in_tx{
    width: 100%;
    overflow-x: auto;
    position: relative;
}
.gd_in_tx::after{
    content: '';
    display: table;
    clear: both;
}
.gd_in_tx img{
    max-width: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    border-radius: 4px;
    color: #e4e4e4;
    margin: 7px 5px;
}
/* #endregion */

/* #region Media */

/* < 1280px */
@media (max-width: 1279px){
    .container{
        max-width: 992px;
    }
    .hr_nv_lst{
        padding: 0;
    }
    .hr_itm_lnk{
        font-size: 13px;
        padding: 14px 19px;
    }
    .hr_lg_tx{
        font-size: 16px;
    }
    .hr_cts_lnk{
        font-size: 17px;
    }
    .drp_in_lst a{
        font-size: 15px;
    }
    .br_itm_tl{
        font-size: 40px;
        margin: 0 0 25px;
    }
    .br_itm_stl{
        font-size: 22px;
        margin: 0 0 25px;
    }
    .br_itm_lst{
        grid-row-gap: 10px;
        row-gap: 10px;
        margin-bottom: 50px;
    }
    .br_itm_lst > li{
        font-size: 20px;
    }
    .br_sl .owl-dots{
        right: 25px;
    }
    .br_sl_itm > .container{
        padding: 54px 30px 54px;
    }
    .sn_tl{
        font-size: 40px;
    }
    .as_lst{
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        grid-row-gap: 65px;
        row-gap: 65px;
    }
    .fr_in{
        grid-template-columns: 1fr 280px 280px;
    }
    .fr_cts_lnk{
        font-size: 17px;
    }
    .fr_lg_tx{
        font-size: 16px;
    }
    .fr_scl_lnk{
        font-size: 26px;
    }
    .pn_lst_itm{
        font-size: 16px;
    }
    .gds_lst{
        grid-template-columns: repeat(3, 1fr);
    }
    .subctg_lst{
        grid-template-columns: repeat(3, 1fr);
    }
    .sn_sub_tl{
        font-size: 30px;
    }
}

/* < 1024px */
@media (max-width: 1023px){
    .container{
        max-width: 700px;
    }
    .hr_nv_btn {
        display: flex;
    }
    .hr_nv_cls {
        display: flex;
    }
    .hr_nv_ovrl{
        display: block;
    }
    .hr_nv > .container{
        position: unset;
    }
    .hr_nv_mbl{
        position: fixed;
        left: 0;
        top: 0;
        padding: 65px 25px 25px;
        width: 100%;
        max-width: 300px;
        height: 100%;
        z-index: 91;
        visibility: hidden;
        background-color: #FFFFFF;
        transform: translateX(-100%);
        opacity: 0;
        transition: visibility 0s, transform .6s ease-in-out, opacity .5s ease;
        transition: 1s, 0.6s, 0.6s;
    }
    body.mbl_shw .hr_nv_mbl{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0s, 0.6s, 0.6s;
    }
    .hr_itm_lnk{
        width: 100%;
    }
    .hr_nv_lst{
        grid-row-gap: 12px;
        row-gap: 12px;
        flex-direction: column;
    }
    .hr_lst_itm{
        width: 100%;
    }
    .hr_itm_lnk{
        color: #000000;
    }
    .hr_lg_tx{
        font-size: 15px;
        padding-left: 20px;
    }
    .hr_in_cts{
        grid-template-columns: 100%;
        justify-items: flex-end;
    }
    .br_itm_tl{
        font-size: 36px;
    }
    .br_itm_stl{
        font-size: 20px;
    }
    .br_itm_lst{
        column-gap: 30px;
    }
    .sn_tl{
        font-size: 38px;
    }
    .pr_bck{
        padding: 33px 0;
    }
    .pn_lst_itm{
        padding: 20px;
    }
    .pn_itm_img{
        margin-right: 15px;
    }
    .at_in{
        column-gap: 15px;
    }
    .at_in_tx{
        background-color: rgba(255,255,255,.6);
        padding: 10px;
        border-radius: 4px;
    }
    .fr_in{
        grid-template-columns: 1fr 290px;
        grid-row-gap: 50px;
        row-gap: 50px;
    }
    .fr_in_cl:nth-child(1) {
        grid-row: 2;
        grid-column: 1 / span 2;
    }
    .br_sl{
        min-height: 400px;
    }
    .ctg_in{
        grid-template-columns: 100%;
    }
    .sn_sub_tl{
        font-size: 28px;
    }
    .ctg_in_side{
        margin-bottom: 25px;
    }
}

/* < 768 */
@media (max-width: 767px){
    .container{
        max-width: 576px;
    }
    .br_sl .owl-dots{
        right: 10px;
    }
    .hr_in{
        grid-template-columns: 100%;
        grid-row-gap: 25px;
        row-gap: 25px;
    }
    .hr_in_lg{
        grid-row: 2;
    }
    .hr_in_cts{
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    .br_itm_tl{
        font-size: 32px;
    }
    .br_itm_stl{
        font-size: 18px;
    }
    .br_itm_lst{
        column-gap: 15px;
    }
    .br_itm_lst > li{
        font-size: 17px;
    }
    .sn_tl{
        font-size: 36px;
        margin: 0 0 25px;
    }
    .pn_lst{
        grid-column-gap: 15px;
        column-gap: 15px;
        grid-row-gap: 15px;
        row-gap: 15px;
    }
    .pn_lst_itm{
        padding: 15px;
    }
    .pn_itm_img{
        max-width: 46px;
        height: 46px;
    }
    .pn_itm_img::before {
        height: 46px;
        width: 46px;
    }
    .pn_lst{
        grid-auto-rows: 77px;
    }
    .pn_lst_itm{
        font-size: 15px;
    }
    .advantages{
        padding: 24px 0;
    }
    .as_lst{
        grid-row-gap: 15px;
        row-gap: 15px;
    }
    .as_itm_tx > b{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .as_itm_tx > p{
        font-size: 14px;
    }
    .as_itm_img{
        margin-right: 8px;
    }
    .as_itm_img > img{
        max-width: 42px;
        max-height: 42px;
    }
    .about{
        padding: 25px 0 40px;
    }
    .at_in_imgs{
        height: 350px;
    }
    .at_in{
        grid-template-columns: 100%;
    }
    .at_in_imgs::after {
        left: 50%;
    }
    .fr_in{
        grid-template-columns: 1fr 1fr;
    }
    .breadcrumbs{
        display: none;
    }
    .gds_lst{
        grid-template-columns: 1fr 1fr;
    }
    .subctg_lst{
        grid-template-columns: 1fr 1fr;
    }
}

/* < 576px */
@media (max-width: 575px){
    .container{
        max-width: 100%;
    }
    .hr_in_cts{
        grid-template-columns: 100%;
    }
    .hr_cts_lnk{
        font-size: 16px;
    }
    .hr_in_lg{
        grid-template-columns: 86px auto;
        column-gap: 15px;
    }
    .hr_lg > img{
        max-width: 86px;
        max-height: 72px;
    }
    .hr_lg_tx{
        padding-left: 15px;
    }
    .br_sl_itm > .container{
        padding: 25px 20px;
    }
    .br_sl .owl-dots{
        right: 4px;
    }
    .br_itm_tl{
        font-size: 25px;
        margin: 0 0 15px;
    }
    .br_itm_stl{
        margin: 0 0 15px;
    }
    .br_itm_lst{
        justify-content: flex-start;
        margin-bottom: 35px;
    }
    .sn_tl{
        font-size: 26px;
        padding-bottom: 20px;
    }
    .sn_sub_tl{
        font-size: 22px;
    }
    .pn_lst{
        grid-template-columns: 100%;
    }
    .as_lst{
        grid-template-columns: 100%;
    }
    .at_in_imgs::after{
        left: 30px;
        top: -80px;
        height: 392px;
    }
    .at_in_tx{
        padding: 0;
    }
    .at_in_tx :not(:last-child){
        margin-bottom: 15px;
    }
    .fr_in{
        grid-template-columns: 100%;
    }
    .fr_in_cl:nth-child(1){
        grid-row: 3;
        grid-column: auto;
    }
    .fr_lg > img {
        max-width: 86px;
        max-height: 72px;
    }
    .fr_in_lg{
        grid-template-columns: 86px auto;
        column-gap: 15px;
    }
    .fr_lg_tx{
        padding-left: 15px;
        font-size: 15px;
    }
    .hs_drp .hr_itm_lnk::before{
        font-size: 18px;
    }
    .pge_in_tx img{
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .gds_lst{
        grid-template-columns: 100%;
    }
    .subctg_lst{
        grid-template-columns: 100%;
    }
    .gd_in_tx img{
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .ctg_text img{
        margin-left: 0!important;
        margin-right: 0!important;
    }
}

/* #endregion */