:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #193352;
    /* --accent-color: #000; */
    /* --accent-color: rgb(102, 204, 255); */
    /* --accent-color: rgb(204, 236, 255); */
    --accent-color-1: #ebebeb;
    --accent-color-2: #ebebeb;
    --accent-background-color: #F2F3F4;
    --accent-background-color-2: #333333;
    --font-family-1: 'Jost', sans-serif;
    --font-family-2: 'Poppins', sans-serif;
    --page-max-width: 1920px;
    --container-padding: 80px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --fancybox-opacity: 0.7;
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #295784;
}

.par__text a[data-target='explore'] {
    display: block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid var(--accent-color);
    text-align: center;
    width: 200px;
    font-weight: 500;
    color: var(--accent-color);
    transition: 0.3s ease;
}

.par__text a[data-target='explore']:hover {
    border-color: var(--accent-color);
    color: #fff;
    background-color: var(--accent-color);
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

body {
    margin: 0;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-size: 16px;
    line-height: 150%;
}

.site-container {
    min-height: 400px;
}

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

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

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* || HEADER start|| */
.hc-nav-trigger {
    position: relative;
    display: none;
    padding: 0;
    margin-left: auto;
    margin-right: 5%;
    margin-bottom: 5px;
}

.hc-offcanvas-nav .nav-item input[type='text'] {
    padding: 10px 15px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
    background-color: #fff;
    color: #000;
}
.header.header--accent {
    background-color: #16312c;
}
.header.header--scrolled .header__logo {
    padding: 5px 0;
}

.header.header--scrolled .header__layout-inner {
    row-gap: 0;
}
.header__layout {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding) 0 var(--container-padding);
    transition: 0.3s ease;
}
.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: auto;
    transition: 0.3s ease;
}
.header__logo img {
    max-width: 400px;
}
@media (max-width: 550px) {
    .header__logo img {
        max-width: 280px;
    }
}
.header__menu-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
}
.header__menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    color: #000;
}
.header__menu-submenu {
    display: none;
    row-gap: 15px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    padding: 30px;
    /* background: var(--accent-color); */
    background: #fff;
    list-style: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: 8px solid var(--accent-color);
    transition: 0.3s ease;
}
.header__menu-submenu li {
    width: 100%;
    display: flex;
    align-items: center;
}
.header__menu-submenu a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 5px;

    background-image: linear-gradient(to right, #000, #000 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.header__menu-submenu a:before {
    content: '';
    background: var(--accent-color);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.header__menu-submenu a:hover {
    background-position: 0;
}

.header__menu-submenu a:hover::before {
    width: 100%;
}

.header__menu-submenu a span {
    display: block;
    /* margin-bottom: 15px; */
}
.header__menu-submenu__image {
    display: none;
    overflow: hidden;
}

.header__menu-submenu a img {
    display: block;
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 2s ease;
}
.header__menu-submenu a:hover img {
    transform: scale(1.1);
}
.header__menu-item {
    position: relative;
}
.header__menu-item:hover .header__menu-submenu {
    display: flex;
    flex-direction: column;

    column-gap: 20px;

    opacity: 1;
}
@media (max-width: 1250px) {
    .header__menu-item {
        display: none;
    }
}
.header__menu-item.header__menu-item-inq {
    display: block;
}
.header__menu-item-mobile {
    display: none;
    margin: auto 0;
}
@media (max-width: 1250px) {
    .header__menu-item-mobile {
        display: block;
    }
}
.header__menu-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 10px 15px;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1;
    color: #000;
    transition: 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.header__menu-link:not(.header__menu-link--accent):before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: var(--accent-color);
    height: 2px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.header__menu-link:not(.header__menu-link--accent):hover:before {
    left: 0;
    right: 0;
}
.header__menu-link.header__menu-link--active {
    font-weight: 600;
    color: var(--accent-color);
}
.header__menu-link.header__menu-link--active.header__menu-link--accent {
    display: block;
    border: 1px solid #363636;
    border-radius: 25px;
    padding: 10px 10px;
    background-color: transparent;
    text-align: center;
    position: relative;
    font-size: 11pt;
    color: #393334;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(270deg, rgba(75, 22, 30, 0.8), rgba(116, 20, 20, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.3em;
    color: #212121;
}
.header__menu-link.header__menu-link--active.header__menu-link--accent:hover {
    color: #fff;
    border: 1px solid rgba(223, 190, 106, 0);
    color: white;
    background-position: 99% 50%;
    box-shadow: 0px 6px 1.66px 0.34px rgba(24, 16, 16, 0.17);
}
.header__menu-link.header__menu-link--accent:hover {
    color: #fff;
    background-color: var(--accent-color);
}
.header__menu-button {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    background-color: var(--accent-color-2);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    white-space: nowrap;
    transition: 0.3s ease;
    min-width: 50px;
    cursor: pointer;
}
.header__menu-button img {
    display: none;
    width: 20px;
    height: 20px;
}
@media (max-width: 1450px) {
    .header__menu-button img {
        display: block;
    }
}
@media (max-width: 1450px) {
    .header__menu-button {
        margin-left: 10px;
    }
    .header__menu-button span {
        display: none;
    }
}
.header__menu-button:hover {
    background-color: var(--accent-color);
}
@media (max-width: 1500px) {
    .header__menu {
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}
@media (max-width: 1280px) {
    .header__menu-link {
        font-size: 14px;
        -moz-column-gap: 2px;
        column-gap: 2px;
        padding: 7px 5px;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
        overflow: visible;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
        overflow: visible;
    }
}
@-webkit-keyframes fade-in-center {
    0% {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
        max-height: 1000px;
        overflow: visible;
    }
}
@keyframes fade-in-center {
    0% {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
        max-height: 1000px;
        overflow: visible;
    }
}
/* || HEADER end || */
.footer-magnum {
    width: 100%;
    padding: 25px 0;
    background-color: #e1e1e1;
    border-bottom: 3px solid var(--accent-color);
}

.wp {
    width: auto;
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}

.footer-magnum A:link,
.footer-magnum A:visited {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: #393939;
}

.fm-logo {
    width: 175px;
    align-self: center;
}

.fm-txt {
    width: calc(100% - 400px);
    padding: 0 25px;
    align-self: center;
}

.fm-txt font {
    font-size: 14pt;
}

.fm-more {
    width: 150px;
    align-self: center;
    border-radius: 5px;
    padding: 10px 0;
    background: transparent;
    text-align: center;
    font-size: 10pt;
    color: #393334;
    border-radius: 25px;
    border: 1px solid #212121;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.footer-magnum A .fm-more:hover {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    box-shadow: 0px 6px 1.66px 0.34px rgba(24, 16, 16, 0.17);
    transform: translateY(-10px);
}

.footer {
    background-color: var(--accent-background-color);
}

.footer-addr {
    background-color: #fff;
    border-top: 1px solid #9999994b;
    display: flex;
    justify-content: center;
    row-gap: 15px;
    padding-top: 35px;
    padding-bottom: 20px;
}

.fa-block {
    width: 235px;
    padding-left: 50px;
    margin-top: 10px;
}

.fa-block label {
    display: block;
    padding-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--font-family-2);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.fa-block div {
    line-height: 150%;
}

.fa-addr {
    background: url(/img/icons/vice-pin.svg) left top no-repeat;
    font-size: 10pt;
    width: 350px;
}

.fa-fax {
    margin-left: 70px;
    background: url(/img/icons/vice-phone.svg) left top no-repeat;
}

.fa-phone {
    background: url(/img/icons/vice-phone.svg) left top no-repeat;
}

.footer-cnt {
    display: flex;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    padding: 45px 0;
}

.footer-cnt.wp {
    max-width: var(--page-max-width);
    padding: 45px var(--container-padding);
}

.ft-logo {
    width: 350px;
    flex: 0 1 250px;
}

.ft-logo-img {
    width: auto;
    max-width: 265px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.ft-logo-img > a,
.ft-logo-img > p {
    max-width: 240px;
    padding-left: 35px;
    padding-top: 20px;
}

.ft-logo-img > div {
    max-width: 400px;
    padding-left: 0;
    padding-top: 20px;
}

.ft-logo-txt {
    padding: 10px 0 0 75px;
    line-height: 150%;
    font-size: 12pt;
}

.ft-inner {
    display: inline-block;
    /* padding-right: 45px; */
}
.ft-inner li {
    list-style: none;
}

.ft-inner > div,
.ft-inner > li {
    padding-top: 5px;
}

.ft-links {
    padding-top: 20px;
}

.ft-links label {
    font-family: var(--font-family-2);
    display: block;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.ft-links A:link,
.ft-links A:visited {
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    color: #000;
}

.ft-links A:hover {
    color: var(--accent-color);
}

.ft-company {
    /* width: 280px; */
    padding-left: 96px;
}

.ft-industries {
    /* width: 210px; */
    padding-left: 96px;
}

.ft-solutions {
    /* width: 210px; */
    padding-left: 96px;
}

@media screen and (max-width: 1435px) {
    .ft-industries,
    .ft-solutions,
    .ft-company {
        padding-left: 40px;
    }
}

.footer-bottom-wp {
    /* background-color: #0b0f2c; */
    background-color: var(--accent-color);
}

.footer-bottom {
    width: 90%;
    padding: 15px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    color: #fff;
    font-size: 8pt;
}

.footer-bottom A:link,
.footer-bottom A:visited {
    color: #fff;
    font-size: 8pt;
    text-decoration: none;
}

.footer-bottom A:hover {
    text-decoration: underline;
}

/* @media screen and (max-width: 1435px) {
    .ft-inner {
        padding-right: 20px;
    }
}
@media screen and (max-width: 1300px) {
    .ft-company {
        width: 240px;
        padding-left: 45px;
    }

    .ft-industries {
        width: 170px;
    }
} */
@media screen and (max-width: 1175px) {
    .ft-industries,
    .ft-solutions {
        display: none;
    }

    .tm-link:link,
    .tm-link:visited {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 1135px) {
    .fm-logo {
        display: none;
    }

    .fm-more {
        width: 125px;
    }

    .fm-txt {
        width: calc(100% - 175px);
    }

    .footer-cnt {
        justify-content: flex-start;
        padding-left: 25px;
    }
}
@media screen and (max-width: 1030px) {
    .footer-addr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 20px 10%;
    }

    .fa-addr,
    .fa-phone {
        /* margin-left: 25px; */
        /* width: calc(100% - 75px); */
    }

    .fa-fax {
        margin-left: 25px;
    }
}
@media screen and (max-width: 700px) {
    .footer-addr {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 795px) {
    .ft-company {
        display: none;
    }

    .footer-cnt {
        justify-content: flex-start;
        padding-left: 20px;
    }
}
@media screen and (max-width: 620px) {
    .fa-fax,
    .fa-phone {
        /* margin-left: 25px; */
        width: calc(100% - 75px);
    }
    .fa-addr {
        width: 100%;
    }

    .fm-txt {
        width: 100%;
        padding: 0 0 10px;
        text-align: center;
    }

    .footer-cnt {
        padding-right: 20px;
    }

    .footer-magnum A:link,
    .footer-magnum A:visited {
        justify-content: center;
    }
}
.home-swiper .swiper-button-next,
.home-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--accent-color);
    --swiper-navigation-size: 30px;
    transition: 0.3s ease;
}
.home-swiper .swiper-button-next:hover,
.home-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 650px) {
    .home-swiper .swiper-button-next,
    .home-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        --swiper-navigation-size: 20px;
    }
}
.home-swiper .swiper-wrapper {
    height: 100%;
}
.home-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 700px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* padding-bottom: 100px; */
}
.home-swiper .swiper-slide__content {
    width: 50%;
    /* background-color: #00000038; */
    /* -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px); */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
    padding: 50px 50px 50px 130px;
}
.swiper-links {
    display: flex;
    justify-content: center;
    row-gap: 15px;
    column-gap: 15px;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}
