:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #1f49a5;
    --accent-color-2: #1342ec;
    --accent-color-3: #2963e2;
    --accent-background-color: #333333;
    --accent-background-color-2: #eeeeee;
    --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: #fff;
    --font-family: 'Montserrat', sans-serif;
    --font-family-accent: 'Montserrat', sans-serif;
}

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

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

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

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

body {
    margin: 0;
    scroll-behavior: smooth;
    background-color: var(--color-white);
    color: var(--color-black);
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    line-height: 150%;
}

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

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

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

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

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

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

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
    background-color: var(--color-white, #fff);
}
.header.header--scrolled {
    top: -60px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.header.header--scrolled .header-logo {
    max-height: 100%;
    max-width: 250px;
    margin-top: 0;
}
.header.header--scrolled .header-logo img {
    max-height: 40px;
}
.header.header--scrolled .header__layout-top {
    height: 40px;
}
.header.header--scrolled .header__layout-top__inner {
    height: 40px;
}
.header.header--scrolled .header__layout-bottom {
    height: 60px;
}
.header.header--scrolled .header__layout-bottom__inner {
    height: 60px;
}
.header.header--scrolled .header-anniversary {
    transform: skew(-53deg);
}
.header.header--scrolled .header-anniversary img {
    transform: skew(53deg);
}
.header.header--inner .header__layout-bottom__inner {
    background-image: radial-gradient(circle at 10% 50%, var(--accent-color) 0%, lightgray 30%, #fff 60%);
}
.header.header--inner .header-logo.header-logo--blue {
    display: none;
}
.header.header--inner .header-logo.header-logo--white {
    display: block;
}
.header-action-block-wp {
    height: 100%;
    display: flex;
    align-items: center;
}
.header-anniversary {
    transform: skew(-40deg);
    background-color: rgba(31, 73, 165, 0.1);
    width: 100%;
    min-width: 230px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -40px;
    position: relative;
}
.header-anniversary img {
    transform: skew(40deg);
    max-width: 80%;
}
@media (max-width: 1540px) {
    .header-anniversary {
        display: none;
    }
}
@media (max-width: 1400px) {
    .header-anniversary {
        display: flex;
    }
}
@media (max-width: 1100px) {
    .header-anniversary {
        display: none;
    }
}
.header-action-block {
    background-color: var(--accent-color);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%, 80px 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%, 80px 0);
    min-width: 470px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    justify-content: flex-end;
    height: 100%;
    padding-right: var(--container-padding);
}
.header-action-block__btn {
    color: #fff;
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
@media (max-width: 950px) {
    .header-action-block__btn {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .header-action-block__btn > span {
        display: none;
    }
}
@media (max-width: 950px) {
    .header-action-block {
        min-width: 370px;
    }
}
@media (max-width: 768px) {
    .header-action-block {
        min-width: 200px;
    }
}
.header__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 120px;
}
.header__layout-top {
    width: 100%;
    background-color: #f2f2f2;
}
.header__layout-top__inner {
    width: 100%;
    max-width: 1920px;
    height: 55px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    color: #000;
    padding: 0 var(--container-padding);
}
.header__layout-top__inner > .header__layout-top__call {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__layout-top__inner > .header__layout-top__call > a {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__layout-top__inner > .header__layout-top__call > a:hover {
    text-decoration: underline;
}
@media (max-width: 470px) {
    .header__layout-top__inner > .header__layout-top__call > a span {
        display: none;
    }
}
.header__layout-top__inner svg {
    color: var(--accent-color);
}
@media (max-width: 1000px) {
    .header__layout-top__inner > a span {
        display: none;
    }
}
@media (max-width: 650px) {
    .header__layout-top__inner > div > a:not(:first-of-type) {
        display: none;
    }
}
.header__layout-top__menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.header__layout-top__menu > a {
    padding: 0 10px;
    position: relative;
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__layout-top__menu > a.active {
    text-decoration: underline;
}
.header__layout-top__menu > a:hover {
    text-decoration: underline;
}
.header__layout-top__menu > a:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #000;
}
@media (max-width: 1050px) {
    .header__layout-top__menu {
        display: none;
    }
}
.header__layout-bottom {
    background-color: #fff;
    height: 100px;
    display: flex;
    justify-content: stretch;
    position: relative;
}
.header__layout-bottom__inner {
    max-width: 1920px;
    margin: 0 auto;
    height: 100px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 0 0 0 var(--container-padding);
}
.header__top-link {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__top-link:hover {
    text-decoration: underline;
}
.header-logo {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}
.header-logo img {
    display: flex;
    max-width: 100%;
    max-height: 100px;
}
@media (max-width: 500px) {
    .header-logo img {
        min-width: 200px;
    }
}
.header-logo.header-logo--blue {
    display: block;
}
.header-logo.header-logo--blue .header-logo--blue-sm {
    display: none;
}
@media (max-width: 500px) {
    .header-logo.header-logo--blue .header-logo--blue-sm {
        min-width: auto;
        display: flex;
    }
    .header-logo.header-logo--blue .header-logo--blue-lg {
        display: none;
    }
}
.header-logo.header-logo--white {
    display: none;
}
.header-logo.header-logo--white .header-logo--white-sm {
    display: none;
}
@media (max-width: 500px) {
    .header-logo.header-logo--white .header-logo--white-sm {
        display: flex;
        min-width: auto;
    }
    .header-logo.header-logo--white .header-logo--white-lg {
        display: none;
    }
}
.header-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    -moz-column-gap: 20px;
    column-gap: 20px;
    height: 100%;
}
.header-menu > li {
    display: flex;
    align-items: center;
    height: auto;
}
.header-menu > li:hover .header-submenu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}
.header-menu > li:hover > a {
    box-shadow: 0px -4px 0px -2px var(--accent-color-3);
    color: #000;
}
.header-menu__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    padding: 10px;
    white-space: nowrap;
    transition: 0.3s ease;
    margin-top: 2px;
}
@media (max-width: 1780px) {
    .header-menu__link {
        font-size: 14px;
    }
}
.header-menu__link.header-menu__link--active {
    box-shadow: 0px -4px 0px -2px var(--accent-color-3);
}
.header-menu__link.header-menu__link--contact {
    color: var(--color-white, #fff);
    background-color: var(--accent-color-3);
    padding: 15px;
}
.header-menu__link.header-menu__link--contact:hover {
    background-color: var(--accent-color-3);
    color: var(--color-white, #fff);
    box-shadow: none;
}
@media (max-width: 1780px) {
    .header-menu {
        -moz-column-gap: 0;
        column-gap: 0;
    }
}
@media (max-width: 1400px) {
    .header-menu {
        flex: none;
    }
    .header-menu > *:not(.header__menu-mobile) {
        display: none;
    }
}
.header-menu-partner {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 1500px) {
    .header-menu-partner {
        display: none !important;
    }
}
.header-submenu {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(50px);
    background-color: #eef1f9;
    width: 100vw;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    padding: 48px;
    z-index: 1;
    transition: 0.2s ease;
}
.header-submenu__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    padding-left: 25px;
    border-left: 5px solid var(--accent-color);
}
.header .header-swiper {
    margin-top: 30px;
}
.header .header-swiper .swiper-slide {
    height: auto;
}
.header .header-swiper .swiper-button-next,
.header .header-swiper .swiper-button-prev {
    background-color: var(--accent-color);
    color: var(--color-white);
    --swiper-navigation-size: 30px;
    width: 30px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.header .header-swiper .swiper-button-prev {
    background-color: var(--accent-color-2);
}
.header .pr-app-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    max-width: 250px;
}
.header .pr-app-slide__media {
    width: 100%;
    max-width: 250px;
    height: 140px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.header .pr-app-slide__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.header .pr-app-slide__title {
    color: #000;
    text-align: center;
    font-size: clamp(16px, 1vw, 18px);
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
}
.header .pr-app-slide__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: var(--accent-color);
    font-size: 13.194px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 14.513px */
    letter-spacing: 0.924px;
    text-transform: uppercase;
    padding: 5px;
    transition: 0.2s ease;
}
.header .pr-app-slide:hover .pr-app-slide__link {
    background-color: var(--accent-color);
    color: #fff;
}
.header .pr-app-slide.pr-app-slide--nomedia {
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    padding: 50px 15px;
    height: 100%;
}
.header .pr-app-slide.pr-app-slide--nomedia__media {
    display: none;
}
.header__partner {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.header__partner img {
    min-width: 185px;
}
@media (max-width: 1350px) {
    .header__partner {
        flex: none;
    }
}
@media (max-width: 600px) {
    .header__partner {
        display: none;
    }
}
.header__quote-btn {
    display: flex;
    align-self: stretch;
    align-items: center;
    height: 100%;
    padding: 15px 30px;
    color: var(--color-black);
    font-weight: 500;
    font-size: 20px;
    border: 0;
    background-color: var(--accent-color);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
}
.header__quote-btn svg {
    display: none;
}
@media (max-width: 1500px) {
    .header__quote-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .header__quote-btn > span {
        display: none;
    }
    .header__quote-btn svg {
        display: block;
    }
}
.header__quote-btn:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* || HEADER end || */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas: 'par__img par__txt';
    grid-gap: 5%;
    padding-block: 20px;
    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__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.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;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__ttl {
    font-size: clamp(20px, 4vw, 45px);
    line-height: 110%;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}
.par__subttl {
    font-weight: 600;
    font-size: clamp(16px, 3vw, 25px);
    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: 40px; */
    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);
}
@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;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas: 'par__txt par__img';
}

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

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

/* [_paragraph end] */
.footer {
    background-image: url(/img/misc/cfs-footer-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #122f60;
}
.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: var(--accent-color);
}
.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: #c2c2c2;
}
.footer__bottom a {
    color: #c2c2c2;
    text-decoration: none;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
}
.footer__logo-cert {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.footer__logo-cert > div {
    background-color: #fff;
    width: 50px;
    height: 55px;
    padding: 5px;
    border-radius: 10px;
}
.footer__label {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2px;
}
.footer__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
    color: #fff;
}
.footer__nav-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
}
.footer__nav-wrapper ul {
    list-style: none;
}
.footer__nav-wrapper ul li {
    margin-bottom: 3px;
}
.footer__nav-wrapper ul a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: 0.3s ease;
}
.footer__nav-wrapper ul a:hover {
    text-decoration: underline;
}
@media (max-width: 1350px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 950px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 650px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
    .footer__nav-wrapper > :last-child {
        grid-column: 1/-1;
    }
}
.footer__nav-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-top: 30px;
    color: #fff;
}
.footer__nav-contact a {
    color: #fff;
}
.footer__nav-contact-social {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.footer__nav-contact-info {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
    flex-wrap: wrap;
}
.footer__nav-contact-info a {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 950px) {
    .footer__nav-contact-info {
        flex-direction: column;
        row-gap: 20px;
    }
}
@media (max-width: 650px) {
    .footer__nav-contact {
        flex-direction: column;
        row-gap: 20px;
        align-items: flex-start;
    }
}
.footer__certificates {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 650px) {
    .footer__certificates {
        align-items: flex-start;
    }
}
.footer__social {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 30px;
}
.footer__info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
}
.footer__info-list > .footer__title {
    grid-column: 1/-1;
}

