@charset "UTF-8";
:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #6cb33f;
    --accent-color-2: #3a201a;
    --accent-background-color: #f0f3eb;
    --accent-background-color-2: #b6cbed;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #6cb33f;
    --font-family: 'Inter', sans-serif;
    --font-family-accent: 'Inter', sans-serif;
}

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

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

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

html {
    box-sizing: border-box;
}

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

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

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-accent);
}

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

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

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

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

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

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

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
    transition: 0.3s ease;
    background-color: transparent;

    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.header.header--scrolled {
    top: -80px;
    background-color: #fff;
}
.header.header--scrolled * .header__layout-bottom__inner {
    margin-top: 80px;
}
.header.header--scrolled .header-logo {
    max-height: 70px;
    max-width: 250px;
    padding-bottom: 15px;
}
.header.header--scrolled .header-logo img {
    max-height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}
.header__layout {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 160px;
}
.header__layout-bottom {
    height: 160px;
    display: flex;
    justify-content: stretch;
    align-items: center;
}
.header__layout-bottom__inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 0px var(--container-padding);
}
@media (max-width: 920px) {
    .header__layout-bottom__inner {
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}
.header__top-link {
    color: #000;
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.header__top-link:hover {
    text-decoration: underline;
}
.header-logo {
    padding: 10px;
    display: flex;
    width: 100%;
    max-width: 350px;
    max-height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 10;
}
.header-logo img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}
.header-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    position: relative;
    height: 50px;
    padding-bottom: 10px;
}
.header-menu > li {
    display: flex;
    align-items: stretch;
    height: auto;
    position: relative;
}
.header-menu > li:hover > a {
    color: var(--accent-color);
}
.header-menu__link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    height: auto;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    padding: 0 20px;
    white-space: nowrap;
    transition: 0.3s ease;
}
.header-menu__link.header-menu__link--active {
    color: var(--accent-color);
}
@media (max-width: 1700px) {
    .header-menu__link {
        font-size: 16px;
    }
}
@media (max-width: 1350px) {
    .header-menu {
        background-color: transparent;
        flex: none;
    }
    .header-menu > *:not(.header__menu-mobile) {
        display: none;
    }
}
.header-menu-partner {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 500px) {
    .header-menu {
        padding-left: 0;
    }
}
.header-submenu {
    list-style: none;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(50px);
    background-color: var(--accent-color);
    color: #fff;
    min-width: 200px;
    max-width: 820px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: 0.2s ease;
}
.header-submenu > li {
    border-bottom: 1px solid #dc666633;
}
.header-submenu > li a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 15px 20px 15px 20px;
    transition: 0.2s ease;
    position: relative;
}
.header-submenu > li a:hover {
    background-color: var(--accent-color);
}
.header__actions {
    display: flex;
    align-self: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.header__actions-btn {
    color: #3a201a;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 10px;
    border: 2px solid #dee6d4;
    padding: 10px 27px;
    transition: 0.2s ease;
}
.header__actions-btn.header__actions-btn--accent {
    background-color: #dee6d4;
}
.header__actions-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
@media (max-width: 1700px) {
    .header__actions-btn {
        font-size: 16px;
    }
}
@media (max-width: 920px) {
    .header__actions-btn {
        font-size: 14px;
        white-space: nowrap;
        padding: 10px 10px;
    }
    .header__actions-btn:not(.js-loginPopup) {
        display: none;
    }
}
.header__partner {
    overflow: hidden;
}
.header__menu-mobile {
    display: flex;
    align-items: center;
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* || HEADER end || */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: 'par__img par__txt';
    grid-gap: 5%;
    padding-block: 20px;
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt p {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
    color: #fff;
    border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
    background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt ul:not(.styled-list) {
    padding: 30px 0 30px 30px;
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
}
.par__txt-footer__item {
    text-transform: uppercase;
    font-size: clamp(12px, 1vw, 18px);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item a {
    color: #000;
}
.par__txt-footer__item svg {
    color: var(--accent-color-2);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__ttl {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 110%;
    color: #000;
    margin-bottom: 10px;
    font-weight: 400;
}
.par__subttl {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-top: 40px;
    padding-bottom: 25px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link,
.par__link {
    margin-top: 35px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--accent-color);
    transition: 0.3s ease-in-out;
}
.par__text-link:hover,
.par__link {
    background-color: var(--accent-color);
    color: var(--color-white);
}
@media (max-width: 768px) {
    .par__text {
        margin-top: 0px;
    }
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
        row-gap: unset;
    }
    .par .par__txt {
        padding-top: 5%;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

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

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

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

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

/* [_paragraph end] */
.footer {
    background-color: var(--accent-color-2);
    padding-top: 95px;
}
.footer__socials {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 30px;
}
.footer__middle {
    position: relative;
    padding: 0px 0 26px 0;
}
@media (max-width: 1350px) {
    .footer__middle {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
}
@media (max-width: 850px) {
    .footer__middle {
        grid-template-columns: 100%;
        row-gap: 35px;
    }
}
.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
    padding: 25px 0 25px 0;
    font-size: 14px;
    color: #fff;
}
.footer__bottom a {
    color: #fff;
    text-decoration: none;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    padding: 0 20px;
    color: #fff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.footer__logo-text {
    max-width: 370px;
}
@media (max-width: 1350px) {
    .footer__logo-text {
        max-width: 100%;
    }
}
@media (max-width: 1350px) {
    .footer__logo {
        padding: 0;
    }
}
.footer__label {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2px;
}
.footer__title {
    display: flex;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
    padding-left: 25px;
    letter-spacing: 2px;
    position: relative;
}
.footer__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color-2);
}
.footer__nav-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
}
.footer__nav-wrapper ul {
    list-style: none;
}
.footer__nav-wrapper ul li {
    margin-bottom: 3px;
}
.footer__nav-wrapper ul a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: 0.3s ease;
}
.footer__nav-wrapper ul a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
@media (max-width: 1350px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 1000px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
}
@media (max-width: 850px) {
    .footer__nav-wrapper {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
    .footer__nav-wrapper > :nth-child(1) {
        grid-column: 1/-1;
    }
    .footer__nav-wrapper > :last-child {
        grid-column: 1/-1;
    }
}
.footer__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 30px;
}
.footer__contact-action {
    grid-column: 1/-1;
    display: flex;
    justify-content: flex-end;
}
.footer__contact input {
    border-radius: 5px;
}
@media (max-width: 450px) {
    .footer__contact {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}

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

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

th {
    text-align: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-hero {
    --hero-side-padding: var(--container-padding);
    --swiper-pagination-bullet-size: 15px;
    --swiper-pagination-bullet-border-radius: 50%;
    --swiper-pagination-color: #3f76ee;
    --swiper-pagination-bullet-inactive-color: #122f60;
    --swiper-navigation-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 0.9;
    --swiper-navigation-color: #000;
}
.home-hero .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    width: 20px !important;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: left;
    right: 5%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.home-hero .swiper-pagination-clickable .swiper-pagination-bullet {
    border: 2px solid #000;
    left: 0 !important;
}
.home-hero .swiper-slide {
    position: relative;
    height: 715px;
}
.home-hero .swiper-slide-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}
.home-hero .swiper-slide__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}
.home-hero .swiper-slide__layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 40px 0 40px var(--hero-side-padding);
    height: 100%;
}
.home-hero .swiper-slide__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 1;
    background-color: var(--accent-color);
    max-width: 575px;
    border-radius: 10px;
    padding: 45px 45px 45px 70px;
}
.home-hero .swiper-slide__content-title {
    color: #fff;
    font-size: clamp(22px, 4vw, 50px);
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    font-family: var(--font-family-accent);
}
.home-hero .swiper-slide__content-link {
    display: flex;
    color: #000;
    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;
    padding: 12px 28px;
    margin-top: 60px;
    background-color: #dee6d4;
    border-radius: 10px;
    transition: 0.2s ease;
}
.home-hero .swiper-slide__content-link:hover {
    background-color: var(--accent-color-2);
    color: var(--color-white, #fff);
    border-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .home-hero .swiper-slide__content {
        padding: 40px 40px 40px 40px;
    }
}
@media (max-width: 500px) {
    .home-hero .swiper-slide__content-link {
        font-size: 14px;
        padding: 10px 15px;
    }
}
.home-hero .swiper-slide__media {
    flex: 1;
    display: flex;
    align-items: center;
}
@media (max-width: 430px) {
    .home-hero .swiper-slide__media {
        display: none;
    }
}
@media (max-width: 1100px) {
    .home-hero .swiper-slide {
        height: 480px;
    }
    .home-hero .swiper-slide__layout {
        padding: 40px 0 40px var(--hero-side-padding);
    }
}
@media (max-width: 768px) {
    .home-hero .swiper-slide {
        height: 400px;
    }
    .home-hero .swiper-slide__layout {
        padding: 40px 5% 40px 5%;
    }
}
@media (max-width: 430px) {
    .home-hero .swiper-slide.swiper-slide--with-image .swiper-slide__layout {
        padding: 40px var(--hero-side-padding);
    }
}
@media (max-width: 1600px) {
    .home-hero {
        --hero-side-padding: 10%;
    }
}

.home-products {
    position: relative;
    padding-bottom: 50px;
}
.home-products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 570px;
    background-color: var(--accent-background-color);
    z-index: -1;
}
.home-products__swiper {
    margin-top: -50px;
    --swiper-theme-color: var(--accent-color);
    --swiper-navigation-size: 20px;
}
.home-products__swiper .swiper-button-next,
.home-products__swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.home-products__swiper-item {
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.home-products__swiper-item-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.home-products__swiper-item-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: 100% 150%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    background-position: 0 0%;
    transition: 0.5s ease;
}
.home-products__swiper-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}
.home-products__swiper-item-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.home-products__swiper-item:hover .home-products__swiper-item-media::after {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    background-position: 0 50%;
}
.home-products__sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 35px;
    margin-top: 40px;
}
.home-products__sub-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s ease;
}
.home-products__sub-item:nth-child(1) {
    background-color: var(--accent-color);
}
.home-products__sub-item:nth-child(2) {
    background-color: var(--accent-color-2);
}
.home-products__sub-item-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-products__sub-item-content-title {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .home-products__sub-item-content {
        padding: 30px;
    }
}
.home-products__sub-item-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.home-products__sub-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-products__sub-item:hover {
    transform: scale(1.02);
}
@media (max-width: 991px) {
    .home-products__sub {
        grid-template-columns: 1fr;
    }
    .home-products__sub-item {
        grid-template-columns: 1fr;
    }
    .home-products__sub-item:nth-child(1) {
        background-color: var(--accent-color);
    }
    .home-products__sub-item:nth-child(2) {
        background-color: var(--accent-color-2);
    }
    .home-products__sub-item-media {
        max-height: 300px;
    }
}

