@charset "UTF-8";
:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #d9282f;
    --accent-color-2: #e84a4f;
    --accent-background-color: #eeeeee;
    --accent-background-color-dark: #979696;
    --spider-color: rgb(217, 40, 47);
    --spider-color-2: #e84a4f;
    --spider-semi-transparent: rgba(217, 40, 47, 0.8);
    --boom-color: #fcb034;
    --boom-color-2: #fec263;
    --boom-semi-transparent: rgba(252, 176, 52, 0.8);
    --crane-color: #00a855;
    --crane-color-2: #00c16b;
    --crane-semi-transparent: rgba(0, 168, 85, 0.8);
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #f2f5fb;
    --font-family: 'Roboto Condensed', sans-serif;
    --font-family-accent: 'Roboto Condensed', sans-serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5vw;
    }
}
.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: var(--font-family);
}

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

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    line-height: 150%;
}

ul,
ol {
    padding: 15px 0;
    padding-left: 30px;
}

.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%;
    width: 50px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
}
.header.header--scrolled {
    top: -55px;
    background-color: #00000083;
}
.header.header--scrolled .header__main-wp {
    height: 80px;
}
.header.header--inner {
    background-color: #fff;
    --hs-menu-line-color: #000;
}
.header.header--inner .header__top-metrics a,
.header.header--inner .header__main-menu__link-fake,
.header.header--inner .header__main-menu__link {
    color: #000;
}
.header.header--inner .header__top-metrics a.active {
    color: var(--spider-color);
}

.header__top-lang a.active {
    border-bottom: 1px solid var(--spider-color);
}

