:root {
    --black: #12171F;
    --blue: #163BA4;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--black)
}

* {
    outline: 0;
}

.flex {
    display: flex;
}

.row {
    flex-direction: row;
}

.column {
    flex-direction: column;
}

.s-b {
    justify-content: space-between;
}

.a-i-c {
    align-items: center;
}

.a-i-e {
    align-items: flex-end;
}

.wrap {
    flex-wrap: wrap;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    cursor: pointer;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    position: relative;
}

.btn.big {
    padding: 20px 30px;
    padding-right: 73px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    transition: background .2s linear;
}

.btn.big:after, .product_container .contact_info .btn:after{
    content: '';
    height: 12px;
    width: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAzMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMwLjUzMDMgNi41MzAzM0MzMC44MjMyIDYuMjM3NDQgMzAuODIzMiA1Ljc2MjU2IDMwLjUzMDMgNS40Njk2N0wyNS43NTc0IDAuNjk2Njk5QzI1LjQ2NDUgMC40MDM4MDYgMjQuOTg5NiAwLjQwMzgwNiAyNC42OTY3IDAuNjk2Njk5QzI0LjQwMzggMC45ODk1OTMgMjQuNDAzOCAxLjQ2NDQ3IDI0LjY5NjcgMS43NTczNkwyOC45MzkzIDZMMjQuNjk2NyAxMC4yNDI2QzI0LjQwMzggMTAuNTM1NSAyNC40MDM4IDExLjAxMDQgMjQuNjk2NyAxMS4zMDMzQzI0Ljk4OTYgMTEuNTk2MiAyNS40NjQ1IDExLjU5NjIgMjUuNzU3NCAxMS4zMDMzTDMwLjUzMDMgNi41MzAzM1pNMCA2Ljc1SDMwVjUuMjVIMFY2Ljc1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==") center no-repeat;
    background-size: contain;
}

.btn.big:hover {
    background: var(--black);
}

.page a:not(.btn):not(.categories_section a){
    text-decoration: none;
    color: var(--blue);
}

.placeholder {
    height: 100%;
}

.sticky {
    display: block;
    position: sticky;
    top: 20px;
}

.main_page section:not(.main_screen){
    margin: 100px 0;
}

.page:not(.main_page) section, article{
    margin: 70px 0;
}

header {
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

#logo {
    width: 43px;
    height: 45px;
    display: block;
    background: url(../img/logo.svg) center no-repeat;
    background-size: contain;
}

nav a{
	cursor: default;
}

nav a[href]{
	cursor: pointer;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Roboto', sans-serif;
}

nav>ul {
    margin-left: 60px;
}

nav .menu-item-has-children {
    padding-right: 14px;
}

nav .menu-item-has-children:after,
.langs span:after {
    content: '';
    height: 4px;
    width: 6px;
    background: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 4L7 1' stroke='%2312171F'/%3E%3C/svg%3E%0A") center no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

nav>ul>li:not(:last-child) {
    margin-right: 20px;
}

nav>ul>li>a,
nav>ul>li span {
    line-height: 40px;
}

nav>ul>li>a,
nav>ul>li span,
.langs span {
    transition: color .2s linear;
}

nav>ul>li:hover>a,
nav>ul>li:hover span,
.langs:hover span {
    color: var(--blue);
}

nav ul li {
    position: relative;
}

nav>ul ul,
.langs ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 40px;
    left: -20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    width: 232px;
    padding: 4px 0;
    transition: visibility .2s linear, opacity .2s linear;
}

.langs ul {
    width: auto;
    margin: 0;
    list-style: none;
    left: -16px;
}

nav .menu-item-has-children:hover > ul,
.langs:hover ul {
    visibility: visible;
    opacity: 1;
}

nav .menu-item-has-children .menu-item-has-children{
    padding-right: 0;
}

nav .menu-item-has-children .menu-item-has-children > ul{
    top: 0;
    left: auto;
    right: -100%;
}

nav .menu-item-has-children .menu-item-has-children > ul:before{
    transform: rotate(-90deg);
    top: 13px;
    left: -16px;
}

nav .menu-item-has-children .menu-item-has-children:after{
    display: none;
}

nav>ul ul:before,
.langs ul:before {
    content: '';
    border: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    left: 20px;
    top: -16px;
}

.langs ul:before {
    left: 22px;
}

nav>ul ul a,
.langs a {
    display: block;
    padding: 12px 20px;
    transition: color .2s linear, background .2s linear;
}

nav>ul ul a:hover,
.langs a:hover {
    background: var(--blue);
    color: #fff;
}

nav a,
nav span {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
}

nav span {
    cursor: default;
}

.is-search-form {
    position: relative;
}

.is-search-form input {
    padding: 10px 15px;
    padding-right: 35px;
    max-width: 280px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid rgba(18, 23, 31, 0.1) !important;
    transition: border .2s linear;
    background: transparent !important;
}

.is-search-form input:hover,
.is-search-form input:focus {
    border: 1px solid rgba(18, 23, 31, 0.5);
}

.is-search-form button {
    border: 1px solid #ccc !important;
    border-left: none !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 18px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.98758 10.8715C7.77902 12.6403 4.54616 12.5011 2.49884 10.4538C0.302144 8.25709 0.302144 4.69554 2.49884 2.49884C4.69554 0.302143 8.2571 0.302144 10.4538 2.49884C12.5011 4.54616 12.6403 7.77902 10.8715 9.98757L15.1678 14.2839C15.4119 14.528 15.4119 14.9237 15.1678 15.1678C14.9237 15.4119 14.528 15.4119 14.2839 15.1678L9.98758 10.8715ZM3.38273 9.56991C1.67418 7.86137 1.67418 5.09127 3.38273 3.38273C5.09127 1.67418 7.86137 1.67418 9.56991 3.38273C11.2772 5.09002 11.2785 7.8573 9.57367 9.56615C9.57241 9.56739 9.57115 9.56864 9.5699 9.56989C9.56864 9.57114 9.5674 9.5724 9.56615 9.57366C7.85731 11.2785 5.09002 11.2772 3.38273 9.56991Z' fill='%2312171F'/%3E%3C/svg%3E%0A") center center no-repeat transparent !important;
    cursor: pointer;
}

.contrast:not(body) {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    height: 36px;
    width: 36px;
    margin-left: 10px;
    background: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.84383 5.5C4.84383 4.03299 6.03308 2.84375 7.50008 2.84375C8.96709 2.84375 10.1563 4.03299 10.1563 5.5C10.1563 6.96701 8.96709 8.15625 7.50008 8.15625C6.03308 8.15625 4.84383 6.96701 4.84383 5.5ZM7.50008 3.90625C6.61988 3.90625 5.90633 4.6198 5.90633 5.5C5.90633 6.3802 6.61988 7.09375 7.50008 7.09375C8.38029 7.09375 9.09383 6.3802 9.09383 5.5C9.09383 4.6198 8.38029 3.90625 7.50008 3.90625Z' fill='%2312171F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06251 4.54117C1.76563 4.96895 1.65633 5.30358 1.65633 5.5C1.65633 5.69642 1.76563 6.03105 2.06251 6.45883C2.34949 6.87236 2.77605 7.32062 3.31572 7.73482C4.39743 8.56501 5.88044 9.21875 7.50008 9.21875C9.11972 9.21875 10.6027 8.56501 11.6844 7.73482C12.2241 7.32062 12.6507 6.87236 12.9377 6.45883C13.2345 6.03105 13.3438 5.69642 13.3438 5.5C13.3438 5.30358 13.2345 4.96895 12.9377 4.54117C12.6507 4.12764 12.2241 3.67938 11.6844 3.26519C10.6027 2.43499 9.11972 1.78125 7.50008 1.78125C5.88044 1.78125 4.39743 2.43499 3.31572 3.26519C2.77605 3.67938 2.34949 4.12764 2.06251 4.54117ZM2.66883 2.42231C3.89442 1.48168 5.5989 0.71875 7.50008 0.71875C9.40126 0.71875 11.1057 1.48168 12.3313 2.42231C12.9453 2.89353 13.4523 3.41923 13.8106 3.9354C14.1589 4.4373 14.5834 4.98809 14.5834 5.5C14.5834 6.01191 14.1589 6.5627 13.8106 7.0646C13.4523 7.58077 12.9453 8.10647 12.3313 8.57768C11.1057 9.51832 9.40126 10.2812 7.50008 10.2812C5.5989 10.2812 3.89442 9.51832 2.66883 8.57768C2.05486 8.10647 1.54782 7.58077 1.18961 7.0646C0.841302 6.5627 0.416748 6.01191 0.416748 5.5C0.416748 4.98809 0.841302 4.4373 1.18961 3.9354C1.54782 3.41923 2.05486 2.89353 2.66883 2.42231Z' fill='%2312171F'/%3E%3C/svg%3E%0A") center no-repeat;
}