.home-doors__layout {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 35px;
}
@media (max-width: 1150px) {
    .home-doors__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .home-doors__layout {
        grid-template-columns: repeat(2, 1fr);
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media (max-width: 400px) {
    .home-doors__layout {
        grid-template-columns: 1fr;
    }
}
.home-doors__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--accent-background-color);
    border-radius: 10px;
    overflow: hidden;
    color: #000;
    transition: 0.2s ease;
}
.home-doors__item-title {
    flex: 1;
    padding: 35px 20px;
    color: #1e1e1e;
    text-align: center;
    font-size: clamp(24px, 3vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.home-doors__item-media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}
.home-doors__item-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-doors__item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.2);
}
.home-doors__custom-item {
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: space-between;
    padding: 40px 40px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s ease;
}
.home-doors__custom-item-title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.home-doors__custom-item-link {
    border-radius: 10px;
    background: #dcdaca;
    color: #080808;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 12px 20px;
    transition: 0.2s ease;
}
.home-doors__custom-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.2);
}
.home-doors__custom-item:hover .home-doors__custom-item-link {
    background: var(--accent-color-2);
    color: #fff;
}
@media (max-width: 500px) {
    .home-doors__custom-item {
        padding: 30px 20px;
    }
    .home-doors__custom-item .home-doors__custom-item-link {
        font-size: 14px;
    }
}

.banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 170px 0;
}
.banner__layout {
    background-color: var(--accent-color-2);
    color: #fff;
    border-radius: 10px;
    padding: 60px 70px;
    max-width: 575px;
}
.banner__title {
    color: #a0cf67;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.banner__text {
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.banner .btn {
    margin-top: 30px;
}
@media (max-width: 768px) {
    .banner {
        padding: 100px 0;
    }
    .banner__layout {
        padding: 40px;
    }
    .banner__title {
        font-size: 20px;
    }
}

.home-discover__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
    padding: 140px 0;
}
@media (max-width: 768px) {
    .home-discover__layout {
        grid-template-columns: 1fr;
        padding: 80px 0;
    }
}
.home-discover__media {
    border-radius: 10px;
    overflow: hidden;
}
.home-discover__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-discover__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 130px;
}
.home-discover__content-title {
    color: #a0cf67;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.home-discover__content-subtitle {
    margin-top: 40px;
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.home-discover__content-text {
    margin-top: 30px;
}
.home-discover__content .btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-top: 40px;
}
@media (max-width: 1200px) {
    .home-discover__content {
        padding-left: 60px;
    }
}
@media (max-width: 768px) {
    .home-discover__content {
        padding-left: 0;
    }
    .home-discover__content-title {
        font-size: 20px;
    }
    .home-discover__content-subtitle {
        margin-top: 10px;
    }
}

