:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #a92a3b;
    --accent-color-2: #1e436d;
    --accent-dark-color: #4f4f4f;
    --font-style-1: 'Alex Brush', cursive;
    --font-style-2: 'Roboto Slab', serif;
    --font-style-3: 'Roboto', sans-serif;
    --accent-background-color: #f5f2ef;
    --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;
}

@media (max-width: 1260px) {
    :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: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.relative {
    position: relative;
}

.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: 9;
    transition: 0.3s ease;
    background-color: #fff;
}
.canada-sign {
    display: flex;
    align-items: center;
    min-width: 100px;
}
.header__top {
    height: 125px;
    position: relative;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}
.header__top-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.2s ease;
}
@media (max-width: 480px) {
    .header__top-logo {
        left: 55%;
    }
}
.header__top-logo img {
    transition: 0.2s ease;
}
@media (max-width: 800px) {
    .header__top-logo {
        max-width: 300px;
    }
}
.header__top-logo.stick-to-bottom {
    top: 44px;
    max-width: 262px;
}
@media (max-width: 570px) {
    .header__top-logo.stick-to-bottom {
        max-width: 45%;
    }
}
@media (max-width: 570px) {
    .header__top-logo {
        max-width: 45%;
    }
}
.header__top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    width: 100%;
    -moz-column-gap: 300px;
    column-gap: 300px;
    margin: 0 auto;
}
.header__top-grid-item {
    display: flex;
    transition: 0.2s ease;
}

.header__top-grid-item__link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 40px 0;
    color: var(--accent-color-2);
    text-decoration: none;
    font-family: var(--font-style-3);
    letter-spacing: 0.08em;
    font-weight: 400;
    font-size: 16px;
}
.header__top-grid-item__link.header__top-grid-item__link--mobile {
    display: none;
}

/* @media (max-width: 1500px) {
    .header__top-grid-item__link.header__top-grid-item__link--mobile {
        display: inline-flex;
    }
    .header__top-grid-item__link--mobile-1 {
        display: none;
    }
    .header__top-grid-item__link--mobile-2 > span {
        display: block;
    }

} */

@media (max-width: 1500px) {
    .header__top-grid-item__link.header__top-grid-item__link--mobile {
        display: inline-flex;
    }
    .header__top-grid-item:last-child .header__top-grid-item__link {
        display: none;
    }
    .header__top-grid-item__link > span {
        display: block;
    }
    .header__top-grid-item:first-child .header__top-grid-item__link:first-of-type span {
        display: none;
    }
}

@media (max-width: 750px) {
    .header__top-grid-item__link > span {
        display: none;
    }
}