.header.header--inner .header__main-menu__link.active {
    background-color: var(--spider-color);
    color: #fff;
}
.header.header--inner .header__main-menu__link.active .header__main-menu__link-fake {
    color: #fff;
}
.header.header--inner .header__main-menu__link.active.bg-boom {
    background-color: var(--boom-color);
}
.header.header--inner .header__main-menu__link.active.bg-crane {
    background-color: var(--crane-color);
}
.header.header--inner .header__main-logo__main {
    display: none;
}
.header.header--inner .header__main-logo__inner {
    display: block;
}
.header__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 70px;
    column-gap: 70px;
    padding: 0 var(--container-padding);
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.header__top > div {
    position: relative;
}
.header__top > :not(:last-child)::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #979696;
}
.header__top-wp {
    width: 100%;
    background-color: var(--accent-background-color);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__top-metrics {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.header__top-metrics svg {
    margin-right: 10px;
}
.header__top-metrics a {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.header__top-metrics a:hover {
    color: var(--spider-color);
}
.header__top-metrics a.active {
    color: var(--spider-color);
}
.header__top-menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.header__top-menu a {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.header__top-menu a:hover {
    color: var(--spider-color);
}
.header__top-menu a.active {
    color: var(--spider-color);
}
@media (max-width: 810px) {
    .header__top-menu {
        display: none;
    }
}
.header__top-lang {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__main-wp {
    height: 75px;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
    position: relative;
    transition: 0.2s ease;
}
.header__main-logo {
    max-width: 270px;
}
.header__main-logo__main {
    display: block;
}
.header__main-logo__inner {
    display: none;
}
.header__main-menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.header__main-menu__link {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: 0.2s ease;
}
.header__main-menu__link-fake {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #fff;
    cursor: pointer;
}
.header__main-menu__link-sub {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    top: 130%;
    left: 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    max-height: 50vh;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #fff #000;

    transition: 0.3s ease;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}
.header__main-menu__link-sub a {
    display: flex;
    min-width: 250px;
    color: #fff;
    padding: 20px;
    transition: 0.2s ease;
}
.header__main-menu__link-sub a:hover {
    background-color: #fff;
    color: inherit;
}
.header__main-menu__link:hover {
    border-bottom: 2px solid var(--spider-color);
}
.header__main-menu__link:hover .header__main-menu__link-sub {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    top: 100%;
}
.header__main-menu__link-count {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 3px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    font-size: 12px;
    background-color: var(--spider-color);
    color: #fff;
    border-radius: 50%;
}
.header__main-menu__link.active {
    border-color: var(--spider-color);
}
@media (max-width: 1480px) {
    .header__main-menu__link {
        font-size: 14px;
        padding: 10px 5px;
    }
}
@media (max-width: 1249px) {
    .header__main-menu__link:not(.keep-mobile) {
        display: none;
    }
}
@media (max-width: 1480px) {
    .header__main-menu {
        -moz-column-gap: 3px;
        column-gap: 3px;
    }
}

.global-search {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a4;
    z-index: 9999;
    padding: 0 20px;
}
.global-search__inner {
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.global-search__fields {
    flex: 1;
    display: flex;
    align-items: stretch;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-right: 60px;
}
.global-search__fields input {
    flex: 1;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 0;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.2s ease;
}
.global-search__fields button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    border: 0;
    transition: 0.2s ease;
}
.global-search__fields button:hover {
    background-color: var(--spider-color);
    color: #fff;
}
@media (max-width: 500px) {
    .global-search__fields {
        margin-right: 30px;
    }
}
.global-search__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    border: 0;
    transition: 0.2s ease;
}
.global-search__close:hover {
    background-color: var(--spider-color);
    color: #fff;
}

/* || HEADER end || */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: 'par__img par__txt';
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.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--spider .par__txt .par__ttl::after {
    background-color: var(--spider-color);
}
.par.par--boom .par__txt .par__ttl::after {
    background-color: var(--boom-color);
}
.par.par--crane .par__txt .par__ttl::after {
    background-color: var(--crane-color);
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt.par__txt--sm {
    max-width: 480px;
    margin: auto;
}
.par__txt ul:not(.styled-list) {
    padding: 30px 0 30px 30px;
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    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;
}
.par__txt-footer__item svg {
    color: var(--accent-color-2);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.par__img .swiper-button-next,
.par__img .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__accent {
    margin-bottom: 25px;
}
.par__ttl {
    font-size: clamp(28px, 4vw, 45px);
    line-height: 110%;
    color: #000;
    font-weight: 600;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.par__ttl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 200px;
    height: 16px;
    background-color: transparent;
    margin-top: 10px;
}
.par__subttl {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-top: 15px;
    padding-bottom: 25px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--accent-color);
    transition: 0.3s ease-in-out;
}
.par__text-link:hover {
    background-color: var(--accent-color);
    color: var(--color-white);
}
.par__text .table table {
    width: 100%;
}
.par__text .table tr td:not(:last-child) {
    border-right: 1px solid #ddd;
}
.par__text .table tr td {
    background-color: #f9f9f92d;
}

@media (max-width: 768px) {
    .par__text {
        margin-top: 0px;
    }
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
        row-gap: unset;
    }
    .par .par__txt {
        padding-top: 5%;
    }
    .par .par__img {
        display: block;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 50% 50%;
    grid-template-areas: 'par__img par__txt';
}
.par.par--left .par__txt {
    padding: 20px 0 20px 5%;
}

.par.par--right {
    grid-template-columns: 50% 50%;
    grid-template-areas: 'par__txt par__img';
}
.par.par--right .par__txt {
    padding: 20px 5% 20px 0;
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt ';
    grid-gap: 0;
}
.par.par--center .par__img {
    display: block;
    margin: 0 auto 30px auto;
}
.par.par--center .par__img img {
    display: block;
    margin: 0 auto;
}

.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
.two-col-par {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin: 40px 0;
    -moz-column-fill: balance;
    column-fill: balance;
}
.two-col-par > * {
    -moz-column-break-after: avoid;
    break-after: avoid;
}
.two-col-par ul li:not(:last-child) {
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .two-col-par {
        -moz-columns: 1;
        columns: 1;
    }
}

.footer > :nth-child(1) {
    background-image: url(/img/backgrounds/pb_footer-bg.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center left 15%;
}
.footer__middle {
    position: relative;
    padding: 50px 0 26px 0;
}
@media (max-width: 1350px) {
    .footer__middle {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
}
@media (max-width: 850px) {
    .footer__middle {
        grid-template-columns: 100%;
        row-gap: 35px;
    }
}
.footer__bottom {
    background-color: #dddddd;
}
.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
    padding: 25px 0 25px 0;
    font-size: 14px;
    color: #696767;
}
.footer__bottom a {
    color: #696767;
    text-decoration: none;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
}
.footer__label {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2px;
}
.footer__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer__nav-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
}
@media (max-width: 1570px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
.footer__nav-main {
    display: flex;
    flex-direction: column;
}
.footer__nav-subscription {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding-bottom: 40px;
    border-bottom: 6px solid var(--spider-color);
    margin-bottom: 40px;
}
.footer__nav-subscription-title {
    font-size: clamp(24px, 2vw, 34px);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5px;
}
.footer__nav-subscription-text {
    color: #696767;
}
@media (max-width: 768px) {
    .footer__nav-subscription {
        flex-direction: column;
        align-items: flex-start;
        -moz-column-gap: 0;
        column-gap: 0;
    }
    .footer__nav-subscription-title {
        margin-bottom: 10px;
    }
    .footer__nav-subscription .btn.btn--center {
        margin: 20px 0 0 0;
    }
}
.footer__nav-nav {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.footer__nav-nav ul {
    list-style: none;
    padding-left: 0;
}
.footer__nav-nav ul.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.footer__nav-nav ul.two-columns > .footer__title {
    grid-column: 1/-1;
}
@media (max-width: 500px) {
    .footer__nav-nav ul.two-columns {
        grid-template-columns: 1fr;
    }
}
.footer__nav-nav ul a {
    display: flex;
    color: #000;
    margin-bottom: 5px;
    transition: 0.2s ease;
    min-width: 130px;
}
.footer__nav-nav ul a:hover {
    color: var(--spider-color);
}
@media (max-width: 1300px) {
    .footer__nav-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer__nav-nav ul {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
}
.footer__social {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 60px;
}
.footer__social a {
    color: #333;
    transition: 0.3s ease;
}
.footer__social a:hover {
    color: var(--accent-color-2);
}
@media (max-width: 1570px) {
    .footer__social {
        margin-top: 10px;
    }
}

:root {
    --bg-table-stripe: var(--accent-color-3);
    --b-table: #e3e3e2;
    --caption: #242423;
}

table {
    background-color: transparent;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
}

th {
    text-align: left;
}

.dcf-txt-center {
    text-align: center !important;
}

.dcf-txt-left {
    text-align: left !important;
}

.dcf-txt-right {
    text-align: right !important;
}

.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: 0.56rem;
}

.dcf-table thead {
    font-size: 0.84em;
}

.dcf-table tbody {
    border-bottom: 1px solid var(--b-table);
    border-top: 1px solid var(--b-table);
    font-size: 0.84em;
}

.dcf-table tfoot {
    font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
    padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
    border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
    padding-left: 1em;
    padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
    border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
    background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
    padding-top: 21px;
    padding-bottom: 11px;
    vertical-align: bottom;
    background-color: var(--accent-color-2);
    color: #fff;
    font-weight: 400;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 120%;
    /* identical to box height, or 136% */
    text-transform: uppercase;
    /* White */
    color: #ffffff;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
    padding-top: 0.75em;
    vertical-align: middle;
    background-color: var(--accent-color-3);
    border-color: #fff;
}

.dcf-table tbody td,
.dcf-table tbody th {
    padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
    padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw;
}

@media only screen and (max-width: 800px) {
    .dcf-table-responsive thead {
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
        white-space: nowrap;
    }

    .dcf-table-responsive tr {
        display: block;
    }

    .dcf-table-responsive td {
        -moz-column-gap: 3.16vw;
        column-gap: 3.16vw;
        display: grid;
        grid-template-columns: 1fr 2fr;
        text-align: left !important;
    }

    .dcf-table-responsive.dcf-table-bordered,
    .dcf-table-responsive.dcf-table-bordered thead th {
        border-width: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody td {
        border-top-width: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
        padding-bottom: 0.75em;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
        padding-bottom: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
        padding-right: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
        border-bottom-width: 0;
    }

    .dcf-table-responsive tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        padding-right: 1.78em;
    }
}
.dcf-overflow-x-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
    width: 100% !important;
}

.quote-popup {
    padding: 0;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.quote-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .quote-popup > form {
        grid-template-columns: 100%;
    }
}
.quote-popup__form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 40px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.quote-popup__form-block * {
    font-family: var(--font-style-3);
}
.quote-popup__form-block__head {
    grid-column: 1/-1;
}
.quote-popup__form-block__title {
    font-family: var(--font-family-accent);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__subtitle {
    font-family: var(--font-family-accent);
    grid-column: 1/-1;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 100%;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-transform: uppercase;
    text-align: center;
}
.quote-popup__form-block__slogan {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}
.quote-popup__form-block__slogan a {
    font-weight: 600;
    color: #333333;
}
.quote-popup__form-block > input,
.quote-popup__form-block .jfilestyle input,
.quote-popup__form-block > textarea {
    background-color: #eee;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
}
.quote-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.quote-popup__form-block__checkboxes-wrapper {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 1550px) {
    .quote-popup__form-block__checkboxes-wrapper {
        flex-direction: column;
        row-gap: 10px;
    }
}
@media (max-width: 1000px) {
    .quote-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .quote-popup__form-block {
        grid-template-columns: 100%;
    }
}
@media (max-width: 550px) {
    .quote-popup__form-block {
        padding: 50px 5%;
    }
}
.quote-popup__image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .quote-popup__image-block {
        display: none;
    }
}
.quote-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.quote-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.subscribe-popup {
    padding: 0;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.subscribe-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .subscribe-popup > form {
        grid-template-columns: 100%;
    }
}
.subscribe-popup__form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 40px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.subscribe-popup__form-block__head {
    grid-column: 1/-1;
}
.subscribe-popup__form-block__title {
    color: var(--spider-color);
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    margin-bottom: 10px;
}
.subscribe-popup__form-block__subtitle {
    grid-column: 1/-1;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}
.subscribe-popup__form-block__slogan {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}
.subscribe-popup__form-block__slogan a {
    font-weight: 600;
    color: #333333;
}
.subscribe-popup__form-block > input,
.subscribe-popup__form-block .jfilestyle input,
.subscribe-popup__form-block > textarea {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
}
.subscribe-popup__form-block .pretty label {
    color: #979696;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}
.subscribe-popup__form-block p {
    font-size: 12px;
}
.subscribe-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .subscribe-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .subscribe-popup__form-block {
        grid-template-columns: 100%;
        row-gap: 15px;
    }
}
@media (max-width: 550px) {
    .subscribe-popup__form-block {
        padding: 50px 5%;
    }
}
.subscribe-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.subscribe-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.login-popup {
    padding: 0;
    max-width: 560px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.login-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .login-popup > form {
        grid-template-columns: 100%;
    }
}
.login-popup__form-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 30px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.login-popup__form-block__head {
    grid-column: 1/-1;
}
.login-popup__form-block__title {
    color: var(--spider-color);
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    margin-bottom: 10px;
}
.login-popup__form-block__subtitle {
    grid-column: 1/-1;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}
.login-popup__form-block__slogan {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}
.login-popup__form-block__slogan a {
    font-weight: 600;
    color: #333333;
}
.login-popup__form-block > input,
.login-popup__form-block .jfilestyle input,
.login-popup__form-block > textarea {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
}
.login-popup__form-block__forgot {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    margin-top: 5px;
}
.login-popup__form-block .pretty label {
    color: #979696;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}
.login-popup__form-block p {
    font-size: 12px;
}
.login-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .login-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .login-popup__form-block {
        grid-template-columns: 100%;
        row-gap: 15px;
    }
}
@media (max-width: 550px) {
    .login-popup__form-block {
        padding: 50px 5%;
    }
}
.login-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.login-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.learn-more-popup {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}
.learn-more-popup__text {
    margin-bottom: 30px;
}
.learn-more-popup__image {
    margin-bottom: 30px;
}
.learn-more-popup__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    -o-object-fit: contain;
    object-fit: contain;
}
.learn-more-popup__actions {
    display: flex;
    justify-content: center;
}

.home-hero {
    background-color: var(--accent-background-color);
}
.home-hero-swiper .swiper-button-next {
    --swiper-navigation-color: var(--color-white, #fff);
}
.home-hero-swiper .swiper-button-prev {
    --swiper-navigation-color: var(--color-black, #000);
}
.home-hero-swiper .swiper-slide {
    position: relative;
    min-height: 740px;
    display: flex;
}
.home-hero-swiper .swiper-slide > img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-hero-swiper .swiper-slide__shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.home-hero-swiper .swiper-slide__content span {
    font-size: clamp(20px, 5vw, 50px);
}

.home-hero-swiper .swiper-slide__content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 0 5vw;
}
.home-hero-swiper .swiper-slide__title {
    color: #fff;
    text-align: center;
    font-size: clamp(45px, 5vw, 100px);
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0px;
}
@media (max-width: 1100px) {
    .home-hero-swiper .swiper-slide__title {
        letter-spacing: 0px;
    }
}
.home-hero-swiper .swiper-slide__text {
    color: #fff;
    font-size: clamp(23px, 2vw, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -1.6px;
    max-width: 815px;
    margin-top: 20px;
}
.home-hero-swiper .swiper-slide__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--color-white, #fff);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    transition: 0.3s;
    color: var(--spider-color);
}
.home-hero-swiper .swiper-slide__link:hover {
    background-color: var(--spider-color);
    color: var(--color-white, #fff);
}

.home-products__layout {
    position: relative;
    margin-top: -100px;
    background-color: #fff;
    z-index: 1;
    border-radius: 10px 10px 0px 0px;
    padding: 40px 65px;
}
@media (max-width: 1250px) {
    .home-products__layout {
        padding: 40px 20px;
    }
}
.home-products__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
}
@media (max-width: 1250px) {
    .home-products__top {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
@media (max-width: 620px) {
    .home-products__top {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.home-products__pointer {
    width: 100%;
    height: 20px;
    margin: 40px 0 50px 0;
    position: relative;
}
.home-products__pointer div {
    position: absolute;
    z-index: -1;
    transition: 0.5s ease;
}
.home-products__pointer.bg-1 div {
    position: absolute;
    width: 27px;
    height: 27px;
    transform: rotate(45deg);
    top: -13px;
    left: 16.6666666667%;
    right: 0;
    background-color: inherit;
    transition: 0.5s ease;
}
.home-products__pointer.bg-2 div {
    position: absolute;
    width: 27px;
    height: 27px;
    transform: rotate(45deg);
    top: -13px;
    left: 50%;
    right: 0;
    background-color: inherit;
    transition: 0.5s ease;
}
.home-products__pointer.bg-3 div {
    position: absolute;
    width: 27px;
    height: 27px;
    transform: rotate(45deg);
    top: -13px;
    left: 83.35%;
    background-color: inherit;
    transition: 0.5s ease;
}
.home-products__tab {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.home-products__tab-title {
    color: #000;
    font-size: clamp(24px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.8px;
    margin-bottom: 13px;
}
.home-products__tab-link {
    color: #3c3c3c;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.home-products__tab-image {
    flex: 1;
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.home-products__tab-image div {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    aspect-ratio: 16/9;
    z-index: 0;
    transition: 0.3s ease;
}
.home-products__tab-image img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.home-products__tab:not(.active) .home-products__tab-image div {
    background-color: var(--accent-background-color);
}
.home-products__tab:hover .home-products__tab-image div {
    transform: translateY(-50%) scale(1.1);
}
.home-products__bottom-content {
    position: relative;
    --swiper-navigation-sides-offset: -40px;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.home-products__bottom-content .swiper-button-next,
.home-products__bottom-content .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
@media (max-width: 550px) {
    .home-products__bottom-content {
        --swiper-navigation-sides-offset: -5%;
        --swiper-navigation-size: 25px;
    }
}
.home-products .swiper-slide {
    padding: 30px 20px;
}
.home-products__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
    transition: 0.2s ease;
}
.home-products__item-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}
.home-products__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.home-products__item-title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.home-products__item-subtitle {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}
.home-products__item-specs {
    color: #696767;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
}
.home-products__item:hover {
    box-shadow: 0px 40px 20px -35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
@media (max-width: 600px) {
    .home-products__item {
        padding: 10px 5px;
    }
}

.home-welcome__text {
    max-width: 1333px;
    margin: 0 auto;
    color: #333;
}

.home-applications__head {
    text-align: center;
    position: relative;
}
.home-applications__head-title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 5px;
    margin-bottom: 5px;
}
.home-applications__head-link {
    position: absolute;
    top: 50%;
    right: var(--container-padding);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #3c3c3c;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.home-applications__head-link:hover {
    color: #000;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .home-applications__head-link {
        position: static;
        margin: 0 auto;
        margin-top: 20px;
    }
}
.home-applications__body {
    position: relative;
    margin-left: var(--container-padding);
    margin-top: 50px;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.home-applications__body .swiper-button-next,
.home-applications__body .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.application-slider .swiper-slide {
    display: flex;
    height: auto;
}
.application-slider .application-item {
    width: 100%;
    height: 100%;
}
.application-item {
    position: relative;
    display: flex;
    overflow: hidden;
}
.application-item > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.application-item__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    text-align: center;
    font-size: clamp(24px, 2vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    filter: blur(0);
    transition: 0.2s linear;
}
.application-item__shadow-text {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}
.application-item__active-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d9282ec9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(25px);
    transition: 0.2s linear;
}
.application-item__active-shadow svg {
    filter: blur(25px);
    opacity: 0;
    transition: 0.2s linear;
}
.application-item:hover .application-item__shadow {
    opacity: 0;
    filter: blur(25px);
}
.application-item:hover .application-item__active-shadow {
    opacity: 1;
    filter: blur(0);
}
.application-item:hover .application-item__active-shadow svg {
    filter: blur(0);
    opacity: 1;
}

.home-top-choice__layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

@media (max-width: 1500px) {
    .home-top-choice__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.home-top-choice__title {
    color: #000;
    font-size: clamp(30px, 2.5vw, 50px);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -2px;
}

.home-top-choice__main {
    min-height: 230px;
    padding-left: 100px;
    position: relative;
}

.home-top-choice__main-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-height: 100%;
}

.home-top-choice__main-arrow svg {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.home-top-choice__main-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.home-top-choice__main-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 30px;
}

@media (max-width: 1050px) {
    .home-top-choice__main-items {
        grid-template-columns: 100%;
    }
}

@media (max-width: 450px) {
    .home-top-choice__main-arrow {
        display: none;
    }

    .home-top-choice__main {
        padding: 0;
    }
}

.home-top-choice__main-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 10px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
}

.home-advantages__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #fff;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .home-advantages__layout {
        grid-template-columns: 1fr;
    }
}
.home-advantages__advantages {
    padding: 75px 80px 75px var(--container-padding);
}
.home-advantages__advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
}
@media (max-width: 1330px) {
    .home-advantages__advantages-grid {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}
.home-advantages__advantages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    text-align: center;
    padding: 0 20px;
    border: 1px solid #fff;
    padding: 50px 30px;
}
.home-advantages__advantages-item,
.home-advantages__advantages-item p {
    text-align: center;
    font-size: clamp(18px, 1.5vw, 26px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
}
@media (max-width: 1330px) {
    .home-advantages__advantages-item {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .home-advantages__advantages {
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
}
.home-advantages__reliability {
    padding: 75px var(--container-padding) 75px 80px;
    background-image: url(/img/misc/pb_home-reliability-1.jpg);
    background-color: #00000095;
    background-blend-mode: color;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-advantages__reliability-title {
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
}
.home-advantages__reliability-subtitle {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 5px;
}
.home-advantages__reliability-line {
    width: 100%;
    height: 6px;
    background-color: var(--spider-color);
    max-width: 375px;
    margin: 0 auto;
    margin-top: 40px;
}
.home-advantages__reliability .btn.btn--transparent {
    border-color: #fff;
    color: #fff;
    margin-top: 90px;
}
.home-advantages__reliability .btn.btn--transparent:hover {
    background-color: var(--spider-color);
    border-color: var(--spider-color);
}
@media (max-width: 768px) {
    .home-advantages__reliability {
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
}

.home-case-studies__swiper {
    position: relative;
    margin-top: 55px;
    --swiper-navigation-sides-offset: -5%;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.home-case-studies__swiper .swiper-button-next,
.home-case-studies__swiper .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.home-case-studies__item-image {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.home-case-studies__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.home-case-studies__item-image__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d9282ec9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(25px);
    transition: 0.2s linear;
}
.home-case-studies__item-image__shadow svg {
    filter: blur(25px);
    opacity: 0;
    transition: 0.2s linear;
}
.home-case-studies__item-image:hover .home-case-studies__item-image__shadow {
    opacity: 1;
    filter: blur(0);
}
.home-case-studies__item-image:hover .home-case-studies__item-image__shadow svg {
    filter: blur(0);
    opacity: 1;
}
.home-case-studies__item-content {
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.home-case-studies__item-title {
    font-size: clamp(24px, 2vw, 34px);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}
.home-case-studies__item-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
}

.home-arial-platforms {
    background-color: var(--accent-color);
    color: #fff;
}

.home-arial-platforms__layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

@media (max-width: 1500px) {
    .home-arial-platforms__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

.home-arial-platforms__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

@media (max-width: 910px) {
    .home-arial-platforms__items {
        grid-template-columns: 100%;
    }
}

.home-arial-platforms__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 10px;
}

.home-news__title {
    position: relative;
}
.home-news__title div {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 5px;
}
.home-news__title a {
    position: absolute;
    top: 50%;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #3c3c3c;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.home-news__title a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .home-news__title a {
        position: static;
        margin: 0 auto;
        margin-top: 20px;
    }
}
.home-news__swiper {
    margin-top: 50px;
    position: relative;
    --swiper-navigation-sides-offset: -5%;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.home-news__swiper .swiper-button-next,
.home-news__swiper .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.home-news-slider__item-image {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.home-news-slider__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 5/3;
}
.home-news-slider__item-image__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d9282ec9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(25px);
    transition: 0.2s linear;
}
.home-news-slider__item-image__shadow svg {
    filter: blur(25px);
    opacity: 0;
    transition: 0.2s linear;
}
.home-news-slider__item-image:hover .home-news-slider__item-image__shadow {
    opacity: 1;
    filter: blur(0);
}
.home-news-slider__item-image:hover .home-news-slider__item-image__shadow svg {
    filter: blur(0);
    opacity: 1;
}
.home-news-slider__item-content {
    color: #000;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.home-news-slider__item-badge {
    background-color: var(--spider-color);
    color: #fff;
    padding: 5px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.home-news-slider__item-title {
    font-size: clamp(18px, 2vw, 26px);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}
.home-news-slider__item-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
}

.general-hero__layout {
    display: grid;
    grid-template-columns: 50% 50%;
}
@media (max-width: 768px) {
    .general-hero__layout {
        grid-template-columns: 100%;
    }
}
.general-hero__content {
    position: relative;
    padding: 60px 100px 60px var(--container-padding);
    background-image: url(/img/backgrounds/pb_general-hero-bg-3.png);
    background-position: left 15% top 25%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.general-hero__content-title {
    font-size: clamp(40px, 5vw, 94.615px);
    font-style: normal;
    font-weight: 500;
    line-height: 102%;
    letter-spacing: -3.785px;
    margin-bottom: 70px;
    position: relative;
}
@media (max-width: 1200px) {
    .general-hero__content-title {
        letter-spacing: 0;
    }
    .general-hero__content-title::before {
        width: 120px;
        height: 8px;
        bottom: -10px;
    }
}
.general-hero__content-line {
    position: absolute;
    width: 220px;
    height: 16px;
    bottom: -20px;
    left: 0;
}
.general-hero__content-text {
    font-size: clamp(24px, 3vw, 36px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
.general-hero__media {
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.general-hero__media .swiper-button-next,
.general-hero__media .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.general-hero__media .swiper {
    height: 100%;
}
.general-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 768px) {
    .general-hero__media {
        max-height: 350px;
    }
}

.spider-advantages__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'text items';
}
@media (max-width: 768px) {
    .spider-advantages__layout {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'text' 'items' !important;
    }
}
.spider-advantages.spider-advantages--text-right .spider-advantages__layout {
    grid-template-areas: 'items text';
}
.spider-advantages.spider-advantages--text-left .spider-advantages__layout {
    grid-template-areas: 'text items';
}
.spider-advantages__text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 100px 100px var(--container-padding);
    font-size: clamp(35px, 4vw, 60px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.4px;
}
.spider-advantages__text .btn {
    margin-top: 50px;
}
.spider-advantages__items {
    grid-area: items;
    padding: 100px var(--container-padding) 100px 100px;
}
.spider-advantages__items-eight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 50px;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .spider-advantages__items-eight {
        grid-template-columns: repeat(2, 1fr);
    }
}
.spider-advantages__items-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    gap: 100px 50px;
    max-width: 600px;
    margin: 0 auto;
}
.spider-advantages__items-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.spider-advantages__items-item__icon {
    max-width: 70px;
    aspect-ratio: 1/1;
}
.spider-advantages__items-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.spider-advantages__items-item__text {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 1500px) {
    .spider-advantages__items {
        padding: 100px 5vw 100px 5vw;
    }
    .spider-advantages__items-eight {
        gap: 50px 30px;
    }
    .spider-advantages__items-four {
        gap: 50px 30px;
    }
}

.boom-advantages__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'text items';
}
@media (max-width: 768px) {
    .boom-advantages__layout {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'text' 'items' !important;
    }
}
.boom-advantages.boom-advantages--text-right .boom-advantages__layout {
    grid-template-areas: 'items text';
}
.boom-advantages.boom-advantages--text-left .boom-advantages__layout {
    grid-template-areas: 'text items';
}
.boom-advantages__text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 100px 100px var(--container-padding);
    font-size: clamp(35px, 4vw, 60px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.4px;
}
.boom-advantages__text .btn {
    margin-top: 50px;
}
.boom-advantages__items {
    grid-area: items;
    padding: 100px var(--container-padding) 100px 100px;
}
.boom-advantages__items-eight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 50px;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .boom-advantages__items-eight {
        grid-template-columns: repeat(2, 1fr);
    }
}
.boom-advantages__items-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    gap: 100px 50px;
    max-width: 600px;
    margin: 0 auto;
}
.boom-advantages__items-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.boom-advantages__items-item__icon {
    max-width: 70px;
    aspect-ratio: 1/1;
}
.boom-advantages__items-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.boom-advantages__items-item__text {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 1500px) {
    .boom-advantages__items {
        padding: 100px 5vw 100px 5vw;
    }
    .boom-advantages__items-eight {
        gap: 50px 30px;
    }
    .boom-advantages__items-four {
        gap: 50px 30px;
    }
}

.crane-product-paragraph__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 950px) {
    .crane-product-paragraph__layout {
        grid-template-columns: 1fr;
    }
}
.crane-product-paragraph__left {
    color: #000;
    padding: 80px 60px 80px var(--container-padding);
}
.crane-product-paragraph__left-text-1 {
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -1.8px;
    margin-bottom: 25px;
}
.crane-product-paragraph__left-text-2 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    /* 111.111% */
}
@media (max-width: 950px) {
    .crane-product-paragraph__left {
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
}
.crane-product-paragraph__right {
    background-color: var(--crane-color);
    color: #fff;
    padding: 80px var(--container-padding) 80px 60px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
.crane-product-paragraph__right-item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 300;
}
.crane-product-paragraph__right-item__title {
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1.8px;
}
@media (max-width: 950px) {
    .crane-product-paragraph__right {
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
}

.applications__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 55px;
}
@media (max-width: 1024px) {
    .applications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .applications__grid {
        grid-template-columns: 1fr;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 25px;
}
@media (max-width: 1500px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.global-p-banner {
    position: relative;
}
.global-p-banner__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 30px;
}
@media screen and (max-width: 850px) {
    .global-p-banner__layout {
        grid-template-columns: 1fr;
    }
}
.global-p-banner__map {
    display: flex;
    align-items: center;
}
.global-p-banner__content {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    justify-content: center;
}

.search-pages__layout {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.search-pages__item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.search-pages__item-title {
    color: var(--spider-color);
    font-size: clamp(24px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}
.search-pages__item-link {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.2s ease;
}
.search-pages__item-link:hover {
    color: var(--spider-color);
    text-decoration: underline;
}

.product-top-nav {
    background-color: var(--accent-background-color);
    padding-block: 25px;
}
.product-top-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 15px;
}
.product-top-nav .container a {
    color: #333;
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.product-top-nav .container a.active {
    color: inherit;
}
@media (max-width: 440px) {
    .product-top-nav .container {
        flex-direction: column;
    }
}

.product-line {
    border-top: 1px solid #c1c1c1;
}
.product-line__tabs {
    display: flex;
    margin-top: 40px;
}
.product-line__tab {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 26px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background-color: #eee;
    border: 0;
    transition: 0.2s linear;
}
.product-line__tab > .product-line__tab-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    transition: 0.2s linear;
}
.product-line__tab > .product-line__tab-icon img {
    filter: grayscale(100%);
    transition: 0.2s linear;
}
.product-line__tab:not(.active) > .product-line__tab-line {
    background-color: #c1c1c1;
}
.product-line__tab.active {
    background-color: #fff;
}
.product-line__tab.active > .product-line__tab-icon img {
    filter: grayscale(0);
}
.product-line__content {
    /* padding: 50px 0; */
    padding: 50px 0 0 0;
    position: relative;
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.product-line__content .swiper-button-next,
.product-line__content .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.product-line__content-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
.product-line__content-grid .swiper-slide {
    max-width: 23%;
    min-width: 250px;
}
.product-line__content-grid.product-line__content-grid--search {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: stretch;
    align-items: stretch;
}
.product-line__content-grid.product-line__content-grid--search > div {
    max-width: 100%;
}
.product-line__content .swiper {
    padding: 20px 0;
}
.product-line__content-filter {
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 40px;
}
.product-line__content-filter__title {
    white-space: nowrap;
    border-right: 1px solid #c1c1c1;
    padding-right: 30px;
}
.product-line__content-filter__all {
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .product-line__content-filter {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
        margin-bottom: 20px;
    }
    .product-line__content-filter__title {
        border: 0;
        padding: 0;
    }
}
.product-line__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
    transition: 0.2s ease;
}
.product-line__item-image {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}
.product-line__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.product-line__item-title {
    color: #000;
    line-height: 120%;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: 3.208px;
    text-transform: uppercase;
    position: relative;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    padding-bottom: 10px;
    margin-bottom: 19px;
}
.product-line__item-title span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
}
.product-line__item-subtitle {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}
.product-line__item-specs {
    color: #696767;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
}
.product-line__item:hover {
    box-shadow: 0px 35px 30px -35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
@media (max-width: 600px) {
    .product-line__item {
        padding: 10px 5px;
    }
}

.product__layout {
    display: grid;
    grid-template-columns: 350px calc(100% - 350px);
}
@media (max-width: 1500px) {
    .product__layout {
        grid-template-columns: 300px calc(100% - 300px);
    }
}
@media (max-width: 1250px) {
    .product__layout {
        grid-template-columns: 100%;
    }
}
@media (max-width: 1250px) {
    .product__side {
        display: none;
    }
}
.product__accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}
.product__accordion-title.product__accordion-title--top {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.product__accordion-title .product__accordion-item__plus {
    transition: 0.2s ease-in-out;
}
.product__accordion-title.active .product__accordion-item__plus > line:nth-child(2) {
    opacity: 0;
}
.product__accordion-title .product__accordion-item__chevron {
    transform: rotate(180deg);
    transition: 0.2s ease-in-out;
}
.product__accordion-title.active .product__accordion-item__chevron {
    transform: rotate(0);
}
.product__accordion-content {
    display: none;
    overflow: hidden;
}
.product__accordion-content.active {
    display: block;
}
.product__accordion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.product__accordion-list.spider a.active {
    color: var(--spider-color);
}
.product__accordion-list.boom a.active {
    color: var(--boom-color);
}
.product__accordion-list.crane a.active {
    color: var(--crane-color);
}
.product__accordion-list a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    padding: 5px;
    padding-left: 20px;
}
.product__accordion-list a svg {
    position: absolute;
    left: 0;
    top: 10px;
    transition: 0.2s ease-in-out;
}
.product__accordion-list a:hover svg {
    left: 5px;
}
.product__body {
    padding-left: 120px;
}
.product__body-tabs {
    display: flex;
    -moz-column-gap: 2px;
    column-gap: 2px;
}
.product__body-tabs button {
    flex: 1;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: var(--accent-background-color);
    border: 0;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.product__body-tabs button.active {
    background-color: var(--accent-background-color-dark);
    color: #fff;
}
@media (max-width: 768px) {
    .product__body-tabs {
        flex-direction: column;
        row-gap: 2px;
    }
}
.product__body-content {
    padding: 40px 0;
}
.product__body-content.product__body-content--product {
    display: grid;
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
    grid-template-areas: 'title slider' 'specs slider' 'transport slider' 'download slider' 'action slider';
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 15px;
}
@media (max-width: 768px) {
    .product__body-content.product__body-content--product {
        grid-template-columns: 100%;
        grid-template-areas: 'title' 'slider' 'specs' 'transport' 'download' 'action';
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 50px;
    }
}
.product__body-content-title {
    grid-area: title;
}
.product__body-content-title__top {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.product__body-content-title__main {
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -1.8px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}
.product__body-content-title__main-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 8px;
}
.product__body-content-specs__sub-title {
    font-size: clamp(16px, 2vw, 25px);
}
.product__body-content-specs {
    grid-area: specs;
    color: #696767;
    font-size: clamp(18px, 2vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}
.product__body-content-specs__items {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-top: 20px;
}
@media (max-width: 450px) {
    .product__body-content-specs__items {
        flex-direction: column;
        row-gap: 20px;
    }
}
.product__body-content-specs__item {
    display: flex;
    flex-direction: column;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}
.product__body-content-transport {
    grid-area: transport;
}
.product__body-content-transport__item {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.product__body-content-download {
    grid-area: download;
}
.product__body-content-download__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 19.8px */
    text-transform: uppercase;
    white-space: nowrap;
}
.product__body-content-action {
    grid-area: action;
}
.product__body-content__overview-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.product__body-content__overview-points-item__image {
    display: flex;
    margin-bottom: 10px;
}
.product__body-content__overview-points-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 400px;
}
@media (max-width: 550px) {
    .product__body-content__overview-points {
        grid-template-columns: 1fr;
    }
}
.product__body-content-slider {
    grid-area: slider;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    /* css play button */
}
.product__body-content-slider-wp {
    border: 1px solid #dddddd;
    padding: 10px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
}
.product__body-content-slider #productCarousel,
.product__body-content-slider .f-thumbs--single-product.f-thumbs.is-classic,
.product__body-content-slider .fancybox__container--prod .fancybox__toolbar,
.product__body-content-slider .fancybox__container--prod .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__body-content-slider #productCarousel .f-carousel__slide {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 500px;
    overflow: hidden;
}
.product__body-content-slider #productCarousel .f-carousel__slide img {
    aspect-ratio: 12/9;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.product__body-content-slider #productCarousel .f-carousel__slide.is-selected {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}
.product__body-content-slider .f-carousel__slide.f-carousel__slide--video {
    position: relative;
}
.product__body-content-slider .f-carousel__slide.f-carousel__slide--video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
    transition: 0.2s ease-in-out;
}
.product__body-content-slider .f-carousel__slide.f-carousel__slide--video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    width: 0;
    height: 0;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    z-index: 2;
}
.product__body-content-slider .f-carousel__slide img {
    aspect-ratio: 16/9;
}
.product__body-content-slider .f-thumbs--single-product.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;
    display: grid;
}
.product__body-content-slider .f-thumbs.is-classic.is-horizontal {
    padding: 0 56px;
}
.product__body-content-slider .f-thumbs.is-classic.is-vertical {
    padding: 56px 0;
}
.product__body-content-slider .f-thumbs.is-horizontal .f-thumbs__track {
    padding: 8px 0 0 0;
}
.product__body-content-slider #productCarousel .f-carousel__nav {
    opacity: 0;
    transition: opacity 0.15s;
}
@media (hover: hover) {
    .product__body-content-slider #productCarousel:hover .f-carousel__nav {
        opacity: 1;
    }
}
@media (max-width: 1500px) {
    .product__body {
        padding-left: 40px;
    }
}
@media (max-width: 1250px) {
    .product__body {
        padding-left: 0;
    }
}

.moving-gallery__swiper {
    position: relative;
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 35px;
    --swiper-navigation-color: #fff;
}
.moving-gallery__swiper .swiper-button-next,
.moving-gallery__swiper .swiper-button-prev {
    background-color: #000;
    padding: 5px;
    width: 30px;
    height: 45px;
}
.moving-gallery-slider__item {
    display: flex;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    max-width: 470px;
    color: #fff;
}
.moving-gallery-slider__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.moving-gallery-slider__item__active-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: #d9282ec9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(25px);
    transition: 0.2s linear;
}
.moving-gallery-slider__item__active-shadow svg {
    filter: blur(25px);
    opacity: 0;
    transition: 0.2s linear;
}
.moving-gallery-slider__item:hover .moving-gallery-slider__item__active-shadow {
    opacity: 1;
    filter: blur(0);
    width: 100%;
    height: 100%;
}
.moving-gallery-slider__item:hover .moving-gallery-slider__item__active-shadow svg {
    filter: blur(0);
    opacity: 1;
}

.related-accessories .title {
    margin-bottom: 30px;
}
.product__body-content .related-accessories .title {
    text-align: left;
}
.related-accessories__text {
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}
.product__body-content .related-accessories__text {
    text-align: left;
}
.related-accessories__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    margin-top: 80px;
}
.product__body-content .related-accessories__layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}
@media (max-width: 1500px) {
    .related-accessories__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1200px) {
    .related-accessories__layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .product__body-content .related-accessories__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .related-accessories__layout {
        grid-template-columns: 1fr;
    }
    .product__body-content .related-accessories__layout {
        grid-template-columns: 1fr;
    }
}
.related-accessories__item {
    position: relative;
}
.related-accessories__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-accessories__item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.related-accessories__item-title {
    font-size: clamp(18px, 2vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}
.product__body-content .related-accessories__item-title {
    font-size: 17px;
}
.related-accessories__item-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease-in-out;
}
.related-accessories__item-actions-box {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    row-gap: 10px;
}
.related-accessories__item-actions-box a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #fff;
    font-size: 14.509px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 15px;
    white-space: nowrap;
    transition: 0.2s ease-in-out;
}
.related-accessories__item-actions-box a:hover {
    background-color: #fff;
    color: #000;
}
.related-accessories__item-actions.bg-spider {
    background-color: var(--spider-semi-transparent);
}
.related-accessories__item-actions.bg-boom {
    background-color: var(--boom-semi-transparent);
}
.related-accessories__item-actions.bg-crane {
    background-color: var(--crane-semi-transparent);
}
.related-accessories__item:hover .related-accessories__item-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.rel-banner {
    background-color: #000000ae;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
}
.rel-banner .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.rel-banner .container .btn {
    border-color: #fff;
    color: #fff;
}
.rel-banner .container .btn:hover {
    background-color: #fff;
    color: #000;
}
.rel-banner__subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 5px;
    margin-top: 20px;
}
.rel-banner__line {
    width: 100%;
    height: 6px;
    max-width: 375px;
    margin: 40px auto 60px auto;
}