.langs {
    position: relative;
    margin-left: 10px;
    width: 36px;
    font-family: 'Roboto', sans-serif;
}

.langs span,
.langs a {
    font-size: 16px;
    color: var(--black);
}

.langs span {
    cursor: default;
    text-align: center;
    line-height: 36px;
    padding-right: 11px;
    box-sizing: border-box;
    display: block;
    position: relative;
    margin: auto;
}

.langs a {
    text-decoration: none;
    width: 20px;
}

.hamburger{
    display: none;
    padding: 10px 8px;
    border: 1px solid rgba(18, 23, 31, 0.1);
    margin-left: 20px;
    cursor: pointer;
    transition: background .2s linear, border .2s linear;
}

.hamburger span, .close_nav span{
    display: block;
    width: 20px;
    height: 1px;
    background: var(--black);
    transition: background .2s linear;
}

.hamburger span:not(:last-child), .close_nav span:not(:last-child){
    margin-bottom: 5px;
}

.hamburger:hover{
    border: 1px solid var(--blue);
    background: var(--blue);
}

.hamburger:hover span{
    background: #fff;
}

.mobile_nav_header{
    display: none;
}

.close_nav{
    display: none;
    position: absolute;
    top: 16.5px;
    right: 20px;
    height: 17px;
    padding: 10px;
}

.close_nav span:first-child{
    transform: rotate(45deg);
    margin-top: 8px;
}

.close_nav span:last-child{
    transform: rotate(-45deg);
    margin-top: -6px;
}

.main_page h2, .about_page h2, .product_container h2, .other_products h2, .article_page .news_screen h2, .contacts_data h2{
    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    margin: 0;
}

.main_screen {
    height: 100vh;
    margin-top: -75px;
    position: relative;
    z-index: 1;
}

.main_screen img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom right;
}

.main_screen .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.main_screen .placeholder {
    height: 70px;
}

.main_screen .preheader {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border-left: 2px solid var(--black);
    padding-left: 10px;
    max-width: 490px;
}

.main_screen h1 {
    margin: 30px 0;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
}

.main_screen .subheader {
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.main_screen .info a {
    margin-top: 40px;
}

.main_screen .to_bottom {
    height: 60px;
    width: 60px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMjkuMjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41Ii8+CjxwYXRoIGQ9Ik0yOS40Njk3IDQwLjUzMDNDMjkuNzYyNiA0MC44MjMyIDMwLjIzNzQgNDAuODIzMiAzMC41MzAzIDQwLjUzMDNMMzUuMzAzMyAzNS43NTc0QzM1LjU5NjIgMzUuNDY0NSAzNS41OTYyIDM0Ljk4OTYgMzUuMzAzMyAzNC42OTY3QzM1LjAxMDQgMzQuNDAzOCAzNC41MzU1IDM0LjQwMzggMzQuMjQyNiAzNC42OTY3TDMwIDM4LjkzOTNMMjUuNzU3NCAzNC42OTY3QzI1LjQ2NDUgMzQuNDAzOCAyNC45ODk2IDM0LjQwMzggMjQuNjk2NyAzNC42OTY3QzI0LjQwMzggMzQuOTg5NiAyNC40MDM4IDM1LjQ2NDUgMjQuNjk2NyAzNS43NTc0TDI5LjQ2OTcgNDAuNTMwM1pNMjkuMjUgMjBMMjkuMjUgNDBMMzAuNzUgNDBMMzAuNzUgMjBMMjkuMjUgMjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") center no-repeat;
    background-size: contain;
    margin-bottom: 50px;
    cursor: pointer;
}

.about_screen h2,
.advantages_screen h2,
.about_politic .wrapper,
.about_politic h2,
.about_sertificates .wrapper, 
article .img_wrapper{
    width: 25%;
}

.about_screen .a_s_info,
.advantages_screen .advantages,
.about_politic .politic_info,
.about_sertificates .slider_container,
article .article_section{
    width: 65%;
}

article .img_wrapper{
    width: 30%;
}

.about_screen .quote, .about_list .quote {
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 2px solid var(--blue);
}

.about_screen p, .politic_info p {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    margin-left: 22px;
}

.about_screen p:not(:last-child), .politic_info p:not(:last-child){
    margin-bottom: 30px;
}

.advantages_screen .container {
    position: relative;
}

.advantages_screen .container:after {
    content: '';
    height: 2px;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--blue);
}

.advantages_screen .advantages .item {
    width: 45%;
}

.advantages_screen .advantages .item:not(:nth-of-type(-n+2)) {
    margin-top: 40px;
}

.advantages_screen .advantages .item img {
    height: 50px;
    object-position: center;
    object-fit: contain;
    display: block;
    margin: 0;
}

.advantages_screen .advantages .item h3 {
    margin: 15px 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
}

.advantages_screen .advantages .item p {
    max-width: 305px;
    margin: 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
}


/* production screen - main page */

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

.production_screen .tab, .categories_section a:not(.remains) {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    margin-right: 30px;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
    transition: color .2s linear;
}

.production_screen .tab:not(.active), .categories_section a:not(.active):not(.remains){
    font-weight: normal;
    color: var(--black);
    opacity: .5;
    transition: opacity .2s linear;    
}

.production_screen .tab:hover, .categories_section a:not(.remains):hover {
    opacity: 1;
}

.production_screen .tab:after, .categories_section a:not(.remains):after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 2px;
    width: 0;
    background: var(--blue);
    transition: width .2s linear;
}

.production_screen .tabs-wrapper .active, .categories_section a.active:not(.remains) {
    color: var(--blue);
    pointer-events: none;
}

.production_screen .tabs-wrapper .active:after, .categories_section a.active:not(.remains):after {
    width: 30px;
}

.production_screen .tabs-content {
    margin-top: 50px;
}

.production_screen .tab-item .item, .other_products .item{
    width: 25%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.production_screen .item img, .other_products .item img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
    transition: transform .3s linear;
}

.production_screen .item:hover img, .other_products .item:hover img{
    transform: scale(1.2);
}

.production_screen .item .info, .other_products .item .info {
    position: absolute;
    bottom: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 22, 59, 164, .85);
    padding: 30px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: all .3s linear;
}

.production_screen .item:hover .info, .other_products .item:hover .info {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}

.production_screen .item .info h3, .other_products .item .info h3 {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    margin: 0;
    margin-bottom: 15px;
}

.production_screen .item .info span, .other_products .item .info span {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}