.header__top-grid-item__quote {
    background-color: var(--accent-color-2);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 40px 10px 20px 10px;
    font-style: var(--accent-color-2);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    transition: 0.2s ease;
}
.header__top-grid-item__quote:hover {
    background-color: var(--accent-color);
}
.header__top-grid-item__quote svg {
    display: none;
    width: 30px;
    height: 30px;
}
@media (max-width: 900px) {
    .header__top-grid-item__quote {
        font-size: 12px;
        white-space: nowrap;
    }
}
@media (max-width: 800px) {
    .header__top-grid-item__quote svg {
        display: inline-block;
    }
    .header__top-grid-item__quote span {
        display: none;
    }
}
.header__top-grid-item.stick-to-bottom {
    align-items: end;
}
.header__top-grid-item.stick-to-bottom .header__top-grid-item__link {
    padding: 20px 0;
}
.header__top-grid-item:first-child {
    padding-right: 30px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    justify-content: space-around;
}
.header__top-grid-item:last-child {
    justify-content: flex-end;
    -moz-column-gap: 25px;
    column-gap: 25px;
    padding-left: 30px;
}
@media (max-width: 1500px) {
}
@media (max-width: 570px) {
    .header__top-grid {
        -moz-column-gap: 0;
        column-gap: 0;
    }
    .header__top-grid-item:first-child {
        justify-content: flex-start;
        align-items: center;
        max-width: 20%;
    }
    .canada-sign {
        margin-top: 30px;
    }
}
@media (max-width: 1100px) {
    .header__top {
        display: flex;
        align-items: center;
        -moz-column-gap: 30px;
        column-gap: 30px;
        justify-content: space-between;
        padding: 0 var(--container-padding);
    }
}
.header__bottom {
    background-color: var(--accent-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 300px;
    column-gap: 300px;
    height: 43px;
}
.header__bottom > :nth-child(1) {
    justify-self: flex-end;
    padding-right: 50px;
}
.header__bottom > :nth-child(2) {
    justify-self: flex-start;
    padding-left: 50px;
}
.header__bottom > .header__menu-spacer {
    display: none;
}
@media (max-width: 1500px) {
    .header__bottom > .header__menu-spacer {
        display: block;
    }
}
@media (max-width: 570px) {
    .header__bottom {
        grid-template-columns: 100%;
    }
    .header__bottom > .header__menu-spacer {
        display: none;
    }
}
.header__menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    -moz-column-gap: 52px;
    column-gap: 52px;
    list-style: none;
}
.header__menu-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.145em;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.header__menu-link:not(.header__menu-link--logo):after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}
.header__menu-link:not(.header__menu-link--logo):hover {
    color: #000;
}
.header__menu-link:not(.header__menu-link--logo):hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.3s ease;
}
.header__menu-link--active {
    background-color: var(--accent-color-2);
}
.header__menu-link.header__menu-link--logo {
    display: flex;
    display: none;
    padding: 5px 0;
    overflow: hidden;
    transition: none;
    align-items: center;
    justify-content: center;
}
.header__menu-link.header__menu-link--logo svg {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 39px;
}
@media (max-width: 1580px) {
    .header__menu-link {
        font-size: 12px;
    }
}
@media (max-width: 1400px) {
    .header__menu {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media (max-width: 1000px) {
    .header__menu {
        -moz-column-gap: 2px;
        column-gap: 2px;
    }
}
@media (max-width: 800px) {
    .header__menu-link {
        font-size: 10px;
    }
}
@media (max-width: 1250px) {
    .header__menu {
        display: none;
    }
}
@media (max-width: 900px) {
    .header__top-grid-item:first-child {
        column-gap: 12px;
    }
}
@media (max-width: 1100px) {
    .header__top-grid-item:first-child .header__top-grid-item__link {
        display: none;
    }
}
/* || HEADER end || */
/* || HOME SLIDER start || */
.home-slider {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}
.home-slider .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0a192b82;
    background-blend-mode: soft-light;
}
.home-slider .swiper-slide__video {
    display: flex;
    width: 100%;
    height: 100%;
}
.home-slider .swiper-slide__video video {
    width: 100%;
    height: 100%;
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-slider .swiper-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a192b82;
    z-index: -1;
}
.home-slider .swiper-slide .slide-content {
    margin-left: 5%;
    margin-right: 5%;
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    max-width: calc(var(--page-max-width) - 20%);
}
.home-slider .swiper-slide .slide-content__text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: relative;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.home-slider .swiper-slide .slide-content__text-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    max-width: 773px;
    background-color: #fff;
}
.home-slider .swiper-slide .slide-content__text-side::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    max-width: 773px;
    background-color: #fff;
}
.home-slider .swiper-slide .slide-content__title {
    color: #fff;
    font-weight: 300;
    font-size: clamp(30px, 4vw, 49px);
    padding: 8px 10px;
    border-radius: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    font-family: var(--font-style-1);
    margin: 0 auto;
    margin-bottom: 70px;
}
.home-slider .swiper-slide .slide-content__sub-title {
    color: #fff;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 89px);
    line-height: 105%;
    margin-bottom: 15px;
    max-width: 90%;
    text-align: center;
}
.home-slider .swiper-slide .slide-content__accent-title {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}
.home-slider .swiper-slide .slide-content__link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23.4px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide .slide-content__link:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
    .home-slider .swiper-slide .slide-content__link {
        font-size: 18px;
        margin: 20px auto;
        padding: 20px 15px;
    }
}
.home-slider .swiper-slide .slide-content img {
    margin-left: 10px;
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 10vw;
    color: #fff;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 10vw;
    color: #fff;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullets {
    bottom: 100px;
}
.home-slider .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
}
/* || HOME SLIDER end || */
/* || FOOTER start|| */
.footer {
    background-color: var(--accent-color-2);
}
.footer__wrapper {
    background-image: url(/img/backgrounds/fh_footer_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #00000090;
    background-blend-mode: soft-light;
    padding: 0px 0 100px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr 0.7fr 0.7fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'footer-grid__logo footer-grid__about footer-grid__info footer-grid__products  footer-grid__contacts';
}
@media (max-width: 1375px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 'footer-grid__logo  footer-grid__about footer-grid__about' 'footer-grid__info footer-grid__products footer-grid__contacts';
        gap: 20px 50px;
    }
}
@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'footer-grid__logo  footer-grid__logo' 'footer-grid__about footer-grid__about' 'footer-grid__info  footer-grid__products' 'footer-grid__contacts footer-grid__contacts';
        gap: 20px 50px;
    }
}
@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'footer-grid__logo ' 'footer-grid__about' 'footer-grid__info' 'footer-grid__products' 'footer-grid__contacts';
        gap: 20px 50px;
    }
}
.footer-grid__logo {
    grid-area: footer-grid__logo;
}
.footer-grid__logo-link {
    display: block;
    margin-bottom: 40px;
}
.footer-grid__logo-socials {
    display: flex;
    align-items: center;
}
.footer-grid__logo-socials a {
    margin-right: 15px;
}
.footer-grid__about {
    grid-area: footer-grid__about;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding: 60px 25px 0 25px;
    color: #fff;
    font-weight: 300;
}
.footer-grid__info {
    padding-top: 60px;
    grid-area: footer-grid__info;
}
.footer-grid__products {
    padding-top: 60px;
    grid-area: footer-grid__products;
}
.footer-grid__contacts {
    padding-top: 60px;
    grid-area: footer-grid__contacts;
}
.footer-grid__ttl {
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
}
.footer-grid__list,
.footer-grid__list--2col {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-grid__list--2col {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 0 20px;
}
@media (max-width: 600px) {
    .footer-grid__list--2col {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
.footer-grid__list-item > {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    text-transform: uppercase;
}
.footer-grid__list-item > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-family: var(--font-style-3);
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 135.5%;
    letter-spacing: 0.145em;
    color: #ffffff;
    transition: 0.3s ease;
}
.footer-grid__list-item > a.footer-contact {
    padding-left: 25px;
    position: relative;
    letter-spacing: 0;
}
.footer-grid__list-item > a.footer-contact.footer-contact--pin::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/al_pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a.footer-contact.footer-contact--phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/al_phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > .footer-contact--hours {
    color: #fff;
    margin-top: 20px;
    padding-left: 25px;
    position: relative;
}

.footer-grid__list-item > .footer-contact--hours::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/al_clock.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a:hover {
    text-decoration: underline;
}
.footer-grid__list-item > p {
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

.footer-bottom {
    padding: 30px;
    position: relative;
    font-size: 14px;
    color: #90a9c5;
}
.footer-bottom a {
    color: #90a9c5;
}
.footer-bottom > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* || FOOTER end|| */

.index-additioonal {
    background-color: var(--accent-color-2);
    color: #fff;
}
.index-additioonal__layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 40px;
}

@media (max-width: 1050px) {
    .index-additioonal__layout {
        grid-template-columns: 1fr;
    }
}

.index-additioonal__layout-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-additioonal__layout p {
    line-height: 150%;
}

.index-additioonal__layout .info-2col__decor-link {
    display: flex;
    width: fit-content;
    margin-top: 30px;
}

.index-why__layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 40px;
}
.index-why .title {
    text-align: center;
    border: 0;
}

@media (max-width: 1330px) {
    .index-why__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .index-why__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .index-why__layout {
        grid-template-columns: 1fr;
    }
}

.index-why__item {
    display: grid;
    grid-template-rows: minmax(130px, 1fr) 1fr;
    row-gap: 15px;
    text-align: center;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; */
}

.index-why__item-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* margin-bottom: 30px; */
}
.index-why__item-text {
}

