:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #f98d2a;
    --accent-color-1: #584a42;
    --accent-color-2: #120e0b;
    --accent-background-color: #d6d2ca;
    --accent-background-color-2: #f0ece8;
    --page-max-width: 1920px;
    --container-padding: 110px;
    --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: #ff8200;
}
div.skiptranslate {
    display: none;
}

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

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

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

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-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: 25px;
}

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

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
    background-color: white;
    color: #000;
    padding: 10px 0 0 0;
    /* height: 178px; */
    height: 105px;
}
.header.header--scrolled {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* padding: 5px 0; */
    /* height: 90px; */
}
/* .header.header--scrolled .header__layout {
    height: 100px;
} */
/* .header.header--scrolled .header__layout-top {
    height: auto;
}
.header.header--scrolled .header__layout-bottom {
    height: auto;
} */
.header__logo {
    display: flex;
    align-items: center;
    max-height: 80px;
}
.header__logo img {
    max-height: 80px;
}
.header__layout {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding) 0 var(--container-padding);
    transition: 0.3s ease;
}
.header__layout-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.header2 .header__layout-inner {
    display: flex;
    width: 100%;
}
.header2 .header__layout-inner .header__mild {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 150px;
    column-gap: 150px;
}
.header2 .header__layout-inner .header__mild-slogan {
    color: #c2b5ad;
    font-size: clamp(14px, 2vw, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 650px) {
    .header2 .header__layout-inner .header__mild-slogan {
        display: none;
    }
}
@media (max-width: 1360px) {
    .header2 .header__layout-inner .header__mild {
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}
.header__layout-top {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    -moz-column-gap: 41px;
    column-gap: 41px;
    padding-bottom: 0px;
}
.header__layout-bottom {
    margin-top: 18px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__links {
    display: flex;
    align-items: center;
    -moz-column-gap: 35px;
    column-gap: 35px;
    padding-right: 15px;
}
.header__links a {
    color: #000;
    transition: 0.3s ease;
    box-shadow: inset 0 -1px 0 var(--accent-color);
}
.header__links a:hover {
    color: var(--accent-color);
}
@media (max-width: 1260px) {
    .header__links {
        display: none;
    }
}
.header__lang {
    display: flex;
    align-items: center;
}
.header__lang p {
    padding-right: 12px;
}
.header__lang-links {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.header__lang-links a {
    color: var(--accent-color-1);
    transition: 0.3s ease;
    position: relative;
}
.header__lang-links a:hover,
.header__lang-link.header__lang-link--active {
    color: var(--accent-color);
}
.header__lang-links a:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 1px;
    height: 100%;
    background-color: var(--accent-background-color);
    transform: translateY(-50%);
}
@media (max-width: 750px) {
    .header__lang {
        display: none;
    }
}
.header__socials {
    display: flex;
    align-items: center;
    -moz-column-gap: 11px;
    column-gap: 11px;
    padding-right: 5px;
}
.header__socials p {
    padding-right: 11px;
}
.header__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--accent-background-color);
    transition: 0.3s ease;
    color: #fff;
}
.header__socials a svg {
    width: 16px;
    height: 16px;
}
.header__socials a:hover {
    background-color: var(--accent-color);
}
@media (max-width: 750px) {
    .header__socials p {
        display: none;
    }
}
.header__menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    list-style: none;
}
.header__menu-link {
    padding: 10px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.header__menu-link:hover {
    box-shadow: inset 0 -5px 0 var(--accent-color);
}
.header__menu-link.header__menu-link--active {
    box-shadow: inset 0 -5px 0 var(--accent-color);
}
.header__menu-link.header__menu-link--accent {
    border: 1px solid #000;
    white-space: nowrap;
}
.header__menu-link.header__menu-link--accent:hover {
    box-shadow: none;
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
@media (max-width: 1710px) {
    .header__menu-link {
        font-size: 14px;
    }
}
@media (max-width: 1710px) {
    .header__menu {
        -moz-column-gap: 5px;
        column-gap: 5px;
    }
}
@media (max-width: 1350px) {
    .header__menu > li:not(:last-of-type) {
        display: none;
    }
}

/* || HEADER end || */
.footer {
    background-color: #fff;
    color: #000;
    border-top: 1px solid var(--accent-background-color);
}
.footer__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: 'logo info cast serv cont';
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
}
.footer__layout-lg {
    grid-area: logo;
    display: flex;
    flex-direction: column;
}
.footer__layout-lg > a {
    display: flex;
    padding: 20px;
}
.footer__layout-lg p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #bdbdbd;
}
.footer__layout-in {
    grid-area: info;
    padding-top: 20px;
}
.footer__layout-cast {
    grid-area: cast;
    padding-top: 20px;
}
.footer__layout-sr {
    grid-area: serv;
    padding-top: 20px;
}
.footer__layout-sr .footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media screen and (max-width: 450px) {
    .footer__layout-sr .footer__menu {
        grid-template-columns: 1fr;
    }
}
.footer__layout-ct {
    grid-area: cont;
    padding-top: 20px;
}
.footer__layout-ct > .footer__layout-title {
    grid-column: 1/-1;
}
.footer__layout-ct__phones {
    padding-left: 45px;
    position: relative;
    color: #120e0b;
}
.footer__layout-ct__phones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-image: url('/img/icons/cs_phone-black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer__layout-ct__phone {
    display: flex;
}
.footer__layout-ct__phone strong {
    margin-bottom: 3px;
}
.footer__layout-ct__phone a {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #120e0b;
    transition: 0.2s ease;
}
.footer__layout-ct__phone a:hover {
    color: var(--accent-color-1);
}
.footer__layout-ct__location {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    padding-left: 45px;
    position: relative;
    color: #120e0b;
}
.footer__layout-ct__location strong {
    margin-bottom: 3px;
}
.footer__layout-ct__location a {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #120e0b;
    transition: 0.2s ease;
}
.footer__layout-ct__location a:hover {
    color: var(--accent-color-1);
}
.footer__layout-ct__location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-image: url('/img/icons/cs_pin-black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer__layout-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #120e0b;
}
@media screen and (max-width: 1400px) {
    .footer__layout {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas: 'logo logo logo logo ' 'info serv cast cont';
    }
}
@media screen and (max-width: 1100px) {
    .footer__layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'logo logo' 'info serv' 'cast cont';
    }
}
@media screen and (max-width: 800px) {
    .footer__layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'logo logo' 'info cast' 'serv cont';
    }
}
@media screen and (max-width: 550px) {
    .footer__layout {
        grid-template-columns: 1fr;
        grid-template-areas: 'logo' 'info' 'cast' 'serv' 'cont';
    }
    .footer__layout-lg > a {
        width: auto;
        justify-content: center;
        min-width: unset;
    }
    .footer__layout-ct {
        grid-template-columns: 1fr;
    }
}
.footer__socials {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.footer__socials-google-reviews {
    display: block;
    margin-top: 35px;
}
.footer__socials > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--accent-background-color);
    transition: 0.3s ease;
    color: #fff;
}
.footer__socials > a svg {
    width: 16px;
    height: 16px;
}
.footer__socials > a:hover {
    background-color: var(--accent-color);
}
.footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.footer__menu > li {
    margin-bottom: 5px;
}
.footer__menu > li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #120e0b;
}
.footer__menu > li a:hover {
    color: var(--accent-color);
}
.footer__bottom {
    background-color: #f5f3f1;
    color: var(--accent-color-1);
    font-size: 14px;
}
.footer__bottom a {
    color: var(--accent-color-1);
}
.footer__bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (max-width: 550px) {
    .footer__bottom-wrapper {
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
    }
}