.production_screen .item .goto_prod, .other_products .item .goto_prod {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1IDAuNzUwMDAzQzM4LjM5MjkgMC43NTAwMDIgNDkuMjUgMTEuNjA3MSA0OS4yNSAyNUM0OS4yNSAzOC4zOTI5IDM4LjM5MjkgNDkuMjUgMjUgNDkuMjVDMTEuNjA3MSA0OS4yNSAwLjc0OTk5OSAzOC4zOTI5IDAuNzQ5OTk5IDI1QzAuNzQ5OTk4IDExLjYwNzEgMTEuNjA3MSAwLjc1MDAwMyAyNSAwLjc1MDAwM1oiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41Ii8+CjxwYXRoIGQ9Ik0zMy41MzAzIDI2LjUzMDNDMzMuODIzMiAyNi4yMzc0IDMzLjgyMzIgMjUuNzYyNiAzMy41MzAzIDI1LjQ2OTdMMjguNzU3NCAyMC42OTY3QzI4LjQ2NDUgMjAuNDAzOCAyNy45ODk2IDIwLjQwMzggMjcuNjk2NyAyMC42OTY3QzI3LjQwMzggMjAuOTg5NiAyNy40MDM4IDIxLjQ2NDUgMjcuNjk2NyAyMS43NTc0TDMxLjkzOTMgMjZMMjcuNjk2NyAzMC4yNDI2QzI3LjQwMzggMzAuNTM1NSAyNy40MDM4IDMxLjAxMDQgMjcuNjk2NyAzMS4zMDMzQzI3Ljk4OTYgMzEuNTk2MiAyOC40NjQ1IDMxLjU5NjIgMjguNzU3NCAzMS4zMDMzTDMzLjUzMDMgMjYuNTMwM1pNMTcgMjYuNzVMMzMgMjYuNzVMMzMgMjUuMjVMMTcgMjUuMjVMMTcgMjYuNzVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") center no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
}


/* news screen - main page */

.news_screen .info{
    width: 30%;
}

.news_screen .info p{
    margin: 30px 0;
    color: var(--black);
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
}

.news_screen .info a{
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color: var(--blue);
    transition: opacity .2s linear;
}

.news_screen .info a:after{
    content: '';
/*    position: absolute;*/
    display: inline-block;
    height: 15px;
    width: 30px;
    margin-left: 13px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAzMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMwLjUzMDMgNi41MzAzM0MzMC44MjMyIDYuMjM3NDQgMzAuODIzMiA1Ljc2MjU2IDMwLjUzMDMgNS40Njk2N0wyNS43NTc0IDAuNjk2Njk5QzI1LjQ2NDUgMC40MDM4MDYgMjQuOTg5NiAwLjQwMzgwNiAyNC42OTY3IDAuNjk2Njk5QzI0LjQwMzggMC45ODk1OTMgMjQuNDAzOCAxLjQ2NDQ3IDI0LjY5NjcgMS43NTczNkwyOC45MzkzIDZMMjQuNjk2NyAxMC4yNDI2QzI0LjQwMzggMTAuNTM1NSAyNC40MDM4IDExLjAxMDQgMjQuNjk2NyAxMS4zMDMzQzI0Ljk4OTYgMTEuNTk2MiAyNS40NjQ1IDExLjU5NjIgMjUuNzU3NCAxMS4zMDMzTDMwLjUzMDMgNi41MzAzM1pNMCA2Ljc1SDMwVjUuMjVIMFY2Ljc1WiIgZmlsbD0iIzE2M0JBNCIvPgo8L3N2Zz4K") center no-repeat;
    background-size: contain;
}

.news_screen .info a:hover{
    opacity: .6;
}

.news_screen .news-wrapper{
    width: 65%;
}

.news_screen .news-wrapper .item{
    width: 30%;
}

.news_screen .news-wrapper .item .img_wrapper, 
.news_page .news-wrapper .item .img_wrapper, 
.catalog_page .catalog-wrapper .item .img_wrapper{
    height: 247px;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}

.news_screen .news-wrapper .item img, 
.news_page .news-wrapper .item img,
.catalog_page .catalog-wrapper .item img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: transform .3s linear;
}

.news_screen .news-wrapper .item .img_wrapper:hover img, 
.news_page .news-wrapper .item .img_wrapper:hover img,
.catalog_page .catalog-wrapper .item .img_wrapper:hover img{
    transform: scale(1.2);
}