/* [index-gallery start] */
.index-gallery {
    width: 100%;
    display: grid;
    /* grid-template-columns: 1fr 3fr; */
    grid-template-columns: calc(30% - 50px) calc(70% - 50px);
    gap: 100px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 40px 0 40px 0;
}
.index-gallery__title {
    font-weight: 400;
    font-size: 30px;
    line-height: 110%;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-family: var(--font-style-1);
}
.index-gallery__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 46px;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 30px;
}
.index-gallery__swiper-wrapper {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    display: inherit;
    position: relative;
}
.index-gallery__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: var(--container-padding);
    min-width: 300px;
}
.index-gallery__content-ttl {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.index-gallery__content-subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}
.index-gallery__content-txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 25px;
}
.index-gallery__content-txt * {
    font-family: var(--font-style-3);
}
.index-gallery__content-link {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #000;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    padding: 20px;
    text-transform: uppercase;
    font-family: var(--font-style-3);
}
.index-gallery__content-link:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
@media (max-width: 900px) {
    .index-gallery {
        grid-template-columns: 100%;
        gap: 50px;
    }
    .index-gallery .index-gallery__content {
        padding: 20px 5% 20px 5%;
    }
    .index-gallery__swiper-wrapper {
        padding: 0 5%;
    }
}
.index-gallery__swiper-actions {
    --swiper-navigation-size: 30px;
    --swiper-navigation-color: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    -moz-column-gap: 2px;
    column-gap: 2px;
    height: 30px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}
.index-gallery__swiper-actions .swiper-button-prev,
.index-gallery__swiper-actions .swiper-button-next {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: var(--accent-color-2);
    width: 30px;
    height: 70px;
    pointer-events: all;
}
.index-gallery__swiper-actions .swiper-button-prev {
    left: -10px;
}
@media (max-width: 900px) {
    .index-gallery__swiper-actions .swiper-button-prev {
        left: 0;
    }
}
.index-gallery__swiper-actions .swiper-button-next {
    right: 0px;
}

.index-gallery__swiper.swiper {
    width: 100%;
    height: 100%;
}
.index-gallery__swiper.swiper .index-gallery__item {
    display: block;
    height: 330px;
    width: auto;
    max-width: 100%;
    cursor: pointer;
}
.index-gallery__swiper.swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* [index-gallery end] */
/* [other-gallery start] */
.other-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 100px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 40px 0 40px 0;
}
.other-gallery__title {
    font-weight: 400;
    font-size: 30px;
    line-height: 110%;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-family: var(--font-style-1);
}
.other-gallery__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    color: #ffffff;
    padding-left: 20px;
    border-left: 6px solid currentColor;
}
.other-gallery__swiper-wrapper {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    display: inherit;
    position: relative;
}
.other-gallery__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: var(--container-padding);
    min-width: 300px;
}
.other-gallery__content-ttl {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.other-gallery__content-subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}
.other-gallery__content-txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}
.other-gallery__content-txt * {
    font-family: var(--font-style-3);
}
.other-gallery__content-link {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #000;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    padding: 20px;
    text-transform: uppercase;
    font-family: var(--font-style-3);
}
.other-gallery__content-link:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
@media (max-width: 900px) {
    .other-gallery {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .other-gallery .other-gallery__content {
        padding: 20px 5% 20px 5%;
    }
    .other-gallery__swiper-wrapper {
        padding: 0 5%;
    }
}
.other-gallery__swiper-actions {
    --swiper-navigation-size: 30px;
    --swiper-navigation-color: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    -moz-column-gap: 2px;
    column-gap: 2px;
    height: 30px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}
.other-gallery__swiper-actions .swiper-button-prev,
.other-gallery__swiper-actions .swiper-button-next {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: var(--accent-color-2);
    width: 30px;
    height: 70px;
    pointer-events: all;
}
.other-gallery__swiper-actions .swiper-button-prev {
    left: -10px;
}
@media (max-width: 900px) {
    .other-gallery__swiper-actions .swiper-button-prev {
        left: 0;
    }
}
.other-gallery__swiper-actions .swiper-button-next {
    right: 0px;
}

.other-gallery__swiper.swiper {
    width: 100%;
    height: 100%;
}
.other-gallery__swiper.swiper .other-gallery__item {
    display: block;
    height: 330px;
    width: auto;
    cursor: pointer;
}
.other-gallery__swiper.swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* [other-gallery end] */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    padding: 5% 100px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    background-color: #fff;
}
.par__txt ul {
    list-style: none;
    padding-left: 30px;
}
.par__txt ul li {
    position: relative;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    color: #000000;
    padding-left: 20px;
    margin-bottom: 15px;
}
.par__txt ul li::after {
    content: '';
    position: absolute;
    top: clamp(3px, 3vw, 6px);
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color);
}
@media (max-width: 1250px) {
    .par__txt {
        padding: 5%;
    }
}
.par__img {
    grid-area: par__img;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
    overflow: hidden;
}
.par__img img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog__img {
    overflow: unset;
}
.blog__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
    height: auto;
}
.par__ttl {
    font-weight: 600;
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: -0.04em;
    text-transform: capitalize;
    color: #7ea2c9;
}
.par__subttl {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 100%;
    margin-bottom: 30px;
    padding-left: 25px;
    border-left: 6px solid var(--accent-color);
}
.par__text {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
}