.swiper-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 370px;
    width: 100%;
    text-align: center;
    padding: 20px;
    border: 3px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.swiper-links a:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 950px) {
    .swiper-links a {
        font-size: 16px;
        padding: 10px;
    }
    .home-swiper .swiper-slide__content {
        width: 100%;
    }
}
@media (max-width: 650px) {
    .home-swiper .swiper-slide__content {
        padding: 50px 60px;
    }
}
.home-swiper .swiper-slide__title {
    line-height: 100%;
    padding-bottom: 20px;
    font-family: var(--font-family-1);
    font-size: clamp(30px, 5vw, 75px);
    font-weight: bold;
    letter-spacing: -3.717px;
}
@media (max-width: 950px) {
    .home-swiper .swiper-slide__title {
        letter-spacing: 0;
    }
}
.home-swiper .swiper-slide__subtitle {
    font-size: 16px;
}
.home-swiper .swiper-slide__link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    zoom: 1;
    vertical-align: top;
    color: #fff;
    text-decoration: underline;
    padding: 10px;
    font-size: 18pt;
    letter-spacing: 3.6px;
    cursor: hand;
    text-transform: uppercase;
    transition: 0.2s ease all;
    /* background-color: #ff6a17; */
    border-radius: 6px;
}
@media (max-width: 950px) {
    .home-swiper .swiper-slide__link {
        font-size: 16pt;
        padding: 15px;
    }
}
.home-swiper .swiper-slide__link:hover {
    transform: scaleX(1);
    background-color: var(--accent-color);
    color: #fff;
}
.home-swiper .swiper-slide__link:hover::before {
    opacity: 1;
    background-color: #6098ff;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
}
@media (max-width: 950px) {
    .home-swiper .swiper-slide {
        min-height: 400px;
    }
}

.home-welcome {
    background-color: var(--accent-background-color);
    text-align: center;
}

.home-welcome__title {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    color: #000;
    font-family: var(--font-family-2);
    font-size: clamp(30px, 3vw, 48px);
}

.home-welcome__text {
    margin: 20px auto 0 auto;
    max-width: 1000px;
    font-size: 20px;
    line-height: 150%;
}
@media (max-width: 950px) {
    .home-welcome__text {
        font-size: 16px;
    }
}

.tabs {
}
.tabs-home__main {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0 10px 0;
}