.page-head-sm .container {
    position: relative;
    padding-block: 40px;
}
.page-head-sm .container .title {
    text-align: left;
}
.page-head-sm.page-head-sm--center .container .title {
    text-align: center;
}
.page-head-sm__return {
    position: absolute;
    top: 50%;
    left: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.page-head-sm__return:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .page-head-sm__return {
        top: 10px;
    }
}

.page-head-lg {
    background-color: #000000a0;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-blend-mode: color;
    overflow: hidden;
}
.page-head-lg.page-head-lg--parallax {
    background-attachment: fixed;
    -webkit-animation: none;
    animation: none;
}
.page-head-lg .pa-block {
    padding-block: 100px;
}
.page-head-lg .container {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000000a0;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-blend-mode: color;
    background-image: inherit;
    -webkit-animation: zoomInBackgroundImage 20s forwards;
    animation: zoomInBackgroundImage 20s forwards;
}
.page-head-lg .container .title {
    animation: zoomOutBackgroundImage 20s forwards;
}
@media (max-width: 1250px) {
    .page-head-lg .container {
        min-height: 400px;
    }
}
.page-head-lg .title {
    font-size: clamp(34px, 4.5vw, 100px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: none;
}

@-webkit-keyframes zoomInBackgroundImage {
    0% {
        background-size: auto 100%;
    }
    100% {
        background-size: auto 130%;
    }
}

@keyframes zoomInBackgroundImage {
    0% {
        background-size: auto 100%;
    }
    100% {
        background-size: auto 130%;
    }
}
.page-head-xl {
    position: relative;
    overflow: hidden;
}
.page-head-xl__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-animation: zoomInBackgroundImage 20s forwards;
    animation: zoomInBackgroundImage 20s forwards;
}
.page-head-xl__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-head-xl__image-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a0;
}
.page-head-xl .pa-block {
    padding-block: 100px;
}
.page-head-xl .container {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 1250px) {
    .page-head-xl .container {
        min-height: 400px;
    }
}
.page-head-xl .title {
    font-size: clamp(34px, 4.5vw, 100px);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@keyframes zoomInBackgroundImage {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}
@keyframes zoomOutBackgroundImage {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
.square-anchors__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 1200px) {
    .square-anchors__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .square-anchors__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .square-anchors__layout {
        gap: 10px;
    }
}
@media (max-width: 450px) {
    .square-anchors__layout {
        grid-template-columns: 1fr;
    }
}
.square-anchors__item {
    text-align: center;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 25px;
}
.square-anchors__item-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out;
}
.square-anchors__item:hover .square-anchors__item-accent {
    width: 105%;
    height: 105%;
}
.square-anchors__item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.square-anchors__item img {
    display: block;
    margin-bottom: 25px;
}
@media (max-width: 700px) {
    .square-anchors__item img {
        max-width: 80px;
    }
}
@media (max-width: 540px) {
    .square-anchors__item img {
        max-width: 60px;
    }
}
.square-anchors__item p {
    text-align: center;
    font-size: clamp(18px, 1.5vw, 26px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.certifications-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 35px 0 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .certifications-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .certifications-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.certifications-section__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}
.certifications-section__item-text {
    color: #000;
    text-align: center;
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.history-blocks {
    margin-top: 65px;
}
.history-blocks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1200px) {
    .history-blocks__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .history-blocks__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}
.history-blocks__item-image {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.history-blocks__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.history-blocks__item-image__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d9282ec9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(25px);
    transition: 0.2s linear;
}
.history-blocks__item-image__shadow svg {
    filter: blur(25px);
    opacity: 0;
    transition: 0.2s linear;
}
.history-blocks__item-image:hover .history-blocks__item-image__shadow {
    opacity: 1;
    filter: blur(0);
}
.history-blocks__item-image:hover .history-blocks__item-image__shadow svg {
    filter: blur(0);
    opacity: 1;
}
.history-blocks__item-content {
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.history-blocks__item-title {
    font-size: clamp(24px, 2vw, 34px);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}
.history-blocks__item-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
}

.inner-links {
    padding-block: 40px;
}
.inner-links .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
}
.inner-links .container a {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.inner-links .container a.active {
    color: var(--spider-color);
}
.inner-links .container a:hover {
    color: var(--spider-color);
}
@media (max-width: 500px) {
    .inner-links .container {
        flex-direction: column;
        align-items: center;
    }
}

.contact-section {
    color: #000;
}
.contact-section .pa-block {
    padding-top: 0;
}
.contact-section .text-center {
    max-width: 1100px;
    margin: 0 auto;
}
.contact-section__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px;
    max-width: 1280px;
    margin: 0 auto 0 auto;
}
.contact-section__form-inputs {
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.contact-section__form input,
.contact-section__form textarea,
.contact-section__form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 400;
    outline: none;
    transition: 0.4s;
}
.contact-section__form input::-moz-placeholder,
.contact-section__form textarea::-moz-placeholder,
.contact-section__form select::-moz-placeholder {
    color: #1f1f1f;
}
.contact-section__form input:-ms-input-placeholder,
.contact-section__form textarea:-ms-input-placeholder,
.contact-section__form select:-ms-input-placeholder {
    color: #1f1f1f;
}
.contact-section__form input::placeholder,
.contact-section__form textarea::placeholder,
.contact-section__form select::placeholder {
    color: #1f1f1f;
}
.contact-section__form input:focus,
.contact-section__form textarea:focus,
.contact-section__form select:focus {
    border-color: #000;
}
.contact-section__form select {
    color: #1f1f1f;
}
.contact-section__form .state label {
    color: #979696;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}
.contact-section__form .btn {
    grid-column: 1/-1;
    margin: 0 auto;
    color: #fff;
}
.contact-section__form .file-wp {
    grid-column: 1/-1;
    overflow: hidden;
    position: relative;
}
.contact-section__form .file-wp > div {
    margin-left: auto;
    max-width: 400px;
}
@media (max-width: 1250px) {
    .contact-section__form {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .contact-section__form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .contact-section__form .btn {
        margin-top: 30px;
    }
    .contact-section__form .file-wp > div {
        margin-left: 0;
        max-width: 100%;
    }
}

.contact-stripe__layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 850px) {
    .contact-stripe__layout {
        flex-direction: column;
        row-gap: 50px;
    }
}
.contact-stripe__item {
    text-align: center;
    color: #fff;
    max-width: 420px;
}
.contact-stripe__item-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 50px;
}
@media (max-width: 850px) {
    .contact-stripe__item-icons {
        margin-bottom: 20px;
    }
}
.contact-stripe__item a:hover {
    text-decoration: underline;
}
.contact-stripe__item a,
.contact-stripe__item p {
    display: flex;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: clamp(22px, 2vw, 36px);
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 100% */
}