.par.par--left {
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-areas: 'par__txt par__img';
}

.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
/* [PARAGRAPH FLOATING START] */
.floating-par {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.floating-par__wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.floating-par.floating-par--left .floating-par__wrapper {
    justify-content: flex-start;
}
.floating-par.floating-par--right .floating-par__wrapper {
    justify-content: flex-end;
}
.floating-par.floating-par--center .floating-par__wrapper {
    justify-content: center;
}
.floating-par__block {
    max-width: 50%;
    width: 100%;
    padding: 100px 5%;
    background-color: #0a192bce;
    color: #fff;
}
.floating-par__block p {
    line-height: 150%;
}
@media (max-width: 550px) {
    .floating-par__block {
        padding: 50px 25px;
    }
}
.floating-par__block-inner {
    padding: 0;
}
@media (max-width: 900px) {
    .floating-par__block {
        max-width: 100%;
    }
}
.floating-par.floating-par--center .floating-par__wrapper .floating-par__block {
    max-width: 1450px;
}
.floating-par.floating-par--no-text-bg {
    background-color: #00000070;
    background-blend-mode: soft-light;
}
.floating-par.floating-par--no-text-bg .floating-par__block {
    background-color: transparent;
}
.floating-par.floating-par--no-text-bg .floating-par__block-inner {
    border-left: 1px solid #fff;
    padding: 0 5%;
}
.floating-par__text {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
    font-family: var(--font-style-3);
}
.floating-par__text * {
    font-family: var(--font-style-3);
    color: inherit;
}
.floating-par__text a {
    text-decoration: underline;
}
.floating-par__text ul {
    list-style: none;
    padding-left: 30px;
}
.floating-par__text ul li {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    padding-left: 20px;
    margin-bottom: 15px;
}
.floating-par__text ul li::after {
    content: '';
    position: absolute;
    top: clamp(3px, 3vw, 6px);
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #fff;
}
.floating-par__link {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    font-weight: 300;
    font-size: 20px;
    line-height: 110%;
    color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    transition: 0.3s ease;
}
.floating-par__link * {
    font-family: var(--font-style-3);
}
.floating-par__link:hover {
    background-color: rgba(135, 135, 135, 0.123);
    box-shadow: 0 0px 15px -5px rgba(0, 0, 0, 0.837);
}

/* [PARAGRAPH FLOATING END] */

/* [floating-par two-col start] */
.floating-par--two-col {
    position: relative;
}

.floating-par--two-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 0;
}

.floating-par--two-col .floating-par__wrapper {
    position: relative;
    z-index: 1;
}

.floating-par--two-col .floating-par__block {
    max-width: 100%;
    width: 100%;
    background-color: transparent;
    padding: 0;
}

.floating-par--two-col .floating-par__col:first-child {
    background-color: #0a192bce;
    padding: 100px 5%;
}

.floating-par--two-col .floating-par__col:last-child {
    padding: 100px 5%;
}

.floating-par__two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.floating-par__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.floating-par__col-title {
    font-family: var(--font-style-2);
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 32px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 130%;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .floating-par__two-col-grid {
        grid-template-columns: 1fr;
    }
    .floating-par--two-col .floating-par__col:first-child,
    .floating-par--two-col .floating-par__col:last-child {
        padding: 60px 5%;
    }
}
/* [floating-par two-col end] */

/* [contacts start] */
.contacts-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: 'contacts-main-grid__info-cell contacts-main-grid__form-cell';
}
.contacts-main-grid__info-cell {
    grid-area: contacts-main-grid__info-cell;
    padding: 100px 113px 100px 113px;
}
.contacts-main-grid__form-cell {
    grid-area: contacts-main-grid__form-cell;
    background-color: var(--accent-background-color);
    padding: 100px 113px 100px 113px;
}
@media (max-width: 1360px) {
    .contacts-main-grid__info-cell {
        padding: 50px 5%;
    }
    .contacts-main-grid__form-cell {
        padding: 50px 5%;
    }
}
@media (max-width: 1000px) {
    .contacts-main-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'contacts-main-grid__info-cell' 'contacts-main-grid__form-cell';
    }
}

