:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #e02f41;
    --accent-color-2: #f5c374;
    --accent-dark-color: #4f4f4f;
    --font-style-1: 'Merriweather', serif;
    --font-style-2: 'Work Sans', sans-serif;
    --accent-background-color: #f5f2ef;
    --page-max-width: 1920px;
    --container-padding: 70px;
    --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: 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: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
}

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

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

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

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

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

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

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

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

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.75);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken;
    transition: 0.3s ease;
}
.header__top {
    height: 45px;
}
.header__top .container {
    height: 100%;
}
.header__top-content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    -moz-column-gap: 70px;
    column-gap: 70px;
}
@media screen and (max-width: 500px) {
    .header__top-content {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
.header__top-phone {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    list-style: none;
    font-size: 18px;
    letter-spacing: 0.05em;
}
.header__top-phone li:first-of-type {
    color: var(--accent-color-2);
    font-family: var(--font-style-2);
}
@media screen and (max-width: 500px) {
    .header__top-phone li:first-of-type {
        display: none;
    }
}
.header__top-phone a {
    color: #fff;
    font-family: var(--font-style-2);
}
.header__top-social {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    list-style: none;
    font-size: 18px;
    letter-spacing: 0.05em;
}
.header__top-social li:first-of-type {
    color: var(--accent-color-2);
    font-family: var(--font-style-2);
}
@media screen and (max-width: 500px) {
    .header__top-social li:first-of-type {
        display: none;
    }
}
.header__top-social a {
    color: #fff;
}
.header__bottom-content {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 50px;
    column-gap: 50px;
    align-items: stretch;
}
.header__bottom-logo {
    width: 330px;
    margin-top: -45px;
    position: relative;
    transition: 0.3s ease;
    z-index: 1;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.header__bottom-logo img {
    width: 100%;
    transition: 0.3s ease;
}
@media (max-width: 1270px) {
    .header__bottom-logo {
        max-width: 200px;
    }
}
@media (max-width: 750px) {
    .header__bottom-logo {
        margin-top: -15px;
    }
}
.header__bottom-menu {
    display: flex;
    -moz-column-gap: 45px;
    column-gap: 45px;
    list-style: none;
}
.header__bottom-menu__item {
    display: flex;
    align-items: flex-end;
}
.header__bottom-menu__link {
    font-family: var(--font-style-2);
    font-size: 18px;
    height: 100%;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    transition: 0.3s ease;
    padding: 10px 0;
    border-bottom: 6px solid transparent;
    white-space: nowrap;
}
.header__bottom-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}
.header__bottom-menu__link:hover {
    color: var(--accent-color);
}
.header__bottom-menu__link:hover::after {
    transform: scaleX(1);
}
.header__bottom-menu__link.header__bottom-menu__link--active {
    border-bottom: 6px solid var(--accent-color);
}
@media (max-width: 1660px) {
    .header__bottom-menu__link {
        font-size: 14px;
    }
}
@media (max-width: 1400px) {
    .header__bottom-menu__link {
        font-size: 12px;
    }
}
.header__bottom-menu__link.header__bottom-menu__link--bordered {
    padding: 20px 10px;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: #fff;
    align-self: center;
}
@media (max-width: 1750px) {
    .header__bottom-menu {
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
}
@media (max-width: 1400px) {
    .header__bottom-menu {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 1125px) {
    .header__bottom-menu {
        display: none;
    }
}

/* || HEADER end || */
/* || HOME SLIDER start || */
.home-slider {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #333;
}
.home-slider .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00000062;
    background-blend-mode: soft-light;
}
.home-slider .swiper-slide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.home-slider .swiper-slide__video video {
    width: 100%;
    height: 100%;
    -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%);
    padding-bottom: 250px;
    justify-content: center;
    text-align: center;
}
.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;
    max-width: 1100px;
    margin: 0 auto;
}
.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;
    font-family: var(--font-style-1);
    margin: 0 auto;
    margin-bottom: 70px;
    text-transform: uppercase;
}
.home-slider .swiper-slide .slide-content__sub-title {
    color: #fff;
    font-weight: 600;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 105%;
    margin-bottom: 15px;
    max-width: 90%;
    text-transform: uppercase;
}
.home-slider .swiper-slide .slide-content__accent-title {
    font-family: var(--font-style-2);
    font-weight: 400;
    font-size: clamp(22px, 4vw, 36px);
    letter-spacing: 0.07em;
    line-height: 150%;
    color: #ffffff;
    padding: 10px;
}
.home-slider .swiper-slide .slide-content__link {
    font-family: var(--font-style-2);
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    padding: 15px 25px;
    border: 1px 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 {
    color: #fff;
    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 || */
.home-services {
    padding-bottom: 50px;
}
.home-services__grid {
    margin-top: -250px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 20px;
}
@media (max-width: 1200px) {
    .home-services__grid {
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
}
@media (max-width: 910px) {
    .home-services__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .home-services__grid {
        flex-direction: column;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
}
.home-services__item {
    position: relative;
    z-index: 2;
    border-top: 6px solid var(--accent-color-2);
    transition: 0.3s ease;
}
.home-services__item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    font-family: var(--font-style-2);
    font-weight: 400;
    font-size: clamp(14px, 1vw, 26px);
    text-transform: uppercase;
    color: #ffffff;
    padding: 25px 10px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.home-services__item-title svg {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
}
.home-services__item img {
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform: perspective(800px);
    transition: 0.3s;
}
.home-services__item:hover {
    border-top: 6px solid var(--accent-color);
}
.home-services__item:hover .home-services__item-title {
    padding: 35px 10px;
}
@media (max-width: 768px) {
    .home-services__item {
        width: 100%;
    }
}
@media (max-width: 400px) {
    .home-services {
        background-color: var(--accent-color-2);
    }
}

.serving-areas-wrapper {
    border-top: 6px solid var(--accent-color);
}

.serving-areas {
    display: grid;
    grid-template-columns: 500px 1fr;
}
.serving-areas__right {
    padding-right: 100px;
    position: relative;
}
.serving-areas__right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    width: 1px;
    height: 100%;
    background-color: #bdbdbd;
    z-index: -1;
}
.serving-areas__left {
    display: flex;
    align-items: center;
}
.serving-areas__title {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.serving-areas__subtitle {
    font-weight: 600;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: 1.8px;
    line-height: 140%;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.serving-areas__list {
    list-style: none;
    display: flex;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.serving-areas__list-item {
    font-family: var(--font-style-2);
    position: relative;
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333333;
}
.serving-areas__list-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #333333;
}
@media screen and (max-width: 950px) {
    .serving-areas {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .serving-areas__right {
        padding-right: 0;
    }
    .serving-areas__right::before {
        display: none;
    }
    .serving-areas__left {
        justify-content: flex-start;
    }
    .serving-areas__list {
        justify-content: flex-start;
    }
    .serving-areas__list-item {
        font-size: 18px;
        line-height: 35px;
    }
}

.what-we-do {
    background-color: var(--accent-background-color);
}
.what-we-do.what-we-do--invert {
    background-color: #fff;
}
.what-we-do.what-we-do--invert li {
    text-transform: uppercase;
    font-size: clamp(16px, 1.5vw, 24px);
    font-family: var(--font-style-2);
}
.what-we-do.what-we-do--invert li::before {
    background-color: var(--accent-color);
    background-image: url(/img/icons/ap_checkmark-white.svg);
    background-size: 80%;
    width: 25px;
    height: 25px;
}
.what-we-do__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.what-we-do__layout ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    padding-left: 30px;
}
.what-we-do__layout ul li {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.what-we-do__layout ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/ap_mark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 500px) {
    .what-we-do__layout ul {
        grid-template-columns: 100%;
    }
}
@media (max-width: 1200px) {
    .what-we-do__layout {
        grid-template-columns: 100%;
    }
}
.what-we-do__image {
    margin-bottom: 10px;
}
.what-we-do__hash {
    font-family: var(--font-style-2);
    font-size: clamp(14px, 1.5vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-reviews__head {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.google-reviews__head .subtitle {
    text-align: center;
}
.google-reviews__head-title {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.google-reviews__head-title > h2 {
    font-family: var(--font-style-2);
    font-weight: 500;
    font-size: clamp(25px, 5vw, 50px);
    line-height: 100%;
    color: #333333;
}
.google-reviews__head > .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}
@media (max-width: 768px) {
    .google-reviews__head > .btn {
        position: initial;
    }
}
.google-reviews__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 50px;
}
.google-reviews__list-item {
    background-color: #fff;
    display: flex;
    padding: 20px;
    max-width: 525px;
    position: relative;
    flex: 1 0 330px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15));
}
.google-reviews__list-item::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    z-index: 1;
    transform: rotate(45deg);
}
.google-reviews__list-item__avatar {
    min-width: 125px;
}
@media (max-width: 768px) {
    .google-reviews__list-item__avatar {
        min-width: 90px;
    }
}
.google-reviews__list-item__content {
    position: relative;
    padding-left: 30px;
    font-family: var(--font-style-2);
    display: flex;
    flex-direction: column;
}
.google-reviews__list-item__content * {
    font-family: inherit;
}
.google-reviews__list-item__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/quote.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.google-reviews__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.gallery {
    background-color: #eeeeee;
}
.gallery__title {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin: 0 auto;
    margin-bottom: 10px;
}
.gallery__subtitle {
    font-weight: 600;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
}

.gallery-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    padding-top: 35px;
}
.gallery-block__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 850px) {
    .gallery-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* || FOOTER start|| */
.footer {
    background-color: #0d0702;
}
.footer__wrapper {
    background-image: url(/img/misc/sr_footer_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000e2;
    background-blend-mode: soft-light;
    padding: 60px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'footer-grid__logo 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__logo footer-grid__logo ' '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__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;
    padding-top: 60px;
    padding: 60px 25px 0 25px;
    color: #fff;
    font-weight: 300;
}
.footer-grid__info {
    grid-area: footer-grid__info;
}
.footer-grid__products {
    grid-area: footer-grid__products;
}
.footer-grid__contacts {
    grid-area: footer-grid__contacts;
}
.footer-grid__contacts > ul {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.footer-grid__ttl {
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.145em;
    text-transform: uppercase;
    color: var(--accent-color-2);
    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 {
    margin-bottom: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-family: var(--font-style-2);
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 135.5%;
    letter-spacing: 0.8px;
    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 > 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: #bdbdbd;
}
.footer-bottom * {
    font-family: var(--font-style-2);
}
.footer-bottom a {
    font-family: var(--font-style-2);
    color: #bdbdbd;
}
.footer-bottom > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* || FOOTER 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% 0 5% 100px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    background-color: #fff;
}
.par__txt ul:not(.styled-list) {
    list-style: none;
    padding-left: 30px;
}
.par__txt ul:not(.styled-list) li {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.par__txt ul:not(.styled-list) li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/ap_mark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1250px) {
    .par__txt {
        padding: 5%;
    }
}
.par__img {
    grid-area: par__img;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
}
.par__img img {
    display: block;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
}
.par__ttl {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.par__subttl {
    font-weight: 600;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 130%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 25px;
}
.par__text * {
    font-family: var(--font-style-2);
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
    .par .par__txt {
        padding: 5% 0 !important;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
}
.par.par--left .par__txt {
    padding: 0% 0 0% 5%;
}

.par.par--right {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__txt par__img';
}
.par.par--right .par__txt {
    padding: 0% 5% 0% 0;
}

.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.par--center .par__txt {
    padding: 5% 0;
}

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

/* [_paragraph 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] */
.quote-popup {
    padding: 5px;
    background-color: #fff;
    max-width: 1200px;
}
.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: 10px 25px;
    padding: 50px 50px 50px 50px;
}
.quote-popup__form-block *:not(.quote-popup__form-block__subtitle) {
    font-family: var(--font-style-2);
}
.quote-popup__form-block__head {
    grid-column: 1/-1;
}
.quote-popup__form-block__title {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.quote-popup__form-block__subtitle {
    grid-column: 1/-1;
    font-weight: 600;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: 1.8px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.quote-popup__form-block__slogan {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    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: #f2f2f2;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
    background-color: transparent;
    border: 1px solid #bdbdbd;
}
.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;
}
.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 {
    color: #828282;
    top: 10px;
    right: 10px;
    border: 3px solid #828282;
}

/* [MAIN CSS START] */
.main-container {
    overflow: hidden;
}

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

.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(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--accent-color-2);
    margin-bottom: 5px;
}

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

.subtitle {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    font-family: var(--font-style-2);
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 20px;
    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;
    -moz-column-gap: 10px;
    column-gap: 10px;
    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 #000;
    color: #000;
    background: transparent;
    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 {
    border-color: var(--accent-color);
    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.js-galleryLoadMore {
    opacity: 0;
    visibility: hidden;
    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%;
    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(4, 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-location {
    position: relative;
    padding-left: 45px;
}
.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__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;
}
@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] */
.section-heading {
    padding-top: 60px;
    text-align: center;
}
.section-heading__title {
    font-family: var(--font-style-2);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: capitalize;
    color: var(--accent-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    margin: 0 auto;
    margin-bottom: 10px;
}
.section-heading__subtitle {
    font-weight: 600;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.section-heading__text {
    margin-top: 40px;
}

.section-points {
    background-color: #261b11;
}
.section-points .container {
    display: grid;
    grid-template-columns: 500px 1fr;
}
@media (max-width: 1300px) {
    .section-points .container {
        grid-template-columns: 100%;
        row-gap: 10px;
    }
}
.section-points__left {
    font-weight: 500;
    font-size: clamp(20px, 4vw, 30px);
    line-height: 38px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding-right: 100px;
    position: relative;
    padding: 60px 60px 60px var(--container-padding);
}
@media (max-width: 769px) {
    .section-points__left {
        padding: 30px var(--container-padding) 30px calc(var(--container-padding) + 50px);
    }
}
.section-points__right {
    padding-left: 50px;
    padding: 60px var(--container-padding) 60px 130px;
    background-color: rgba(0, 0, 0, 0.278);
    background-image: url(/img/misc/sr_section-points-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: darken;
}
.section-points__right > ul {
    -moz-column-count: 2;
    column-count: 2;
    color: #fff;
}
.section-points__right > ul li {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    margin-bottom: 10px;
}
@media (max-width: 769px) {
    .section-points__right {
        padding: 60px var(--container-padding) 60px calc(var(--container-padding) + 50px);
    }
    .section-points__right > ul {
        -moz-column-count: 1;
        column-count: 1;
    }
    .section-points__right > ul li {
        font-size: 18px;
        line-height: 30px;
        padding: 0;
    }
}

.styled-list {
    list-style: none;
    padding-left: 50px;
}
.styled-list__accent {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
}
.styled-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.styled-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/ap_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 768px) {
    .styled-list {
        padding-left: 0;
    }
    .styled-list__accent {
        font-size: 16px;
        line-height: 28px;
    }
}

.epoxy-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 50px;
}
.epoxy-custom__title {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 45px;
}
@media (max-width: 1250px) {
    .epoxy-custom {
        grid-template-columns: 100%;
    }
}

/* Contact us start */
.contact-head *:not(.section-heading__subtitle) {
    font-family: var(--font-style-2);
}

.contact-body *:not(.contact-layout__title) {
    font-family: var(--font-style-2);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 40px;
}
.contact-layout__title {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
}
.contact-layout__left-text {
    margin-bottom: 50px;
}
.contact-layout__links {
    margin-bottom: 20px;
    padding-left: 40px;
}
.contact-layout__links > h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.contact-layout__links-item {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #333;
    font-size: clamp(20px, 2vw, 26px);
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .contact-layout__links {
        padding-left: 0;
    }
}
.contact-layout__right form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.contact-layout__right form > input:not([type='file']),
.contact-layout__right form .jfilestyle {
    margin-bottom: 20px;
}
.contact-layout__right form .jfilestyle {
    width: auto;
}
.contact-layout__right form > input,
.contact-layout__right form > textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    color: #333;
}
.contact-layout__right form > .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 650px) {
    .contact-layout__right form {
        grid-template-columns: 100%;
    }
}
@media (max-width: 1050px) {
    .contact-layout {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
}

/* Contact us end */
