* {
    font-family: "Neue", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    overflow-x: hidden;
}

html, body, div, table {
    font-family: "Neue", sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
}

.container {
    max-width: 2000px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sui', sans-serif;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

ul li {
    padding-bottom: 12px;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/*@media (max-width: 1400px) {*/
/*    .container {*/
/*        max-width: 1200px;*/
/*    }*/
/*}*/
/*@media (max-width: 1200px) {*/
/*    .container {*/
/*        max-width: 970px;*/
/*    }*/
/*}*/
/*@media (max-width: 992px) {*/
/*    .container {*/
/*        max-width: 750px;*/
/*    }*/
/*}*/
/*@media (max-width: 768px) {*/
/*    .container {*/
/*        max-width: 100%;*/
/*    }*/
/*}*/

.header {
    max-width: 100%;
    width: 100%;
    height: 90px;
    background-color: #05243c;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}

.header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 90px;
/*     border-bottom: 1px solid #bdbbbb; */
}

.header__logo {
    display: flex;
	width: fit-content;

}

.header__logo-image {
    max-width: 100%;
    width: 100%;
    max-height: 60px !important;
    object-fit: contain;
    object-position: left;
}

.header__menu-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 22px;
    padding: 0 22px;
    list-style: none;
}

.header__menu-items li {
    position: relative;
    color: #fff;
}

.header__menu-items li:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    background-image: url("/wp-content/uploads/2025/03/1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0) translateY(-50%);
    transition: all 0.3s;
    display: block;
    filter: invert(1);
    width: 19px;
    height: 19px;
}

.header__menu-items li a {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.header__menu-items li:hover a {
    color: #cecece;
}

.header__menu-items li:hover:after {
    /*filter: opacity(0.25);*/
    transform: rotate(180deg) translateY(50%);
}

.header__inner-block-phone a {
    background-color: #cecece;
    padding: 4px 12px;
    color: #192026;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: .4em 1em;
    color: #3d3d3d;
    box-shadow: none;
    font-family: 'Sui', sans-serif;
    font-size: .9rem;
    line-height: 1.6;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 1;
    position: relative;
    overflow: hidden;
    max-width: max-content;
    width: 100%;
}

.button  span {
    font-family: 'Sui', sans-serif;
}

.button_gray {
    background: #e7e7e6;
    border: 1px solid #3d3d3d;
    border-radius: 5px;
}

.button_gray:hover {
    color: #3d3d3d;
    background: #c7c7c7;
    border: 1px solid #FF0000;
}

.button_white:hover {
    color: #000;
    background-color: #fff;
}

.button_white {
    background: #FF0000;
    color: #fff;
	border: 1px solid #FF0000;
    border-radius: 5px;
}

.button_red {
    background-color: #FF0000;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
}

.button_red:hover {
    background: #fff;
    border: 1px solid #FF0000;
    border-radius: 5px;
    color: #000;
}

.mobile__menu {
    display: none;
}

.header__burger {
    display: none;
}

.header__burger svg {
    stroke: #fff;
}

.header-item {
    display: none;
    column-gap: 24px;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #edf2f7;
/*     border-radius: 10px; */
    padding: 0 24px 24px;
    box-shadow: 0 6px 4px 0 rgba(0, 0, 0, .1);
}

.header-item:nth-child(1){
    max-width: 998px;
}

.header-item:nth-child(2) {
    max-width: 1198px;
    background-color: #fff;
}

.header-item:nth-child(3){
    max-width: 998px;
}

.header-item:nth-child(3) .resources-menu{
    width: 100%;
    background: #e0e0e0;
}

.company-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #e0e0e0;
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
}

.company-menu__info {
    flex: 1;
    max-width: 50%;
}

.company-menu__info h2 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: bold;
    color: #2b2b2b;
}

.company-menu__info p {
    font-size: .9rem;
    color: #636363;
}

.company-menu__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
}

.company-menu__item {
    display: block;
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    border: 1px solid #b5b5b5;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 1px 1px;
}

.company-menu__item:hover {
    border: 1px solid #FF0000;
    box-shadow: #FF0000 0px 0px 1px 1px;
}

.company-menu__item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.company-menu__item p {
    font-size: 14px;
    color: #666;
}

.company-menu-products img {
    max-width: 364px;
    width: 100%;
}

.company-menu-products svg {
    width: 1rem;
    height: 1rem;
}