.contact-map {
    display: block;
    width: 100%;
    height: 700px;
    background-image: url(/img/misc/cab_map.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    gap: 70px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'contact-info-grid__phone-cell contact-info-grid__address-cell' 'contact-info-grid__schedule-cell contact-info-grid__schedule-cell' 'contact-info-grid__social-cell contact-info-grid__social-cell';
}
.contact-info-grid a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 25px;
    display: block;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    transition: 0.3s ease;
    position: relative;
}
.contact-info-grid a:hover {
    color: var(--accent-color);
}
.contact-info-grid__phone-cell {
    grid-area: contact-info-grid__phone-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__phone-cell a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cab_phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-info-grid__address-cell {
    grid-area: contact-info-grid__address-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__address-cell a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cab_pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-info-grid__schedule-cell {
    grid-area: contact-info-grid__schedule-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__schedule-cell .footer-grid__list,
.contact-info-grid__schedule-cell .footer-grid__list--2col {
    padding-left: 30px;
    position: relative;
}
.contact-info-grid__schedule-cell .footer-grid__list::before,
.contact-info-grid__schedule-cell .footer-grid__list--2col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cab_clock.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 600px) {
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col,
    .contact-info-grid__schedule-cell .footer-grid__list--2col {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
}
@media (max-width: 450px) {
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col,
    .contact-info-grid__schedule-cell .footer-grid__list--2col {
        grid-template-columns: 100%;
        gap: 5px;
    }
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col > li:nth-child(odd),
    .contact-info-grid__schedule-cell .footer-grid__list--2col > li:nth-child(odd) {
        font-weight: 600;
    }
}
.contact-info-grid__social-cell {
    grid-area: contact-info-grid__social-cell;
}
.contact-info-grid__social-cell a {
    padding: 0;
    width: 36px;
    height: 36px;
}
.contact-info-grid__social-cell a img {
    width: 100%;
    height: 100%;
}
@media (max-width: 610px) {
    .contact-info-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'contact-info-grid__phone-cell' 'contact-info-grid__address-cell' 'contact-info-grid__schedule-cell' 'contact-info-grid__social-cell';
        gap: 40px;
    }
}

.contacts__ttl {
    font-weight: 500;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 25px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 35px;
}
.contact-form-grid input,
.contact-form-grid textarea {
    padding: 15px 20px;
    border: none;
    resize: vertical;
}
.contact-form-grid__head,
.contact-form-grid textarea,
.contact-form-grid .jfilestyle {
    grid-column: span 2;
}
.contact-form-grid .jfilestyle {
    width: auto;
}
.contact-form-grid .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 550px) {
    .contact-form-grid {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    .contact-form-grid__head,
    .contact-form-grid textarea,
    .contact-form-grid .jfilestyle {
        grid-column: span 1;
    }
}

/* [contacts end] */
/* [HOME 2COLUMNS INFO START] */
.info-2col__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.info-2col__first,
.info-2col__second {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.info-2col__first {
    justify-content: flex-end;
}
.info-2col__second {
    justify-content: flex-start;
}
.info-2col__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(0.5);
}
.info-2col__content {
    position: relative;
    z-index: 1;
    padding: 0 44px;
    color: #fff;
    margin: 100px var(--container-padding);
}
.info-2col__title {
    font-weight: 400;
    background-color: var(--accent-color);
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    padding: 5px 10px;
}
.info-2col__subtitle {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 50px;
}
.info-2col__text {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    line-height: 150%;
    color: #ffffff;
    margin-bottom: 25px;
}
.info-2col__decor-link {
    color: inherit;
    border: 1px solid #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-style-3);
    transition: 0.2s ease;
}
.info-2col__decor-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
@media (max-width: 700px) {
    .info-2col__wrapper {
        grid-template-columns: 1fr;
        grid-template-columns: 100%;
    }
    .info-2col__first,
    .info-2col__second {
        min-height: 300px;
    }
}

/* [HOME 2COLUMNS INFO END] */
/* [PAGE HEAD START] */
.page-head {
    padding: 50px 0;
    background-color: #0a192bce;
    background-blend-mode: soft-light;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-head.page-head--small {
    height: 157px;
}
@media (max-width: 700px) {
    .page-head.page-head--small {
        height: 80px;
    }
}
.page-head .container {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    align-items: center;
    justify-content: center;
}
.page-head__title {
    text-align: center;
    font-weight: 600;
    font-size: clamp(35px, 6vw, 46px);
    line-height: 105%;
    text-shadow: 0px 5.17333px 5.17333px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    margin-bottom: 25px;
}
.page-head__slogan {
    font-family: var(--font-style-3);
    color: #fff;
    max-width: 1100px;
    line-height: 150%;
    margin: 0 auto;
    text-align: center;
}
.page-head__links {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.page-head__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #fff;
    font-family: var(--font-style-3);
    transition: 0.2s ease;
}
.page-head__link.page-head__link--active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.page-head__link:hover {
    box-shadow: 0px 5.17333px 5.17333px rgba(0, 0, 0, 0.25);
}

/* [PAGE HEAD END] */
.quote-popup {
    padding: 5px;
    background-color: #fff;
    max-width: 1200px;
}
.quote-popup > form {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
@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: 10px 25px;
    padding: 50px 50px 50px 50px;
}
.quote-popup__form-block * {
    font-family: var(--font-style-3);
}
.quote-popup__form-block__title {
    grid-column: 1/-1;
    font-weight: 600;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 150%;
    color: var(--accent-color-2);
    text-align: center;
    margin-bottom: 33px;
}
.quote-popup__form-block > input,
.quote-popup__form-block > .jfilestyle input,
.quote-popup__form-block > textarea {
    background-color: #f2f2f2;
}
.quote-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.quote-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
@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;
}

.job-application-popup {
    padding: 5px;
    background-color: #fff;
    max-width: 1025px;
}
.job-application-popup > form {
    width: 100%;
}
.job-application-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: 10px 25px;
    padding: 50px 50px 50px 50px;
}
.job-application-popup__form-block * {
    font-family: var(--font-style-3);
}
.job-application-popup__form-block__title {
    grid-column: 1/-1;
    font-weight: 600;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 150%;
    color: var(--accent-color-2);
    text-align: center;
    margin-bottom: 33px;
}
.job-application-popup__form-block > input,
.job-application-popup__form-block > .jfilestyle input,
.job-application-popup__form-block > textarea {
    background-color: #f2f2f2;
}
.job-application-popup__form-block > .jfilestyle {
    grid-column: 1/-1;
}
.job-application-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 20px;
}
.job-application-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 1000px) {
    .job-application-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .job-application-popup__form-block {
        grid-template-columns: 100%;
    }
}
@media (max-width: 550px) {
    .job-application-popup__form-block {
        padding: 50px 5%;
    }
}
.job-application-popup__image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .job-application-popup__image-block {
        display: none;
    }
}
.job-application-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.job-application-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 2px solid #575757;
    color: #575757;
}
@media (max-width: 550px) {
    .job-application-popup {
        width: 100%;
    }
}

/* [MAIN CSS START] */
.main-container {
    margin-top: 168px;
}

