* {
    padding: 0;
    margin: 0;
    border: 0;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a,
a:hover,
a:link,
a:visited {
    text-decoration: none;
}
aside,
footer,
header,
legend,
main,
nav,
section {
    display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}
ul,
ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img,
svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input,
select,
textarea {
    background-color: transparent;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
input::-ms-clear {
    display: none;
}
button,
input[type="submit"] {
    display: inline-block;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    background: 0;
    cursor: pointer;
}
button:active,
button:focus,
input:active,
input:focus {
    outline: 0;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
:root {
    --container-width: 1280px;
    --container-padding: 20px;
    --font-main: "Montserrat", sans-serif;
    --font-accent: "Montserrat", sans-serif;
    --font-titles: var(--font-accent);
    --page-bg: #fff;
    --text-color: #1e1e1e;
    --accent: #ff3a2d;
    --link-color: #ff3a2d;
    --bg-color: #29333a;
    --bg-color-old: #0e181e;
    --laptop-size: 1199px;
    --tablet-size: 959px;
    --mobile-size: 599px;
    --sections-gap: 50px;
}
.dark {
    --page-bg: #252526;
    --text-color: #fff;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src:
        url(../fonts/Montserrat-VariableFont_wght.woff2) format("woff2"),
        url(../fonts/Montserrat-VariableFont_wght.woff) format("woff");
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
}
img {
    display: block;
}
a,
body {
    color: var(--text-color);
}
a:hover {
    color: var(--link-color);
}
.shadow_imgs {
    -webkit-box-shadow: var(--bg-color) 1px 2px 8px;
    box-shadow: var(--bg-color) 1px 2px 8px;
}
.offset-orange {
    background-color: var(--accent);
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.none {
    display: none !important;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.no-scroll {
    overflow-y: hidden;
}
.container {
    margin: 0 auto;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body,
html {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer {
    margin-top: auto;
    background-color: #e3e3e3;
}
.page_info {
    position: relative;
    margin: 30px auto;
}
.page_title {
    max-width: 1050px;
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0 auto 16px;
}
.btn.btn-404,
.page_desc {
    margin: 0 auto;
    font-size: 16px;
}
.page_desc {
    max-width: 720px;
    line-height: 1.5;
    text-align: center;
}
.main-404,
.page_404 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page_404 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.btn.btn-404 {
    padding: 10px 20px;
    background-color: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}
.about_desc,
.about_info,
.about_wrapper,
.page_404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about_wrapper {
    gap: 20px;
    padding-bottom: 24px;
}
.about_desc,
.about_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.about_info {
    width: 60%;
    max-width: 50%;
}
.about_desc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.about_text {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}
.about_img {
    max-width: 50%;
    position: relative;
}
.about_img img {
    width: 100%;
}
:root {
    --category-previwe-size: 124px;
}
.categories_wrapper {
    margin-top: 20px;
}
.category_item {
    border-bottom: 1px solid #000;
}
.category_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-width: 100%;
    gap: 12px;
}
.category_link:hover {
    margin-left: 12px;
}
.category_link:hover svg,
.close-filters_btn svg path,
.mobile_filter .open-filters_btn svg path {
    fill: var(--accent);
}
.category_preview {
    max-height: var(--category-previwe-size);
    width: 160px;
    max-width: 160px;
    min-width: 160px;
    word-wrap: anywhere;
}
.category_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    min-height: var(--category-previwe-size);
    color: var(--text-color);
}
.category_title {
    font-size: 30px;
    font-weight: 600;
}
.follow-icon {
    display: block;
    min-width: 48px;
}
.follow-icon .arrow-right {
    fill: #000;
}
.contact-icon-svg {
    display: block;
    width: 28px;
    height: 28px;
    margin: 12px auto;
    fill: var(--accent);
}
.contact_details,
.contact_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.contact_title {
    font-size: 24px;
    font-weight: 600;
    margin: 12px auto;
}
.contact_details {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}
.filers_panel {
    max-width: 300px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.close-filters_btn {
    display: none;
    float: right;
}
.close-filters_btn svg {
    width: 32px;
    height: 32px;
}
.filter_wrapper {
    width: 100%;
}
.filter_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    scrollbar-width: none;
}
.filter_item {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}
.filter_item a {
    color: var(--text-color);
}
.filter_item a:hover,
.nav-dark a:hover {
    color: var(--accent);
}
.footer {
    background-color: var(--bg-color);
    padding: 10px 0;
    color: #fff;
    margin-top: var(--sections-gap);
    background-image: url(https://pte.com.ua/media/bg-pattern.svg);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 42px 0;
    border-bottom: 1px solid #fff;
}
.footer_logo {
    width: 48px;
    height: 48px;
}
.socials_icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.social_link {
    display: inline-block;
}
.social-icon-svg {
    fill: #fff;
    stroke: #fff;
    height: 20px;
}
.footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 14px;
}
.menu_item a,
.mobile-nav a,
.terms {
    color: #fff;
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 120px;
    padding: 20px 0;
    background-color: var(--bg-color);
}
.header-dark {
    background-color: #fff;
}
.header_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.logo {
    height: 100%;
}
.logo_img {
    max-width: 390px;
    height: auto;
}
.swiper {
    width: 100%;
    height: 100%;
}
.mySwiper {
    max-width: 500px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.swiper-slide img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--bg-color);
}
.hero_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #fff;
    overflow: hidden;
}
.hero_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    height: 100%;
}
.hero_details,
.hero_img,
.hero_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hero_img {
    width: 100%;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.hero_img img {
    width: 100%;
    height: auto;
    max-width: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.hero_details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.hero_title {
    padding: 20px 0;
    font-size: 52px;
    font-weight: 600;
    font-family: var(--font-titles);
    line-height: 1.4;
    text-transform: uppercase;
}
.hero_desc {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
}
.facts_item,
.hero_facts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hero_facts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 40px;
}
.facts_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}
.fact_title {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}
.fact_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.fact_numb {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
}
.fact_plus {
    height: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: var(--accent);
    font-size: 45px;
    font-weight: 500;
}
.hero_visual {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
}
.icons-wrapper {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.icon {
    fill: transparent;
    stroke: transparent;
    width: 48px;
    height: 48px;
}
.logo {
    font-size: 32px;
}
.main,
.mobile-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    gap: var(--sections-gap);
}
.mobile-nav {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(209deg, #0f191f -17.38%, #1a3647 78.4%), #0f191f;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.mobile-nav--open {
    top: 0;
}
.mobile-nav-btn,
.mobile-nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mobile-nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    font-size: 28px;
}
.mobile-nav_list .active {
    opacity: 0.5;
}
.mobile-nav-btn {
    --time: 0.1s;
    --width: 28px;
    --height: 28px;
    --line-height: 4px;
    --spacing: 6px;
    --color: #fff;
    --radius: 4px;
    height: var(--height);
    width: var(--width);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-icon,
.nav-icon::after,
.nav-icon::before {
    position: relative;
    width: var(--width);
    height: var(--line-height);
    background-color: var(--accent);
    border-radius: var(--radius);
}
.nav-icon::after,
.nav-icon::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition:
        top var(--time) linear var(--time),
        -webkit-transform var(--time) ease-in;
    transition:
        transform var(--time) ease-in,
        top var(--time) linear var(--time);
    transition:
        transform var(--time) ease-in,
        top var(--time) linear var(--time),
        -webkit-transform var(--time) ease-in;
}
.nav-icon::before {
    top: calc(-1 * (var(--line-height) + var(--spacing)));
}
.nav-icon::after {
    top: calc(var(--line-height) + var(--spacing));
}
.nav-icon.nav-icon--active {
    background-color: transparent;
}
.nav-icon.nav-icon--active::after,
.nav-icon.nav-icon--active::before {
    top: 0;
    -webkit-transition:
        top var(--time) linear,
        -webkit-transform var(--time) ease-in var(--time);
    transition:
        top var(--time) linear,
        transform var(--time) ease-in var(--time);
    transition:
        top var(--time) linear,
        transform var(--time) ease-in var(--time),
        -webkit-transform var(--time) ease-in var(--time);
}
.nav-icon.nav-icon--active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.nav-icon--active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-nav-btn {
    z-index: 9999;
    display: none;
}
.menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}
.menu_item {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.nav-dark a {
    color: var(--text-color);
}
a.active,
li.current_page_item a[aria-current="page"] {
    color: var(--accent);
}
.partners_list,
.popup,
.popup_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.partners_list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.popup,
.popup_wrapper {
    height: 100%;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: rgba(24, 24, 27, 0.9);
    z-index: 999;
    cursor: pointer;
}
.popup_wrapper {
    position: relative;
    margin: auto;
    cursor: default;
    background-color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.model_viewer,
.model_wrapper {
    width: 100%;
    height: 100%;
}
.loading-progress {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--text-color);
}
.model_controls {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 52px;
}
.model_controls svg {
    stroke: var(--text-color);
    stroke-width: 2px;
}
.model_controls button {
    margin-left: 0;
}
.model_controls button:hover {
    background-color: rgba(70, 70, 73, 0.65);
}
.btn_close-model,
.btn_full-screen,
.btn_reset-pos {
    height: 48px;
    width: 48px;
    padding: 5px;
    border: 0;
    outline: 0;
    cursor: pointer;
}
.overlay-model.visible,
.overlay.visible {
    display: block !important;
}
.product_card {
    max-height: 420px;
    padding: 12px 6px;
    border: 1px solid rgba(105, 123, 134, 0.25);
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.product_card:hover::before {
    background-color: transparent;
}
.product_card:hover .product_desc {
    max-height: 420px;
    opacity: 1;
}
.shadow_card {
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
.product_visual {
    width: 100%;
    height: auto;
    position: relative;
}
.product_img,
.product_img img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product_img img {
    max-width: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}
.product_img img:hover,
.sp-product_img img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.btn-sw {
    position: absolute;
    right: 10px;
    padding: 12px 24px;
    z-index: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background-color: rgba(105, 123, 134, 0.5);
}
.btn-sw-2d {
    top: 8px;
}
.btn-sw-3d {
    bottom: 8px;
}
.btn-sw:hover {
    background-color: #697b86;
    color: #fff;
}
.product_info {
    position: absolute;
    bottom: 0;
    max-width: 300px;
    padding: 0 6px;
    z-index: 1;
}
.product_title {
    padding: 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}
.product_title a {
    color: var(--text-color);
    text-decoration: none;
}
.prod_type {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
}
.prod_id {
    white-space: nowrap;
    word-break: break-word;
}
.product_desc {
    max-height: 0;
    opacity: 0;
    -webkit-transition:
        max-height 0.75s ease,
        opacity 0.5s ease;
    transition:
        max-height 0.75s ease,
        opacity 0.5s ease;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color);
}
.products_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.filters_results {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: minmax(380px, 390px);
    gap: 12px;
    padding-bottom: 12px;
    position: relative;
}
.mobile_filter {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 0;
}
.mobile_filter .open-filters_btn svg {
    fill: var(--accent);
    width: 32px;
    height: 32px;
}
.choose_filter {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}
.cat_bg,
.sp_similar_link::before {
    position: absolute;
    width: 100%;
    height: 100%;
}
.cat_bg {
    max-height: 65px;
    right: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: -1;
}
.cat_img-oil {
    background-image: url(https://pte.com.ua/media/cat-oil.webp);
}
.cat_img-water {
    background-image: url(https://pte.com.ua/media/cat-water.webp);
}
.cat_img-heat {
    background-image: url(https://pte.com.ua/media/cat-heat.webp);
}
.cat_img-air {
    background-image: url(https://pte.com.ua/media/cat-air.webp);
}
.cat_img-cold {
    background-image: url(https://pte.com.ua/media/cat-cold.webp);
}
.quality_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}
.quality_desc {
    max-width: 60%;
}
.quality_desc p,
.technology_desc p {
    min-width: 100%;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 25px;
    white-space: normal;
    text-align: justify;
}
.quality_gallery {
    width: 100%;
    max-width: 460px;
    height: auto;
    padding-bottom: 20px;
}
.quality_gallery a {
    display: block;
    margin: 0 auto;
    position: relative;
}
.product_img img,
.quality_gallery img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.section_info {
    width: 40%;
    margin-bottom: 16px;
}
.section_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.section_num {
    margin-right: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}
.decor {
    width: 100px;
    border-bottom: 3px solid var(--accent);
}
.section_info-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    width: 40%;
    float: right;
}
.section_info-left,
.section_info-left .section_number {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.section_info-left .section_title {
    text-align: right;
}
.breadcrumbs {
    margin: 24px 0;
    padding: 12px 0;
}
.breadcrumbs a,
.sp_similar_link:hover {
    color: var(--text-color);
}
.breadcrumbs_list,
.sp_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}
.sp_info {
    gap: 40px;
    margin: 80px 0;
}
.sp_preview {
    position: relative;
    width: 50%;
}
.sp-product_img img {
    width: 100%;
    max-width: 620px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.sp_details {
    width: 50%;
}
.sp_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    text-transform: uppercase;
}
.sp_desc {
    margin-top: 20px;
}
.sp_parameters-title {
    margin: 24px 0 12px;
    font-weight: 600;
}
.sp_parameter,
.sp_parametr-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sp_parameter {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
    margin: 12px 0;
}
.sp_parametr-value {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    text-align: right;
}
.sp_similar {
    padding: 20px 0;
}
.sp_similar_title {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    text-transform: uppercase;
}
.sp_similar_link,
.sp_similar_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sp_similar_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
}
.sp_similar_link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 220px;
    width: 340px;
    position: relative;
    color: var(--text-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.sp_similar_link::before {
    content: "";
    left: 0;
    top: 0;
    background-color: var(--bg-color);
    opacity: 0.7;
    border: 0;
    border-radius: 4px;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}
.sp_similar_link:hover::before {
    opacity: 0.1;
}
.sp_similar_name {
    max-width: 90%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    background-color: rgba(240, 240, 240, 0.8);
    padding: 12px 6px;
    border: 0;
    border-radius: 4px;
    z-index: 1;
}
.sp_content-title {
    margin: 24px 0 0;
    text-align: center;
}
.slider-main {
    width: 100%;
    height: 540px;
    margin: 0 auto;
}
.slider_main-img {
    aspect-ratio: 21/9;
}
.keen-slider__slide {
    background-size: cover;
    background-position: center;
}
.partner_item,
.partner_logo {
    max-height: 90px !important;
}
.partner_logo {
    width: 100%;
    height: auto !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.partner_logo:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.slider-thumbs {
    padding: 10px 0;
}
.slider-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}
.slider_main-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.navigation-wrapper {
    position: relative;
}
.dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dot {
    border: 0;
    width: 10px;
    height: 10px;
    background: #c5c5c5;
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
}
.dot:focus {
    outline: 0;
}
.dot--active {
    background: #000;
}
.thumbnail .keen-slider__slide {
    cursor: pointer;
}
.thumbnail .keen-slider__slide.active {
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.technology_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}
.technology_desc {
    max-width: 60%;
}
.tech_bg-dark {
    color: #fff;
    background-color: var(--bg-color);
}
.technology_gallery {
    width: 100%;
    max-width: 460px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    gap: 12px;
    background-color: #fff !important;
    padding-bottom: 20px;
}
.technology_gallery img {
    width: 100%;
    height: 100%;
}
.terms_text p {
    text-align: justify;
    color: var(--text-color);
}
.section_title,
.terms_p-title {
    font-size: 16px;
    font-weight: 600;
}
.terms_text p,
.terms_text ul {
    margin-bottom: 12px;
}
.terms_text ul li {
    list-style: "- " inside;
}
.section_title {
    font-size: 42px;
}
@media (max-width: 1200px) {
    .about_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .about_info {
        width: 100%;
    }
    .about_img,
    .about_info {
        max-width: 100%;
    }
    .category_info {
        -webkit-box-align: left;
        -ms-flex-align: left;
        align-items: left;
        min-height: 120px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .category_desk {
        text-align: left;
    }
    .follow-icon {
        display: none;
    }
    .contact-icon-svg {
        margin: 0 auto;
    }
    .footer_nav {
        display: none;
    }
    .footer__copyright,
    .terms {
        display: block;
        text-align: center;
    }
    .terms {
        margin-top: 12px;
    }
    .logo_img {
        max-width: 50%;
    }
    .hero {
        height: 100vh;
    }
    .hero_title {
        font-size: 32px;
    }
    .hero_facts {
        gap: 16px;
    }
    .fact_title {
        font-size: 18px;
    }
    .fact_info {
        gap: 10px;
    }
    .fact_numb {
        font-size: 30px;
    }
    .fact_plus {
        font-size: 24px;
    }
    .mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .mobile-nav-btn {
        display: block;
    }
    .menu {
        display: none;
    }
    .section_info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    .decor {
        max-width: 50px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }
    .section_number {
        margin-bottom: 6px;
    }
    .section_info-left {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .section_title {
        font-size: 36px;
    }
}
@media (max-width: 560px) {
    .page_title {
        font-size: 32px;
        max-width: 340px;
    }
    .page_desc {
        display: none;
        font-size: 14px;
        line-height: 1.5;
    }
    .category_link {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .category_info {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 120px;
    }
    .category_desk,
    .category_title {
        text-align: center;
    }
    .category_desk {
        word-wrap: break-word;
    }
    .follow-icon {
        display: none;
    }
    .filers_panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: 100%;
        z-index: 1000;
        overflow-y: scroll;
        padding: 40px 20px;
        background: linear-gradient(209deg, #0f191f -17.38%, #1a3647 78.4%), #0f191f;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .close-filters_btn {
        display: block;
    }
    .taxonomies_filter {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 18px;
    }
    .filter_item a {
        color: #fff;
    }
    .filers_panel-open {
        left: 0;
    }
    .logo_img {
        max-width: 80%;
    }
    .hero_wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .hero_title {
        font-size: 24px;
    }
    .hero_desc,
    .hero_title {
        text-align: center;
    }
    .hero_img {
        display: block;
    }
    .product_card {
        width: 100%;
    }
    .cat_bg {
        display: none !important;
    }
    .mobile_filter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .quality_wrapper {
        display: block;
    }
    .quality_desc {
        max-width: 100%;
    }
    .section_info-left,
    .section_number {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .section_number {
        margin-bottom: 6px;
    }
    .section_info-left {
        width: 100%;
    }
    .section_info-left .section_number {
        margin-bottom: 6px;
    }
    .section_info-left .section_title {
        text-align: center;
    }
    .breadcrumbs {
        display: none;
    }
    .sp_info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
        margin: 80px 0;
    }
    .sp_details,
    .sp_preview {
        width: 100%;
    }
    .sp_title {
        font-size: 16px;
        line-height: 1.5;
    }
    .sp_desc {
        margin-top: 20px;
    }
    .sp_parametr-title,
    .sp_parametr-value {
        font-size: 14px;
    }
    .sp_similar {
        padding: 20px 0;
    }
    .sp_similar_title {
        font-size: 16px;
    }
    .sp_similar_link {
        height: 240px;
        width: 100%;
    }
    .sp_similar_name {
        font-size: 14px;
        padding: 8px 6px;
    }
    .slider-main {
        height: 300px;
    }
    #thumbnails,
    .slider-thumbs {
        display: none;
    }
    .partner_logo {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }
    .slider_main-img {
        height: 80%;
    }
    .technology_wrapper {
        display: block;
    }
    .technology_desc {
        max-width: 100%;
    }
    .section_title {
        font-size: 28px;
        text-align: center;
    }
}
.is-search-input {
    font-family: inherit !important;
}