.home-vendors {
    background-color: var(--accent-color);
    color: #fff;
    padding: 100px 0;
}
.home-vendors__title {
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}
.home-vendors__layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 140px;
    column-gap: 140px;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .home-vendors__layout {
        -moz-column-gap: 70px;
        column-gap: 70px;
    }
}
@media screen and (max-width: 768px) {
    .home-vendors__layout {
        grid-template-columns: 100%;
        row-gap: 60px;
    }
}
.home-vendors__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-vendors__item-icon {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .home-vendors__item-icon {
        margin-bottom: 10px;
    }
    .home-vendors__item-icon svg {
        width: 100px;
        height: 100px;
    }
}
.home-vendors__item-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}
@media screen and (max-width: 1200px) {
    .home-vendors__item-title {
        font-size: 22px;
    }
}
.home-vendors__item-text {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media screen and (max-width: 1200px) {
    .home-vendors__item-text {
        font-size: 16px;
    }
}

.home-why-us {
    padding: 180px 0;
}
.home-why-us__title {
    color: #3a201a;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
}
.home-why-us .btn {
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
}
.home-why-us__text {
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    line-height: 100%;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 300;
    margin-bottom: 70px;
}
.home-why-us__testimonials {
    margin-top: 170px;
}
.home-why-us__testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
@media (max-width: 1200px) {
    .home-why-us__testimonials-grid {
        grid-gap: 20px;
    }
}
@media (max-width: 992px) {
    .home-why-us__testimonials-grid {
        grid-template-columns: 100%;
    }
}
.home-why-us__testimonials-item {
    background-color: var(--accent-background-color);
    padding: 65px 40px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.home-why-us__testimonials-item-title {
    color: #1e1e1e;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.home-why-us__testimonials-item-text {
    margin-bottom: 40px;
}
.home-why-us__testimonials-item-rate {
    margin-top: auto;
}

.home-downloads {
    background-color: var(--accent-color);
    color: #fff;
}
.home-downloads__layout {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 100px;
    column-gap: 100px;
    row-gap: 20px;
}
.home-downloads__title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
@media screen and (max-width: 768px) {
    .home-downloads__title {
        font-size: 30px;
    }
}
.home-downloads .btn {
    width: 270px;
    text-align: center;
}

.page-head-large {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-head-large__shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(238, 243, 232, 0) 17.88%, rgba(30, 30, 30, 0.66) 76.12%);
    background-blend-mode: multiply;
}
.page-head-large__text {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    text-align: center;
    font-size: clamp(3rem, 5vw, 6rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
@media (max-width: 1330px) {
    .page-head-large {
        min-height: 600px;
    }
}
@media (max-width: 1200px) {
    .page-head-large {
        min-height: 500px;
    }
}

.page-head-title {
    background-color: var(--accent-color);
    color: #fff;
}
.page-head-title__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 37px 0;
    color: #fff;
    text-align: center;
    font-size: clamp(22px, 3vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.categories__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 45px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .categories__layout {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 20px;
    }
}
@media (max-width: 450px) {
    .categories__layout {
        grid-template-columns: 1fr;
    }
}
.categories__item {
    background-color: var(--accent-background-color);
    border-radius: 10px;
    overflow: hidden;
    color: #000;
}
.categories__item-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 47%;
    overflow: hidden;
}
.categories__item-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}
.categories__item-content {
    padding: 60px 50px;
}
@media (max-width: 768px) {
    .categories__item-content {
        padding: 30px 20px;
    }
}
.categories__item-title {
    color: #3a201a;
    font-size: clamp(22px, 3vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}
.categories__item-text {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .categories__item-text {
        font-size: 14px;
    }
}
.categories__item-link {
    color: #6cb33f;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.categories__item:hover .categories__item-media img {
    transform: scale(1.1);
}

.cta__layout {
    background-color: var(--accent-color-2);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 100px;
    column-gap: 100px;
    row-gap: 30px;
    padding: 56px 100px;
    border-radius: 10px;
}
@media (max-width: 1100px) {
    .cta__layout {
        flex-direction: column;
        padding: 56px 20px;
        text-align: center;
    }
}
.cta__title {
    color: #fff;
    font-size: clamp(22px, 4vw, 40px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.cta .btn {
    white-space: nowrap;
}

.product-types__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 45px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -160px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .product-types__layout {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 20px;
    }
}
@media (max-width: 450px) {
    .product-types__layout {
        grid-template-columns: 1fr;
    }
}
.product-types__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #000;
}
.product-types__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-background-color);
    transition: 0.5s ease;
    z-index: 0;
}
.product-types__item-accent {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), transparent);
    transition: 0.5s ease;
    z-index: 1;
}
.product-types__item-content {
    position: relative;
    z-index: 2;
}
.product-types__item-content-inner {
    padding: 35px 35px 0 35px;
}
@media (max-width: 768px) {
    .product-types__item-content-inner {
        padding: 20px;
    }
}
.product-types__item-title {
    color: #3a201a;
    font-size: clamp(20px, 3vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.product-types__item-text {
    font-size: 16px;
    transition: all 0.3s ease;
}
.product-types__item .btn {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .product-types__item .btn {
        font-size: 12px;
        padding: 12px 20px;
    }
}
.product-types__item-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 47%;
    overflow: hidden;
}
.product-types__item-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}
.product-types__item:hover .product-types__item-bg {
    background-color: #fff;
}
.product-types__item:hover .product-types__item-accent {
    top: 0;
}
.product-types__item:hover .product-types__item-title {
    color: #fff;
}
.product-types__item:hover .product-types__item-text {
    color: #fff;
}

.products-head {
    background-color: var(--accent-color);
}
.products-head__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 766px) {
    .products-head__layout {
        grid-template-columns: 1fr;
    }
}
.products-head__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 60px 100px 60px var(--container-padding);
}
@media screen and (max-width: 1300px) {
    .products-head__content {
        padding: 60px var(--container-padding) 60px var(--container-padding);
    }
}
.products-head__media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 766px) {
    .products-head__media {
        display: none;
    }
}
.products-head__title {
    font-size: clamp(22px, 4vw, 40px);
    margin-bottom: 30px;
}
.products-head__text {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media screen and (max-width: 1300px) {
    .products-head__text {
        font-size: 16px;
    }
}
.products-head__actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}