.text-center {
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pa-before-footer {
    padding-bottom: 200px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

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-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 100%;
    margin-bottom: 30px;
    padding-left: 25px;
    border-left: 6px solid currentColor;
    line-height: 100%;
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--accent-color-2);
    margin-bottom: 5px;
}

.subtitle {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--accent-color-2);
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn:hover {
    background: var(--accent-dark-color);
}

.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;
}

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    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--dark {
    border: 1px solid var(--accent-color-2);
    color: #fff;
    background: var(--accent-color-2);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--dark:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px 2px #b8b8b8;
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
}
.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%;
    background: var(--accent-dark-color);
}

@-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;
}

/* [MAIN CSS END] */
/* [ABOUT PAGE - POINTS START] */
.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.about-points__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 40px;
    position: relative;
}
.about-points__item-top {
    font-weight: 800;
    font-size: clamp(25px, 3vw, 55px);
    text-align: center;
    color: #ffffff;
    font-family: var(--font-style-3);
}
.about-points__item-bottom {
    color: #fff;
    font-size: clamp(16px, 2vw, 24px);
}
.about-points__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80px;
    height: 5px;
    background: var(--accent-color);
}
@media screen and (max-width: 850px) {
    .about-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* [ABOUT PAGE - POINTS END] */
/* [CONTACT START] */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-grid__info {
    padding: 70px 50px;
    padding-left: var(--container-padding);
}
.contact-grid__info > p {
    font-family: var(--font-style-3);
    line-height: 150%;
    margin-bottom: 70px;
}
.contact-grid__info-title {
    font-size: clamp(35px, 3vw, 46px);
    margin-bottom: 40px;
}
.contact-grid__info-phone {
    position: relative;
    padding-left: 45px;
    margin-bottom: 50px;
}
.contact-grid__info-phone > p {
    margin-bottom: 15px;
}
.contact-grid__info-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: url(/img/icons/fh_phone.svg) no-repeat center;
    background-size: contain;
}
.contact-grid__info-hours {
    position: relative;
    padding-left: 45px;
    margin-bottom: 50px;
}
.contact-grid__info-hours > p {
    margin-bottom: 15px;
}
.contact-grid__info-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: url(/img/svg/time.svg) no-repeat center;
    background-size: contain;
}
.contact-grid__info-location {
    position: relative;
    padding-left: 45px;
    margin-bottom: 50px;
}
.contact-grid__info-location > p {
    margin-bottom: 15px;
}
.contact-grid__info-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: url(/img/icons/fh_pin.svg) no-repeat center;
    background-size: contain;
}
.contact-grid__info-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}
.contact-grid__title {
    font-weight: 600;
    font-size: clamp(35px, 3vw, 46px);
    color: #ffffff;
    margin-bottom: 50px;
    font-family: var(--font-style-2) !important;
}
.contact-grid__form {
    background-color: var(--accent-color);
    max-width: calc(var(--page-max-width) / 2 - 5%);
    padding: 70px 50px;
    padding-right: var(--container-padding);
}
.contact-grid__form input.jfilestyle {
    width: auto;
}
.contact-grid__form * {
    font-family: var(--font-style-3);
}
.contact-grid__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.contact-grid__inputs input {
    margin-bottom: 20px;
}

.contact-page__form-file {
    grid-column: 1/-1;
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}
.contact-page__form-file input {
    padding: 0;
    margin: 0;
    color: #000;
}
@media screen and (max-width: 450px) {
    .contact-grid__inputs {
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 100%;
    }
    .contact-grid__info {
        padding: 70px var(--container-padding);
    }
    .contact-grid__form {
        max-width: 100%;
        padding: 70px var(--container-padding);
    }
}

.contact-map {
    background-image: url(/img/misc/fh_map.jpg);
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
    height: 600px;
}