.company-menu-products a {
    display: flex;
    align-items: center;
    gap: .25em;
    text-decoration: underline;
    color: #3f3f3f;
    font-size: 1em;
    font-weight: 600;
}

.company-menu-products a span {
    font-size: 1em;
    font-weight: 600;
}

.products-menu {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    background: #e0e0e0;
}

.products-menu__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.products-menu__header h2 {
    font-size: 24px;
    font-weight: bold;
}

.products-menu__header p {
    font-size: 16px;
    flex-grow: 1;
}

.products-menu__view-all {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.products-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    text-decoration: none;
    color: #333;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #b5b5b5;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 1px 1px;    transition: all 0.3s;
}

.products-menu__item:hover {
    border: 1px solid #FF0000;
    box-shadow: #FF0000 0px 0px 1px 1px;
}

.products-menu__item img {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.products-menu__item h3 {
    font-size: 16px;
    font-weight: bold;
}

.resources-menu {
    background: #eee;
    padding: 20px;
    border-radius: 10px;
}

.resources-menu__info {
    margin-bottom: 20px;
}

.resources-menu__info h2 {
    font-size: 24px;
    font-weight: bold;
}

.resources-menu__info p {
    font-size: 16px;
    color: #666;
}

.resources-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.resources-menu__item {
    display: block;
    padding: 15px;
    background: white;
    border: 1px solid #b5b5b5;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 1px 1px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.resources-menu__item:hover {
    border: 1px solid #FF0000;
    box-shadow: #FF0000 0px 0px 1px 1px;
}

.resources-menu__item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.resources-menu__item p {
    font-size: 14px;
}

.header__menu-wrapper {
    /*position: relative;*/
}

.header__menu-list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.header__menu-items li {
    position: relative;
    cursor: pointer;
    padding: 30px 15px;
}

.header-items {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    /*display: none;*/
    padding-top: 0;
    padding-right: 1.5rem;
    /*padding-bottom: 1.5rem;*/
    padding-left: 1.5rem;
}

.header__menu-items:hover ~ .header-items {
    display: block;
}

.header__menu-items li:hover ~ .header-items .header-item {
    display: none;
}

.header__menu-items li:nth-child(1):hover ~ .header-items .header-item[data-menu="0"],
.header__menu-items li:nth-child(2):hover ~ .header-items .header-item[data-menu="1"],
.header__menu-items li:nth-child(3):hover ~ .header-items .header-item[data-menu="2"] {
    display: block;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #05243c;
}

.footer .container {
    padding: 0 32px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
}

.footer__logo {
    margin: .5em 0;
}

.footer__logo img {
    max-width: 200px;
    width: 100%;
    max-height: 70px!important;
    height: 70px;
    object-fit: contain;
}

.footer__inner-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__inner-info a {
    text-decoration: underline;
}

.footer__inner-info-location {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    color: #fff;
}

.footer__inner-info-location svg {
    width: 36px;
    height: 36px;
    color: #d2232a;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 80%;
    width: 100%;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 32px;
    font-size: 18px;
    color: #fff;
}

.footer__menus {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer__menu {
    max-width: 100%;
    width: 100%;
}

.footer__menu h5 {
    padding-top: 12px;
    padding-bottom: 0px;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 40px;
    font-style: normal;
    color: #fff;
}

.footer__menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer__menu ul li {
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    text-decoration: underline;
}

.footer__menu ul li a {
    color: inherit;
}

.footer__form {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    width: 100%;
    margin-bottom: 60px;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.footer__form h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}

.footer__form p {
    margin-bottom: 10px;
}

.footer__form form > div {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.footer__form label {
    font-size: clamp(0.8rem, 0.73rem + 0.217vw, 0.9rem);
    font-style: normal;
    font-weight: inherit;
}

.footer__form input {
    flex-basis: 100%;
    max-width: 382px;
    width: 100%;
    border: 1px solid #a0aec0;
    background-color: #fff;
    color: #2b2b2b;
    vertical-align: middle;
    flex-grow: 1;
    z-index: 10;
    min-height: 40px;
    padding: 10px 12px;
    outline: none;
}

.footer__form button {
    padding: 8px 16px;
    border-radius: 5px;
    border-width: 1px 1px 1px 1px;
    background: #fff;
    border-color: #FF0000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: #000;
    transition: all 0.5s;
}

.footer__form button:hover {
    padding: 8px 16px;
    border-radius: 5px;
    border-width: 1px 1px 1px 1px;
    background: #FF0000;
    border-color: #FF0000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.divider {
    width: 25%;
    height: 2px;
    margin: 10px 0;
    background: #FF0000;
}

.mobile-menu-overlay {
    display: none;
}


#my-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    justify-content: center;
    align-items: center
}

#my-popup-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    min-width: 300px
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold
}

#my-popup-content h2 {
    text-align: center;
    margin-top: 0
}