.contact-item {
    position: relative;
    padding-left: 55px;
    color: #fff;
    margin-bottom: 25px;
}
.contact-item a {
    color: #fff;
    transition: 0.2s ease;
}
.contact-item a:hover {
    color: var(--accent-color-3);
}
.contact-item.phone::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 30px;
    height: 30px;
    background-image: url('/img/svg/em_phone.svg');
    background-size: cover;
}
.contact-item.pin::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 30px;
    height: 30px;
    background-image: url('/img/svg/em_pin.svg');
    background-size: cover;
}

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

.home-hero {
    --hero-side-padding: var(--container-padding);
    --swiper-pagination-bullet-size: 15px;
    --swiper-pagination-bullet-border-radius: 50%;
    --swiper-pagination-color: #3f76ee;
    --swiper-pagination-bullet-inactive-color: #122f60;
    --swiper-navigation-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 0.9;
}
.home-hero .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    width: 20px !important;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: left;
    right: 5%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.home-hero .swiper-pagination-clickable .swiper-pagination-bullet {
    border: 2px solid #fff;
    left: 0 !important;
}
.home-hero .swiper-slide {
    position: relative;
    height: 570px;
}
.home-hero .swiper-slide .text-effect {
    font-weight: bold;
    text-transform: uppercase;
    color: transparent;
    display: inline-block;
    background: linear-gradient(
        to bottom,
        white 0%,
        white 50%,
        transparent 50%,
        transparent 53%,
        white 53%,
        white 58%,
        transparent 58%,
        transparent 61%,
        white 61%,
        white 66%,
        transparent 66%,
        transparent 69%,
        white 69%,
        white 74%,
        transparent 74%,
        transparent 77%,
        white 77%,
        white 100%
    );
    background-size: 100% 100%;
    background-position: 50% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}