/* [CONTACT END] */
/* [EMPLOYMENT START] */
.employment-top {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.employment-top .title {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-color: var(--accent-color);
}
.employment-top__text {
    font-family: var(--font-style-3);
    line-height: 150%;
}
@media (max-width: 700px) {
    .employment-top {
        grid-template-columns: 100%;
    }
}

.employment-bottom__offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    margin-bottom: 60px;
}
.employment-bottom__offers-title {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 100%;
    line-height: 100%;
    color: #fff;
    grid-column: 1/-1;
}
.employment-bottom__offers-item {
    display: block;
    color: #000;
    background-color: #fff;
    padding: 20px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 2);
}
.employment-bottom__offers-item__title {
    font-weight: 400;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.employment-bottom__offers-item__text {
    line-height: 150%;
    max-height: 75px;
    overflow: hidden;
    margin-bottom: 20px;
}
.employment-bottom__offers-item__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.employment-bottom__offers-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1100px) {
    .employment-bottom__offers {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .employment-bottom__offers {
        grid-template-columns: 100%;
    }
}

.employment-description {
    margin-bottom: 40px;
}
.employment-description__head {
    border-bottom: 2px solid #e0e0e0;
    padding: 15px 0;
    margin-bottom: 40px;
}
.employment-description__title {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--accent-color);
    padding: 5px 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.employment-description__subtitle {
    font-weight: 600;
    font-size: clamp(35px, 6vw, 46px);
    color: #000;
}
.employment-description__content {
    margin-bottom: 50px;
    line-height: 150%;
}
.employment-description__content * {
    font-family: var(--font-style-3);
}
.employment-description__content ul {
    padding-left: 20px;
}
.employment-description__actions {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}
.employment-description__actions .btn {
    font-family: var(--font-style-3);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: 155px;
}

/* [EMPLOYMENT 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] */
/*# sourceMappingURL=main.css.map */

.products-list {
    background-color: #a92a3b;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 30px;
    justify-content: center;
}

.products-list A {
    width: 300px;
    background-color: #fff;
    padding: 15px;
    margin: 10px;
    text-decoration: none;
    outline: none;
}

.products-list A span {
    text-align: center;
}

.product-image {
    display: flex;
    width: 100%;
    height: 185px;
    justify-content: center;
}

.product-image div {
    align-self: center;
}

.product-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.product-ttl {
    display: block;
    padding-top: 10px;
    font-size: 14pt;
    color: #555;
}

.product-inner {
    display: flex;
    flex-wrap: wrap;
}

.product-menu {
    width: 460px;
    background-color: #a92a3b;
    padding: 30px;
}

.product-content {
    width: calc(100% - 510px);
    padding: 30px;
}

.product-menu-wrapper {
    width: auto;
    max-width: 300px;
    text-align: left;
}

.product-menu label {
    display: block;
    padding-bottom: 20px;
    font-size: 33pt;
    color: #fff;
}

.product-menu A {
    display: block;
    position: relative;
    z-index: 1;
    padding: 5px 5px 5px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 16pt;
}

.product-menu A.active {
    color: #bebebe;
}

.product-menu A span {
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 25pt;
    color: #fff;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.product-menu A:hover {
    color: #bebebe;
}

.product-menu A:hover span {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    color: #bebebe;
}

.product-back {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.product-back A {
    color: #555;
    text-decoration: none;
    font-size: 16pt;
}

.product-back A.active {
    color: #bebebe;
}

.product-back A span {
    position: absolute;
    left: 0;
    top: -11px;
    font-size: 25pt;
    color: #555;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.product-back A:hover {
    color: #bebebe;
}

.product-back A:hover span {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
    color: #bebebe;
}

.product-header-title {
    padding: 10px 0 20px;
    font-size: 26pt;
}

.product-files {
    padding: 20px 0;
}

.product-files A {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 5px 5px 5px 45px;
    color: #a92a3b;
    text-decoration: none;
    outline: none;
}

.product-files A:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 31px;
}

.product-files A.data-doc:before {
    background: url(../img/icons/doc-icon.gif) no-repeat;
}

.product-files A.data-ppt:before {
    background: url(../img/icons/ppt-icon.gif) no-repeat;
}

.product-files A.data-xls:before {
    background: url(../img/icons/xls-icon.gif) no-repeat;
}

.product-files A.data-pdf:before {
    background: url(../img/icons/pdf-icon.gif) no-repeat;
}

.product-files A:hover {
    color: #bebebe;
}

.product-supplier {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border-bottom: 1px solid #555;
}

.product-supplier:last-child {
    border: 0;
}

.product-supplier-logo {
    width: 200px;
    padding-right: 30px;
}

.product-supplier-info {
    width: calc(100% - 200px);
}

.product-supplier-title {
    font-size: 20pt;
    padding-bottom: 20px;
    color: #1f3253;
}

.product-supplier-link {
    padding-top: 20px;
}

.product-supplier-link A {
    text-decoration: none;
    color: #a92a3b;
}

.product-supplier-link A:hover {
    text-decoration: underline;
}

.product-supplier-gallery {
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}

.product-supplier-gallery img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 1150px) {
    .product-supplier-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mouldings-list {
    display: flex;
    flex-wrap: wrap;
}

.mouldings-list A {
    width: 300px;
    padding: 15px;
    margin: 10px;
    border: 1px solid #555;
    text-decoration: none;
    outline: none;
    font-size: 12pt;
}

.mouldings-list A span {
    text-align: center;
}

.moulding-image {
    display: flex;
    width: 100%;
    height: 185px;
    justify-content: center;
}

.moulding-image div {
    align-self: center;
}

.moulding-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.moulding-ttl {
    display: block;
    padding-top: 10px;
    font-size: 14pt;
    color: #555;
}

.hvr-grow-shadow {
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.product-moulding-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-moulding-table table {
    width: 45%;
}

.product-moulding-table td,
.moulding-popup td {
    padding: 10px;
}

.product-moulding-table-header {
    border-bottom: 1px solid #555;
    text-transform: uppercase;
    color: #1e436d;
}

.product-moulding-table-row {
    cursor: pointer;
}

.moulding-popup {
    width: 600px;
}

.moulding-popup-img {
    text-align: center;
}

.moulding-popup-ttl {
    text-align: center;
    font-size: 20pt;
    padding-bottom: 20px;
    color: #1f3253;
}

.moulding-popup table {
    width: 100%;
}

.moulding-popup-stock div {
    padding: 5px 0 0 20px;
    position: relative;
    z-index: 1;
}

.mps-table {
    position: relative;
    z-index: 1;
}

.moulding-popup-stock div:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: 12px;
}

.mps-table:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    top: -6px;
    margin-left: -5px;
}

.mps-S:before {
    background-color: #000;
    border: 1px solid #000;
}

.mps-na:before,
.mps-5W:before {
    background-color: #fff;
    border: 1px solid #000;
}

.mps-2W:before {
    background-color: #0056cc;
    border: 1px solid #0056cc;
}

.moulding-popup-legend {
    padding-top: 15px;
}

.moulding-popup-notes {
    padding-top: 20px;
    color: #ff0000;
}

.moulding-popup-close {
    padding-top: 30px;
}