.news_screen .news-wrapper .item span, 
.news_page .news-wrapper .item span,
.catalog_page .catalog-wrapper .item span{
    display: block;
    color: var(--black);
    opacity: .5;
    margin-bottom: 10px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

.news_screen .news-wrapper .item .title, 
.news_page .news-wrapper .item .title,
.catalog_page .catalog-wrapper .item .title{
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    color: var(--black);
    transition: color .2s linear;
}

.news_screen .news-wrapper .item .title:hover, 
.news_page .news-wrapper .item .title:hover,
.catalog_page .catalog-wrapper .item .title:hover{
    color: var(--blue);
}

.catalog_page .title, .catalog_page .more{
    display: block;
}

.catalog_page .more{
    font-size: 14px;
    margin-top: 15px;
    transition: opacity .2s linear;
    text-decoration: none;
}

.catalog_page .more:after{
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE2IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xNS4zNTM2IDQuMzUzNTVDMTUuNTQ4OCA0LjE1ODI5IDE1LjU0ODggMy44NDE3MSAxNS4zNTM2IDMuNjQ2NDVMMTIuMTcxNiAwLjQ2NDQ2NkMxMS45NzYzIDAuMjY5MjA0IDExLjY1OTcgMC4yNjkyMDQgMTEuNDY0NSAwLjQ2NDQ2NkMxMS4yNjkyIDAuNjU5NzI4IDExLjI2OTIgMC45NzYzMTEgMTEuNDY0NSAxLjE3MTU3TDE0LjI5MjkgNEwxMS40NjQ1IDYuODI4NDNDMTEuMjY5MiA3LjAyMzY5IDExLjI2OTIgNy4zNDAyNyAxMS40NjQ1IDcuNTM1NTNDMTEuNjU5NyA3LjczMDggMTEuOTc2MyA3LjczMDggMTIuMTcxNiA3LjUzNTUzTDE1LjM1MzYgNC4zNTM1NVpNMCA0LjVIMTVWMy41SDBWNC41WiIgZmlsbD0iIzE2M0JBNCIvPgo8L3N2Zz4K") center no-repeat;
    background-size: contain;
    width: 16px;
    height: 8px;
    display: inline-block;
    margin-bottom: 1px;
    margin-left: 10px;
}

.catalog_page .more:hover{
    opacity: .7;
}


/* footer */

footer{
    background: var(--black);
    color: #fff;
}

footer .top_footer{
    padding: 45px 0;
}

footer .top_footer > div:not(:last-child){
    width: 23%;
}

footer .contact_section{
    width: 30%!important;
}

footer .logo_section img, footer .country_logo img{
    width: 80px;
    display: block;
    object-position: center;
    object-fit: contain;
}

footer .logo_section span{
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    margin: 30px 0;
}

footer .logo_section .social{
    margin: 0;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

footer .logo_section .social li{
    opacity: .5;
    transition: opacity .2s linear;
}

footer .logo_section .social li:hover{
    opacity: 1;
}

footer .logo_section .social li:not(:first-child){
    margin-left: 10px;
}

footer .logo_section .social li img{
    height: 20px;
    width: 20px;
    display: block;
    object-position: center;
    object-fit: contain;
}

.footer_heading{
    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 20px;
}

footer .nav_section ul, footer .contact_section ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .nav_section ul li:not(:last-child), footer .contact_section ul li:not(:last-child){
    margin-bottom: 10px;
}

footer .nav_section ul a, footer .contact_section ul a, footer .contact_section ul li{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    text-decoration: none;
}

footer .nav_section ul a, footer .contact_section ul a{    
    opacity: .7;
    transition: opacity .2s linear;
}

footer .nav_section ul a:hover, footer .contact_section ul a:hover{
    opacity: 1;
}

footer .bottom_footer{
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}




.footer_slider{
	width: 100%!important;
	margin-bottom: 20px;
}
	
.footer_slider a{
	display: block;
	height: 70px;
	margin-right: 20px;
}
	
.footer_slider a img{
	display: block;
	height:100%;
	object-fit: contain;
	object-position: center;
/*	filter: grayscale(1);*/
	opacity: .5;
    transition: opacity .2s linear;
}

.footer_slider a:hover img{
/*	filter: grayscale(0);*/
	opacity: 1;
}

.footer_slider .slick-next {
    right: -13px;
}

.footer_slider .slick-prev {
    left: -13px;
}


footer .copyright{
    margin-top: 25px;
}

footer .copyright span{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}

footer .developer{
    display: block;
    height: 15px;
    width: 123px;
    background: url(../img/digital_logo.svg) center no-repeat;
    background-size: contain;
}




.inner_pages_heading{
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.inner_pages_heading:before{
    content: '';
    background: var(--blue);
    opacity: .8;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.inner_pages_heading h1{
    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    max-width: 700px;
}










/**************************/
/* page about */
/**************************/

.about_page section:not(:last-child) .container{
    border-bottom: 1px solid rgba(18, 23, 31, 0.1);
    padding-bottom: 70px;
}

.about_page .about_jt_screen p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    margin: 0;
    margin-bottom: 70px;
}

.about_page .about_jt_screen p:first-letter{
    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 72px;
    color: var(--blue);
    float: left;
    margin-top: 10px;
    margin-right: 10px;
}

.about_list .quote{
    margin-bottom: 20px;
}

.about_list ul{
    margin: 0;
    padding: 0;
    list-style: disc;
    list-style-position: inside;
}

.about_list ul li{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: var(--black);
}

.about_politic h2{
    margin-bottom: 50px;
}

.about_politic a{
    display: block;
    width: 100%;
}

.about_politic img{
    display: block;
    margin-bottom: 0;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.about_sertificates .wrapper p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    margin: 20px 0;
}

.about_sertificates .sertificates_slider img{
    display: block;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    object-position: center;
    object-fit: contain;
}

.about_sertificates .sertificates_slider a{
    display: block;
    padding-left: 20px;
    box-sizing: border-box;
}

.about_sertificates .sertificates_slider .title{
    display: block;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
    text-align: center;
}





/**************************/
/* news page + catalog page */
/**************************/

.news_page .news-wrapper .item{
    width: 22%;
    margin-right: 4%;
}

.catalog_page .catalog-wrapper .item{
    width: 23%;
    margin-right: 2.666666666666667%;
}

.news_page .news-wrapper .item:nth-of-type(4n),
.catalog_page .catalog-wrapper .item:nth-of-type(4n){
    margin-right: 0;
}

.news_page .news-wrapper .item:not(:nth-of-type(-n+4)),
.catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+4)){
    margin-top: 70px;
}





/**************************/
/* article page */
/**************************/

article .img_wrapper a{
    display: block;
}

article .img_wrapper img{
    height: auto;   
    width: 100%;
    object-position: center;
    object-fit: contain;
}

article .article_section{
    color: var(--black);
}

article .article_section *:first-child{
    margin-top: 0;
}

article .article_section *:last-child{
    margin-bottom: 0;
}

article .article_section p{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0;
}

article .article_section img{
    display: block;
    max-height: 400px;
    width: 100%;
    margin: 20px 0;
    object-position: center;
    object-fit: cover;
}

article blockquote{
    padding-left: 20px;
    margin: 20px 0;
    border-left: 2px solid var(--blue);
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

article h1, 
article h2, 
article h3, 
article h4, 
article h5, 
article h6,{
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    margin: 20px 0;
}

article h1{    
    font-size: 26px;
    line-height: 36px;
}

article h2{    
    font-size: 24px;
    line-height: 28px;
}

article h3{    
    font-size: 22px;
    line-height: 26px;
}

article h4{    
    font-size: 20px;
    line-height: 26px;
}

article h5{    
    font-size: 18px;
    line-height: 26px;
}

article h6{    
    font-size: 16px;
    line-height: 24px;
}

article ul, article ol{
    margin: 20px 0;
    padding-left: 20px;
    margin-left: 20px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
}

.article_page .news_screen .container{
    padding-top: 70px;
    border-top: 1px solid rgba(18, 23, 31, 0.1);
}










/**************************/
/* hall page */
/**************************/

.categories_section{
    margin-top: 40px!important;
}

.categories_section ul{
    list-style: none;
    margin: 0;
    padding: 0;
}



.hall_section .item{
    width: 23%;
    margin-right: 2.666666666666667%;
}

.hall_section .item:nth-of-type(4n){
    margin-right: 0;
}

.hall_section .item:not(:nth-of-type(-n+4)){
    margin-top: 70px;
}

.hall_section .item a{
    display: block;
    height: 305px;
    margin-bottom: 15px;
    overflow: hidden;
}

.hall_section .item img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: transform .3s linear;
}

.hall_section .item img:hover{
    transform: scale(1.1);
}

.hall_section .name{
    margin-bottom: 10px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
}

.hall_section .position{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: var(--black);
}










/**************************/
/* contacts page */
/**************************/

.contact_page .main_contacts{
    margin-bottom: 50px!important;
}

.contact_page .contact_form{
    margin-top: 50px!important;
}

.main_contacts h2, .contacts_data h2{
    max-width: 670px;
    margin-bottom: 50px;
}

.main_contacts .contacts_block{
    max-width: 960px;
    padding-left: 20px;
    border-left: 2px solid var(--blue);
}

.main_contacts .contacts_block > div{
    width: 23%;
}

.main_contacts .contacts_block > div:not(:last-child){
    margin-right: 2,666666666666667%;
}

.main_contacts .contacts_block, .main_contacts .contacts_block a{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: var(--black)!important;
}

.main_contacts .contacts_block a{
    opacity: .7;
    transition: opacity .2s linear;
}

.main_contacts .contacts_block a:hover{
    opacity: 1;
}




.contact_form .form{
    width: 32%;
    background: var(--blue);
    padding: 30px 3.5%;
    box-sizing: border-box;
    color: #fff;
}

.contact_form h2{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    margin: 0;
    margin-bottom: 30px;
}

.contact_form input:not([type="submit"]), .contact_form textarea{
    display: block;
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
} 

.contact_form input:not([type="submit"]){
    height: 38px;
}

.contact_form textarea{
    height: 48px;
    resize: vertical;
    margin-bottom: 20px;
}

.contact_form input:not([type="submit"])::-webkit-input-placeholder, 
.contact_form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact_form input:not([type="submit"])::-moz-placeholder, 
.contact_form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact_form .disclamer{
    margin-bottom: 25px;
}

.contact_form .disclamer, .contact_form .disclamer a{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.5)!important;
}

.contact_form .disclamer a{
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: color .2s linear, border-bottom .2s linear;
}

.contact_form .disclamer a:hover{
    color: #fff!important;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.contact_form .btn{
    color: var(--black);
    background: #fff;
    padding: 13px 25px;
    border: 0;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    transition: color .2s linear, background .2s linear;
}

.contact_form .btn:hover, .contacts_data .btn:hover{
    color: #fff;
    background: var(--black);
}
.form {
	display:none;
}
.contact_form .map{
    width: 100%;
    height: 400px;
}









.contacts_data .contact_dates{
    margin-bottom: 40px;
    color: var(--black);
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}

.contacts_data .data {
    column-count: 2;
}

.contacts_data .data .item {
    margin: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    margin-bottom: 40px;
    break-inside: avoid;
}

.contacts_data .data .department{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

.contacts_data .data .item .person:not(:last-of-type){
    margin-bottom: 15px;
}

.contacts_data .data .name{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 10px;
}

.contacts_data .data ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 5px;
}

.contacts_data .data ul:last-child{
    margin-bottom: 0;
}

.contacts_data .data ul a{
    transition: opacity .2s linear;
}