.product-head {
    background-color: var(--accent-color-2);
    color: #fff;
}
.product-head__title {
    font-size: clamp(24px, 3vw, 48px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.84px;
    text-align: center;
}
.product-head .breadcrumbs li:not(:last-child)::after {
    color: #fff;
}
.product-head .breadcrumbs li a,
.product-head .breadcrumbs li p {
    color: #fff;
}

.pr-layout {
    display: flex;
    width: 100%;
    margin: 70px auto;
}
@media (max-width: 768px) {
    .pr-layout {
        flex-direction: column;
    }
}
.pr-layout__side {
    width: 250px;
    padding: 0;
}
@media (max-width: 768px) {
    .pr-layout__side {
        display: none;
    }
}
.pr-layout__body {
    flex: 1 0 auto;
    max-width: calc(100% - 250px);
    padding-left: 40px;
}
@media (max-width: 768px) {
    .pr-layout__body {
        padding-left: 0;
        max-width: 100%;
    }
}

.pr-menu {
    list-style: none;
}
.pr-menu__item {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}
.pr-menu__item--active > .pr-menu__link {
    color: #6cb33f;
    font-weight: 500;
}
.pr-menu__link {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
    width: calc(100% - 30px);
}
.pr-menu__link.pr-menu__link--active {
    color: #6cb33f;
    font-weight: 500;
}
.pr-menu__link:hover {
    color: #6cb33f;
}
.pr-menu__link--toggle {
    cursor: pointer;
}
.pr-menu__toggle {
    position: absolute;
    right: 15px;
    top: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.pr-menu__toggle svg {
    width: 11px;
    height: 17px;
}
.pr-menu__submenu {
    display: none;
    list-style: none;
}
.pr-menu__submenu .pr-menu__item {
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.pr-menu__submenu .pr-menu__item:last-child {
    border-bottom: none;
}
.pr-menu__submenu .pr-menu__link {
    padding-left: 30px;
}
.pr-menu__submenu .pr-menu__submenu .pr-menu__link {
    padding-left: 45px;
}
.pr-menu__submenu .pr-menu__submenu .pr-menu__submenu .pr-menu__link {
    padding-left: 60px;
}
.pr-menu .pr-menu__item--open > .pr-menu__toggle {
    transform: translateY(-50%) rotate(90deg);
}
.pr-menu .pr-menu__item--open > .pr-menu__submenu {
    display: block;
}

.pr-mobile-toggle {
    display: none;
    padding: 15px;
    background-color: #6cb33f;
    color: white;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.pr-mobile-toggle::before {
    content: '☰';
    margin-right: 10px;
    font-size: 1.2em;
}
@media (max-width: 768px) {
    .pr-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.pr-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1300px) {
    .pr-products {
        gap: 20px;
    }
}
@media (max-width: 1050px) {
    .pr-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .pr-products {
        grid-template-columns: 1fr;
    }
}
.pr-products__item {
    margin-bottom: 20px;
}

.pr-product {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pr-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.2);
}

.pr-product__code {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.pr-product__name {
    color: #333;
    margin-bottom: 10px;
}

.pr-product__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: rgba(211, 211, 211, 0.36);
}

.pr-product__image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pr-product__specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media (max-width: 1050px) {
    .pr-product__specs {
        font-size: 14px;
    }
}

.pr-product__specs-icon {
    display: inline-flex;
    margin-left: 5px;
}

.single-product__title {
    color: #3a201a;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}
.single-product__layout {
    max-width: 100%;
    display: grid;
    grid-template-columns: calc(60% - 25px) calc(40% - 25px);
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-top: 18px;
}
@media (max-width: 1300px) {
    .single-product__layout {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
}
.single-product__content-title {
    color: #3a201a;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 17px;
}
.single-product__content-table {
    width: 100%;
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 200% */
    margin-bottom: 20px;
}
.single-product__content-table tr {
    border-bottom: 1px solid #d9d9d9;
}
.single-product__content-doors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 15px;
    margin-bottom: 60px;
}
.single-product__content-doors-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}
.single-product__content-doors-item-media {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
}
.single-product__content-doors-item-media img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.single-product__content-doors-item-title {
    text-align: center;
    font-size: 12px;
}
.single-product__content-doors-item.disabled {
    opacity: 0.4;
    filter: grayscale(1);
    pointer-events: none;
}
.single-product__media {
    max-width: 100%;
}
.single-product__media-carousel {
    margin-bottom: 40px;
    max-width: 100%;
    /* height: calc(100% - 155px); */
    height: calc(100% - 63px);
}
.single-product__media-carousel .f-carousel__slide {
    display: block;
}
.single-product__media-carousel #myCarousel {
    --f-carousel-slide-width: 100%;
    --f-carousel-spacing: 10px;
    margin-bottom: 1rem;
    position: relative;
    height: 100%;
}
.single-product__media-carousel #myCarousel .f-carousel__slide {
    /* max-height: 650px; */
    position: relative;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product__media-carousel #myCarousel .f-carousel__slide a {
    width: 100%;
    display: block;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}
.single-product__media-carousel #myCarousel .f-carousel__slide img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}
.single-product__media-carousel #myNavigation {
    --f-carousel-slide-width: 100px;
    --f-thumb-gap: 5px;
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-button-prev-pos: 0;
    --f-button-next-pos: 0;
    /* padding: 0 40px; */
}
@media (max-width: 1100px) {
    .single-product__media-carousel #myNavigation {
        --f-thumb-width: 80px;
        --f-thumb-height: 60px;
    }
}
@media (max-width: 950px) {
    .single-product__media-carousel #myNavigation {
        --f-thumb-width: 60px;
        --f-thumb-height: 45px;
    }
}
.single-product__media-carousel #myNavigation .f-carousel__slide {
    border: 2px solid transparent;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    margin: 0 var(--f-thumb-gap) 0 0;
    overflow: visible;
    background-color: #f4f4f4;
    cursor: pointer;
}
.single-product__media-carousel #myNavigation .f-carousel__slide.is-nav-selected {
    color: #fff;
    border: 2px solid var(--accent-color);
}
.single-product__media-carousel #myNavigation .f-carousel__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.single-product__media-carousel #myNavigation .f-carousel__viewport {
    max-width: 100%;
}
.single-product__media-carousel #myNavigation .f-button.is-prev {
    left: 0;
}
.single-product__links {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
}
.single-product__edges {
    margin-top: 40px;
}
.single-product__edges-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 30px;
    margin-top: 40px;
    margin-bottom: 80px;
}
@media (max-width: 1500px) {
    .single-product__edges-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1300px) {
    .single-product__edges-layout {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media (max-width: 1050px) {
    .single-product__edges-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .single-product__edges-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
.single-product__accessories-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}
@media (max-width: 1300px) {
    .single-product__accessories-layout {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media (max-width: 1050px) {
    .single-product__accessories-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .single-product__accessories-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
.single-product__accessories-link {
    color: #000;
}
.single-product__accessories-link-media {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.single-product__accessories-link-media img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s ease;
}
.single-product__accessories-link-content {
    margin-top: 15px;
}
.single-product__accessories-link-title {
    color: #3a201a;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
@media (max-width: 1300px) {
    .single-product__accessories-link-title {
        font-size: 18px;
    }
}
@media (max-width: 1050px) {
    .single-product__accessories-link-title {
        font-size: 16px;
    }
}
.single-product__accessories-link-link {
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 5px;
}
.single-product__accessories-link:hover img {
    transform: scale(1.1);
}

.bottom-links__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px;
}
@media screen and (max-width: 600px) {
    .bottom-links__layout {
        grid-template-columns: 1fr;
    }
}
.bottom-links__item {
    position: relative;
    display: flex;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.bottom-links__item-media {
    width: 100%;
    height: 100%;
}
.bottom-links__item-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.4s ease;
}
.bottom-links__item-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.bottom-links__item-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(238, 243, 232, 0) 17.88%, rgba(58, 32, 26, 0.8) 76.12%);
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}
.bottom-links__item-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #6bb33fdb 17.88%, rgba(58, 32, 26, 0) 76.12%);
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 2;
}
.bottom-links__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 64px;
    z-index: 3;
}
@media screen and (max-width: 1100px) {
    .bottom-links__item-content {
        padding: 20px 20px;
    }
}
.bottom-links__item-title {
    color: #fff;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 600;
}
.bottom-links__item:hover .bottom-links__item-gradient::before {
    opacity: 0;
}
.bottom-links__item:hover .bottom-links__item-gradient::after {
    opacity: 1;
}
.bottom-links__item:hover .bottom-links__item-media img {
    transform: scale(1.05);
}

.image-text {
    margin-bottom: 30px;
    overflow: hidden;
    /* Modifiers for image position */
}
.image-text__image {
    max-width: 50%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}
.image-text__content {
    /* Remove the overflow: hidden from content div as it can prevent wrapping */
    /* overflow: hidden; */
    /* Add proper spacing for text */
    /* Responsive styles */
}
.image-text__content p {
    margin-bottom: 15px;
    line-height: 150%;
}
.image-text__content h1 {
    margin-bottom: 20px;
}
.image-text__content h2 {
    margin-bottom: 15px;
}
.image-text__content h3 {
    margin-bottom: 10px;
}
.image-text__content h4 {
    margin-bottom: 10px;
}
.image-text__content h5 {
    margin-bottom: 5px;
}
.image-text__content ul {
    padding: 0 0 0 20px;
    margin-bottom: 15px;
}
.image-text__content li {
    line-height: 150%;
}
.image-text__content .process-list {
    list-style: none;
    padding: 0;
}
.image-text__content .process-list__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.image-text__content .process-list__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #eef3e8;
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}
.image-text__content .process-list__content {
    flex: 1;
}
.image-text__content .process-list__content p {
    margin: 0;
}
.image-text__content .process-list__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
    color: #333;
}
.image-text__content .process-list__description {
    line-height: 1.4;
}
@media (max-width: 600px) {
    .image-text__content .process-list__number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .image-text__content .process-list__title {
        font-size: 16px;
    }
    .image-text__content .process-list__description {
        font-size: 14px;
    }
}
.image-text--left .image-text__image {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
.image-text--right .image-text__image {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}
.image-text--center .image-text__image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    max-width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .image-text--left .image-text__image,
    .image-text--right .image-text__image,
    .image-text--center .image-text__image {
        float: none;
        margin: 0 auto 20px;
        max-width: 100%;
        display: block;
    }
}
/* For very small screens */
@media (max-width: 480px) {
    .image-text__image {
        width: 100%;
    }
}
.login-popup {
    width: 300px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}