.contact-map img {
    display: block;
    width: 100%;
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.faqs {
    margin-bottom: 60px;
}

.faqs__layout {
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 45px;
    column-gap: 45px;*/
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 45px;
    column-gap: 45px;
    row-gap: 30px;
}

.faqs__layout > div {
    /*display: flex;
    flex-direction: column;
    row-gap: 30px;*/
}

.faqs__layout > div .accordion-item {
    border: 1px solid #e0e0e0;
}

.faqs__layout > div .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 15px;
    column-gap: 15px;
    background-color: var(--spider-color);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    color: №ааа;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faqs__layout > div .accordion .minus {
    display: initial;
}

.faqs__layout > div .accordion-read {
    color: var(--spider-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    padding: 15px;
}

.faqs__layout > div .panel {
    max-height: 45px;
    overflow: hidden;
    padding: 20px;
    background-color: white;
}

/* .faqs__layout > div .panel p {
    display: none;
    max-height: 3.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.4s ease;
} */
.faqs__layout > div .accordion.expand .minus {
    display: none;
}

.faqs__layout > div .panel.expand {
    max-height: 1000px;
}

.faqs__layout > div .panel.expand p {
    display: block;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
}

@media (max-width: 1050px) {
    .faqs__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .faqs__layout > div {
        row-gap: 20px;
    }
}
@media (max-width: 768px) {
    .faqs__layout {
        grid-template-columns: 1fr;
    }

    .faqs__layout > div {
        row-gap: 20px;
    }
}
.quote-cart .pa-block {
    padding-bottom: 0;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.table th,
.table td {
    padding: 16px;
    border-bottom: 1px solid #ddd;
}
.table th {
    background-color: var(--accent-background-color);
}
.table td img {
    max-width: 100px;
    aspect-ratio: 1/1;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.js-deleteFromCart {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s ease;
}
.js-deleteFromCart:hover {
    background-color: tomato;
    color: #fff;
}

@media (max-width: 768px) {
    .table:not(figure) {
        display: block;
        width: 100%;
    }
    .table:not(figure) thead {
        display: none;
    }
    .table:not(figure) tbody {
        display: block;
    }
    .table:not(figure) tbody tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        padding: 10px;
    }
    .table:not(figure) tbody tr td {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .table:not(figure) tbody tr td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }
}
.qty-box {
    display: flex;
    align-items: center;
}
.qty-box input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: 1px solid #ddd;
}
.qty-box button {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background-color: var(--accent-background-color);
    color: #000;
    cursor: pointer;
    transition: 0.2s ease;
}
.qty-box button:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.qty-box > button:nth-child(1) {
    border-right: none;
}
.qty-box > button:nth-child(2) {
    border-left: none;
}

.scroll-top {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 1000;
    background: #d9282e;
    color: #fff;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.scroll-top:hover {
    background: #d9282ec9;
}
.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* [MAIN CSS START] */
.scroll-smooth {
    scroll-behavior: smooth;
}

.main-container--margin {
    margin-top: 130px;
}

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

.text-head {
    padding-bottom: 50px;
    margin-bottom: 30px;
    position: relative;
}
.text-head__title {
    text-align: center;
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1.8px;
}
.text-head__subtitle {
    color: inherit;
    text-align: center;
    font-size: clamp(20px, 1.5vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 5px;
    margin-top: 10px;
}
.text-head__line {
    width: 460px;
    height: 16px;
    background-color: #c1c1c1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .text-head__line {
        width: 280px;
    }
}
.text-head__link {
    position: absolute;
    top: -10px;
    left: 0;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.text-head__link:hover {
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .text-head__link {
        top: -20px;
    }
}

.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;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mw-800 {
    max-width: 800px;
}

.mw-1000 {
    max-width: 1000px;
}

.m-auto {
    margin: 0 auto;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.spider-color {
    color: var(--spider-color);
}

.boom-color {
    color: var(--boom-color);
}

.crane-color {
    color: var(--crane-color);
}

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

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

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

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

.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 {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

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

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

.title,
.title h1,
.title h2 {
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1.8px;
}
.title.title--center {
    text-align: center;
}
.title.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title.title--small {
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 5px;
}
.title--margin {
    margin-bottom: 40px;
}

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

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

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

.subtitle {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    background-color: var(--accent-color-2);
    color: var(--color-white, #fff);
    margin-bottom: 5px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.nowrap {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: #000;
    padding: 20px 25px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    color: #000;
    background: transparent;
    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);
}
@media (max-width: 768px) {
    .btn {
        font-size: 14px;
        padding: 12px 17px;
    }
}

.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--center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.btn.btn--transparent {
    border: 1px solid #000;
    color: #000;
    background: transparent;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .btn.btn--transparent {
        font-size: 14px;
        padding: 12px 17px;
    }
}

.btn.bg-spider {
    background-color: var(--spider-color);
    color: #fff;
}
.btn.bg-spider:hover {
    background-color: var(--spider-color-2);
    border-color: var(--spider-color-2);
}

.btn.bg-boom {
    background-color: var(--boom-color);
    color: #fff;
}
.btn.bg-boom:hover {
    background-color: var(--boom-color-2);
    border-color: var(--boom-color-2);
}

.btn.bg-crane {
    background-color: var(--crane-color);
    color: #fff;
}
.btn.bg-crane:hover {
    background-color: var(--crane-color-2);
    border-color: var(--crane-color-2);
}

.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;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    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. */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    display: none;
}

/* [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 #bdbdbd;
}

.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;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style: none;
}
.breadcrumbs.breadcrumbs--space-top {
    padding-top: 60px;
}
.breadcrumbs.breadcrumbs--space-bottom {
    padding-bottom: 15px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    position: relative;
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    font-size: 14px;
    color: #4f4f4f;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
}
.breadcrumbs li:last-child * {
    font-weight: 600;
}
.breadcrumbs a,
.breadcrumbs p {
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #4f4f4f;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    padding: 50px;
}
.pagination .pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #828282;
    transition: 0.3s ease;
}
.pagination .pagination__item:hover {
    background-color: var(--accent-color-4);
    color: #fff;
}
.pagination .pagination__item.pagination__item--active {
    background-color: var(--accent-color-4);
    color: #fff;
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.not-found-page__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 38px);
    color: var(--accent-color-4);
    line-height: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 100%;
    position: relative;
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    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.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

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

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

.badge {
    display: inline-block;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--accent-color);
    margin-left: 10px;
}

.accordion .pa-block {
    padding-top: 0;
}
.accordion .ui-accordion .ui-accordion-header {
    background-color: var(--accent-background-color);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 15px;
    font-size: 20px;
    color: #000;
    position: relative;
    transition: 0.2s ease;
    border-bottom: 1px solid rgba(0, 61, 166, 0.2);
}
.accordion .ui-accordion .ui-accordion-header.ui-accordion-header-active {
    background: rgba(0, 61, 166, 0.1);
}
.accordion .ui-accordion .ui-accordion-header .ui-icon {
    position: absolute;
    right: 15px;
    top: calc(50% + 5px);
    transform: translateY(-50%);
}
.accordion .ui-accordion .ui-accordion-content {
    border: 0;
    max-width: 85vw !important;
    overflow: auto;
}
.accordion .ui-accordion .ui-accordion-content p {
    margin-bottom: 15px;
}
.accordion .ui-accordion .ui-accordion-content ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.accordion .ui-accordion .ui-accordion-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}
.accordion .ui-accordion .ui-accordion-content table th {
    font-weight: 600;
    color: #fff;
    background-color: #c1c1c1;
    padding: 10px 15px;
    border: 1px solid #fff;
}
.accordion .ui-accordion .ui-accordion-content table td {
    padding: 10px 15px;
    background-color: #eeeeee;
    border: 1px solid #fff;
}
@media (max-width: 700px) {
    .accordion .ui-accordion .ui-accordion-content {
        max-width: 100%;
        padding: 1em 5px;
    }
}

.common-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.common-link:hover {
    text-decoration: underline;
}
.common-link.common-link--center {
    margin: 0 auto;
}

.socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
}
.socials .title {
    font-size: clamp(20px, 2vw, 28px);
}
.socials-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    color: var(--accent-color);
}
.socials-links a {
    color: var(--accent-color);
    transition: 0.2s ease;
}
.socials-links a:hover {
    color: var(--accent-color-2);
}

.video__thmb {
    position: relative;
}
.video__thmb-title {
    margin-top: 15px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.video__thmb-image {
    transition: 0.2s ease;
}
.video__thmb-image img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.glightbox_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all 0.4s ease-out;
}

.glightbox_video:hover ~ .video__thmb-image {
    filter: brightness(0.7);
}

.glightbox_video:hover .outer_circle {
    stroke-dashoffset: 410;
    transition: stroke 0.7s 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
}

.glightbox_video:hover .inner-circle {
    fill: var(--accent-color);
    transition: fill 0.4s 0.3s ease-out;
}

.glightbox_video:hover .play {
    fill: white;
    transition: fill 0.4s 0.3s ease-out;
}

@media (max-width: 768px) {
    .video__layout {
        grid-template-columns: 100%;
    }

    .video__thmb {
        max-width: 100%;
    }

    .video__thmb-image img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.back-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #696767;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.2s ease;
}
.back-btn:hover {
    color: var(--accent-color-2);
}

.styled-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.styled-list.styled-list--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 768px) {
    .styled-list.styled-list--2col {
        grid-template-columns: 1fr;
    }
}
.styled-list.styled-list--3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 1024px) {
    .styled-list.styled-list--3col {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .styled-list.styled-list--3col {
        grid-template-columns: 1fr;
    }
}
.styled-list.styled-list--4col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 1350px) {
    .styled-list.styled-list--4col {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 1024px) {
    .styled-list.styled-list--4col {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .styled-list.styled-list--4col {
        grid-template-columns: 1fr;
    }
}
.styled-list li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    position: relative;
    padding-left: 45px;
}
.styled-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    background-image: url(/img/icons/pb_list-checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.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-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%);
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 45px;
    margin: 0 auto;
    column-gap: 15px;
    row-gap: 15px;
}

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

.block-inner-title {
    font-size: 35px;
    text-align: center;
}

.thumb:link,
.thumb:visited {
    position: relative;
    z-index: 1;
    text-align: center;
    box-sizing: border-box;
    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 {
    display: flex;
    /* aspect ratio 4/3 not using aspect-ratio property for IE support */
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}
.thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
}

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

.thumb-content {
    padding: 20px;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
}

.blog-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%;
    margin-top: 10px;
}

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

.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%;
    text-transform: uppercase;
}

.text-tiny {
    font-size: 12px;
}

.text-small {
    font-size: 14px;
}

.text-big {
    font-size: clamp(20px, 2.5vw, 33px);
}

.text-huge {
    font-size: clamp(30px, 3.5vw, 40px);
}

.general-applications__layout {
    display: grid;
    grid-template-columns: 30% 1fr;
    column-gap: 60px;
    row-gap: 30px;
}
@media (max-width: 1100px) {
    .general-applications__layout {
        grid-template-columns: 1fr;
    }
}
.general-applications__content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
.general-applications__content-title {
    font-size: clamp(24px, 2vw, 34px);
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}
.general-applications__content-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
}
@media (max-width: 768px) {
    .general-applications__content-items {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .general-applications__content-items {
        grid-template-columns: 1fr;
    }
}
.general-applications__content-item {
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
}

.general-applications--boom .general-applications__content-item {
    border-left: 5px solid var(--boom-color);
}

.general-applications--crane .general-applications__content-item {
    border-left: 5px solid var(--crane-color);
}

.general-innovation {
    background-image: url(/img/backgrounds/pb_banner-bg.jpg);
    background-color: #000000ae;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
}
.general-innovation.general-innovation--boom {
    background-image: url(/img/backgrounds/pb_banner-bg-2.jpg);
}
.general-innovation__layout {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
    text-align: center;
    color: #fff;
}
.general-innovation__title {
    font-size: clamp(30px, 2.5vw, 45px);
    font-style: normal;
    font-weight: 500;
    letter-spacing: -1.8px;
    max-width: 990px;
    margin: 0 auto;
}

.general-innovation__subtitle {
    color: #fff;
    font-size: clamp(25px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 400;
    max-width: 990px;
    margin: 0px auto 0 auto;
}
.general-innovation--boom .general-innovation__subtitle {
    font-size: clamp(16px, 2.5vw, 25px);
}
.general-innovation__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 55px;
    row-gap: 30px;
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .general-innovation__items {
        column-gap: 30px;
    }
}
@media (max-width: 768px) {
    .general-innovation__items {
        grid-template-columns: 1fr;
    }
}

.general-innovation--boom .general-innovation__items {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}

@media (max-width: 1200px) {
    .general-innovation--boom .general-innovation__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .general-innovation--boom .general-innovation__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.general-innovation__item {
    border: 1px solid #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.general-innovation__item-icon {
    margin-bottom: 32px;
}
.general-innovation__item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.general-requirements__layout {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.general-requirements__title {
    margin-bottom: 25px;
}
.general-requirements__text {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
}
.general-requirements__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    margin: 35px auto 50px auto;
}
.general-requirements__item {
    display: grid;
    grid-template-columns: 25px 1fr;
    column-gap: 5px;
}
.general-requirements__subtitle {
    color: var(--accent-color);
    font-size: clamp(25px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 300;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.general-requirements__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.general-requirements__card {
    background-color: #ffffffce;
    /* border-radius: 10px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    /* max-width: 300px; */
    flex: 1 1 300px;
}

.general-requirements__card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
}

.general-requirements__card-header {
    background-color: var(--primary-color);
    color: #000;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

.general-requirements__card-body {
    padding: 20px;
    color: var(--text-color);
}

.general-requirements__card-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .general-requirements__cards {
        grid-template-columns: 1fr;
    }
}

.head-360 {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .head-360 {
        grid-template-columns: 50px 1fr;
        column-gap: 20px;
    }
}