.contacts_data .data ul a:hover{
    opacity: .7;
}

.contacts_data .data .phones{
    max-width: 315px;
}

.contacts_data .data .phones li{
    margin-bottom: 5px;
}

.contacts_data .data .phones li:nth-of-type(odd){
    margin-right: 15px;
}

.contacts_data .btn{
    margin-top: 25px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    max-width: 287px;
    transition: color .2s linear, background .2s linear;
}










/**************************/
/* vacancy page */
/**************************/

.vacancy_page h2{
    color: var(--black);
    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.vacancy_section .first-wrapper{
    width: 35%;
}

.vacancy_section .wrapper{
    width: 60%;
}

.vacancy_section .item:not(:last-child){
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(18, 23, 31, 0.1);
    margin-bottom: 50px;
}

.vacancy_section .description{
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    padding-left: 20px;
    border-left: 2px solid var(--blue);
    margin-bottom: 30px;
}

.vacancy_section .advantages .a_data{
    margin-left: 22px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--blue);
}










/**************************/
/* catalog page */
/**************************/

.remains{
    display: block;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--blue);
    text-decoration: none;
    transition: opacity .2s linear;
}

.remains:before{
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNSAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xMy44MjgxIDkuNjY5OTJWMTMuNzQyMkMxMy44MjgxIDE0LjA2NTMgMTMuNTY1MyAxNC4zMjgxIDEzLjI0MjIgMTQuMzI4MUgxLjc1NzgxQzEuNDM0NzMgMTQuMzI4MSAxLjE3MTg4IDE0LjA2NTMgMS4xNzE4OCAxMy43NDIyVjkuNjY5OTJIMFYxMy43NDIyQzAgMTQuNzExNCAwLjc4ODU1NSAxNS41IDEuNzU3ODEgMTUuNUgxMy4yNDIyQzE0LjIxMTQgMTUuNSAxNSAxNC43MTE0IDE1IDEzLjc0MjJWOS42Njk5MkgxMy44MjgxWiIgZmlsbD0iIzE2M0JBNCIvPgo8cGF0aCBkPSJNMTAuMzEyNSA3LjQwNTc0TDguMDg1OTYgOS42MzIzMVYwLjVINi45MTQwOFY5LjYzMjMxTDQuNjg3NTIgNy40MDU3NEwzLjg1ODg5IDguMjM0MzhMNy41MDAwMiAxMS44NzU1TDExLjE0MTIgOC4yMzQzOEwxMC4zMTI1IDcuNDA1NzRaIiBmaWxsPSIjMTYzQkE0Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuNSkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K") center no-repeat;
    height: 15px;
    width: 15px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: -2px;
}

.remains:hover{
    opacity: .7;
}

.colors_btn{
    position: fixed;
    top: 35%;
    right: -53px;
    background: var(--blue);
    color: #fff!important;
    padding: 13px 20px;
    z-index: 3;
    transform: rotate(-90deg);
    transition: background .2s linear;
    font-size: 16px;
}

.colors_btn:before{
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAzMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMwLjUzMDMgNi41MzAzM0MzMC44MjMyIDYuMjM3NDQgMzAuODIzMiA1Ljc2MjU2IDMwLjUzMDMgNS40Njk2N0wyNS43NTc0IDAuNjk2Njk5QzI1LjQ2NDUgMC40MDM4MDYgMjQuOTg5NiAwLjQwMzgwNiAyNC42OTY3IDAuNjk2Njk5QzI0LjQwMzggMC45ODk1OTMgMjQuNDAzOCAxLjQ2NDQ3IDI0LjY5NjcgMS43NTczNkwyOC45MzkzIDZMMjQuNjk2NyAxMC4yNDI2QzI0LjQwMzggMTAuNTM1NSAyNC40MDM4IDExLjAxMDQgMjQuNjk2NyAxMS4zMDMzQzI0Ljk4OTYgMTEuNTk2MiAyNS40NjQ1IDExLjU5NjIgMjUuNzU3NCAxMS4zMDMzTDMwLjUzMDMgNi41MzAzM1pNMCA2Ljc1SDMwVjUuMjVIMFY2Ljc1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==") center no-repeat;
    background-size: contain;
    height: 8px;
    width: 21px;
    display: inline-block;
    transform: rotate(180deg);
    margin-right: 10px;
    margin-bottom: 2px;
}

.colors_btn:hover{
    background: var(--black);
}










/**************************/
/* catalog page */
/**************************/

.product_section aside{
    width: 30%;
}

.product_section aside img{
    height: auto;
    width: 100%;
    object-position: center;
    object-fit: contain;
}

.product_section .product_container{
    width: 65%;
}

.product_container h2{
    margin-bottom: 10px;
}