.login-popup h2 {
    margin-bottom: 15px;
    text-align: center;
}
.login-popup .form-group {
    margin-bottom: 15px;
}
.login-popup .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.login-popup .form-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-popup button {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.login-popup button:hover {
    background-color: #3eae19;
}

.contact-section {
    background-image: url(/img/backgrounds/dia_contact-form-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.contact-section-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
}
.contact-section-form input,
.contact-section-form textarea {
    border-radius: 5px;
}
.contact-section-form__title {
    grid-column: 1/-1;
    font-size: clamp(24px, 3vw, 38px);
    font-style: normal;
    font-weight: 500;
    text-align: center;
}
.contact-section-form .span-full {
    grid-column: 1/-1;
}
.contact-section-form .btn {
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .contact-section-form {
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
}
@media (max-width: 992px) {
    .contact-section-form {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .contact-section-form {
        grid-template-columns: 1fr;
    }
}

.locations .container {
    background-image: url(/img/backgrounds/dia_locations-bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 10% 50%;
}
@media (max-width: 1300px) {
    .locations .container {
        background-color: #ffffffb8;
        background-blend-mode: lighten;
    }
}
.locations-content {
    padding: 50px var(--container-padding) 50px 0;
    margin-left: 50%;
}
@media (max-width: 1300px) {
    .locations-content {
        padding: 50px var(--container-padding) 50px var(--container-padding);
        margin-left: 0;
    }
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
    line-height: 150%;
}
@media (max-width: 680px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid > :nth-child(3n + 1) {
        margin-top: 20px;
    }
}

.page-head .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.page-head .title {
    margin-bottom: 30px;
}

.contact-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 1350px) {
    .contact-us__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
.contact-us__info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
    row-gap: 20px;
}
@media (max-width: 800px) {
    .contact-us__info-layout {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }
}
.contact-us__info-item {
    padding-left: 45px;
}
.contact-us__info-item a {
    color: var(--color-black, #000);
}
.contact-us__info-item-title {
    color: var(--accent-color, #044c87);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}
.contact-us__info-item.phone {
    background: url('/img/svg/md_phone.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 27px;
}
.contact-us__info-item.phone p {
    margin-bottom: 7px;
}
.contact-us__info-item.pin {
    background: url('/img/svg/md_pin.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 25px;
}
.contact-us__info-item.time {
    background: url('/img/svg/md_time.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 25px;
}
.contact-us__info-item.time td {
    padding: 5px;
}
.contact-us__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 30px;
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 10px;
    overflow: hidden;
}
.contact-us__form-head {
    grid-column: 1/-1;
}
.contact-us__form-head-title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}
.contact-us__form-head-text {
    color: #fff;
}
.contact-us__form input,
.contact-us__form textarea,
.contact-us__form select {
    border: 1px solid #d1d1d1;
}
.contact-us__form .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 500px) {
    .contact-us__form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}

/* [MAIN CSS START] */
.relative {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.subtitle {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    color: #fff;
    background: var(--accent-color-2);
    box-shadow: 0 0 5px -2px #dadada;
}
.btn.btn--small {
    padding: 5px 5px !important;
    font-size: 14px;
    border: 2px solid var(--accent-color);
    text-transform: capitalize;
}

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

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s 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 {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--light {
    border: 1px solid #dee6d4;
    color: var(--accent-color);
    background: #dee6d4;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--dark {
    border: 1px solid var(--accent-color-2);
    color: #fff;
    background: var(--accent-color-2);
    padding: 12px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--dark:hover {
    background: #fff;
    color: var(--accent-color);
    border: 1px solid #fff;
    box-shadow: 0 0 5px -2px #464646;
}

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

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

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

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

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

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

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

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

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

.divider {
    border: none;
    border-bottom: 1px solid #bdbdbd;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tippy-arrow {
    color: #fff;
}

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

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

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

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

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

.video-wrapper.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

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

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

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

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

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

/* generic content block */
.content-block {
    margin-bottom: clamp(30px, 6vw, 60px);
}
.content-block__content {
    margin: 0 auto;
    padding: 0;
}
.content-block__media {
    margin-top: clamp(18px, 3vw, 30px);
    border-radius: 14px;
    overflow: hidden;
}
.content-block__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.content-block h2,
.content-block h3 {
    font-weight: 700;
    color: #000;
    line-height: 1.25;
}
.content-block h2 {
    font-size: clamp(24px, 3vw, 35px);
    margin-bottom: 18px;
}
.content-block h3 {
    font-size: clamp(20px, 2.4vw, 30px);
    margin-bottom: 14px;
}
.content-block p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
    list-style: none;
    counter-reset: cb-list;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.8vw, 16px);
}
.content-block ul li,
.content-block ol li {
    counter-increment: cb-list;
    position: relative;
    padding-left: 44px;
    font-size: clamp(15px, 1.6vw, 18px);
    color: #222;
    line-height: 1.6;
}
.content-block ul li::before,
.content-block ol li::before {
    content: counter(cb-list);
    position: absolute;
    left: 0;
    top: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d9ebd3;
    color: #3f7e3b;
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 15px;
}
.content-block ul strong,
.content-block ol strong {
    display: block;
    color: #000;
    margin-bottom: 4px;
}

.paint-samples {
    margin-bottom: clamp(40px, 6vw, 70px);
}
.paint-samples__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
    justify-items: center;
}
.paint-samples__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.paint-samples__media {
    max-width: 260px;
    width: 100%;
    height: clamp(200px, 22vw, 260px);
    /* display: grid;
    place-items: center; */
    margin: 0 auto clamp(10px, 2vw, 16px);
}
.paint-samples__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.paint-samples__name {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    color: #111;
    margin-top: 6px;
    line-height: 1.25;
}

.healthcare-gallery {
    margin-bottom: clamp(32px, 6vw, 60px);
}
.healthcare-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 28px);
}
.healthcare-gallery__media {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}
.healthcare-gallery__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healthcare-benefits > h3 {
    margin-bottom: clamp(14px, 2vw, 18px);
}
.healthcare-benefit {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}
.healthcare-benefit:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .paint-samples__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .paint-samples__grid {
        grid-template-columns: 1fr;
    }
    .paint-samples__media {
        height: clamp(180px, 50vw, 230px);
        margin-bottom: clamp(12px, 3vw, 18px);
    }
}

@media (max-width: 900px) {
    .healthcare-gallery__grid {
        grid-template-columns: 1fr;
    }
}

.hdf-painted-details .paint-feature {
    margin-bottom: clamp(14px, 2vw, 20px);
}
.hdf-painted-details .paint-feature:last-child {
    margin-bottom: 0;
}

.melanime-products {
    margin-bottom: 60px;
}
.melanime-products__item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    width: fit-content;
}
.melanime-products__item:last-child {
    margin-bottom: 0;
}
.melanime-products__media {
    max-width: 600px;
}
.melanime-products__media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.melanime-products__label {
    font-size: clamp(16px, 2vw, 30px);
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .melanime-products__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.melanime-note {
    font-weight: 700;
    margin-bottom: clamp(16px, 3vw, 24px);
    line-height: 1.7;
}

/* 5 piece images with titles */
.five-piece-products {
    margin-bottom: 60px;
}
.five-piece-products__item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    width: fit-content;
}
.five-piece-products__item:last-child {
    margin-bottom: 0;
}
.five-piece-products__img-wrap {
    max-width: 600px;
}
.five-piece-products__img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.five-piece-products__name {
    font-size: clamp(16px, 2vw, 30px);
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .five-piece-products__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .five-piece-products__img {
        max-width: 100%;
    }
}

/* 5 piece Accessories */
.five-piece-accessories {
    padding: clamp(40px, 5vw, 80px) clamp(10px, 3vw, 40px) 0;
    border-top: 3px solid var(--accent-color);
    margin-bottom: clamp(40px, 6vw, 90px);
}
.five-piece-accessories__title {
    display: block;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 700;
    margin-bottom: clamp(32px, 5vw, 64px);
}
.five-piece-accessories__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2vw, 20px);
    --divider-gap: clamp(16px, 8vw, 150px);
}
.five-piece-accessories__grid::before,
.five-piece-accessories__grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-repeat: no-repeat;
}
.five-piece-accessories__grid::before {
    left: 50%;
    right: auto;
    width: 2px;
    background-image: linear-gradient(
        to bottom,
        #d9d9d9 0,
        #d9d9d9 calc(50% - var(--divider-gap) / 2),
        transparent calc(50% - var(--divider-gap) / 2),
        transparent calc(50% + var(--divider-gap) / 2),
        #d9d9d9 calc(50% + var(--divider-gap) / 2),
        #d9d9d9 100%
    );
}
.five-piece-accessories__grid::after {
    top: 50%;
    bottom: auto;
    height: 2px;
    background: #d9d9d9;
}
.five-piece-accessories__item {
    padding: 20px clamp(30px, 4vw, 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.five-piece-accessories__img {
    max-width: min(460px, 90%);
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media (max-width: 900px) {
    .five-piece-accessories__grid {
        max-width: none;
    }
    .five-piece-accessories__grid::before,
    .five-piece-accessories__grid::after {
        display: none;
    }
    .five-piece-accessories__grid {
        grid-template-columns: 1fr;
        row-gap: clamp(20px, 5vw, 32px);
    }
    .five-piece-accessories__item {
        padding: clamp(24px, 4vw, 40px) 0;
        border-top: 1px solid #e0e0e0;
    }
    .five-piece-accessories__item:first-child {
        border-top: none;
    }
}

/* reusable download block */
.download-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 30px;
    flex-wrap: wrap;
}
.download-block__text {
    font-size: clamp(16px, 3vw, 30px);
    font-weight: 700;
    color: #000;
}
.download-block__btn {
    white-space: nowrap;
}
@media (max-width: 480px) {
    .download-block {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}

/* Dovetail landing */
.outdoor-items {
    margin-bottom: clamp(30px, 6vw, 60px);
}
.outdoor-items__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}
.outdoor-items__card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}
.outdoor-items__card h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: #222;
    letter-spacing: -0.01em;
}
.outdoor-items__media {
    width: 100%;
    max-width: 280px;
}
.outdoor-items__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}
@media (max-width: 980px) {
    .outdoor-items__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .outdoor-items__grid {
        grid-template-columns: 1fr;
    }
}