@media (max-width: 1380px) {
    .product-moulding-table table {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .product-menu {
        width: 300px;
    }
    .product-content {
        width: calc(100% - 300px);
    }
    .product-menu-wrapper {
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 890px) {
    .product-menu,
    .product-content {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .moulding-popup {
        width: 100%;
    }
}
@media (max-width: 650px) {
    .product-supplier-logo {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .product-supplier-info {
        width: 100%;
    }
}

.we-open-fancy .fancybox__content {
    padding: 10px;
}
.we-open-popup {
    display: grid;
    grid-template-columns: 450px 650px;
    background-color: var(--accent-color, #a92a3b);
    color: var(--color-white, #fff);
    align-items: center;
}

.we-open-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.we-open-popup__content {
    padding: 60px;
}

.we-open-popup__content ul {
    padding-left: 30px;
}

.we-open-popup__text-1 {
    color: var(--color-white, #fff);
    font-size: clamp(22px, 3vw, 25px);
    font-style: normal;
    font-weight: 400;
}
.we-open-popup__text-2 {
    color: var(--color-white, #fff);
    font-size: clamp(20px, 3vw, 23px);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 35px;
}
.we-open-popup__text-3 {
    color: var(--color-white, #fff);
    font-size: 14px;
    /* font-size: clamp(23px, 3vw, 36px); */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.we-open-popup__text-3 span {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .we-open-popup {
        grid-template-columns: 250px 550px;
    }
    .we-open-popup__media {
        height: 100%;
    }
}
@media (max-width: 850px) {
    .we-open-popup {
        grid-template-columns: 100%;
    }
    .we-open-popup__media {
        height: 300px;
    }
    .we-open-popup__content {
        padding: 30px;
    }
}

.we-open-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    max-width: 450px;

    padding: 30px 20px 30px 110px;
    background-color: var(--accent-color, #a92a3b);
    color: var(--color-white, #fff);
}

.we-open-badge__text-1 {
    color: var(--color-white, #fff);
    font-size: clamp(18px, 3vw, 26px);
    font-style: normal;
    font-weight: 400;
}

.we-open-badge__text-2 {
    color: var(--color-white, #fff);
    font-size: clamp(22px, 3vw, 36px);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 35px;
    line-height: 1;
}

.we-open-badge__text-3 {
    color: var(--color-white, #fff);
    font-size: clamp(18px, 3vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.we-open-badge__text-3 span {
    text-decoration: underline;
}

@media (max-width: 1550px) {
    .we-open-badge {
        padding: 20px 20px 20px 60px;
    }

    .we-open-badge__text-2 {
        margin-bottom: 15px;
    }
}

@media (max-width: 550px) {
    .we-open-badge {
        bottom: 0;
        padding: 20px;
    }

    .we-open-badge__text-2 {
        margin-bottom: 15px;
    }
}
.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: var(--color-black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 2px;
    text-transform: uppercase;
}
.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/icons/rm_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;
    }
}

.associations .title {
    max-width: 1200px;
    border-left: 6px solid var(--accent-color);
}

.associations__layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 30px;
    row-gap: 15px;
    justify-content: center;
}

@media (max-width: 867px) {
    .associations__layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

.associations__item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.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: #a92a3b;
    line-height: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
}
.header__menu-link:hover,
.header__menu-item:hover > .header__menu-link {
    background-color: #fff;
    color: #000;
}
.header__menu-item:hover .header__menu-link {
    background-color: #fff;
    color: #000;
}
.header__menu-item {
    position: relative;
}
.header__menu-item ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 100;
}
.header__menu-item:hover ul {
    display: block;
}
.header__menu-item ul li {
    padding: 8px 16px;
}
.header__menu-item ul li:hover {
    background-color: #f5f5f5;
}
.header__menu-item ul a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 1em;
}

/* [panels-banner start] */
.panels-banner {
    background-color: var(--accent-color-2);
    width: 100%;
}

.panels-banner--top {
    padding: 60px 0;
}

.panels-banner--top .panels-banner__title {
    font-family: var(--font-style-2);
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 46px);
    color: #fff;
    text-align: center;
    line-height: 140%;
    max-width: 1200px;
    margin: 0 auto;
}

.panels-banner--cta {
    padding: 80px 0;
}

.panels-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.panels-banner__title--cta {
    font-family: var(--font-style-2);
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 48px);
    color: #fff;
    line-height: 120%;
    margin: 0;
}

.panels-banner__intro {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 22px);
    color: #fff;
    line-height: 160%;
    font-style: italic;
}

.panels-banner__copy {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    color: #fff;
    line-height: 170%;
    max-width: 900px;
}

.panels-banner__btn {
    display: inline-block;
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: clamp(12px, 1vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 18px 36px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.panels-banner__btn:hover {
    background-color: #fff;
    color: var(--accent-color-2);
}

@media (max-width: 768px) {
    .panels-banner--cta {
        padding: 60px 0;
    }
    .panels-banner__copy {
        text-align: left;
    }
    .panels-banner__intro {
        text-align: left;
    }
}
/* [panels-banner end] */

/* [panels-two-col start] */
.panels-two-col {
    padding: 80px 0;
}

.panels-two-col__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panels-two-col__title {
    font-family: var(--font-style-2);
    font-weight: 700;
    font-size: clamp(26px, 3vw, 42px);
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    line-height: 120%;
}

.panels-two-col__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.panels-two-col__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panels-two-col__subtitle {
    font-family: var(--font-style-2);
    font-weight: 700;
    font-size: clamp(13px, 3vw, 30px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    line-height: 140%;
    margin-bottom: 4px;
}

.panels-two-col__text {
    font-family: var(--font-style-3);
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 165%;
    color: #000;
    margin: 0;
}

.panels-two-col__list {
    list-style: none;
    padding-left: 30px;
    margin: 0;
}

.panels-two-col__list li {
    position: relative;
    font-family: var(--font-style-3);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 165%;
    color: #000;
    padding-left: 24px;
    margin-bottom: 10px;
}

.panels-two-col__list li::before {
    content: '';
    position: absolute;
    top: clamp(4px, 0.5vw, 6px);
    left: 0;
    width: 13px;
    height: 13px;
    background-color: var(--accent-color);
}

@media (max-width: 900px) {
    .panels-two-col__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .panels-two-col {
        padding: 60px 0;
    }
}
/* [panels-two-col end] */