.product_container .details{
    list-style: none;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

.product_container .details li{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
    opacity: .7;
}

.product_container .details li:not(:last-child){
    margin-right: 30px;
}

.product_container .teks{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
}

.product_container > p{
    margin: 20px 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
}

.product_container .structure{
    margin-bottom: 20px;
}

.product_container .structure > span, .product_container .additional > span{
    display: block;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
    margin-bottom: 10px;
}

.product_container .structure .wrapper .item{
    padding: 10px 20px;
    background: #F7F7F7;
    color: rgba(18, 23, 31, 0.7);
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

.product_container .structure .wrapper .item:not(:last-child){
    margin-right: 15px;
}

.product_container .additional ul{
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 300px;
}

.product_container .additional li{
    margin-bottom: 3px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
    position: relative;
}

.product_container .additional li:after{
    content: '';
    width: 100%;
    border-bottom: 1px dotted #CFCFCF;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.product_container .additional li span{
    background: #fff;
}

.product_container .additional li span:first-child{
    padding-right: 5px;
}

.product_container .additional li span:last-child{
    padding-left: 5px;
}




.product_container .contact_info{
    margin-top: 40px;
    padding: 25px;
    background: #F8F9FC;
}

.product_container .contact_info h3{
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: var(--black);
    margin: 0;
    margin-bottom: 15px;
}

.product_container .contact_info p{
    margin: 15px 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
}

.product_container .contact_info .contact_info{
    list-style: none;
    margin: 0;
    padding: 0;
}

.product_container .contact_info .contact_info span, .product_container .contact_info .contact_info a{
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}

.product_container .contact_info .contact_info a{
    font-weight: normal;   
    color: var(--black)!important;
    transition: color .2s linear;
}

.product_container .contact_info .contact_info a:hover{
    color: var(--blue)!important;
}

.product_container .contact_info .btn{
    padding: 13px 20px;
    padding-right: 65px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    transition: background .2s linear;
}

.product_container .contact_info .btn:after{
    right: 20px;
}

.product_container .contact_info .btn:hover{
    background: var(--black);
}

.other_products .container > .wrapper{
    margin-top: 50px;
	width: calc(100% + 10px);
	margin-left: -5px;
	margin-right: -5px;
}

.other_products .item{
    display: block;
    height: 250px;
    width: calc(25% - 10px);
	margin-left: 5px;
	margin-right: 5px;
}





.clear_page article .article_section{
    width: 100%;
}

.clear_page article .article_section img{
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: auto;
}

/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ */
.info {
    width: 33%;
    padding-right: 30px;
}
.form-wrapp {
    width: 67%;
}
.form-page-container {
    background: #F8F9FC;
    padding: 30px 40px;
}
.form-page-container h2{
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;

    color: #12171F;
}
.form-page-container .form-input {
    width: 100%;
    background: #F8F9FC;
    padding: 20px 0 20px 0;
    border: none;
    border-bottom: 1px solid rgb(168, 161, 161);
	font-family: 'Open Sans',sans-serif;
    font-size: 14px;
}
.form-page-container textarea {
    width: 100%;
}
.form-page-container input::placeholder {
    font-family: 'Open Sans',sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #12171F;
    opacity: 0.7;
}
.form-page-container textarea::placeholder {
    font-family: 'Open Sans',sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #12171F;
    opacity: 0.7;
    display: inline;
}
.form-page-container textarea {
    background: #F8F9FC;
    padding: 20px 0 0px 0;
    border: none;
    border-bottom: 1px solid rgb(168, 161, 161);
	resize: vertical;
	font-family: 'Open Sans',sans-serif;
    
}
.form-btn{
    border: none;
    position: relative;
    background: #163BA4;
    width: 148px;
    height: 42px;
    padding: 13px 20px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.form-btn::after {
    content: '';
    position: absolute;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAzMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMwLjUzMDMgNi41MzAzM0MzMC44MjMyIDYuMjM3NDQgMzAuODIzMiA1Ljc2MjU2IDMwLjUzMDMgNS40Njk2N0wyNS43NTc0IDAuNjk2Njk5QzI1LjQ2NDUgMC40MDM4MDYgMjQuOTg5NiAwLjQwMzgwNiAyNC42OTY3IDAuNjk2Njk5QzI0LjQwMzggMC45ODk1OTMgMjQuNDAzOCAxLjQ2NDQ3IDI0LjY5NjcgMS43NTczNkwyOC45MzkzIDZMMjQuNjk2NyAxMC4yNDI2QzI0LjQwMzggMTAuNTM1NSAyNC40MDM4IDExLjAxMDQgMjQuNjk2NyAxMS4zMDMzQzI0Ljk4OTYgMTEuNTk2MiAyNS40NjQ1IDExLjU5NjIgMjUuNzU3NCAxMS4zMDMzTDMwLjUzMDMgNi41MzAzM1pNMCA2Ljc1SDMwVjUuMjVIMFY2Ljc1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==") center no-repeat;
    background-size: contain;
    height: 8px;
    width: 15px;  
    display: inline-block;
    margin-left: 10px;
    right: 25px;
}

.form-btn input{
    font-family: 'Raleway',sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    border: none;
    padding: 0;
    background: transparent;
    color: #FFFFFF;
	cursor:pointer;
}
.form-info {
    padding-top: 25px;
}
.form-label {
    position: relative;
    cursor: pointer;
    
}
.form-label span {
    font-family: 'Open Sans',sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;

    color: #163BA4;
}


.form-label i{
  color: #163BA4;
}

.form-label input::-webkit-file-upload-button {
	border: none;
    background: transparent;
	color: #163BA4;
	padding: 8px;
	border-radius: 4px;
    cursor: pointer;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}
.wpcf7-form .wpcf7-not-valid-tip {
    position: relative;
    top: 15px;
}

@media screen and (max-width: 1080px){
    .hidden{
        overflow-y: hidden;
    }
    
    .main_menu{
        overflow-y: auto;
    }
    
    .hamburger, .close_nav{
        display: block;
        cursor: pointer;
    }
    
    .mobile_nav_header{
        display: block;
    }
    
    header nav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        margin: auto;
        background: rgba(255,255,255,1);
        padding: 20px;
        padding-top: 0;
        display: none;
    }
    
    nav>ul ul{
        background: transparent;
    }
    
    header nav.active{
        display: block;
    }
    
    .mobile_nav_header{
        padding: 15px 0;
    }
    
    nav > ul{
        margin: 0;
        margin-right: 10px;
    }
    
    nav > ul.row{
        flex-direction: column;
    }
    
    nav>ul>li:not(:last-child){
        margin-right: 0;
    }
    
    nav>ul ul{
        position: static;
/*
        visibility: visible;
        opacity: 1;
*/
        height: 0;
        padding: 0;
        box-shadow: none;
    }
    
    nav>ul ul a{
        padding: 10px 15px;
    }
    
    nav .menu-item-has-children:after{
        top: 19px;
        margin: 0;
    }
    
    nav>ul ul:before{
        display: none;
    }
    
    .menu-item-has-children ul{
        width: calc(100% - 20px);
        margin-left: 20px;
    }
    
    .menu-item-has-children:focus > ul, .menu-item-has-children:hover > ul{
        visibility: visible;
        opacity: 1;
        height: auto;
    }
    
    .is-search-form{
        margin-left: 20px;
    }
    
    .production_screen .tab-item .item{
        width: 33.3333333%;
    }
    
    .categories_section ul.row{
        flex-wrap: wrap;
    }
    
    .categories_section ul li{
        margin-bottom: 15px;
    }
    
    .categories_section{
        margin-bottom: 40px!important;
    }
    
    .categories_section ~ section{
        margin-top: 40px!important;
    }
    
    .other_products .item .info{
        padding: 20px;
    }
    
    .other_products .item .info h3{
        font-size: 18px;
        line-height: 22px;
    }
    
    .other_products .item .goto_prod{
        height: 40px;
        width: 40px;
    }
    
    .other_products .container > .wrapper{
        flex-wrap: wrap;
    }
    
    .other_products .item {
        width: calc(33.33% - 10px);
    }
    
    .other_products .item:nth-of-type(4){
        display: none;
    }
    
    .contact_form .form{
        width: 40%;
    }
    
    .contact_form .map{
        width: 60%;
    }
}

@media screen and (max-width: 980px){    
    .news_screen .container.row, .catalog_page .categories_section .container.row, article .article_wrapper{
        flex-direction: column;
    }
    
    .news_screen .news-wrapper, .news_screen .info, article .img_wrapper, article .article_section{
        width: 100%;
    }
    
    .news_screen .news-wrapper{
        margin-top: 30px;
    }
    
    .hall_section .item, .catalog_page 
    .catalog-wrapper .item,
    .news_page .news-wrapper .item{
        width: 32%;
        margin-right: 2%;
    }
    
    .hall_section .item:nth-of-type(4n), 
    .catalog_page .catalog-wrapper .item:nth-of-type(4n),
    .news_page .news-wrapper .item:nth-of-type(4n){
        margin-right: 2%;
    }
    
    .hall_section .item:not(:nth-of-type(-n+4)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+4)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+4)){
        margin-top: 50px;
    }
    
    .hall_section .item:not(:nth-of-type(-n+3)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+3)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+3)){
        margin-top: 50px;
    }
    
    .hall_section .item:nth-of-type(3n), 
    .catalog_page .catalog-wrapper .item:nth-of-type(3n),
    .news_page .news-wrapper .item:nth-of-type(3n){
        margin-right: 0;
    }
    
    .catalog_page .categories_section ul{
        width: 100%;
    }
    
    .catalog_page .remains{
        margin-top: 10px;
    }
    
    article .img_wrapper{
        height: 500px;
        margin-bottom: 30px;
    }
    
    article .img_wrapper a, article .img_wrapper img{
        height: 100%;
    }
    
    article .img_wrapper img{
        object-fit: cover;
    }
    
    article .placeholder{
        display: none;
    }
    
    article .sticky{
        position: static;
    }
    
    .contacts_block{
        flex-wrap: wrap;
    }
    
    .contacts_block > div{
        width: 49%!important;
    }
    
    .contacts_block > div:not(:nth-of-type(-n+2)){
        margin-top: 20px;        
    }
}