.home-hero .swiper-slide-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.home-hero .swiper-slide__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.home-hero .swiper-slide.swiper-slide--with-image .swiper-slide__shadow {
    display: none;
}
.home-hero .swiper-slide:not(.swiper-slide--with-image) .swiper-slide__layout {
    padding: 40px var(--hero-side-padding);
}
.home-hero .swiper-slide__layout {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 40px 0 40px var(--hero-side-padding);
    height: 100%;
}
.home-hero .swiper-slide__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white, #fff);
    z-index: 1;
}
.home-hero .swiper-slide__content-title {
    color: var(--color-white, #fff);
    font-size: clamp(32px, 4vw, 70px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.swiper-slide__content-title.title-small {
    font-size: clamp(22px, 2vw, 45px);
}
.home-hero .swiper-slide__content-subtitle {
    color: var(--color-white, #fff);
    font-size: clamp(22px, 2vw, 45px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.home-hero .swiper-slide__content-link {
    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;
    background-color: transparent;
    border: 1px solid var(--color-white, #fff);
    color: var(--color-white, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: 1.26px;
    text-transform: uppercase;
    padding: 20px 20px;
    margin-top: 60px;
    transition: 0.2s ease;
}
.home-hero .swiper-slide__content-link:hover {
    background-color: var(--accent-color);
    color: var(--color-white, #fff);
    border-color: var(--accent-color);
}
@media (max-width: 500px) {
    .home-hero .swiper-slide__content-link {
        font-size: 14px;
        padding: 15px 15px;
    }
}
.home-hero .swiper-slide__media {
    flex: 1;
    display: flex;
    align-items: center;
}
@media (max-width: 430px) {
    .home-hero .swiper-slide__media {
        display: none;
    }
}
@media (max-width: 1100px) {
    .home-hero .swiper-slide {
        height: 480px;
    }
    .home-hero .swiper-slide__layout {
        padding: 40px 0 40px var(--hero-side-padding);
    }
}
@media (max-width: 768px) {
    .home-hero .swiper-slide {
        height: 400px;
    }
}
@media (max-width: 430px) {
    .home-hero .swiper-slide.swiper-slide--with-image .swiper-slide__layout {
        padding: 40px var(--hero-side-padding);
    }
}
@media (max-width: 1600px) {
    .home-hero {
        --hero-side-padding: 10%;
    }
}

.home-problems__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    position: relative;
}
.home-problems__head .title {
    position: relative;
    padding-left: 25px;
}
.home-problems__head .title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 100%;
    background-color: var(--accent-color);
}
.home-problems__head .title::after {
    content: '';
    position: absolute;
    top: -29px;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 61px;
    background-color: var(--accent-color-2);
}
.home-problems__swiper-navigation {
    position: relative;
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.home-problems__swiper-navigation .swiper-button-next,
.home-problems__swiper-navigation .swiper-button-prev {
    background-color: var(--accent-color);
    color: var(--color-white);
    --swiper-navigation-size: 20px;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    cursor: pointer;
    transition: background-color 0.3s;
}
.home-problems__swiper-navigation .swiper-button-prev {
    background-color: var(--accent-color-2);
}
.home-problems-swiper {
    margin-top: 30px;
    padding-left: var(--container-padding);
}
.home-problems-swiper .swiper-slide {
    height: 100%;
}
.home-problems-swiper__item {
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: 0.2s ease;
}
.home-problems-swiper__item-top {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding: 5px;
    transition: 0.2s ease;
}
.home-problems-swiper__item-title {
    font-size: clamp(16px, 2vw, 22px);
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.home-problems-swiper__item-text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.home-problems-swiper__item-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: var(--accent-color);
    font-size: 13.194px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 14.513px */
    letter-spacing: 0.924px;
    text-transform: uppercase;
    margin-top: 30px;
}
.home-problems-swiper__item:hover {
    background-color: #eeeeee;
}
.home-problems-swiper__item:hover .home-problems-swiper__item-top {
    background-color: var(--accent-color);
    color: #fff;
}

.home-products {
    background-color: #eee;
}
.home-products__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    padding-left: 40px;
}
.home-products__layout-outer {
    display: grid;
    grid-template-columns: 500px 1fr;
}
@media (max-width: 1330px) {
    .home-products__layout-outer {
        grid-template-columns: 350px 1fr;
    }
}
@media (max-width: 870px) {
    .home-products__layout-outer {
        grid-template-columns: 1fr;
    }
}
.home-products__layout > a:hover .home-products__item-link {
    color: var(--color-white, #fff);
    background-color: var(--accent-color, #1f49a5);
}
@media (max-width: 1160px) {
    .home-products__layout {
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media (max-width: 870px) {
    .home-products__layout {
        padding-left: 0;
    }
}
.home-products__text {
    background-color: #dddddd;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1330px) {
    .home-products__text {
        padding: 40px;
    }
}
.home-products__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s ease;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.home-products__item-image {
    overflow: hidden;
    width: 100%;
}
.home-products__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: 0.7s ease;
}
.home-products__item-title {
    padding: 15px 20px;
    color: #000;
    text-align: center;
    font-size: clamp(13px, 1.2vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.home-products__item-link {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: var(--accent-color);
    padding: 5px;
    font-weight: 500;
    letter-spacing: 0.924px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.home-products__item:hover .home-products__item-image img {
    transform: scale(1.1);
}

.home-certificates {
    background-image: url('/img/misc/cfs-certificates-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000;
}
.home-certificates__layout {
    /* display: grid;
    grid-template-columns: 300px 1fr; */
    grid-gap: 20px;
}
@media (max-width: 950px) {
    .home-certificates__layout {
        grid-template-columns: 1fr;
    }
}
.home-certificates__media {
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.home-certificates__media > div {
    border-radius: 10px;
    padding: 10px;
    width: 95px;
    height: 105px;
}
@media (max-width: 950px) {
    .home-certificates__media {
        grid-row: 2;
    }
}
.home-certificates__content .title {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.home-cta {
    background-image: url(/img/misc/cfs-home-cta-bg.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #000000b8;
    background-blend-mode: overlay;
}
.home-cta__layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
    min-height: 560px;
}
@media (max-width: 1330px) {
    .home-cta__layout {
        min-height: 400px;
    }
}
@media (max-width: 1024px) {
    .home-cta__layout {
        min-height: 300px;
    }
}
@media (max-width: 768px) {
    .home-cta__layout {
        min-height: 200px;
    }
}
.home-cta__text {
    color: var(--White, #fff);
    font-size: clamp(24px, 2.5vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 1100px;
}
.home-cta__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--accent-color, #1f49a5);
    color: var(--color-white, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: 1.26px;
    text-transform: uppercase;
    padding: 20px;
    transition: background-color 0.3s ease;
}
.home-cta__link:hover {
    background-color: var(--accent-color-2);
}

.home-applications__head {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.home-applications__head .title {
    color: var(--accent-color);
    position: relative;
    padding-left: 35px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.home-applications__head .title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 100%;
    background-color: var(--accent-color);
}
.home-applications__head .title::after {
    content: '';
    position: absolute;
    top: -29px;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 61px;
    background-color: var(--accent-color-2);
}
@media (max-width: 768px) {
    .home-applications__head {
        flex-direction: column;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 30px;
    }
}
.home-applications__body {
    position: relative;
    padding-top: 40px;
}
.home-applications__body .swiper.h-ind-swiper,
.home-applications__body .h-ind-carousel {
    /* max-width: 1465px; */
    /* width: 100%; */
    /* max-width: 1315px; */
}
.home-applications__body .swiper.h-ind-swiper .swiper-wrapper {
    justify-content: stretch;
    padding-bottom: 50px;
}
.home-applications__body .h-ind-swiper .swiper-slide,
.home-applications__body .h-ind-carousel--slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: max-content;
  height: max-content; */
    /* width: 400px; */
    height: 350px;
    width: 100%;
    /* height: 100%; */
    max-width: 350px;
    /* max-height: 400px; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-applications__body .h-ind-carousel .carousel__slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.home-applications__body .sw-ind-item {
    display: flex;
    width: 90%;
    height: 90%;
    justify-content: center;
    /* align-items: center; */
    padding: 15px;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #ffffff;
    transition: 0.3s ease;
    position: relative;
    overflow-y: auto;
}
.home-applications__body .sw-ind-item:hover {
    background: rgba(0, 0, 0, 0.7);
}
.home-applications__body .sw-ind-item h3 {
    font-weight: 600;
    line-height: 100%;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.home-applications__body .sw-ind-item p {
    font-size: 14px;
    line-height: 150%;
}
.home-applications__body .sw-ind-item--lm {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: var(--accent-color);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%, 40px 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%, 40px 0);
    padding-left: 50px;
}
.home-applications__footer {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    position: relative;
}
.home-applications__footer .swiper-button-next,
.home-applications__footer .swiper-button-prev {
    background-color: var(--accent-color);
    color: var(--color-white);
    --swiper-navigation-size: 20px;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    cursor: pointer;
    transition: background-color 0.3s;
}
.home-applications__footer .swiper-button-prev {
    background-color: var(--accent-color-2);
}
.home-solutions {
    background-color: #eee;
}
.home-solutions__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1300px) {
    .home-solutions__layout {
        grid-template-columns: 1fr;
    }
}
.home-solutions__message {
    background-color: #eee;
    padding: 95px 90px;
}
.home-solutions__message-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 35px;
}
.home-solutions__message-head .btn {
    padding: 5px 10px;
    font-size: 13px;
}
.home-solutions__message-body img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 220px;
}
.home-solutions__message-body__signature {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    margin-top: 20px;
}
@media screen and (max-width: 1300px) {
    .home-solutions__message {
        padding: 50px var(--container-padding);
    }
}
.home-solutions__solutions {
    background-image: url(/img/misc/cfs-solutions-bg.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
    padding: 95px 90px;
}
.home-solutions__solutions-inner {
    max-width: 500px;
}
.home-solutions__solutions ul {
    list-style: none;
    margin-top: 50px;
}
.home-solutions__solutions ul li {
    padding-left: 25px;
    margin-bottom: 15px;
}
.home-solutions__solutions ul li a {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    transition: 0.2s ease;
}
.home-solutions__solutions ul li a:hover {
    color: var(--accent-color);
}
@media screen and (max-width: 768px) {
    .home-solutions__solutions ul li a {
        font-size: 16px;
        display: grid;
        grid-template-columns: 25px 1fr;
    }
    .home-solutions__solutions ul li a svg {
        width: 25px;
    }
}
@media screen and (max-width: 1300px) {
    .home-solutions__solutions {
        padding: 50px var(--container-padding);
    }
}

.page-head {
    background-image: url(/img/misc/cfs-page-head-bg.jpg);
    background-color: #00000070;
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-head .container {
    position: relative;
    overflow: hidden;
}
.page-head__layout {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 80px;
    column-gap: 80px;
}
.page-head__layout .title {
    color: #fff;
}
@media (max-width: 768px) {
    .page-head__layout {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-about {
    background-image: url(/img/misc/cfs-about-image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 5%;
}
.about-about__message {
    background-color: #1f49a5d7;
    max-width: 850px;
    transform: translateY(10%);
    padding: 75px;
}
.about-about__message .title {
    color: #fff;
    margin-bottom: 25px;
}
.about-about__message-text {
    color: #fff;
}
.about-about__message-text img {
    max-width: 215px;
    float: left;
    margin-right: 23px;
    margin-bottom: 20px;
}
.about-about__message-signature {
    margin-top: 30px;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
}
@media (max-width: 975px) {
    .about-about__message {
        padding: 50px;
        transform: unset;
    }
}
@media (max-width: 550px) {
    .about-about__message {
        padding: 25px;
        transform: unset;
    }
}

.about-vision__container {
    border: 1px solid var(--accent-color);
    padding: 70px;
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
.about-vision__container .title {
    flex: 1 0 220px;
}
@media (max-width: 950px) {
    .about-vision__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px;
        row-gap: 25px;
    }
    .about-vision__container .title {
        flex: 1 0 100%;
    }
}

.blog-splash__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
@media (max-width: 1200px) {
    .blog-splash__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .blog-splash__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blog-splash__layout {
        grid-template-columns: 1fr;
    }
}
.blog-splash__item {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    transition: 0.5s ease;
}
.blog-splash__item-media {
    overflow: hidden;
}
.blog-splash__item-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}
.blog-splash__item-texts {
    padding: 0 10px 15px;
}
.blog-splash__item-date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
    background-color: var(--accent-background-color-2, #eeeeee);
    color: var(--color-black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-splash__item-title {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-splash__item-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-black, #000);
    font-size: 14px;
}
.blog-splash__item:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
}
.blog-splash__item:hover .blog-splash__item-media img {
    transform: scale(1.1);
}

.blog-article__back {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #696767;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.2s ease;
}
.blog-article__back:hover {
    color: var(--accent-color, #0a3ae3);
}
.blog-article__title {
    color: var(--color-black, #000);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}
.blog-article__date {
    background-image: url(/img/svg/em_calendar.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 25px;
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    min-height: 20px;
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.blog-article__product {
    display: flex;
    -moz-column-gap: 80px;
    column-gap: 80px;
    padding: 20px 0;
}
.blog-article__product-link a {
    display: flex;
    align-items: center;
    -moz-column-gap: 7px;
    column-gap: 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    padding: 10px 15px;
    border: 1px solid var(--accent-color, #0a3ae3);
    color: var(--accent-color, #0a3ae3);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 1.12px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.blog-article__product-link a:hover {
    background-color: var(--accent-color, #0a3ae3);
    color: var(--color-white, #fff);
}
@media (max-width: 768px) {
    .blog-article__product {
        flex-direction: column;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 20px;
    }
}

.facility-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
@media (max-width: 1250px) {
    .facility-gallery__grid {
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 10px;
    }
}
@media (max-width: 800px) {
    .facility-gallery__grid {
        grid-template-columns: 1fr;
    }
}
.facility-gallery__item {
    display: grid;
    place-items: center;
    height: 25.3vw;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--accent-background-color);
    padding: 25px;
}

.video-block {
    position: relative;
}
.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 .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;
}

.facility-gallery__item.span-2 {
    grid-column: span 2;
    height: 25.3vw;
}
@media (max-width: 800px) {
    .facility-gallery__item.span-2 {
        grid-column: span 1;
    }
}
.facility-gallery__item p {
    width: 100%;
}
.facility-gallery__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1250px) {
    .facility-gallery__item {
        justify-content: flex-start;
    }
}
@media (max-width: 1250px) {
    .facility-gallery__item {
        font-size: 14px;
    }
}
@media (max-width: 800px) {
    .facility-gallery__item {
        height: 50vw;
    }
    .facility-gallery__item.span-2 {
        height: 50vw;
    }
}

.side-menu-wrapper {
    background-color: #eee;
    padding-left: var(--container-padding);
}
@media screen and (max-width: 650px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.side-menu-title {
    color: var(--color-whitee, #fff);
    font-family: var(--font-family-accent);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    background-color: var(--accent-color);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
}
.side-menu-list {
    list-style: none;
}
.side-menu-list > li {
    margin-bottom: 20px;
}
.side-menu-list > li ul {
    margin-top: 20px;
    list-style: none;
    padding-left: 25px;
}
.side-menu-list > li ul a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
    transition: 0.2s ease;
}
.side-menu-list > li ul a:hover {
    color: var(--accent-color-3, #fe0002);
}
.side-menu-list > li > a {
    display: inline-flex;
    padding-left: 12px;
    color: var(--color-black, #000);
    font-family: var(--font-family-accent);
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.side-menu-list > li > a:hover {
    color: var(--accent-color-3, #fe0002);
}
.side-menu-list > li > a.active {
    border-left: 4px solid var(--accent-color-3, #fe0002);
    font-weight: 600;
}
.side-menu-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(/img/misc/cfs-side-cta-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    margin-right: 10px;
}
.side-menu-cta__title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding: 3px;
}
.side-menu-cta__title.active {
    background-color: var(--accent-color);
    color: #fff;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.side-menu-cta__link {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding: 3px;
    text-decoration: underline;
    margin-top: 30px;
    transition: 0.2s ease;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.side-menu-cta__link:hover {
    background-color: var(--accent-color);
    color: #fff;
}
@media screen and (max-width: 650px) {
    .side-menu {
        display: none;
    }
}

.product-content {
    padding-right: 5%;
}
.product-content__top {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.product-content__top-files {
    min-width: 320px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px;
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.product-content__top-files-title {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}
.product-content__top-file {
    display: grid;
    grid-template-columns: 40px 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
    color: #000;
}
.product-content__top-file-dw {
    color: #2963e2;
    text-decoration: underline;
}
@media (max-width: 1250px) {
    .product-content__top {
        flex-direction: column;
        row-gap: 20px;
    }
}
.product-content .text-title {
    margin-bottom: 25px;
}
.product-content .smaller-title {
    font-family: var(--font-family-accent);
    font-size: clamp(18px, 2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}
.product-content .pa-inline {
    padding-inline: 5%;
}
.product-content ul {
    padding: 10px 0 10px 40px;
}
.product-content ul li {
    margin-bottom: 8px;
    line-height: 150%;
}
.product-content__project-head {
    display: grid;
    grid-template-columns: 1fr 250px;
    -moz-column-gap: 150px;
    column-gap: 150px;
}
.product-content__project-head-media {
    position: relative;
}
.product-content__project-head-media:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: #c1c1c1;
}
@media (max-width: 1350px) {
    .product-content__project-head {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    .product-content__project-head-media {
        grid-row: 1;
    }
    .product-content__project-head-media:before {
        display: none;
    }
}
.product-content__gallery {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    --swiper-navigation-color: var(--color-white);
    --swiper-navigation-size: 30px;
}
.product-content__gallery .swiper-button-prev,
.product-content__gallery .swiper-button-next {
    background-color: var(--accent-color);
    width: 35px;
    height: 40px;
}
.product-content__gallery .swiper-slide > a {
    /* make aspect ratio 4/3 for images inside */
    display: flex;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-content__gallery .swiper-slide > a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.product-content__sub-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 850px) {
    .product-content__sub-layout {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 650px) {
    .product-content {
        padding-inline: var(--container-padding);
    }
}

.contact-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
@media (max-width: 1400px) {
    .contact-us__layout {
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}
@media (max-width: 768px) {
    .contact-us__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.contact-us__info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 50px;
}
@media (max-width: 1100px) {
    .contact-us__info-layout {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }
}
.contact-us__info-item {
    padding-left: 45px;
}
.contact-us__info-item a {
    color: var(--color-black, #000);
}
.contact-us__info-item-title {
    color: var(--color-black, #000);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.contact-us__info-item.phone {
    background: url('/img/svg/cfs_phone-blue.svg');
    background-repeat: no-repeat;
    background-position: left top;
}
.contact-us__info-item.pin {
    background: url('/img/svg/cfs_pin-blue.svg');
    background-repeat: no-repeat;
    background-position: left top;
}
.contact-us__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 30px;
}
.contact-us__form-head {
    grid-column: 1/-1;
}
.contact-us__form-head-title {
    color: var(--color-black, #000);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.contact-us__form input,
.contact-us__form textarea,
.contact-us__form select {
    border: 1px solid #d1d1d1;
}
.contact-us__form .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
}
@media (max-width: 500px) {
    .contact-us__form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}

.contact-section {
    background-color: var(--accent-background-color);
}
.contact-section__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    max-width: 1280px;
    margin: 40px auto 0 auto;
}
.contact-section__form .btn {
    grid-column: 1/-1;
    margin: 0 auto;
}
.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%;
    }
}

/* [MAIN CSS START] */
.main-container--margin {
    margin-top: 155px;
}

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

.text-block {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 150%;
}

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

.relative {
    position: relative;
}

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

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

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

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

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

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

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

input.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

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

.title {
    font-size: clamp(24px, 2vw, 50px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.title > span {
    color: var(--accent-color);
}
.title--center {
    text-align: center;
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 5px;
}
.title--mar {
    margin-bottom: 40px;
}

.text-title {
    font-family: var(--font-family-accent);
    font-size: clamp(24px, 2vw, 28px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

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

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

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

.subtitle {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    background-color: var(--accent-color);
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px;
    letter-spacing: 2px;
}

.nowrap {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    color: #fff;
    background: var(--accent-color-2);
    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);
}

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

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--light {
    border: 1px solid var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--light2 {
    border: 1px solid var(--accent-color-3);
    color: #fff;
    background: var(--accent-color-3);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light2:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 5px -2px #464646;
}

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

.about-2col__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 40px;
    line-height: 150%;
}
.about-2col__content .title {
    grid-column: 1/-1;
}
@media (max-width: 1200px) {
    .about-2col__content {
        grid-template-columns: 100%;
    }
}

.accordion {
    max-width: 1600px;
    margin: 0 auto;
}
.accordion .pa-block {
    padding-top: 0;
}
.accordion .ui-accordion .ui-accordion-header {
    background-color: transparent;
    border: 1px solid #979696;
    border-radius: 0;
    margin-top: 10px;
    padding: 15px;
    font-size: 20px;
    color: #000;
}
.accordion .ui-accordion .ui-accordion-header .ui-icon {
    margin-right: 10px;
}
.accordion .ui-accordion .ui-accordion-content {
    border: 0;
    text-align: center;
    max-width: 1050px;
    margin: 0 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;
    margin: 0 auto;
}
.accordion .ui-accordion .ui-accordion-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}
@media (max-width: 700px) {
    .accordion .ui-accordion .ui-accordion-content {
        max-width: 100%;
        padding: 1em 5px;
    }
}

.back-btn {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #696767;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: 0.2s ease;
}
.back-btn:hover {
    color: #000;
}

.product-layout {
    display: grid;
    grid-template-columns: 400px calc(100% - 420px);
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 1050px) {
    .product-layout {
        grid-template-columns: 240px calc(100% - 260px);
    }
}
@media (max-width: 650px) {
    .product-layout {
        grid-template-columns: 100%;
    }
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.styled-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    position: relative;
}
.styled-list li:before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url(/img/svg/em_checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.sm-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--accent-color, #0a3ae3);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.sm-link:hover {
    color: var(--accent-color-3, #fe0002);
}

@media (max-width: 650px) {
    .solution-application {
        padding-inline: var(--container-padding);
    }
}