.tabs-home__main .js-tabsTrigger,
.tabs-home__main A:link,
.tabs-home__main A:visited {
    text-decoration: none;
    color: #000;
    padding: 5px 35px;
    letter-spacing: 4.4px;
    font-size: 14pt;
    cursor: pointer;
    position: relative;
}

.tabs-home__main .js-tabsTrigger:not(:first-child) {
    border-left: 1px solid #979696;
}

.tabs-home__main .js-tabsTrigger,
.tabs-home__main A:link,
.tabs-home__main A:visited {
    font-size: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
}
@media (max-width: 700px) {
    .tabs {
        flex-direction: column;
    }
    .tabs .js-tabsTrigger,
    .tabs-home A:link,
    .tabs-home A:visited {
        width: 100%;
    }
}

.tabs .js-tabsTrigger.selected,
.tabs A.selected:link,
.tabs A.selected:visited {
    color: var(--accent-color);
    font-weight: bold;
}

.tabs__submenu {
    list-style: none;
    display: flex;
    justify-content: center;
    column-gap: 30px;
    width: 100%;
    padding: 20px;
    margin: 0;
    z-index: 3;
}

@media (max-width: 700px) {
    .tabs__submenu {
        flex-direction: column;
        align-items: center;
        row-gap: 15px;
    }
}

.tabs__submenu li {
    margin: 0 10px;
}

.tabs__submenu button {
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    padding: 10px;
    transition: 0.3s ease;
    border: 1px solid var(--accent-color);
}
.tabs__submenu button:hover {
    color: var(--accent-color);
    background: #fff;
    border: 1px solid var(--accent-color);
}

.tabs__submenu button.selected {
    background: var(--accent-background-color);
    font-weight: bold;
    color: #000;
}

.hvr-shutter-out-horizontal {
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
    transform: scaleX(1);
}

.tabs-cnt {
    display: none;
    padding: 10px 0 30px;
}

.tabs-wp {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    --swiper-pagination-color: var(--accent-color);
}
.tabs-content-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 30px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabs-swiper .swiper-slide {
    height: auto;
}

.thumb:link,
.thumb:visited {
    position: relative;
    z-index: 1;
    text-align: center;
    box-sizing: border-box;
    /* width: calc(20% - 40px); */
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    flex: 1 0 30%;
    min-width: 250px;
    max-width: 500px;
}

.thumb img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 13/9;
}

.thumb-info {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 3;
    width: 90%;
    padding: 0 5%;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 2px #969696;
    transition: 0.3s ease-in-out;
}