@media screen and (max-width: 768px){    
    .production_screen .tab-item .item{
        width: 50%;
    }   
    
    .production_screen .item .info, .other_products .item .info{
        bottom: 0;
        visibility: visible;
        opacity: 1;
        padding: 20px;
        background: rgba( 22, 59, 164, .4);
    }
    
    footer .country_logo{
        display: none;
    }
    
    .about_screen h2, .advantages_screen h2, .about_politic .wrapper, .about_politic h2, .about_sertificates .wrapper, article .img_wrapper, .vacancy_section .first-wrapper, .product_section aside{
        width: 100%;
    }
    
    .about_screen .a_s_info, .advantages_screen .advantages, .about_politic .politic_info, .about_sertificates .slider_container, article .article_section, .vacancy_section .wrapper, .product_section .product_container{
        width: 100%;
    }
    
    .about_page section .container.row, .product_page .product_section .container.row{
        flex-direction: column;
    }
    
    .about_screen .a_s_info{
        margin-top: 30px;
    }
    
    .inner_pages_heading{
        padding: 40px 0;
    }
    
    .inner_pages_heading h1{
        font-size: 28px;
        line-height: 33px;
    }
    
    .vacancy_section .item.row{
        flex-direction: column;
    }
    
    .vacancy_section .wrapper{
        margin-top: 20px;
    }
    
    .hall_section .item, 
    .catalog_page .catalog-wrapper .item,
    .news_page .news-wrapper .item{
        width: 47%;
        margin-right: 6%;
    }
    
    .hall_section .item:nth-of-type(3n), 
    .catalog_page .catalog-wrapper .item:nth-of-type(3n),
    .news_page .news-wrapper .item:nth-of-type(3n){
        margin-right: 6%;
    }
    
    .hall_section .item:nth-of-type(even), 
    .catalog_page .catalog-wrapper .item:nth-of-type(even),
    .news_page .news-wrapper .item:nth-of-type(even){
        margin-right: 0;
    }
    
    .hall_section .item:not(:nth-of-type(-n+3)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+3)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+3)){
        margin-top: 50px;
    }
    
    .hall_section .item:not(:nth-of-type(-n+2)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+2)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+2)){
        margin-top: 50px;
    }
    
    .categories_section a:not(.remains){
        margin-right: 15px;
    }
    
    .product_section aside{
        margin-bottom: 20px;
    }
    
    .other_products .item{
        width: calc(50% - 10px);
    }
    
    .other_products .item:nth-of-type(4), .other_products .item:nth-of-type(3){
        display: none;
    }
    
    .contact_form .form{
        width: 50%;
    }
    
    .contact_form .map{
        width: 50%;
    }
		/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ */
    .form-page-container{
        padding: 30px 15px;
    }
    .article-container {
        flex-direction: column;
    }
    .info {
        width: 100%;
        padding: 0;
    }
    .form-wrapp {
        width: 100%;
        margin-top: 25px;
    }
    .form-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-btn {
        margin-top: 15px;
    }
}