.miter-gallery {
    margin-bottom: clamp(40px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}
.miter-gallery__title {
    font-size: clamp(22px, 2.6vw, 26px);
    font-weight: 700;
    color: #222;
    letter-spacing: -0.01em;
}
.miter-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 28px);
}
.miter-gallery__card {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.miter-gallery__card--wide {
    grid-column: 1 / -1;
}
.miter-gallery__media {
    width: 100%;
}
.miter-gallery__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 980px) {
    .miter-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .miter-gallery__grid {
        grid-template-columns: 1fr;
    }
}

.dovetail-block {
    margin-bottom: clamp(40px, 6vw, 90px);
}
.dovetail-block__content {
    margin: 0 auto;
}
.dovetail-block h2,
.dovetail-block h3 {
    font-weight: 700;
    color: #000;
    line-height: 1.25;
}
.dovetail-block h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 18px;
}
.dovetail-block h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 14px;
}
.dovetail-block p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
}
.dovetail-block ul {
    padding-left: 20px;
    font-size: clamp(15px, 1.6vw, 18px);
    color: #333;
    line-height: 1.6;
}
.dovetail-block ul li {
    margin-bottom: 8px;
}

.dovetail-items {
    margin-bottom: clamp(40px, 6vw, 90px);
}
.dovetail-items__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}
.dovetail-items__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dovetail-items__media {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.dovetail-items__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.dovetail-items__card h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 8px;
}
.dovetail-items__card p {
    margin-bottom: 0;
}

.dovetail-features {
    margin-bottom: clamp(40px, 6vw, 90px);
}
.dovetail-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 16px);
    counter-reset: feature;
}
.dovetail-features li {
    counter-increment: feature;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(15px, 1.6vw, 18px);
    color: #222;
}
.dovetail-features li::before {
    content: counter(feature);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 999px;
    background: var(--accent-background-color);
    color: var(--accent-color-2);
    font-weight: 700;
}

.dovetail-callout {
    margin-bottom: clamp(40px, 6vw, 90px);
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.dovetail-callout .content-block__content {
    padding: 0;
}
.dovetail-callout__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.dovetail-callout h3 {
    margin-bottom: 12px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.dovetail-callout p {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .dovetail-callout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dovetail-callout .content-block__content {
        text-align: center;
    }
}