#popup-name,#popup-email,#popup-lastname,#popup-company {
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    box-sizing: border-box
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: -5px;
    margin-bottom: 10px
}

#popup-submit {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #fff;
    color: #4a5568;
    border-top: 1px solid #d2232a;
    border-right: 1px solid #d2232a;
    border-bottom: 1px solid #d2232a;
    border-left: 1px solid #d2232a
}

#popup-submit:hover {
    background: #e4e4e4
}

.subscribe_checkbox {
    font-size: 13px;
    padding-left: 5px
}

.header_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.header_buttons .button_gray {
    background: #EDCD1F;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.5s;
}

.header_buttons .button_gray:hover {
    background: #fff;
    border: 1px solid #EDCD1F;
    border-radius: 5px;
}

@media screen and (max-width: 1080px) {
    .header__menu-wrapper {
        display: none;
    }
    .header_buttons {
        display: none;
    }
    .header__burger {
        display: flex;
		margin-right: 20px;
    }
    .header__burger svg {
        width: 25px;
        height: 25px;
    }
    .header__menu.active {
        right: 0;
        z-index: 1001;
    }
    .mobile__menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: -100%;
        max-width: 360px;
        background-color: #718096;
        width: 100%;
        height: 100vh;
        position: fixed;
        overflow: auto;
        transition: transform .3s cubic-bezier(.77,.2,.05,1), opacity .25s cubic-bezier(.77,.2,.05,1), -webkit-transform .3s cubic-bezier(.77,.2,.05,1);
        z-index: 3;
        color: #fff;
        font-weight: 700;
        font-size: 24px;
        padding: 32px 32px 32px 16px;
    }
    .mobile__menu button {
        margin-bottom: 1rem;
        background: transparent;
        outline: none;
        border: none;
        text-align: right;
    }
    .mobile__menu .divider {
        display: block;
        width: 88% !important;
        height: 1px;
        margin: 0 auto;
        background-color: #fff;
    }
    .mobile__menu button svg {
        width: 25px;
        height: 25px;
    }
    .header__menu-items li {
        padding: 0;
    }
    .header__menu-items > li > a {
        font-size: 24px;
        font-weight: 700;
        text-transform: none;
    }
    .sub-menu {
        list-style: none;
        padding-left: 0;
        height: 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    .sub-menu li {
        padding: 9.6px 8px;
        line-height: 1;
    }
    .sub-menu li a {
        line-height: 1;
        text-transform: none;
    }
    .mobile__menu .header__menu-items {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        z-index: 1000;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .no-scroll {
        overflow: hidden;
    }
    .menu-item-has-children.active .sub-menu {
        opacity: 1;
        height: 100%;
    }
    .mobile__menu .menu-item-has-children {
        position: relative;
    }
    .header__menu-items li:after {
        display: none;
    }
    .mobile__menu .menu-item-has-children:after {
        content: '';
        position: absolute;
        top: 10px;
        right: 0;
        background-image: url("/wp-content/uploads/2025/03/1.svg");
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(0);
        transition: all 0.3s;
        display: block;
        filter: invert(1);
        width: 19px;
        height: 19px;
    }
    .mobile__menu .menu-item-has-children.active:after {
        transform: rotate(180deg);
    }
    .footer__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
    }
    .footer__copyright {
        max-width: 100%;
        width: 100%;
    }
    .footer__menus {
        max-width: 100%;
        width: 100%;
    }
    .footer__form {
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 8px;
    }

    .footer__menus {
        display: none;
    }
}

.breadcrumb{
    color: #3b4453;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.breadcrumb a{
    text-decoration: underline;
}

.product_breadcramp_block{
    padding-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    .product_breadcramp_block{
        padding-top: 0;
    }
}

.custom_text_block{
	display: flex;
    align-items: center;
    height: 70px;
}

.custom_text_block p{
	width: fit-content!important;
    font-size: 26px;
    margin-bottom: 0!important;
	min-width: 230px;
}

.custom_text_block img{
	max-width: 180px!important;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .custom_text_block p {
		font-size: 20px;
		min-width: 190px;
	}
}