@media screen and (max-width: 670px){
    .page:not(.main_page) section, article{
        margin: 60px 0;
    }
    
    .main_page h2, .about_page h2, .product_container h2, .other_products h2, .vacancy_page h2, .article_page .news_screen h2, .contacts_data h2{
        font-size: 18px;
        line-height: 28px;
    }
    
    .about_screen h2, .advantages_screen h2, .about_politic .wrapper, .about_politic h2, .about_sertificates .wrapper, article .img_wrapper, .news_screen .info, .contact_form .form{
        width: 100%;
    }
    
    .about_screen .a_s_info, .advantages_screen .advantages, .about_politic .politic_info, .about_sertificates .slider_container, article .article_section, .news_screen .news-wrapper, .contact_form .map{
        width: 100%;
    }
    
    .main_page section:not(.main_screen){
        margin: 60px 0;
    }    
    
    .about_screen .container.row, 
    .advantages_screen .container.row, 
    .news_screen .container.row, 
    .news_screen .news-wrapper.row,
    footer .top_footer.row{
        flex-direction: column;
    }
    
    .about_screen .a_s_info, .advantages_screen .advantages{
        margin-top: 30px;
    }
    
    .main_screen .preheader, .main_screen .subheader{
        font-size: 14px;
        line-height: 24px;
    }
    
    .main_screen h1, .inner_pages_heading h1{
        font-size: 26px;
        line-height: 32px;
    }
    
    .btn.big{
        padding: 15px 20px;
        padding-right: 60px;
        font-size: 14px;
    }
    
    .btn.big:after, .product_container .contact_info .btn:after{
        height: 9px;
        right: 20px;
    }
    
    .main_screen .to_bottom{
        height: 40px;
        width: 40px;
    }
    
    .about_screen .quote, .about_list .quote, .vacancy_section .description{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    
    .advantages_screen .advantages .item h3{
        margin: 10px 0;
        font-size: 18px;
    }
    
    .advantages_screen .container:after{
        display: none;
    }
    
    .production_screen .tabs{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .production_screen .tabs-wrapper .tab{
        margin-bottom: 10px;
        margin-right: 15px;
    }
    
    .production_screen .tabs-content{
        margin-top: 30px;
    }
    
    .production_screen .item .info h3, .other_products .item .info h3{
        font-size: 18px;
        line-height: 22px;
    }
    
    .production_screen .item .goto_prod, .other_products .item .goto_prod{
        height: 40px;
        width: 40px;
    }
    
    .news_screen .info p{
        margin: 15px 0;
    }
    
    .news_screen .news-wrapper{
        margin-top: 30px;
    }
    
    .news_screen .news-wrapper .item{
        width: 100%;
    }
    
    .news_screen .news-wrapper .item .img_wrapper, .news_page .news-wrapper .item .img_wrapper, .catalog_page .catalog-wrapper .item .img_wrapper{
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    
    .news_screen .news-wrapper .item:not(:last-child){
        margin-bottom: 20px;
    }
    
    footer .top_footer > div:not(:last-child){
        width: 100%!important;
        margin-bottom: 30px;
    }
    
    .about_page .about_jt_screen p{
        margin-bottom: 30px;
    }
    
    .vacancy_section .advantages.row{
        flex-wrap: wrap;
    }
    
    .vacancy_section .advantages .a_data{
        margin-bottom: 10px;
        font-size: 14px;
        list-style: 18px;
    }
    
    .vacancy_section .item:not(:last-child){
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    
    .news_screen .news-wrapper .item .title, .news_page .news-wrapper .item .title, .catalog_page .catalog-wrapper .item .title{
        font-size: 16px;
        line-height: 22px;
    }
    
    .news_screen .news-wrapper .item .img_wrapper, .news_page .news-wrapper .item .img_wrapper, .catalog_page .catalog-wrapper .item .img_wrapper{
        margin-bottom: 10px;
    }
    
    .article_page .news_screen .container{
        padding-top: 60px;
    }
    
    article h1{
        font-size: 24px;
        line-height: 28px;
    }
    
    article h2{
        font-size: 22px;
        line-height: 26px;
    }
    
    article h3{
        font-size: 20px;
        line-height: 24px;        
    }
    
    article h4{
        font-size: 18px;
        line-height: 22px;
    }
    
    article h5{
        font-size: 16px;
        line-height: 20px;
    }
    
    article h6{        
        font-size: 14px;
        line-height: 18px;
    }
    
    .contact_form .container.row{
        flex-direction: column-reverse;
    }
    
    .contact_form .map{
        height: 450px;
    }
    
    .contact_form .form{
        padding: 20px 3.5%;
    }
    
    .contacts_data h2{
        margin-bottom: 30px;
    }
    
    footer .nav_section ul{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    footer .nav_section ul li{
        width: 48%;
    }
    
    .about_page section:not(:last-child) .container{
        padding-bottom: 60px;
    }
	
}

@media screen and (max-width: 550px){
    footer .copyright.row{
        flex-direction: column-reverse;
    }
    
    footer .copyright *:not(:last-child){
        margin-top: 10px;
    }
    
    .politic_container.row, .product_container .contact_info .wrapper.row{
        flex-direction: column;
    }
    
    .about_politic a{
        max-width: 190px;
        align-self: center;
        margin: auto;
        margin-bottom: 20px;
    }
    
    .politic_info p{
        margin-left: 0;
    }
    
    .about_sertificates .sertificates_slider a{
        padding-left: 0;
    }
    
    .hall_section .item, 
    .catalog_page .catalog-wrapper .item,
    .news_page .news-wrapper .item{
        width: 100%;
        margin-right: 0;
    }
    
    .hall_section .item:nth-of-type(3n), 
    .catalog_page .catalog-wrapper .item:nth-of-type(3n),
    .news_page .news-wrapper .item:nth-of-type(3n){
        margin-right: 0;
    }
    
    .hall_section .item:nth-of-type(even), 
    .catalog_page .catalog-wrapper .item:nth-of-type(even),
    .news_page .news-wrapper .item:nth-of-type(even){
        margin-right: 0;
    }
    
    .hall_section .item:not(:nth-of-type(-n+2)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+2)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+2)){
        margin-top: 30px;
    }
    
    .hall_section .item:not(:nth-of-type(-n+1)), 
    .catalog_page .catalog-wrapper .item:not(:nth-of-type(-n+1)),
    .news_page .news-wrapper .item:not(:nth-of-type(-n+1)){
        margin-top: 30px;
    }
    
    .colors_btn{
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .product_container .contact_info .wrapper.row{
        align-items: flex-start;
    }
    
    .product_container .contact_info .wrapper a{
        margin-top: 15px;
    }
    
    .other_products .container > .wrapper{
        margin-top: 30px;
    }
    
    .other_products .item{
        width: calc(100% - 10px);
        margin-bottom: 20px;
    }
    
    .other_products .item:nth-of-type(4), .other_products .item:nth-of-type(3){
        display: block;
    }
        
    .contacts_block > div{
        width: 100%!important;
    }
    
    .contacts_block > div:not(:nth-of-type(-n+2)){
        margin-top: 0;        
    }
    
    .contacts_block > div:not(:first-child){
        margin-top: 20px;        
    }
    
    .contacts_data .data{
        column-count: 1;
    }
    
    .contacts_data .data .department{
        font-size: 14px;
    }
    
    .contacts_data .data .name
    {
        margin-bottom: 5px;        
    }
    
    .contacts_data .data .item{
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 485px){
    .is-search-form input{
        width: 100%;
        max-width: auto;
    }
    
    .advantages_screen .advantages.row{
        flex-direction: column;
    }
    
    .advantages_screen .advantages .item{
        width: 100%;
    }
    
    .advantages_screen .advantages .item:not(:nth-of-type(-n+2)){
        margin-top: 0;
    }
    
    .advantages_screen .advantages .item:not(:last-child){
        margin-bottom: 20px;
    }   
    
    .production_screen .tab-item .item{
        width: 100%;
        margin-bottom: 10px;
    } 
    
    footer .nav_section ul li{
        width: 100%;
    }
}
.is-form-style input.is-search-submit, .is-search-icon {
    display: none !important;
}
.is-form-style label {
    display: flex !important;
}
body.contrast {
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
}
.a11y-toolbar-widget {
    opacity: 0;
}
.a11y-toolbar-widget button {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}
.pojo-a11y-toolbar-toggle {
    display: none;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay p.pojo-a11y-toolbar-title {
	line-height: normal !important;
}
#pojo-a11y-toolbar span {
	cursor: pointer;
}
.langs a {
	width: auto;
}

/*search page*/

.search_page li {
    margin-bottom: 30px;
    color: var(--blue);
    font-size: 22px;
    line-height: 26px;
    font-weight: bold;
}
.search_page h3 {
    margin-bottom: 15px;
}
.search_page .entry {
    font-size: 14px;
    color: #000;
}

.not-found_page h1 {
    font-size: 120px;
    margin-bottom: 30px;
}
.not-found_page h3 {
    font-size: 30px;
    margin-bottom: 30px;
}
.not-found_page .btn {
    padding: 13px 20px;
    padding-right: 75px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    transition: background .2s linear;
}
.not-found_page .btn:after {
    content: '';
    height: 12px;
    width: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAzMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMwLjUzMDMgNi41MzAzM0MzMC44MjMyIDYuMjM3NDQgMzAuODIzMiA1Ljc2MjU2IDMwLjUzMDMgNS40Njk2N0wyNS43NTc0IDAuNjk2Njk5QzI1LjQ2NDUgMC40MDM4MDYgMjQuOTg5NiAwLjQwMzgwNiAyNC42OTY3IDAuNjk2Njk5QzI0LjQwMzggMC45ODk1OTMgMjQuNDAzOCAxLjQ2NDQ3IDI0LjY5NjcgMS43NTczNkwyOC45MzkzIDZMMjQuNjk2NyAxMC4yNDI2QzI0LjQwMzggMTAuNTM1NSAyNC40MDM4IDExLjAxMDQgMjQuNjk2NyAxMS4zMDMzQzI0Ljk4OTYgMTEuNTk2MiAyNS40NjQ1IDExLjU5NjIgMjUuNzU3NCAxMS4zMDMzTDMwLjUzMDMgNi41MzAzM1pNMCA2Ljc1SDMwVjUuMjVIMFY2Ljc1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==) center no-repeat;
    background-size: contain;
}
.wpcf7-form .wpcf7-not-valid-tip {
	font-size: 13px !important;
	margin: -10px 0 15px 0 !important;
}
.wpcf7-form .wpcf7-response-output {
	font-size: 14px;
    padding: 10px 20px !important;
    border: none !important;
    background: rgb(255 255 255 / 20%);
    margin: 0 !important;
    margin-top: 17px !important;
}
.main_screen__item {
	position: relative;
}
.main_screen .slick-list, .main_screen .slick-track {
	height: 100%;
}
.main_screen .slick-arrow {
	filter: brightness(0) invert(1);
	z-index: 9;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE2IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xNS4zNTM2IDQuMzUzNTVDMTUuNTQ4OCA0LjE1ODI5IDE1LjU0ODggMy44NDE3MSAxNS4zNTM2IDMuNjQ2NDVMMTIuMTcxNiAwLjQ2NDQ2NkMxMS45NzYzIDAuMjY5MjA0IDExLjY1OTcgMC4yNjkyMDQgMTEuNDY0NSAwLjQ2NDQ2NkMxMS4yNjkyIDAuNjU5NzI4IDExLjI2OTIgMC45NzYzMTEgMTEuNDY0NSAxLjE3MTU3TDE0LjI5MjkgNEwxMS40NjQ1IDYuODI4NDNDMTEuMjY5MiA3LjAyMzY5IDExLjI2OTIgNy4zNDAyNyAxMS40NjQ1IDcuNTM1NTNDMTEuNjU5NyA3LjczMDggMTEuOTc2MyA3LjczMDggMTIuMTcxNiA3LjUzNTUzTDE1LjM1MzYgNC4zNTM1NVpNMCA0LjVIMTVWMy41SDBWNC41WiIgZmlsbD0iIzE2M0JBNCIvPgo8L3N2Zz4K) center no-repeat;
	background-size: contain;
	width: 22px;
	height: 13px;
}
.main_screen .slick-arrow:before {
	display: none;
}
.main_screen .slick-arrow.slick-prev {
	left: 40px;
	transform: rotate(180deg);
}
.main_screen .slick-arrow.slick-next {
	right: 40px;
}
@media screen and (max-width: 1300px){
	.main_screen .slick-arrow {
		bottom: 65px;
		top: initial;
		transform: none;
		right: 30px;
		left: initial !important;
	}
	.main_screen .slick-arrow.slick-prev {
		right: 60px;
	}
	.main_screen .slick-arrow.slick-next {
		right: 20px;
	}
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.copyright__logo {
	display: flex;
	align-items: center;
    gap: 1rem;
}


.page-4150 .contacts_block .additional_phones{
	display: none;
}


.page-4150 .contacts_block .additional_phones{
	display: none;
}


.page-4150 .contacts_block .additional_phones{
	display: none;
}

.page-4150 .contacts_block .phones {
	display: none;
}

.page-4150 .contacts_block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 768px) {
	.page-4150 .contacts_block {
		grid-template-columns: 1fr;
	}
}

.page-4150 .main_contacts .contacts_block > div {
	width: 100%;
}