.contact-info__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 1300px) {
    .contact-info__layout {
        grid-template-columns: 1fr;
    }
}
.contact-info__info {
    padding: 80px 80px 90px var(--container-padding);
}
.contact-info__info-title {
    font-size: clamp(18px, 5vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-info__info-layout {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.contact-info__info-layout__title {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 25px;
}
.contact-info__info-layout > div {
    padding-left: 35px;
    position: relative;
    margin-bottom: 50px;
    color: #333;
}
.contact-info__info-layout > div svg {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
}
.contact-info__info-layout > div > a {
    display: inline-block;
    color: #333;
    margin-bottom: 5px;
    line-height: 130%;
}
@media (max-width: 700px) {
    .contact-info__info-layout > div {
        margin-bottom: 10px;
    }
}
@media (max-width: 700px) {
    .contact-info__info-layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.contact-info__form {
    display: flex;
    justify-content: center;
    background-color: var(--accent-background-color);
    padding: 80px var(--container-padding) 80px 90px;
}
.contact-info__form-head {
    grid-column: 1/-1;
    text-align: center;
    color: #000;
}
.contact-info__form-head .title {
    margin: 0;
}
.contact-info__form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
    width: 100%;
}
.contact-info__form form input,
.contact-info__form form textarea {
    background-color: #fff;
    border: 0;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    width: 100%;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.contact-info__form form input.jfilestyle {
    width: 0;
}
.contact-info__form form .btn {
    margin: 0 auto;
}
@media (max-width: 1300px) {
    .contact-info__form form {
        padding-top: 0;
    }
}
@media (max-width: 700px) {
    .contact-info__form form {
        grid-template-columns: 1fr;
        row-gap: 15px;
        max-width: 100%;
        padding: 50px var(--container-padding) 50px var(--container-padding);
    }
}
@media (max-width: 1300px) {
    .contact-info__form {
        padding: 20px var(--container-padding) 20px var(--container-padding);
    }
}
.contact-info .contact-info__socials {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding: 0;
}
.contact-info .contact-info__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--accent-background-color);
    transition: 0.3s ease;
    color: #fff;
}
.contact-info .contact-info__socials a svg {
    position: initial;
    top: initial;
    left: initial;
    width: 16px;
    height: 16px;
    color: #fff;
}
.contact-info .contact-info__socials a:hover {
    background-color: var(--accent-color);
}
.contact-info__map {
    grid-column: 1/-1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info__map img {
    width: 100%;
}
.contact-info__map::before {
    content: 'View on Google Maps';
    position: absolute;
    top: -20px;
    left: 65px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    z-index: 1;
    padding: 10px 40px 10px 20px;
    background: #ffffff;
    border-radius: 15px;
    font-size: 14px;
    color: #001730;
    background-image: url(/img/icons/cm_g-logo.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}

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

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

.par.par--left {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
}
.par.par--left .par__img {
    margin-bottom: 5%;
}
.par.par--left .par__txt {
    padding: 0 0 0 5%;
}
@media (max-width: 768px) {
    .par.par--left .par__txt {
        padding: 0;
    }
}

.par.par--right {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__txt par__img';
}
.par.par--right .par__img {
    margin-bottom: 5%;
}
.par.par--right .par__txt {
    padding: 0 5% 0 0;
}
@media (max-width: 768px) {
    .par.par--right .par__txt {
        padding: 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 5% auto;
}
.par.par--center .par__img img {
    display: block;
    margin: 0 auto;
}
.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
/* || HOME SLIDER start || */
.hero-section {
    display: flex;
    flex-direction: column;
}
.home-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-theme-color: var(--accent-color-2);
}
@media (max-width: 1170px) {
    .home-slider {
        min-height: auto;
    }
}
.home-slider > .swiper-wrapper {
    height: 100%;
}
.home-slider .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
}
.home-slider .swiper-slide__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    z-index: 1;
}
.home-slider .swiper-slide__content {
    width: 100vw;
    max-width: 100%;
    position: relative;
    color: #000;
    z-index: 2;
    padding: 60px 5%;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    -moz-column-gap: 25px;
    column-gap: 25px;
}
@media (max-width: 1170px) {
    .home-slider .swiper-slide__content {
        grid-template-columns: 1fr;
        padding: 0px 5% 30px 5%;
    }
}
.swiper-slide__content__image {
    display: flex;
    justify-content: center;
    max-height: 500px;
}
.swiper-slide__content__image img {
    max-height: 100%;
}
.home-slider .swiper-slide__content__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 0px;
}
.home-slider .swiper-slide__content__title {
    font-size: clamp(36px, 4vw, 55px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    max-width: 550px;
    text-transform: uppercase;
}
.home-slider .swiper-slide__content__subtitle {
    font-size: clamp(25px, 3vw, 55px);
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
    text-transform: uppercase;
}
.home-slider .swiper-slide__content__pagination {
    padding: 20px 0;
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.home-slider .swiper-slide__content__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #584a42;
    border-color: #584a42;
}
.home-slider .swiper-slide__content__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    border-radius: 0;
}
.home-slider .swiper-slide__content__link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #fff;
    background-color: var(--accent-color);
    margin-top: 45px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 20px 25px;
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide__content__link:hover {
    background-color: var(--accent-color-1);
}
.home-slider .swiper-slide__content ul {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: none;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.home-slider .swiper-slide__content ul li {
    position: relative;
    padding-left: 40px;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}
.home-slider .swiper-slide__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 18px;
    background-image: url(/img/icons/as_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1170px) {
    .home-slider .swiper-slide {
        height: auto;
        padding: 30px 0;
    }
    .home-slider .swiper-slide__content {
        display: flex;
        flex-direction: column-reverse;
        row-gap: 30px;
        grid-template-columns: 100%;
        margin: 0;
    }
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 3%;
    color: #fff;
    background-color: #000;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 3%;
    color: #fff;
    background-color: #000;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d0d0d0;
}
.home-slider .swiper-pagination-bullet-active {
    border: 2px solid var(--accent-color);
    background-color: var(--accent-color);
}

/* || HOME SLIDER end || */
.home-welcome {
    background-color: var(--accent-background-color-2);
}
.home-welcome__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    -moz-column-gap: 105px;
    column-gap: 105px;
}
.home-welcome__layout-content {
    max-width: 920px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-welcome__layout-content > p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 30px;
}
@media (max-width: 1330px) {
    .home-welcome__layout {
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}
@media (max-width: 850px) {
    .home-welcome__layout {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}
.home-welcome__points {
    display: flex;
    align-items: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin-top: auto;
    margin-bottom: 35px;
}
.home-welcome__points-item {
    flex: 1;
    height: 100%;
    padding: 5px 20px;
    border-left: 3px solid var(--accent-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    text-transform: uppercase;
}
.home-welcome__points-item span {
    font-weight: 600;
}
@media (max-width: 1330px) {
    .home-welcome__points {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 20px;
    }
}

.banner {
    background-color: var(--accent-background-color);
    padding: 75px 0;
}
.banner__layout {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
@media (max-width: 991px) {
    .banner__layout {
        flex-direction: column;
        text-align: center;
        row-gap: 40px;
    }
}
.banner__layout-title {
    color: var(--Black, #000);
    font-size: clamp(30px, 2.5vw, 36px);
    font-weight: 500;
    line-height: 125%;
    text-transform: uppercase;
}
.banner a {
    background-color: var(--accent-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    transition: 0.3s ease;
}
.banner a:hover {
    background-color: var(--accent-color-1);
}

.faded-banner {
    background-color: #ffffffbd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.faded-banner__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 65px);
    line-height: 100%;
    letter-spacing: -1.44px;
    line-height: 110%;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
}
.faded-banner__subtitle {
    text-align: center;
    font-family: Montserrat;
    font-size: clamp(18px, 3vw, 45px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.faded-banner a {
    background-color: var(--accent-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 60px auto 0 auto;
    -moz-column-gap: 10px;
    column-gap: 10px;
    transition: 0.3s ease;
}
.faded-banner a:hover {
    background-color: var(--accent-color-1);
}
@media (max-width: 1600px) {
    .faded-banner {
        min-height: 400px;
    }
}

.steps {
    padding-bottom: 60px;
}
.steps .title {
    max-width: 900px;
}
.steps__items {
    position: relative;
}
.steps__items .container {
    display: flex;
}
@media (max-width: 1100px) {
    .steps__items .container {
        flex-direction: column;
    }
}
.steps__items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-background-color);
}
@media (max-width: 1100px) {
    .steps__items::before {
        width: 1px;
        height: 100%;
        left: calc(var(--container-padding) + 20px);
    }
}
@media (max-width: 630px) {
    .steps__items::before {
        left: calc(var(--container-padding) + 25px);
    }
}
.steps__item {
    position: relative;
    padding: 40px 25px;
    text-align: center;
    flex: 1;
}
.steps__item-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    font-size: 36px;
    font-weight: 500;
    z-index: 1;
    border: 1px solid var(--accent-background-color);
}
@media (max-width: 1100px) {
    .steps__item-number {
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
    }
}
@media (max-width: 630px) {
    .steps__item-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        left: 0;
    }
}
.steps__item-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    padding: 30px 0;
}
@media (max-width: 1100px) {
    .steps__item {
        padding: 20px 0;
        padding-left: 80px;
        text-align: left;
    }
}

.products-slider .title {
    max-width: 1400px;
    margin: 0 auto;
}
.products-slider-container {
    padding-top: 75px;
    padding-left: var(--container-padding);
}
.products-slider-container .swiper-button-next,
.products-slider-container .swiper-button-prev {
    background-color: #ffffffc4;
    padding: 20px;
    height: 70px;
    --swiper-navigation-size: 50px;
    --swiper-theme-color: #000;
}
.products-slider__item {
    display: flex;
    flex-direction: column;
    color: #000;
}
.products-slider__item-image {
    margin-bottom: 35px;
}
.products-slider__item-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}
.products-slider__item-content {
    text-align: center;
}
.products-slider__item-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.products-slider__item-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.products-slider__item-link {
    display: flex;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.7px;
    background-color: var(--accent-color);
    padding: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}
.products-slider__item:hover .products-slider__item-image img {
    opacity: 0.7;
}
.products-slider__item:hover .products-slider__item-link {
    background-color: var(--accent-color-1);
}

.home-work-with-us {
    position: relative;
}
.home-work-with-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 768px) {
    .home-work-with-us__layout {
        grid-template-columns: 1fr;
    }
}
.home-work-with-us__content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--container-padding);
}
.home-work-with-us__content-title {
    color: var(--accent-color);
    font-size: clamp(35px, 4vw, 55px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}
.home-work-with-us__content-subtitle {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 100%;
    letter-spacing: -1.44px;
    margin-bottom: 30px;
    line-height: 130%;
    position: relative;
    color: #000;
    text-transform: uppercase;
}
.home-work-with-us__content-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 22px */
    letter-spacing: 1.4px;
    color: #000;
    border-bottom: 1px solid var(--accent-color);
    padding: 10px;
    transition: 0.3s ease;
}
.home-work-with-us__content-link:hover {
    background-color: var(--accent-color);
    color: var(--color-white);
}
@media (max-width: 768px) {
    .home-work-with-us__content-link {
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .home-work-with-us__content-link {
        font-size: 14px;
    }
    .home-work-with-us__content-link svg {
        display: none;
    }
}
@media (max-width: 768px) {
    .home-work-with-us__content {
        padding: 25px;
        max-width: initial;
        margin: 20px;
        background-color: #ffffffb0;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        text-align: center;
    }
}
@media (max-width: 768px) {
    .home-work-with-us__image {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
}
@media (max-width: 768px) {
    .home-work-with-us {
        padding: 0;
    }
    .home-work-with-us .container {
        padding: 0;
    }
}

.page-head {
    background-color: var(--accent-background-color-2);
    padding: 48px 0;
    text-align: center;
}
.page-head__title {
    color: #120e0b;
    text-align: center;
    font-size: clamp(24px, 5vw, 45px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
}
.page-head__title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background-color: #120e0b;
}
.page-head__text {
    max-width: 1380px;
    margin: 0 auto;
    line-height: 130%;
    /* 20.8px */
}

.projects__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 115px;
}
@media (max-width: 1200px) {
    .projects__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 800px) {
    .projects__layout {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
}
@media (max-width: 500px) {
    .projects__layout {
        grid-template-columns: repeat(1, 1fr);
    }
}
.projects__item {
    position: relative;
    aspect-ratio: 2/3;
    transition: 0.3s ease;
    cursor: pointer;
}
.projects__item-image {
    width: 100%;
    height: 100%;
}
.projects__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.projects__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    background-color: #ffffff77;
    z-index: 1;
    opacity: 0;
}
.projects__item-overlay::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    transition: 0.3s ease;
    background-color: #000;
}
.projects__item-overlay::after {
    content: '';
    position: absolute;
    top: calc(40% - 23px);
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 50px;
    transition: 0.3s ease;
    background-color: #000;
}
.projects__item-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.projects__item-content-title {
    background-color: var(--accent-background-color-2);
    padding: 33px 16px;
    color: #000;
    font-family: Montserrat;
    font-size: clamp(16px, 1.5vw, 26px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.projects__item-content-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    color: #fff;
    padding: 25px;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.projects__item:hover .projects__item-overlay {
    opacity: 1;
}
.projects__item:hover .projects__item-content-title {
    background-color: var(--accent-color);
    color: #fff;
}
.projects__item:hover .projects__item-content-link {
    color: #000;
}

.project-popup {
    width: 100%;
    max-width: 1300px;
    padding: 0;
    --swiper-theme-color: #fff;
}
.project-popup .f-button {
    --f-button-width: 50px !important;
    --f-button-height: 50px !important;
    --f-button-svg-width: 40px !important;
    --f-button-svg-height: 40px !important;
}
.project-popup__layout {
    display: flex;
}
@media (max-width: 850px) {
    .project-popup__layout {
        flex-direction: column-reverse;
    }
}
.project-popup__info {
    flex: 1 0 45%;
    padding: 50px 40px 50px 100px;
}
.project-popup__info-title {
    color: var(--accent-color);
    font-family: Montserrat;
    font-size: clamp(25px, 3vw, 45px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.project-popup__info-subtitle {
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
}
.project-popup__info-text {
    margin-bottom: 45px;
    padding-left: 26px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 22px */
    text-transform: uppercase;
}
.project-popup__info-text p {
    margin-bottom: 10px;
}
@media (max-width: 850px) {
    .project-popup__info {
        flex: 1 0 auto;
        padding: 50px 40px;
    }
}
.project-popup__gallery {
    flex: 1 0 55%;
    width: 55%;
    max-width: 570px;
    /* height: 100%; */
}
.project-popup__gallery .swiper {
    width: 100%;
    height: 100%;
}
.project-popup__gallery .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.project-popup__gallery .swiper-slide a img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 850px) {
    .project-popup__gallery {
        flex: 1 0 auto;
        width: 100%;
        height: 400px;
        max-width: initial;
    }
}

.tabs-section .swiper-button-next,
.tabs-section .swiper-button-prev {
    background-color: #ffffffc4;
    padding: 20px;
    height: 70px;
    --swiper-navigation-size: 50px;
    --swiper-theme-color: #000;
}
.tabs-section__head-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.tabs-section__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .tabs-section__buttons {
        margin-top: 30px;
        margin-bottom: 30px;
        flex-direction: column;
        row-gap: 5px;
    }
}
.tabs-section__button {
    background-color: transparent;
    color: #000;
    border: 1px solid var(--accent-color-1);
    padding: 15px;
    margin: 0 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.tabs-section__button.tabs-section__button--active {
    background-color: var(--accent-color-1);
    color: var(--color-white, #fff);
}
.tabs-section__button:hover {
    background-color: var(--accent-color-1);
    color: var(--color-white, #fff);
}
.tabs-section__button:focus {
    outline: none;
}
@media (max-width: 768px) {
    .tabs-section__button {
        padding: 10px 10px;
        font-size: 16px;
    }
}
.tabs-section__rfq {
    margin: 10px 0 0 auto;
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 1.4px;
    color: #000;
    border-bottom: 1px solid var(--accent-color);
    padding: 10px;
    transition: 0.3s ease;
}
.tabs-section__rfq:hover {
    background-color: var(--accent-color);
    color: var(--color-white, #fff);
}

.accessory-item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}
.accessory-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.anchor-links {
    background-color: rgba(220, 203, 185, 0.6);
}
.anchor-links__container {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.anchor-links__container a {
    color: #000;
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 25px 10px;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
}
.anchor-links__container a:hover {
    box-shadow: inset 0 -6px 0 0 var(--accent-color);
}
@media (max-width: 1800px) {
    .anchor-links__container a {
        font-size: 16px;
    }
}
@media (max-width: 1600px) {
    .anchor-links__container a {
        font-size: 14px;
    }
}
@media (max-width: 1350px) {
    .anchor-links__container a {
        font-size: 12px;
    }
}
@media (max-width: 1600px) {
    .anchor-links__container {
        -moz-column-gap: 0;
        column-gap: 0;
    }
}
@media (max-width: 1350px) {
    .anchor-links__container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
    .anchor-links__container a {
        padding: 10px 0;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .anchor-links__container {
        grid-template-columns: 1fr 1fr;
        row-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}
@media (max-width: 500px) {
    .anchor-links__container {
        grid-template-columns: 1fr;
        row-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

.trade-offer {
    background-image: url(/img/misc/cs_offer-bg-1.jpg);
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
}
.trade-offer .container {
    width: 100%;
}
.trade-offer__content {
    padding-left: 45%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.trade-offer__content p {
    font-size: 24px;
    border-left: 1px solid var(--accent-color);
    padding: 10px 15px;
    margin-bottom: 25px;
    max-width: 800px;
}
.trade-offer__content .btn {
    margin-top: 40px;
}
@media (max-width: 1150px) {
    .trade-offer__content {
        background-color: #ffffffc9;
        padding: 30px;
    }
}
@media (max-width: 1150px) {
    .trade-offer {
        min-height: 600px;
    }
    .trade-offer p {
        font-size: 18px;
    }
}

.suppliers {
    border-top: 1px solid #ebebeb;
}
.suppliers__head {
    text-align: center;
    margin-bottom: 50px;
}
.suppliers__layout {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
}
@media (max-width: 1350px) {
    .suppliers__layout {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
        row-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

.suppliers__item {
    /* background-color: var(--accent-background-color); */
    padding: 5px 10px;
}
.suppliers__item img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 80px;
    object-fit: contain;
}
.franchise-why {
    background-color: var(--accent-background-color);
}
.franchise-why__layout {
    display: grid;
    grid-template-columns: 540px 2fr;
    -moz-column-gap: 110px;
    column-gap: 110px;
    row-gap: 50px;
}
@media (max-width: 1250px) {
    .franchise-why__layout {
        grid-template-columns: 300px 2fr;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}
@media (max-width: 900px) {
    .franchise-why__layout {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 0;
    }
}
.franchise-why__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}
.franchise-why__content-text {
    font-size: 16px;
    line-height: 120%;
}
.franchise-why__points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 25px;
    column-gap: 25px;
    padding-top: 40px;
}
.franchise-why__points > div {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    border-left: 1px solid var(--accent-color);
    padding: 5px 20px 20px 20px;
}
@media (max-width: 1550px) {
    .franchise-why__points {
        grid-template-columns: repeat(2, 1fr);
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
}
@media (max-width: 900px) {
    .franchise-why__points {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media (max-width: 450px) {
    .franchise-why__points {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 0;
    }
}

.franchise-banner .container {
    background-image: url(/img/misc/cs_franchise-banner.jpg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 1350px) {
    .franchise-banner .container {
        background-color: #ffffffad;
        background-blend-mode: lighten;
        min-height: 300px;
    }
}
.franchise-banner__title {
    color: var(--accent-color);
    font-size: clamp(35px, 5vw, 55px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    max-width: 600px;
}
.franchise-banner__subtitle {
    color: var(--Dark-brown, #120e0b);
    font-size: clamp(28px, 4vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: 50.397px;
    /* 125% */
    text-transform: uppercase;
    max-width: 600px;
}

.work-with-us-form__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.work-with-us-form__layout form {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: auto;
    row-gap: 40px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding: 100px 120px 100px var(--container-padding);
}
.work-with-us-form__layout form input,
.work-with-us-form__layout form textarea,
.work-with-us-form__layout form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #bcaca3;
    font-size: 18px;
    font-family: var(--font-family-1);
    color: #000;
    transition: all 0.3s ease-in-out;
}
.work-with-us-form__layout form input:focus,
.work-with-us-form__layout form textarea:focus,
.work-with-us-form__layout form select:focus {
    outline: none;
    border-color: var(--accent-color);
}
.work-with-us-form__layout form input.jfilestyle {
    width: 0;
}
@media (max-width: 1600px) {
    .work-with-us-form__layout form {
        padding: 100px var(--container-padding) 100px var(--container-padding);
    }
}
@media (max-width: 910px) {
    .work-with-us-form__layout form {
        grid-template-columns: 1fr;
        grid-row: auto;
        row-gap: 20px;
        -moz-column-gap: 0px;
        column-gap: 0px;
        padding: 100px var(--container-padding) 100px var(--container-padding);
    }
}
@media (max-width: 700px) {
    .work-with-us-form__layout {
        grid-template-columns: 100%;
    }
}
.work-with-us-form__side {
    display: flex;
}
.work-with-us-form__side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .work-with-us-form__side {
        display: none;
    }
}

.quote-form__row {
    display: flex;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin-bottom: 40px;
}
.quote-form__row > * {
    flex: 1;
}
@media (max-width: 900px) {
    .quote-form__row {
        -moz-column-gap: 20px;
        column-gap: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 650px) {
    .quote-form__row {
        flex-direction: column;
        row-gap: 20px;
    }
}
.quote-form__areas {
    margin-bottom: 40px;
}
.quote-form__areas-title {
    color: var(--Dark-brown, #120e0b);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    /* 225% */
    text-transform: uppercase;
    margin-bottom: 15px;
}
.quote-form__areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 15px;
    max-width: 700px;
}
.quote-form__areas-layout label {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
}
.quote-form__areas-layout label input[type='checkbox'] {
    width: auto;
}
@media (max-width: 570px) {
    .quote-form__areas-layout {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 420px) {
    .quote-form__areas-layout {
        grid-template-columns: 1fr;
    }
}
.quote-form form input,
.quote-form form textarea,
.quote-form form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #bcaca3;
    font-size: 18px;
    font-family: var(--font-family-1);
    color: #000;
    transition: all 0.3s ease-in-out;
}
.quote-form form input:focus,
.quote-form form textarea:focus,
.quote-form form select:focus {
    outline: none;
    border-color: var(--accent-color);
}
.quote-form form input.jfilestyle {
    width: 0;
}

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

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

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

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

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

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

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

.relative {
    position: relative;
}

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

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

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

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

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

.relative {
    position: relative;
}

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

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

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

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

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

.subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 16px);
    margin-bottom: 45px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.subtitle--center {
    margin: 0 auto;
    margin-bottom: 45px;
}

.warranty-block ul {
    padding: 10px 0;
    padding-left: 35px;
}
.warranty-block ol {
    padding: 10px 0;
    padding-left: 35px;
}

.warranty-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 10px;
}

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

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

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

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

.nowrap {
    white-space: nowrap;
}

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

.go-back {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    color: #fff;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn:hover {
    background: var(--accent-color-1);
    border-color: var(--accent-color-1);
    box-shadow: 0 0 5px -2px #464646;
}
.btn.btn--small {
    padding: 10px 20px !important;
    font-size: 14px;
    border: 2px solid var(--accent-color);
}
.btn.btn--small:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
}
.btn.added {
    background-color: var(--accent-color);
    border-color: var(--accent-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;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.btn.btn--transparent {
    border: 1px solid #000;
    color: #000;
    background: transparent;
    padding: 7px 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
    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 {
    transform: translateY(-2px) scale(1.02);
    background: #696767;
    color: #fff;
    border-color: #696767;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    padding-left: var(--container-padding);
    color: #fff;
}
@media (max-width: 900px) {
    .text-layout {
        grid-template-columns: 100%;
        row-gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .text-layout__title {
        padding: 0 var(--container-padding);
    }
}

.ptl-wrapper {
    padding: 45px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}
.ptl-sm-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
    padding-bottom: 45px;
}
.ptl__sm-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #000000;
}
.ptl__sm-link.ptl__sm-link--active {
    font-weight: 600;
}
.ptl__sm-link:not(:first-of-type) {
    padding-left: 20px;
    position: relative;
}
.ptl__sm-link:not(:first-of-type):before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #000;
}
.ptl__link {
    background-color: transparent;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px 30px;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    transition: 0.2s ease;
    cursor: pointer;
}
.ptl__link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}
.ptl__link.ptl__link--active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    position: relative;
}
.ptl__link.ptl__link--active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--accent-color);
}

.top-content {
    margin-bottom: 50px;
}
.top-content.top-content--margin-top {
    margin-top: 50px;
}

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

.tippy-arrow {
    color: #fff;
}

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

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

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

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

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

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

/* [JQUERY ACCORDION START] */
.ui-accordion .ui-accordion-header {
    padding: 24px 50px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
.ui-accordion .ui-accordion-header::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url('/img/icons/cm_accordion.png');
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.2s ease;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active::after {
    background-image: url('/img/icons/fl_accordion-active.png');
}

.ui-widget-content {
    border: 0;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.ui-widget-content ul {
    padding-left: 25px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0;
    border-top: 1px solid #c1c1c1;
    background-color: transparent;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: #000;
}

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

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

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

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

/* [JQUERY ACCORDION END] */
.text-section {
    margin-bottom: 40px;
}
.text-section__text {
    text-align: center;
    max-width: 1350px;
    margin: 0 auto;
    line-height: 150%;
}

/* ACCOUNT TABLE START */
.account-table-head {
    margin-bottom: 30px;
}
.account-table-head__title {
    font-weight: 500;
    font-size: 28px;
    color: #1e1e1e;
}
.account-table-head__title.account-table-head__title--center {
    text-align: center;
}
.account-table-head__table {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    row-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.account-table-head__table > div:nth-child(odd) {
    color: #000;
    font-weight: 600;
}

.account-table {
    width: 100%;
}
.account-table thead {
    background-color: var(--accent-color);
    color: #fff;
}
.account-table thead th {
    padding: 20px 10px 15px 10px;
    font-weight: 400;
}
.account-table tbody tr td {
    padding: 10px 10px;
    vertical-align: middle;
    height: 100px;
}
@media only screen and (max-width: 800px) {
    .account-table tbody tr td {
        height: auto;
    }
}
.account-table tbody tr td .btn {
    padding: 8px 15px;
    font-size: 13px;
    white-space: nowrap;
}
.account-table.dcf-table-striped tbody tr:nth-child(even) {
    background-color: #ffffff;
}
.account-table.dcf-table-striped tbody tr:nth-child(odd) {
    background-color: var(--accent-background-color);
}
.account-table__equipmentImage {
    display: flex;
    max-width: 110px;
}
.account-table__qty {
    display: flex;
    align-items: center;
}
.account-table__qty input {
    width: 50px;
    height: 30px;
    border: 1px solid #c5d5ea;
    border-right: 0;
    border-left: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 5px 7px;
    height: 44px;
}
.account-table__qty button:first-of-type {
    border-radius: 6px 0 0 6px;
}
.account-table__qty button:last-of-type {
    border-radius: 0 6px 6px 0;
}
.account-table__qty button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #c5d5ea;
    font-size: 14px;
    line-height: 1;
    padding: 5px 7px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: 0.3s ease;
}
.account-table__qty button-text {
    display: none;
}
.account-table__qty button:hover {
    background: var(--accent-color);
    color: #fff;
}
.account-table__delete {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    padding: 5px 7px;
    cursor: pointer;
    transition: 0.3s ease;
}
@media (max-width: 800px) {
    .account-table__delete-icon {
        display: none;
    }
}
.account-table__delete-text {
    display: none;
}
@media (max-width: 800px) {
    .account-table__delete-text {
        display: block;
    }
}
.account-table__delete:hover {
    background: tomato;
    color: #fff;
}
.account-table__details {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    padding: 10px 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    color: var(--accent-color);
    transition: 0.3s ease;
}
.account-table__details:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ACCOUNT TABLE END */
.breadcrumbs {
    list-style: none;
    margin-bottom: 17px;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #1e1e1e;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.breadcrumbs li:not(:last-of-type)::after {
    content: '|';
    margin-left: 0px;
}
.breadcrumbs li:last-of-type .breadcrumbs__link {
    font-weight: 600;
}
.breadcrumbs__link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-weight: 400;
}
.breadcrumbs__link:hover {
    color: var(--accent-color-hover);
}

.main-layout__grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    position: relative;
}
@media only screen and (max-width: 1500px) {
    .main-layout__grid {
        grid-template-columns: 300px 1fr;
    }
}
@media only screen and (max-width: 900px) {
    .main-layout__grid {
        display: block;
    }
}
.main-layout__side {
    background-color: var(--accent-background-color);
    padding: 60px 30px 60px var(--container-padding);
}
@media only screen and (max-width: 900px) {
    .main-layout__side {
        display: none;
    }
}
.main-layout__body {
    padding: 30px var(--container-padding) 60px 50px;
}
@media only screen and (max-width: 1250px) {
    .main-layout__body {
        padding: 30px var(--container-padding);
    }
}

.styled-list {
    list-style: none;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.styled-list li {
    position: relative;
    padding-left: 30px;
    font-size: 20px;
}
.styled-list li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 4px;
    background-color: var(--accent-color);
}
@media only screen and (max-width: 800px) {
    .styled-list {
        grid-template-columns: 1fr;
    }
    .styled-list li {
        font-size: 16px;
    }
}