.thumb:hover .thumb-info {
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

.hvr-shutter-out-vertical {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    background: var(--accent-background-color);
    transition-property: color;
    transition-duration: 0.3s;
}

/* .hvr-shutter-out-vertical:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(141, 29, 29, 0.6);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-shutter-out-vertical:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
} */
.thumb-info span {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.thumb-orig {
    position: relative;
    z-index: 1;
}

.thumb-hovered {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: opacity 0.3s ease-in;
}

.thumb-ttl {
    font-size: 15pt;
    font-weight: 300;
}

.thumb-txt {
    padding-top: 15px;
    font-size: 11pt;
    font-weight: 300;
}

.thumb-more {
    width: auto;
    max-width: 150px;
    margin: 20px auto 0;
    padding-top: 10px;
    border-top: 1px solid #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 10pt;
}

/* .thumb-ttl-main {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 90%;
    padding: 10px 5%;
    text-align: left;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-size: 13pt;
    font-weight: 300;
} */
.thumb-content {
    padding: 20px;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
}

.thumb-ttl-main {
    padding: 10px 5%;
    text-align: center;
    color: #000;
    transition: 0.3s ease-in-out;
    font-size: clamp(16px, 2vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    /* 26.4px */
    text-transform: uppercase;
}

.project-thumbs-block .thumb-ttl-main {
    background: url(../images/thumb-arr.png) right center no-repeat rgba(0, 0, 0, 0.8);
    width: calc(95% - 60px);
    padding: 10px 60px 10px 5%;
}

.thumb-fake-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin: 10px auto 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    background-color: #fff;
    width: fit-content;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 10px 30px;
    transition: 0.3s ease;
}
@media (max-width: 768px) {
    .thumb-fake-link {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.thumb:hover .thumb-fake-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.home-banner {
    /* background-image: linear-gradient(-45deg, #e70000 0%, var(--accent-color) 5%, var(--accent-color) 51%, #c70000 100%); */
    /* background-size: 300% 300%;
    animation: AnimateBG 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite; */
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

@-webkit-keyframes AnimateBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes AnimateBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#special-popup {
    padding: 20px;
}
.special-popup {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background-color: #fff;
    max-width: 800px;
    width: 100%;
}
.special-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px 20px 40px;
}
.special-popup__title {
    color: var(--accent-color, #8f0000);
    font-family: var(--font-family-2);
    font-size: clamp(33px, 3vw, 48px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 100% */
    text-transform: uppercase;
}
.special-popup__subtitle {
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.special-popup__link {
    transition: 0.3s ease;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    white-space: nowrap;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: uppercase;

    width: fit-content;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 30px;
    padding: 30px;
    border-radius: 6px;
    background-color: var(--accent-color);
}
.special-popup__link:hover {
    background-color: #af0a0a;
}
.special-popup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .special-popup {
        grid-template-columns: 1fr;
        position: relative;
    }
    .special-popup__content {
        padding: 50px 20px;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0.545);
        align-items: center;
    }
    .special-popup__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
}

.home-banner .container {
    background-image: url(/img/backgrounds/wf_banner-bg-1.png);
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    -moz-column-gap: 230px;
    column-gap: 230px;
    padding: 55px var(--container-padding) 55px 350px;
}
.home-banner .container > div {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}
.home-banner .container > a {
    transition: 0.3s ease;
    position: relative;
    background-color: #fff;
    color: var(--accent-color);
    border-radius: 6px;
}
.home-banner .container > a span {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    color: var(--accent-color);
    font-size: 18px;
    font-style: normal;
    white-space: nowrap;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 30px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--accent-color);
}
.home-banner .container > a::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    height: 100%;
    width: 100%;
    background: var(--accent-color);
    border-radius: 12px;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: 0;
}
@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.3, 1.5, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.3, 1.5, 1);
    }
}
.home-banner .container > a:hover span {
    background-color: var(--accent-color);
    color: #fff;
}
@media (max-width: 1600px) {
    .home-banner .container {
        padding: 25px var(--container-padding) 35px var(--container-padding);
        -moz-column-gap: 100px;
        column-gap: 100px;
    }
}
@media (max-width: 800px) {
    .home-banner .container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.home-banner__title {
    font-family: var(--font-family-2);
    font-size: clamp(22px, 4vw, 48px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.home-banner__subtitle {
    font-size: clamp(16px, 4vw, 26px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-about .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
@media (max-width: 950px) {
    .home-about .container {
        grid-template-columns: 1fr;
    }
    .home-about .container .home-about__image {
        order: 2;
    }
}
.home-about__text p {
    font-size: 18px;
}
@media (max-width: 950px) {
    .home-about__text p {
        font-size: 16px;
    }
}
.home-about__title {
    position: relative;
    display: inline-block;
    font-family: var(--font-family-2);
    zoom: 1;
    vertical-align: top;
    padding: 10px 0 5px 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 3vw, 30px);
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    color: #212121;
}

.home-iso {
    width: 100%;
    background: url(/img/backgrounds/ah_home-iso-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hiso-sh {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: rgba(141, 29, 29, 0.5); */
    background: rgba(255, 255, 255, 0.8);
}

.hiso-wp {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 35px 0;
}

.hiso-wp div {
    width: auto;
    max-width: 460px;
    padding: 0 10px;
}

.inquire {
    width: 181px;
    align-self: center;
    font-family: Verdana;
    font-size: 9pt;
}

.inquire-link:link,
.inquire-link:visited {
    display: block;
    border: 1px solid #363636;
    border-radius: 25px;
    padding: 10px 10px;
    background-color: transparent;
    text-align: center;
    position: relative;
    font-size: 11pt;
    color: #393334;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(270deg, rgba(75, 22, 30, 0.8), rgba(116, 20, 20, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.3em;
    color: #212121;
}

.inquire-link:hover {
    color: #fff;
    border: 2px solid rgba(223, 190, 106, 0);
    color: white;
    background-position: 99% 50%;
    box-shadow: 0px 6px 1.66px 0.34px rgba(24, 16, 16, 0.17);
}

#fade {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 9999;
}

#quote {
    display: none;
    pointer-events: none;
    background-color: transparent;
}

.quote-popup-wp {
    width: auto;
    max-width: 700px;
    _width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 2px solid #4c4c4c;
    background-color: #fff;
    padding-bottom: 0px;
    border-radius: 30px;
    pointer-events: all;
    font-size: 12pt;
    font-family: 'Oswald', sans-serif;
}

.quote-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.quote-close A:link,
.quote-close A:visited {
    display: block;
    width: 10px;
    height: 10px;
    background: url(../images/close.png) no-repeat;
}

.quote-lbl {
    font-family: 'Oswald', sans-serif;
    padding: 15px 20px;
    background-color: var(--accent-color);
    -webkit-border-top-left-radius: 25px;
    -webkit-border-top-right-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-topright: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    color: #fff;
    font-size: 24pt;
}

.qf-lbl {
    padding: 20px 0 0 5%;
    font-size: 14pt;
    letter-spacing: 1px;
    font-family: var(--font-family-2);
}

.sb-popup-txt {
    padding: 10px 5%;
}

.qf-item {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    width: 45%;
    padding-left: 5%;
    padding-top: 10px;
}

.qf-item fieldset {
    border: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.qf-item fieldset label {
    display: flex;
    column-gap: 5px;
}
.qf-item fieldset input {
    width: initial;
}

.qf-product,
.qf-apply,
.qf-equipment {
    display: none;
}

.q-input {
    width: 90%;
    padding: 8px 5%;
    background-color: #fff;
    border: 1px solid #dfe3e9;
    border-radius: 25px;
    font-size: 10pt;
    font-family: 'Roboto', sans-serif;
}

.q-input:focus {
    border: 2px solid #61161c;
    border-radius: 25px;
}

.qf-area {
    width: 90%;
    padding: 10px 0 0 5%;
}

.qf-area textarea {
    width: 100%;
    padding: 5px 2%;
    height: 100px;
    resize: none;
    background-color: #fff;
    border: 1px solid #dfe3e9;
    border-radius: 25px;
    font-size: 10pt;
    font-family: 'Roboto', sans-serif;
}

.qf-security {
    padding: 20px 10% 15px 0;
    margin-top: 30px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: flex-end;
    color: #fff;
    -moz-border-radius-bottomleft: 25px;
    -moz-border-radius-bottomright: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.qf-security div {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
}

.qfc-lbl {
    padding-top: 12px;
}

.qfc-input {
    padding: 0 15px;
}

.qfc-input input {
    width: 50px;
    padding: 10px 10px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #dfe3e9;
    border-radius: 25px;
    font-size: 14pt;
    font-family: 'Roboto', sans-serif;
}

.qfc-btn button,
.qfc-btn button {
    display: block;
    padding: 10px 35px;
    text-align: center;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 12pt;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(270deg, #356da6, #295784, rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    text-decoration: none;
    border: 2px solid #757575;
    cursor: pointer;
}

.qfc-btn button:hover {
    color: #fff;
    border: 2px solid rgba(223, 190, 106, 0);
    background-position: 99% 50%;
    box-shadow: 0px 6px 1.66px 0.34px rgba(24, 16, 16, 0.17);
}

.qfc-btn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sending.gif) center center no-repeat #fff;
    cursor: default;
    border-radius: 25px;
}

.qf-err {
    display: none;
    position: absolute;
    left: 50%;
    top: 30%;
    width: 300px;
    padding: 10px;
    margin-left: -160px;
    background-color: #fff;
    font-size: 8pt;
}

.qf-wrong {
    border: 3px solid #ff0000;
}

.qf-wrong A:link,
.qf-wrong A:visited {
    font-size: 8pt;
}

.qf-right {
    border: 3px solid #0f4771;
}

.qf-error span {
    display: block;
    padding-bottom: 10px;
    font-weight: bold;
}

.qf-error div {
    color: #ff0000;
    padding-top: 3px;
}

.qf-close {
    text-align: center;
    padding: 10px 0;
}

.qf-close A:link,
.qf-close A:visited {
    font-family: Verdana;
    font-size: 8pt;
}

.qf_done {
    text-align: center;
    color: #1b93ec;
    line-height: 150%;
    font-size: 8pt;
}

@media screen and (max-width: 1435px) {
    .inquire {
        width: 100px;
    }

    .inquire-link:link,
    .inquire-link:visited {
        border-radius: 25px;
        padding: 10px 10px;
        position: relative;
        font-size: 8pt;
    }
}
@media screen and (max-width: 1135px) {
    .inquire {
        margin-right: 62px;
    }
}
@media screen and (max-width: 640px) {
    .quote-popup-wp {
        width: auto;
        max-width: 300px;
        _width: 300px;
    }

    .qf-item {
        width: 90%;
    }

    .qf-area textarea {
        width: 95%;
    }

    .qf-security {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .qfc-lbl div {
        display: none;
    }
}
@media screen and (max-width: 540px) {
    .inquire {
        margin-right: 20px;
    }
}
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 180px; */
    min-height: 180px;
    position: relative;
    z-index: 1;
    padding: 40px 5%;
}

.banner-sh {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.banner-ttl {
    position: relative;
    z-index: 2;
    align-self: center;
    text-align: center;
    color: #000;
    font-family: var(--font-family-2);
    font-size: clamp(28px, 3vw, 36px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -1.44px;

    padding-bottom: 50px;
}
.banner-ttl:before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 155px;
    max-width: 100px;
    border: 3px solid var(--accent-color);
    margin: auto;
    margin-top: 0.5em;
}

.banner .banner__links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-top: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 20px;
}

@media (max-width: 768px) {
    .banner .banner__links {
        row-gap: 5px;
    }
}

.banner .banner__link {
    font-weight: 500;
    font-size: clamp(14px, 1vw, 20px);
    color: #333;
    border: 1px solid #979696;
    padding: 10px;
    transition: 0.3s ease;
    text-decoration: none;
    text-align: center;
    /* backdrop-filter: blur(6px); */
    /* background-color: #fff; */
    backdrop-filter: blur(4px);
}

.banner .banner__link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.banner .banner__link.banner__link--active {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 800;
    border: 1px solid var(--accent-color);
}

.banner .banner__link.banner__link--active:hover {
    color: var(--accent-color);
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .banner .banner__link {
        width: 100%;
    }
}
.breadcrumbs-wp {
    border-bottom: 1px solid #dddddd;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    padding-top: 10px;
}

.breadcrumbs-link,
.breadcrumbs-arr,
.breadcrumbs-ttl,
.breadcrumbs-dis {
    align-self: center;
    padding-top: 10px;
    font-weight: bold;
}
.breadcrumbs-ttl.regular {
    font-weight: normal;
    color: #4f4f4f;
}

.breadcrumbs-link:link,
.breadcrumbs-link:visited {
    text-decoration: none;
    color: #4f4f4f;
    font-size: 9pt;
    font-weight: 400;
}

.breadcrumbs-dis {
    color: #949494;
    font-size: 9pt;
}

.breadcrumbs-link:hover {
    text-decoration: none;
}

.breadcrumbs-ttl {
    color: #000;
    font-size: 9pt;
}

.breadcrumbs-arr {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1;
}

.industries__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}
.industries__head-layout {
    display: flex;
}

.industries__head-title {
    color: #000;
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.industries__head-text {
    font-size: 20px;
}
@media (max-width: 950px) {
    .industries__head-text {
        font-size: 16px;
    }
}

.industries__head-text ul {
    padding-left: 30px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    padding: 25px 0;
}

.industries__head-text ul li {
    list-style: none !important;
    font-weight: 500;
    position: relative;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.4px;
    color: #000000;
    padding-left: 35px;
    margin-bottom: 15px;
}

.industries__head-text ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    z-index: 1;
}

@media screen and (max-width: 950px) {
    .industries__head-text ul {
        grid-template-columns: 1fr;
    }

    .industries__head-text ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .industries__head-text ul li::before {
        top: 3px;
    }
}

.industries__head .product-layout__info-actions {
    border-left: 1px solid #c1c1c1;
    margin-left: 10%;
    padding-left: 10%;
}
.industries__head .product-layout__info-actions a,
.industries__head .product-layout__info-actions button {
    width: 100%;
    max-width: 250px;
}
@media (max-width: 950px) {
    .industries__head-layout {
        flex-direction: column;
        row-gap: 30px;
    }
    .industries__head .product-layout__info-actions {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        flex-direction: row;
    }
}

.industries__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* display: flex;
    flex-wrap: wrap; */
    row-gap: 30px;
    -moz-column-gap: 45px;
    column-gap: 45px;
    /* max-width: 1065px; */
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .industries__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1150px) {
    .industries__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media (max-width: 1000px) {
    .industries__layout {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .industries__layout {
        grid-template-columns: 100%;
    }
}

/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}

.par .par__txt ol {
    padding-left: 30px;
}
.par .par__txt ol li {
    padding-left: 0;
}

.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt p {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
    color: #fff;
    border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
    background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par.par--bottom-margin {
    margin-bottom: 50px;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt ul:not(.styled-list) {
    list-style: none !important;
    padding-left: 30px;
}
.par__txt ul li {
    list-style: none !important;
}
.par__txt ul:not(.styled-list) li {
    font-weight: 400;
    position: relative;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.4px;
    color: #000000;
    padding-left: 35px;
    margin-bottom: 25px;
}
.par__txt ul:not(.styled-list) li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    z-index: 1;
}
@media screen and (max-width: 950px) {
    .par__txt ul:not(.styled-list) li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .par__txt ul:not(.styled-list) li::before {
        top: 3px;
    }
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    padding: 0 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
}
.par__txt-footer__item {
    text-transform: uppercase;
    font-size: clamp(12px, 1vw, 18px);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item a {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item svg {
    color: var(--accent-color-1);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.par__img img {
    /* position: sticky;
    top: 150px; */
    display: block;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    /* position: -webkit-sticky;
    position: sticky;
    top: 200px; */
}
.par__ttl {
    font-weight: 600;
    font-size: clamp(22px, 4vw, 30px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    position: relative;
    color: #000;
    text-transform: uppercase;
}
.par__subttl {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 25px;
}
.par__text > img {
    -o-object-fit: cover;
    object-fit: cover;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    border: 1px solid var(--accent-color-1);
    background-color: var(--accent-color-1);
    padding: 20px 25px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #fff;
    transition: 0.3s ease-in-out;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.par__text-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--color-white);
}
.par__text__brochures {
    padding: 20px 0;
}
.par__text__brochures a {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    color: #000;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
@media (max-width: 950px) {
    .par__text {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-rows: -webkit-max-content 1fr;
        grid-template-rows: max-content 1fr;
        row-gap: 0;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: 'par__img par__txt';
    padding-right: var(--container-padding);
}
@media (max-width: 768px) {
    .par.par--left .par__img,
    .par.par--left .video-wrapper {
        margin-bottom: 5%;
    }
    .par.par--left {
        padding: 0;
        padding-top: 25px;
    }
}
.par.par--left .par__txt {
    padding: 0px 0 50px 5%;
}
@media (max-width: 768px) {
    .par.par--left .par__txt {
        padding: 0 var(--container-padding);
    }
}

.par.par--right {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 'par__txt par__img';
    padding-left: var(--container-padding);
}
@media (max-width: 768px) {
    .par.par--right {
        padding: 0;
    }
    .par.par--right .par__img,
    .par.par--right .video-wrapper {
        margin-bottom: 5%;
    }
}
.par.par--right .par__txt {
    padding: 0px 5% 50px 0;
}
@media (max-width: 768px) {
    .par.par--right .par__txt {
        padding: 0 var(--container-padding);
    }
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt ';
    padding: 0 var(--container-padding);
}
.par.par--center .par__img,
.par.par--center .video-wrapper {
    display: block;
    margin: 0 auto 5% auto;
}
.par.par--center .par__img img,
.par.par--center .video-wrapper img {
    display: block;
    margin: 0 auto;
}
.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
.related-products {
    border-top: 1px solid #dddddd;
    padding-top: 60px;
    padding-bottom: 30px;
    margin-top: 20px;
}
.related-products__title {
    color: #000;
    font-family: Montserrat;
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 45px;
    text-align: center;
}
.related-products__swiper {
    position: relative;
    padding: 0 var(--container-padding);
    --swiper-navigation-color: var(--accent-color);
    --swiper-navigation-sides-offset: 0;
}

.product-thumb {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 20px;
}
.product-thumb__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: auto;
}
.product-thumb__image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-thumb__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
    flex: 1;
}
.product-thumb__title {
    color: #000;
    text-align: center;
    font-size: 18.864px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 20.751px */
}
.product-thumb__descr {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-thumb__fake-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    height: fit-content;
    column-gap: 10px;
    margin: 10px auto 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 10px 30px;
    transition: 0.3s ease;
}
.product-thumb__fake-link:hover {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.solutions__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.solutions__head-title {
    color: #000;
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.solutions__head-text {
    font-size: 20px;
}
@media (max-width: 950px) {
    .solutions__head-text {
        font-size: 16px;
    }
}
.solutions__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    -moz-column-gap: 45px;
    column-gap: 45px;
}
@media (max-width: 1250px) {
    .solutions__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 950px) {
    .solutions__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .solutions__layout .thumb-content {
        padding: 20px 5px;
    }
    .solutions__layout .thumb-ttl-main {
        font-size: 14px;
    }
    .solutions__layout .thumb-fake-link {
        font-size: 14px;
    }
    .solutions__layout .thumb-fake-link svg {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 870px) {
    .solutions__layout {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 550px) {
    .solutions__layout {
        grid-template-columns: 1fr;
    }
}

.history-top__custom {
    margin-top: 40px;
    text-align: center;
    border: 10px solid rgba(143, 0, 0, 0.1);
    padding: 50px 35px;
}
.history-top__custom-title {
    color: var(--accent-color, #8f0000);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 33px */
    margin-bottom: 20px;
}
.history-top__custom-text {
    font-size: 20px;
}
@media (max-width: 950px) {
    .history-top__custom-text {
        font-size: 16px;
    }
}
.history-bottom {
    background-image: url(/img/backgrounds/wf_white-parchment-paper\ 1.png), url(/img/backgrounds/wf_white-parchment-paper\ 2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom;
    padding: 70px 0;
}
.history-bottom__ttl {
    color: var(--accent-color, #8f0000);
    font-family: var(--font-family-2);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact {
    width: auto;
    max-width: 1436px;
    padding: 20px 15px 50px;
    background-color: #fff;
    margin: 0 auto;
}

.contact-wp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-L,
.contact-R {
    width: 47%;
}

.cl-ttl {
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 20pt;
    text-transform: uppercase;
    color: #000;
}

.cl-txt {
    font-size: 12pt;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
}

.contact-form .btn {
    border-radius: 0;
    margin-top: 25px;
}

.contact-form-block {
    width: 45%;
}

.contact-area {
    width: 100%;
    padding-top: 20px;
}

.contact-area textarea {
    width: calc(100%);
    height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    resize: none;
}

.contact-area .ffl-wrapper .ffl-label {
    left: 10px;
}

.contact-area .ffl-wrapper.ffl-floated .ffl-label {
    left: 0;
    top: -5px;
}

.contact-form-block fieldset {
    border: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.contact-form-block fieldset label {
    display: flex;
    column-gap: 5px;
}
.contact-form-block fieldset input {
    width: initial;
}

.cl-submit {
    display: block;
    text-align: center;
    background-color: transparent;
    padding: 15px 15px;
    margin-top: 20px;
    text-decoration: none;
    font-size: 11pt;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.3em;
    color: #212121;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(270deg, rgba(75, 22, 30, 0.8), rgba(116, 20, 20, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    text-decoration: none;
    border: 1px solid #757575;
    cursor: pointer;
}

.cl-submit:hover {
    color: #fff;
    border: 2px solid rgba(223, 190, 106, 0);
    background-position: 99% 50%;
    box-shadow: 0px 6px 1.66px 0.34px rgba(24, 16, 16, 0.17);
}

.cl-submit span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sending.gif) center center no-repeat #fff;
    cursor: default;
    border: 1px solid var(--accent-color);
}

.contact-data-wrapper {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1300px) {
    .contact-data-wrapper {
        flex-direction: column;
    }
}

.contact-data {
    padding-right: 5%;
    float: left;
    line-height: 150%;
    font-size: 12pt;
    padding-left: 45px;
}

.contact-data tr > td:first-of-type {
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    padding-right: 15px;
}

.contact-data label {
    display: block;
    padding: 12px 0 15px;
    color: #000;
    font-size: 18pt;
    font-weight: 500;
    /* padding-left: 45px; */
    position: relative;
}
.contact-data label::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 40%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}
.contact-data label.pin::before {
    background-image: url(/img/icons/vice-pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.contact-data label.phone::before {
    background-image: url(/img/icons/vice-phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-map {
    clear: left;
    width: 100%;
    padding-top: 30px;
}

#msg {
    width: 100%;
    position: relative;
    z-index: 100;
}

.form-thanks {
    padding: 30px 0 10px;
    margin: 0 50px 10px;
    border-bottom: 1px solid #007b9a;
    text-align: center;
    color: #007b9a;
    font-size: 10pt;
}

@media only screen and (max-width: 1010px) {
    .contact-form-block {
        width: 100%;
    }

    .contact-L {
        width: 40%;
    }

    .contact-R {
        width: 55%;
    }
}
@media only screen and (max-width: 750px) {
    .contact-L {
        width: 100%;
        order: 2;
        padding-top: 20px;
    }

    .contact-R {
        width: 100%;
        order: 1;
    }
}
@media only screen and (max-width: 450px) {
    .contact-data {
        width: 100%;
        padding-right: 0;
    }

    .contact-data:nth-child(2) {
        padding-top: 20px;
    }
}
.equipment-layout .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 45px;
}
.equipment-layout .container .thumb-fake-link {
    background-color: #fff;
    color: var(--accent-color);
}
.equipment-layout .container .thumb-fake-link:hover {
    color: #fff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
@media (max-width: 1400px) {
    .equipment-layout .container {
        grid-gap: 20px;
    }
}
@media (max-width: 1150px) {
    .equipment-layout .container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .equipment-layout .container {
        grid-template-columns: 1fr;
    }
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
}
.equipment-list__title {
    grid-column: 1/-1;
    color: #000;
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
@media (max-width: 1150px) {
    .equipment-list {
        grid-template-columns: repeat(2, 1fr);
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
}

.equipment-item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-layout {
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}
.product-layout__info {
    display: grid;
    grid-template-columns: 1fr 50%;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 1350px) {
    .product-layout__info {
        display: flex;
        flex-direction: column;
        row-gap: 30px;
    }
}

.product-layout #productCarousel {
    border: 1px solid #c1c1c1;
}

.product-layout #productCarousel,
.product-layout .f-thumbs.is-classic,
.product-layout .fancybox__toolbar,
.product-layout .fancybox__nav {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border-radius: 4px;
    --f-button-color: #0d0c22;
    --f-button-hover-color: var(--f-brand-color);
    --f-button-bg: #f1f5f9;
    --f-button-hover-bg: #e2e8f0;
    --f-button-active-bg: #e2e8f0;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 2.25;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.2;
}
.product-layout .f-carousel__slide {
    display: flex;
    align-items: center;
    justify-items: center;
    /* max-height: 400px; */
}
.product-layout .f-carousel__slide img {
    display: block;
    object-fit: contain;
    max-width: 100%;
    height: 100%;
    max-height: 500px;
}
.product-layout .f-thumbs.is-classic {
    --f-thumb-width: 120px;
    --f-thumb-height: 80px;
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: var(--f-brand-color);
    --f-button-next-pos: 8px;
    --f-button-prev-pos: 8px;
}
.product-layout .f-thumbs.is-classic .f-thumbs__slide.is-nav-selected {
    border: 3px solid var(--accent-color);
}
.product-layout .f-thumbs.is-classic.is-horizontal {
    padding: 0 56px;
}
.product-layout .f-thumbs.is-classic.is-vertical {
    padding: 56px 0;
}
.product-layout #productCarousel .f-carousel__nav {
    opacity: 0;
    transition: opacity 0.15s;
}
@media (hover: hover) {
    .product-layout #productCarousel:hover .f-carousel__nav {
        opacity: 1;
    }
}
.product-layout .fancybox__container {
    --fancybox-bg: #fff;
    --fancybox-color: #6a6969;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
}
@media screen and (min-width: 640px) {
    .product-layout .fancybox__container {
        flex-direction: row-reverse;
    }
}
.product-layout .fancybox__thumbs.is-classic.is-horizontal {
    --f-thumb-width: 75px;
    --f-thumb-height: 55px;
    --f-thumb-gap: 8px;
}
.product-layout .fancybox__thumbs.is-classic.is-vertical {
    --f-thumb-width: 100%;
    --f-thumb-height: 100px;
    width: 182px;
    outline: 1px solid #edeef0;
}
.product-layout .fancybox__thumbs.is-classic.is-vertical .f-thumbs__track {
    padding: 0 16px;
}
.product-layout .fancybox__toolbar {
    padding: 8px;
}
.product-layout .fancybox__nav {
    --f-button-next-pos: 8px;
    --f-button-prev-pos: 8px;
}
.product-layout .fancybox__slide {
    padding: 8px;
}

@media screen and (max-width: 1500px) {
    .product-layout {
        grid-template-columns: 1fr 430px;
    }
}
.product-layout__gallery {
    max-width: 100%;
    background-color: #fff;
}

.product-layout__gallery-inner {
    width: 100%;
}

.product-layout__info-inner {
    margin-right: auto;
}
.product-layout__info-title {
    margin-bottom: 25px;
}
.product-layout__info-text {
    position: relative;
    margin-bottom: 100px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

.product-layout__info-text ul {
    padding-left: 20px;
    list-style: none;
}
.product-layout__info-text ul li {
    position: relative;
    padding-left: 30px !important;
    list-style: none !important;
    margin: 0 !important;
}

.product-layout__info-text ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
}

.product-layout__info-text__content {
    max-height: 190px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-layout__info-text__button {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    color: #000000;
    position: absolute;
    bottom: -50px;
    left: 0;
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.product-layout__info-text__button.is-open svg {
    transform: rotate(180deg);
}
.product-layout__info-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 25px;
    /* padding-top: 30px; */
}
.product-layout__info-link {
    flex: 1;
    background: #fff;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);

    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.product-layout .product-layout__info-link span {
    text-align: left;
    font-weight: 500;
    /* width: min-content; */
}

.product-layout__info .product-layout__info-link {
    /* border: none; */
    padding: 10px 10px;
}

/* .product-layout .product-layout__info-link svg path {
    stroke: currentColor;
} */
@media (max-width: 500px) {
    .product-layout .product-layout__info-link {
        max-width: 100%;
        font-size: 14px;
        padding: 15px 20px;
    }
}

.product-layout__info-video {
    min-width: 400px;
}
@media (max-width: 500px) {
    .product-layout__info-video {
        min-width: auto;
    }
}

.product-layout .product-layout__info-link:hover {
    color: #fff;
    background-color: var(--accent-color);
    cursor: pointer;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-layout__footer {
    margin-top: 50px;
    padding: 25px;
    border-top: var(--accent-color) 1px solid;
}
.product-layout__footer a {
    color: inherit;
}
.product-layout__footer-grayed {
    color: #979696;
}

.accordion {
    opacity: 0;
}

.accordion-menu__head {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.accordion-menu__head-title {
    color: #000;
    font-family: var(--font-family-2);
    font-size: clamp(16px, 2vw, 26px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.accordion-menu__head-action {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.sade-banner {
    background-color: #fff;
    padding: 30px;
    color: var(--accent-color);
    margin-top: 40px;
    border: 1px solid var(--accent-color);
}
.sade-banner__title {
    color: #000;
    font-family: var(--font-family-2);
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.sade-banner__subtitle {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sade-banner__action {
    display: block;
    color: #000;
    font-family: var(--font-family-2);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--accent-color);
}
.sade-banner__action::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url(/img/svg/wf_phone.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0);
}

.inventory__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}
.inventory__head-title {
    color: #000;
    font-size: clamp(22px, 3vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.inventory__head-text {
    font-size: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
@media (max-width: 950px) {
    .inventory__head-text {
        font-size: 16px;
    }
}
.inventory__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    -moz-column-gap: 45px;
    column-gap: 45px;
}
.inventory__layout .product-thumb__fake-link {
    background-color: #fff;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.inventory__layout .product-thumb__fake-link:hover {
    color: #fff;
    background-color: var(--accent-color);
}
@media (max-width: 1250px) {
    .inventory__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 950px) {
    .inventory__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 550px) {
    .inventory__layout {
        grid-template-columns: 1fr;
    }
}

/* [MAIN CSS START] */
.main-container {
    min-height: 600px;
}

.main-container--margin {
    margin-top: 130px;
}
@media (max-width: 1375px) {
    .main-container--margin {
        margin-top: 80px;
    }
}

.first-padding {
    padding-top: 220px;
}
@media (max-width: 1375px) {
    .first-padding {
        padding-top: 170px;
    }
}

.text-center {
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pa-bottom {
    padding-bottom: 60px;
}

.relative {
    position: relative;
}

.pa-before-footer {
    padding-bottom: 200px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

.bg-accent-2 {
    background-color: var(--accent-background-color-2);
}

.bg-accent-3 {
    background-color: var(--accent-background-color-3);
}

.bg-accent-4 {
    background-color: #005ea610;
}

input.error,
select.error,
textarea.error {
    border-color: var(--input-error-border-color) !important;
    background-color: var(--input-error-background-color) !important;
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.title {
    font-weight: 400;
    font-size: clamp(25px, 4vw, 60px);
    font-weight: 300;
    line-height: 100%;
    line-height: 1;
    position: relative;
    color: #000;
    letter-spacing: -2.4px;
}
.title > span {
    font-weight: 600;
}
.title--center {
    margin: 0 auto;
    text-align: center;
}
.title--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-size: clamp(20px, 2vw, 36px);
    margin-bottom: 5px;
}
.title--accent {
    font-size: clamp(25px, 4vw, 60px);
    font-family: var(--font-family-2);
}
.title--no-margin {
    margin: 0;
    margin-bottom: 10px;
}

.subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 24px);
    margin-bottom: 30px;
}
.subtitle--center {
    margin: 0 auto;
    margin-bottom: 30px;
}

.title-text {
    max-width: 1150px;
    text-align: center;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 130%;
}

.text-section {
    margin-bottom: 40px;
}
.text-section__text {
    text-align: center;
    max-width: 1350px;
    margin: 0 auto;
    line-height: 150%;
}

.fc-accent {
    color: var(--accent-color);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.nowrap {
    white-space: nowrap;
}

.custom-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: 10px;
    transition: 0.3s ease;
}
.custom-link > svg {
    color: var(--accent-color);
    transition: 0.3s ease;
}
.custom-link:hover {
    text-decoration: underline;
    color: var(--accent-color);
}
.custom-link:hover > svg {
    transform: translateX(5px);
}

.btn {
    display: inline-block;
    color: #fff;
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #000;
    box-shadow: 0 0 5px -2px #464646;
}
.btn.btn--small {
    padding: 10px 20px !important;
    font-size: 14px;
    border: 2px solid var(--accent-color);
}
.btn.btn--small:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #000;
}
.btn.added {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff !important;
}
.btn.btn--center {
    margin: 0 auto;
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    transform: translateY(-2px) scale(1.02);
    background: #696767;
    color: #fff;
    border-color: #696767;
}

.btn.btn--light {
    border: 1px solid var(--accent-color-1);
    color: #000;
    background: var(--accent-color-1);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: #d1d4db;
    border: 1px solid #eceef5;
    box-shadow: 0 0 10px -2px #585858;
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
    pointer-events: none;
    color: transparent;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    width: 1em;
    height: 1em;
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: inherit;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
/* [Pretty checkbox adjustments] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border-radius: 3px;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-color) !important;
}
.pretty.p-default input:checked ~ .state label:after {
    background-color: var(--accent-color) !important;
}

.divider {
    border: none;
    border-bottom: 1px solid #979696;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
    width: 100%;
}

.select2.select2-container .select2-choice {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
    border: 1px solid #bdbdbd;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: linear-gradient(#e0e0e0, #e0e0e0);
    width: 28px;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(-135deg);
    transition: 0.3s ease;
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.not-found-page__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 38px);
    color: var(--accent-color-4);
    line-height: 100%;
    margin-bottom: 15px;
    line-height: 100%;
    position: relative;
    color: var(--accent-color);
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

/* [MAIN CSS END] */
/* [TOOLTIPS START] */
.tippy-box {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.tippy-box__image {
    margin-bottom: 15px;
}
.tippy-box__text {
    text-align: center;
}

.tippy-arrow {
    color: #fff;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
    border-width: 14px 0 14px 14px;
    right: -13px;
    filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
    left: -13px;
    border-width: 14px 14px 14px 0;
    filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    border-width: 14px 14px 0;
    bottom: -13px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    border-width: 0 14px 14px;
    top: -13px;
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* [JQUERY ACCORDION START] */
.ui-accordion .ui-accordion-header {
    padding: 15px 30px 15px 20px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    background-color: var(--accent-background-color);
    text-transform: uppercase;
    border-left: 3px solid var(--accent-color);
    transition: 0.2s ease;
}
.ui-accordion .ui-accordion-header::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('/img/icons/wf_accordion.png');
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.2s ease;
}
.ui-accordion a.ui-accordion-header::after {
    display: none;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active::after {
    background-image: url('/img/icons/wf_accordion-active.png');
    filter: invert(1);
}

.ui-widget-content {
    border: 0;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.ui-widget-content ul {
    list-style: none;
}
.ui-widget-content ul li {
    padding: 2px 0;
}
.ui-widget-content ul a {
    transition: 0.3s ease;
}
.ui-widget-content ul a:hover {
    color: var(--accent-color);
}
.ui-widget-content ul a.active {
    font-weight: 600;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0;
    background-color: transparent;
}

.ui-accordion .ui-state-active,
.ui-accordion .ui-widget-content .ui-state-active,
.ui-accordion .ui-widget-header .ui-state-active,
.ui-accordion a.ui-button:active,
.ui-accordion .ui-button:active,
.ui-accordion .ui-button.ui-state-active:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-left: 3px solid var(--accent-color);
    background-color: #fff;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-radius: 0;
}

/* [JQUERY ACCORDION END] */
.styled-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 10px;
}
.styled-list li {
    position: relative;
    padding-left: 45px;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 500;
}
.styled-list li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-image: url(/img/icons/ece_checkmark-red.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
@media only screen and (max-width: 1100px) {
    .styled-list {
        grid-template-columns: 1fr;
    }
    .styled-list li {
        font-size: 16px;
    }
}

.pr-layout {
    display: grid;
    grid-template-columns: 410px 1fr;
}
.pr-layout__aside {
    width: 410px;
    border-right: 1px solid #dddddd;
    padding: 40px 40px 40px 0;
}
@media (max-width: 900px) {
    .pr-layout__aside {
        display: none;
    }
}
.pr-layout__body {
    max-width: 100%;
    overflow: hidden;
    padding: 40px 0 40px 40px;
}
@media (max-width: 900px) {
    .pr-layout__body {
        padding: 40px 0;
    }
}
@media (max-width: 900px) {
    .pr-layout {
        display: block;
    }
}
.floating-link * {
    box-sizing: border-box;
}
.floating-link {
    position: fixed;
    top: 40vh;
    right: -40px;
    z-index: 100;
    transition: 0.3s ease;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
}
.floating-link:hover,
.floating-link.active {
    right: 0;
}
.floating-link:hover .floating-link__content,
.floating-link.active .floating-link__content {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    opacity: 1;
}
.floating-link__item {
    width: fit-content;
    display: grid;
    grid-template-columns: 100px auto;

    background-color: var(--accent-color);
    color: #fff;
    transition: 0.3s ease;
}
.floating-link__icon {
    padding: 20px;
    background-color: #700808;
    max-height: 100px;
}
.floating-link__icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 70px;
    max-height: 70px;
}
.floating-link__content {
    padding: 20px;
    max-height: 100px;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
}
.floating-link__title {
    text-shadow: 0px 3.7158048152923584px 3.7158048152923584px rgba(0, 0, 0, 0.25);
    font-size: 20.437px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.floating-link__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.765px;
    text-transform: uppercase;
}
.floating-link__content span {
    color: #f59292;
    font-size: 18.579px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.765px;
}

@media (max-width: 900px) {
    .floating-link__title {
        font-size: 16px;
    }
    .floating-link__subtitle {
        font-size: 14px;
    }
    .floating-link__content span {
        font-size: 14px;
    }
    .floating-link__content {
        padding: 10px;
        max-height: 80px;
    }
    .floating-link__icon {
        padding: 10px;
        max-height: 80px;
    }
    .floating-link__icon img {
        max-width: 50px;
        max-height: 50px;
    }
}

.news-list.industries__layout {
    column-gap: 15px;
    row-gap: 15px;
}

.news-list .thumb:link,
.news-list .thumb:visited {
    background-color: transparent;
    padding: 0;
}

.news-list .thumb-content {
    padding: 0;
}

.news-list .thumb-ttl-main.thumb-date {
    padding: 3px 10px;
    background-color: #eee;
    width: fit-content;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    margin-top: 10px;
}

.news-list .thumb-ttl-main {
    text-transform: none;
    text-align: left;
    padding: 0;
    margin-top: 20px;
}

.news-single__date {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 10px;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
}

.external-link {
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    margin-left: auto;
    width: fit-content;
    border: 1px solid var(--accent-color);
    transition: 0.2s ease;
}

.external-link:hover {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.external-link svg {
    min-width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .external-link {
        margin-bottom: 20px;
    }
}

.selectBrochurePopup {
    max-width: 650px;
    padding: 45px;
}
.selectBrochurePopup__layout {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.selectBrochurePopup__layout .product-layout__info-link {
    font-weight: 500;
    padding: 10px 15px;
    letter-spacing: 0.1em;
}

.selectBrochurePopup__layout .product-layout__info-link:hover {
    color: #fff;
    background-color: var(--accent-color);
    cursor: pointer;
}
