@charset "UTF-8";
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #15578e;
    --color-primary-dark: #0c3a5b;
    --color-secondary: #f4f5f1;
    --color-bg: #ffffff;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --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: #da2127;
    --font-family-main: 'Work Sans', sans-serif;
    --font-family-libre-baskerville: 'Libre Baskerville', serif;
    --font-family-michroma: 'Michroma', sans-serif;
    --font-family-poppins: 'Poppins', sans-serif;
    --font-family-montserrat: 'Montserrat', sans-serif;
    --font-family-times-new-roman: 'Times New Roman', serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
@media (max-width: 1500px) {
    :root {
        --container-padding: 3%;
    }
}
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}
.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-main);
}

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

.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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 1000;
    height: 210px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--scrolled {
    height: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header--scrolled .header__top {
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.header--scrolled .header__main {
    height: 80px;
}
@media (max-width: 768px) {
    .header--scrolled .header__main {
        height: 60px;
    }
}
.header--scrolled .header__logo {
    height: 80px;
}
@media (max-width: 768px) {
    .header--scrolled .header__logo {
        height: 60px;
    }
}
.header--scrolled .header__logo-img {
    height: 40px;
}
.header--scrolled .header__content {
    height: 80px;
}
@media (max-width: 768px) {
    .header--scrolled .header__content {
        height: 60px;
    }
}
.header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: stretch;
    -moz-column-gap: 80px;
    column-gap: 80px;
}
.header__logo {
    position: relative;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.header__logo-link:hover {
    opacity: 0.9;
}
.header__logo-img {
    width: auto;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__content {
    flex: 1;
    height: 210px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__top {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__main {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__contact {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header__contact-text,
.header__contact-text a {
    color: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}
.header__contact-divider {
    color: var(--color-white);
    opacity: 0.5;
    font-size: 14px;
}
.header__nav {
    display: flex;
    align-items: center;
}
.header__nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header__nav-item {
    position: relative;
}
.header__nav-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}
.header__nav-item--dropdown:hover .header__nav-arrow {
    transform: rotate(180deg);
}
.header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-poppins);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}
.header__nav-link:hover {
    opacity: 0.8;
}
.header__nav-link--active {
    font-weight: 500;
}
@media (max-width: 1200px) {
    .header__nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
}
.header__nav-arrow {
    transition: transform 0.3s ease;
    opacity: 0.8;
}
.header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.header__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.header__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}
.header__dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}
.header__cta-wrapper {
    display: flex;
    align-items: center;
}
.header__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    background-color: #104776;
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-poppins);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}
.header__cta:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-1px);
}
.header__cta:hover .header__cta-icon {
    transform: translateX(2px);
}
.header__cta-icon {
    transition: transform 0.3s ease;
}
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.header__mobile-toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: all 0.3s ease;
}
.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(2) {
    opacity: 0;
}
.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 20px 40px;
    overflow-y: auto;
}
.header__mobile-menu--active {
    transform: translateX(0);
}
.header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header__mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}
.header__mobile-nav-link:hover {
    opacity: 0.8;
}
.header__mobile-nav-link--dropdown {
    position: relative;
}
.header__mobile-nav-link--dropdown::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}
.header__mobile-nav-link--dropdown.active::after {
    transform: translateY(-50%) rotate(45deg);
}
.header__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.header__mobile-submenu--active {
    max-height: 300px;
}
.header__mobile-submenu .header__mobile-nav-link {
    padding: 12px 0 12px 20px;
    font-size: 14px;
    opacity: 0.8;
}
.header__mobile-contact {
    margin-top: 40px;
    padding-top: 20px;
}
.header__mobile-contact-item {
    margin-bottom: 12px;
}
.header__mobile-contact-item span,
.header__mobile-contact-item a {
    color: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    opacity: 0.9;
}
.header__mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.header__mobile-cta:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

@media (max-width: 1400px) {
    .header__contact-text {
        font-size: 13px;
    }
}
@media (max-width: 1200px) {
    .header__top {
        display: none;
    }
    .header__main {
        height: 80px;
    }
    .header {
        height: 80px;
    }
    .header__logo {
        height: 80px;
    }
    .header__logo-img {
        height: 40px;
    }
    .header__content {
        height: 80px;
    }
}
@media (max-width: 992px) {
    .header__nav,
    .header__cta-wrapper {
        display: none;
    }
    .header__mobile-toggle {
        display: flex;
    }
    .header__main {
        justify-content: flex-end;
    }
}
@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    .header__main {
        height: 60px;
    }
    .header__logo {
        height: 60px;
    }
    .header__logo-img {
        height: 32px;
    }
    .header__content {
        height: 60px;
    }
}
.footer {
    background-color: #2c2a29;
    color: #ffffff;
    padding: 80px 0 0 0;
}
.footer__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}
.footer__column-title {
    font-family: var(--font-family-montserrat);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 32px 0;
    text-transform: uppercase;
}
.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link:hover {
    color: #7fb3d3;
    transform: translateX(4px);
}
.footer__social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.footer__social-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    min-width: 80px;
}
.footer__social-handle {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #7fb3d3;
}
.footer__bulletin-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer__bulletin-title {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 12px 0;
}
.footer__bulletin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7fb3d3;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__bulletin-link:hover {
    transform: translateX(4px);
}
.footer__bulletin-link:hover .footer__bulletin-link-icon {
    transform: translateX(2px);
}
.footer__bulletin-link-text {
    position: relative;
}
.footer__bulletin-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #7fb3d3;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__bulletin-link:hover .footer__bulletin-link-text::after {
    width: 100%;
}
.footer__bulletin-link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-link:hover {
    color: #7fb3d3;
    transform: translateX(4px);
}
.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer__contact-item--address {
    align-items: flex-start;
}
.footer__contact-icon {
    width: 20px;
    height: 20px;
    color: #7fb3d3;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer__contact-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}
.footer__contact-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7fb3d3;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__map-link:hover {
    transform: translateX(4px);
}
.footer__map-link:hover .footer__map-link-icon {
    transform: translateX(2px);
}
.footer__map-link-text {
    position: relative;
}
.footer__map-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #7fb3d3;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__map-link:hover .footer__map-link-text::after {
    width: 100%;
}
.footer__map-link-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}
.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__copyright {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.footer__credit {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.footer__credit-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__credit-link:hover {
    color: #7fb3d3;
}

@media (max-width: 1200px) {
    .footer {
        padding: 60px 0 0 0;
    }
    .footer__content {
        gap: 40px;
        margin-bottom: 40px;
    }
    .footer__column-title {
        margin-bottom: 24px;
    }
    .footer__social-links {
        gap: 20px;
    }
    .footer__bulletin-items {
        gap: 24px;
    }
    .footer__nav-list {
        gap: 12px;
    }
    .footer__contact-info {
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer__column--social {
        order: 1;
    }
    .footer__column--bulletin {
        order: 2;
    }
    .footer__column--navigation {
        order: 3;
    }
    .footer__column--contact {
        order: 4;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer__bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer__social-link {
        gap: 12px;
    }
    .footer__social-text {
        min-width: auto;
    }
}
@media (max-width: 480px) {
    .footer__column-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .footer__social-links {
        gap: 16px;
    }
    .footer__social-link {
        font-size: 14px;
    }
    .footer__bulletin-title {
        font-size: 14px;
    }
    .footer__nav-link {
        font-size: 14px;
    }
    .footer__contact-text {
        font-size: 14px;
    }
    .footer__bottom {
        padding: 24px 0;
    }
    .footer__copyright,
    .footer__credit {
        font-size: 12px;
    }
}
: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: #dddddd;
    color: #000;
    font-weight: 400;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 120%;
    text-transform: uppercase;
}

.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%;
    background: var(--Gray6, #eee);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
}
.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: 20px 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__subtitle {
    grid-column: 1/-1;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 100%;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 20px;
    font-family: var(--font-family-poppins);
}
.quote-popup__form-block > input,
.quote-popup__form-block .jfilestyle input,
.quote-popup__form-block > select,
.quote-popup__form-block > textarea {
    border: none;
    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;
    background: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-family-poppins, 'Poppins', sans-serif);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.15em;
    border: none;
    padding: 12px 30px 12px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}
.quote-popup__form-block .btn:hover,
.quote-popup__form-block .btn:focus {
    background: var(--color-primary-dark);
}
.quote-popup__form-block .btn:active {
    background: #13385a;
}
.quote-popup__form-block__file {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    grid-column: 1/-1;
}
@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.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;
}

.quote-popup__form-block > div[style*='text-align: center'] {
    font-size: 13px;
    margin: 15px 0 5px 0;
}

.quote-popup__form-block select {
    padding: 17px;
    border: none;
    font-family: var(--font-style-3);
    background: #fff;
    color: #3a3a3a;
}

.quote-popup__form-block input[type='date'] {
    color: #444;
}

.quote-popup__form-block__sub-subtitle {
    font-family: var(--font-family-main);
    grid-column: 1/-1;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 71, 118, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 71, 118, 0.4);
}
.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
.home-hero {
    position: relative;
    width: 100%;
    height: 720px;
    max-height: 720px;
    overflow: hidden;
    margin-top: 210px;
}
.home-hero__slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.home-hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.home-hero__slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home-hero__slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.home-hero__slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-slide-active .home-hero__slide-img {
    transform: scale(1.05);
}
.home-hero__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-bottom: 80px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
}
.home-hero__content {
    max-width: 700px;
    color: var(--color-white);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.swiper-slide-active .home-hero__content {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
@media (max-width: 768px) {
    .home-hero__content {
        max-width: 100%;
        padding: 0 20px;
    }
}
.home-hero__title {
    font-family: var(--font-family-michroma);
    font-size: clamp(35px, 8vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.swiper-slide-active .home-hero__title {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.home-hero__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 40px 0;
    color: var(--color-white);
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.swiper-slide-active .home-hero__subtitle {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.home-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.swiper-slide-active .home-hero__cta {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.home-hero__cta:hover {
    transform: translateX(8px);
}
.home-hero__cta:hover .home-hero__cta-icon {
    transform: translateX(4px);
}
.home-hero__cta-text {
    position: relative;
}
.home-hero__cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-hero__cta:hover .home-hero__cta-text::after {
    width: 100%;
}
.home-hero__cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-hero__nav {
    position: absolute;
    right: var(--container-padding);
    top: 75%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0;
}
.home-hero__nav-btn {
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.home-hero__nav-btn:hover {
    opacity: 0.7;
}
.home-hero__nav-btn:active {
    transform: scale(0.95);
}
.home-hero__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.home-hero__nav-btn.swiper-button-disabled:hover {
    opacity: 0.3;
    transform: none;
}
.home-hero__nav-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}
.home-hero__nav::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 5;
}
@media (max-width: 1200px) {
    .home-hero__nav {
        right: 20px;
        top: 90%;
    }
}
.home-hero__pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}
.home-hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}
.home-hero__pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}
.home-hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.2);
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1200px) {
    .home-hero {
        margin-top: 80px;
        height: 500px;
        max-height: 500px;
    }
    .home-hero__nav {
        right: 20px;
    }
    .home-hero__nav-btn {
        width: 50px;
        height: 50px;
    }
    .home-hero__nav-btn svg {
        width: 28px;
        height: 28px;
    }
    .home-hero__nav::after {
        height: 32px;
    }
    .home-hero__container {
        padding-bottom: 60px;
    }
}
@media (max-width: 768px) {
    .home-hero {
        margin-top: 60px;
        height: 500px;
        max-height: 500px;
    }
    .home-hero__content {
        max-width: 100%;
    }
    .home-hero__title {
        margin-bottom: 16px;
    }
    .home-hero__subtitle {
        margin-bottom: 32px;
    }
    .home-hero__nav {
        right: 16px;
    }
    .home-hero__nav-btn {
        width: 44px;
        height: 44px;
    }
    .home-hero__nav-btn svg {
        width: 24px;
        height: 24px;
    }
    .home-hero__nav::after {
        height: 28px;
    }
    .home-hero__pagination {
        bottom: 24px;
    }
    .home-hero__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .home-hero__container {
        padding-bottom: 40px;
    }
}
@media (max-width: 480px) {
        .home-hero {
        height: 300px;
        max-height: 300px;
    }
    .home-hero__title{
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: 12px;
    }
    .home-hero__nav {
        display: none;
    }
    .home-hero__pagination {
        bottom: 16px;
    }
}
.home-industries {
    position: relative;
    padding: 70px 0;
    background-color: var(--color-bg);
    overflow: hidden;
}
.home-industries__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-industries__header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.home-industries__title {
    font-family: var(--font-family-poppins);
    font-size: clamp(22px, 4vw, 24px);
    font-weight: 300;
    letter-spacing: 3.5px;
    color: var(--color-black);
    margin: 0 0 32px 0;
    text-transform: uppercase;
}
.home-industries__description {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.home-industries__slider {
    position: relative;
    overflow: visible;
}
.home-industries__slider .swiper-wrapper {
    transition-timing-function: linear;
}
.home-industries__slide {
    width: auto;
    height: auto;
}
.home-industries__card {
    position: relative;
    display: block;
    width: 400px;
    background: var(--color-white);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}
.home-industries__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.home-industries__card:hover .home-industries__card-img {
    transform: scale(1.05);
}
.home-industries__card:hover .home-industries__card-link {
    transform: translateX(8px);
}
.home-industries__card:hover .home-industries__card-link .home-industries__card-link-icon {
    transform: translateX(4px);
}
.home-industries__card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}
.home-industries__card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-industries__card-content {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 5px;
    column-gap: 5px;
    min-height: 60px;
}
.home-industries__card-title {
    font-family: var(--font-family-poppins);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-black);
    margin: 0;
    text-transform: uppercase;
    flex: 1;
}
.home-industries__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.home-industries__card-link-text {
    position: relative;
}
.home-industries__card-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-industries__card-link-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-industries__card:hover .home-industries__card-link-text::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .home-industries {
        padding: 100px 0;
    }
    .home-industries__header {
        margin-bottom: 60px;
    }
    .home-industries__card {
        width: 350px;
    }
    .home-industries__card-image {
        height: 300px;
    }
    .home-industries__card-content {
        padding: 20px;
        min-height: 56px;
    }
    .home-industries__card-title {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .home-industries {
        padding: 80px 0;
    }
    .home-industries__header {
        margin-bottom: 40px;
    }
    .home-industries__card {
        width: 300px;
    }
    .home-industries__card-image {
        height: 250px;
    }
    .home-industries__card-content {
        padding: 18px;
        min-height: 52px;
    }
    .home-industries__card-title {
        font-size: 15px;
    }
    .home-industries__card-link {
        font-size: 13px;
        gap: 6px;
    }
    .home-industries__card-link-icon {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 480px) {
    .home-industries__card {
        width: 280px;
    }
    .home-industries__card-image {
        height: 220px;
    }
    .home-industries__card-content {
        padding: 16px;
        min-height: 48px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .home-industries__card-title {
        font-size: 14px;
        flex: none;
    }
    .home-industries__card-link {
        align-self: flex-end;
    }
}
.home-welcome {
    position: relative;
    padding: 70px 0;
    background-color: var(--color-white);
}
.home-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-welcome__content {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}
.home-welcome__title {
    font-family: var(--font-family-libre-baskerville);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -1.68px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}
.home-welcome__divider {
    width: 100px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 0 auto 48px auto;
    border-radius: 1px;
}
.home-welcome__text {
    margin-bottom: 40px;
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    margin: 0 0 24px 0;
}
.home-welcome__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-welcome__cta:hover {
    transform: translateX(4px);
}
.home-welcome__cta:hover .home-welcome__cta-icon {
    transform: translateX(4px);
}
.home-welcome__cta:hover .home-welcome__cta-text::after {
    width: 100%;
}
.home-welcome__cta-text {
    position: relative;
}
.home-welcome__cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-welcome__cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
    .home-welcome {
        padding: 100px 0;
    }
    .home-welcome__content {
        max-width: 800px;
    }
    .home-welcome__divider {
        margin-bottom: 40px;
    }
    .home-welcome__text {
        margin-bottom: 36px;
    }
}
@media (max-width: 768px) {
    .home-welcome {
        padding: 80px 0;
    }
    .home-welcome__content {
        max-width: 100%;
    }
    .home-welcome__title {
        margin-bottom: 32px;
    }
    .home-welcome__title br {
        display: none;
    }
    .home-welcome__divider {
        width: 60px;
        margin-bottom: 32px;
    }
    .home-welcome__text {
        margin-bottom: 32px;
    }
    .home-welcome__paragraph {
        margin-bottom: 20px;
    }
    .home-welcome__cta {
        font-size: 15px;
    }
    .home-welcome__cta-icon {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 480px) {
    .home-welcome {
        padding: 60px 0;
    }
    .home-welcome__title {
        margin-bottom: 24px;
    }
    .home-welcome__divider {
        width: 50px;
        margin-bottom: 24px;
    }
    .home-welcome__text {
        margin-bottom: 24px;
    }
    .home-welcome__paragraph {
        margin-bottom: 16px;
    }
}
.home-solutions {
    position: relative;
    padding: 70px 0;
    background-color: #f4f5f1;
}
.home-solutions__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-solutions__header {
    text-align: center;
    margin-bottom: 40px;
}
.home-solutions__title {
    font-family: var(--font-family-poppins);
    font-size: clamp(22px, 4vw, 24px);
    font-weight: 300;
    letter-spacing: 3.5px;
    color: var(--color-black);
    text-transform: uppercase;
}
.home-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #d0d0d0;
    margin: 0 auto;
    background-color: #f4f5f1;
}
.home-solutions__card {
    position: relative;
    aspect-ratio: 1;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    overflow: hidden;
    padding: 20px;
}
.home-solutions__card:nth-child(3n) {
    border-right: none;
}
.home-solutions__card:nth-child(n + 4) {
    border-bottom: none;
}
.home-solutions__card:hover .home-solutions__card-image::after {
    opacity: 1;
}
.home-solutions__card:hover .home-solutions__card-title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-color: rgba(255, 255, 255, 0.2);
}
.home-solutions__card:hover .home-solutions__card-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
}
.home-solutions__card:hover .home-solutions__card-img {
    transform: scale(1.05);
}
.home-solutions__card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.home-solutions__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.home-solutions__card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 56, 79, 0.8);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-solutions__card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-solutions__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--color-white);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
}
.home-solutions__card-title {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-solutions__card-description {
    font-family: var(--font-family-main);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    max-height: 0;
    line-height: 1.5;
    margin: 0 0 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 768px) {
    .home-solutions__card-description {
        -webkit-line-clamp: 2;
    }
}
.home-solutions__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.home-solutions__card-cta:hover {
    transform: translateX(4px);
}
.home-solutions__card-cta:hover .home-solutions__card-cta-icon {
    transform: translateX(4px);
}
.home-solutions__card-cta:hover .home-solutions__card-cta-text::after {
    width: 100%;
}
.home-solutions__card-cta-text {
    position: relative;
}
.home-solutions__card-cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-solutions__card-cta-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
    .home-solutions {
        padding: 100px 0;
    }
    .home-solutions__header {
        margin-bottom: 60px;
    }
    .home-solutions__card-content {
        padding: 24px;
    }
    .home-solutions__card-title {
        margin-bottom: 6px;
    }
}
@media (max-width: 768px) {
    .home-solutions {
        padding: 80px 0;
    }
    .home-solutions__header {
        margin-bottom: 40px;
    }
    .home-solutions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-solutions__card:nth-child(3n) {
        border-right: 1px solid #d0d0d0;
    }
    .home-solutions__card:nth-child(2n) {
        border-right: none;
    }
    .home-solutions__card:nth-child(n + 5) {
        border-bottom: none;
    }
    .home-solutions__card:nth-child(3),
    .home-solutions__card:nth-child(4) {
        border-bottom: 1px solid #d0d0d0;
    }
    .home-solutions__card-content {
        padding: 20px;
    }
    .home-solutions__card-title {
        margin-bottom: 6px;
    }
}
@media (max-width: 480px) {
    .home-solutions {
        padding: 60px 0;
    }
    .home-solutions__grid {
        grid-template-columns: 1fr;
    }
    .home-solutions__card {
        aspect-ratio: 4/3;
        min-height: 230px; /* Fallback for older iOS versions that don't support aspect-ratio */
        height: auto;
    }
    .home-solutions__card:nth-child(n) {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
    }
    .home-solutions__card:last-child {
        border-bottom: none;
    }
    .home-solutions__card-content {
        padding: 18px 16px 20px 16px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .home-solutions__card-title {
        margin-bottom: 8px;
        font-size: clamp(15px, 4vw, 18px);
        line-height: 1.3;
    }
    .home-solutions__card-description {
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .home-solutions__card-cta {
        margin-top: auto;
        padding-top: 8px;
    }
    .home-solutions__card:hover .home-solutions__card-content {
        transform: translateY(-30px);
    }
}

/* Additional iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .home-solutions__card {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    @media (max-width: 480px) {
        .home-solutions__card {
            aspect-ratio: unset;
            height: calc(100vw * 0.75); /* 4:3 ratio fallback for iOS */
            min-height: 280px;
        }

        .home-solutions__card-image {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }
}
.home-statistics {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-white);
}
.home-statistics__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-statistics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0 auto;
    position: relative;
}
.home-statistics__grid::before,
.home-statistics__grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
}
.home-statistics__grid::before {
    left: 25%;
}
.home-statistics__grid::after {
    left: 50%;
}
.home-statistics__grid .home-statistics__item:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: #e0e0e0;
}
.home-statistics__item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}
.home-statistics__item.animate .home-statistics__number {
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.home-statistics__item.animate .home-statistics__label {
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.home-statistics__wp {
    text-align: left;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .home-statistics__wp {
        text-align: center;
    }
}
.home-statistics__number {
    font-family: var(--font-family-times-new-roman);
    font-size: clamp(48px, 8vw, 99px);
    font-weight: 300;
    color: var(--color-black);
    line-height: 1;
    margin: 0 0 16px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-statistics__label {
    font-family: var(--font-family-poppins);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 1200px) {
    .home-statistics {
        padding: 100px 0;
    }
    .home-statistics__item {
        padding: 32px 16px;
    }
    .home-statistics__grid {
        max-width: 900px;
    }
}
@media (max-width: 768px) {
    .home-statistics {
        padding: 80px 0;
    }
    .home-statistics__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    .home-statistics__grid::before {
        left: 50%;
    }
    .home-statistics__grid::after {
        display: none;
    }
    .home-statistics__grid .home-statistics__item:nth-child(3)::after {
        display: none;
    }
    .home-statistics__grid .home-statistics__item:nth-child(1)::before,
    .home-statistics__grid .home-statistics__item:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #e0e0e0;
    }
    .home-statistics__item {
        padding: 24px 12px;
    }
}
@media (max-width: 480px) {
    .home-statistics {
        padding: 60px 0;
    }
    .home-statistics__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .home-statistics__grid::before {
        display: none;
    }
    .home-statistics__grid .home-statistics__item:nth-child(1)::before,
    .home-statistics__grid .home-statistics__item:nth-child(2)::before {
        display: none;
    }
    .home-statistics__grid .home-statistics__item:nth-child(3)::after {
        display: initial;
        content: '';
        position: absolute;
        top: unset;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 1px;
        width: auto;
        background-color: #e0e0e0;
    }
    .home-statistics__grid .home-statistics__item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 1px;
        background-color: #e0e0e0;
    }
    .home-statistics__item {
        padding: 20px;
    }
}
.content-media-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
}
.content-media-section--blue {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.content-media-section--green {
    background-color: #30532b;
    color: var(--color-white);
}
.content-media-section--white {
    background-color: var(--color-white);
    color: var(--color-black);
}
.content-media-section--gray {
    background-color: #f8f9fa;
    color: var(--color-black);
}
.content-media-section__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    gap: 0;
}
.content-media-section__content {
    padding: 80px var(--container-padding) 80px var(--container-padding);
    order: 1;
}
.content-media-section__media {
    order: 2;
    height: 100%;
    overflow: hidden;
}
.content-media-section--media-left .content-media-section__content {
    padding: 80px var(--container-padding) 80px var(--container-padding);
    order: 2;
}
.content-media-section--media-left .content-media-section__media {
    order: 1;
}
.content-media-section__text {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}
.content-media-section__title {
    font-family: var(--font-family-libre-baskerville);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 32px 0;
    letter-spacing: -0.5px;
}
.content-media-section__divider {
    width: 80px;
    height: 2px;
    background-color: currentColor;
    margin: 0 auto 32px auto;
    border-radius: 1px;
}
.content-media-section__description {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.95;
}
.content-media-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-poppins);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-media-section__cta:hover {
    background-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.content-media-section__cta:hover .content-media-section__cta-text,
.content-media-section__cta:hover .content-media-section__cta-icon {
    color: var(--color-primary);
}
.content-media-section__cta:hover .content-media-section__cta-icon {
    transform: translateX(4px);
}
.content-media-section--blue .content-media-section__cta:hover .content-media-section__cta-text,
.content-media-section--blue .content-media-section__cta:hover .content-media-section__cta-icon {
    color: var(--color-primary);
}
.content-media-section--green .content-media-section__cta:hover .content-media-section__cta-text,
.content-media-section--green .content-media-section__cta:hover .content-media-section__cta-icon {
    color: #4a6741;
}
.content-media-section--white .content-media-section__cta:hover .content-media-section__cta-text,
.content-media-section--white .content-media-section__cta:hover .content-media-section__cta-icon,
.content-media-section--gray .content-media-section__cta:hover .content-media-section__cta-text,
.content-media-section--gray .content-media-section__cta:hover .content-media-section__cta-icon {
    color: var(--color-white);
}
.content-media-section__cta-text {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-media-section__cta-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-media-section__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-media-section__image:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .content-media-section {
        min-height: 500px;
    }
    .content-media-section__container {
        min-height: 500px;
    }
    .content-media-section__content {
        padding: 60px var(--container-padding);
    }
    .content-media-section--media-left .content-media-section__content {
        padding: 60px var(--container-padding);
    }
    .content-media-section__media {
        height: 100%;
    }
    .content-media-section__text {
        max-width: 450px;
    }
}
@media (max-width: 768px) {
    .content-media-section {
        min-height: auto;
    }
    .content-media-section__container {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }
    .content-media-section__content {
        padding: 60px var(--container-padding);
        order: 2;
    }
    .content-media-section__media {
        order: 1;
        height: 400px;
    }
    .content-media-section--media-left .content-media-section__content {
        padding: 60px var(--container-padding);
        order: 2;
    }
    .content-media-section--media-left .content-media-section__media {
        order: 1;
    }
    .content-media-section__text {
        max-width: 100%;
    }
    .content-media-section__title {
        margin-bottom: 24px;
    }
    .content-media-section__divider {
        margin-bottom: 24px;
    }
    .content-media-section__description {
        margin-bottom: 32px;
    }
}
@media (max-width: 480px) {
    .content-media-section__content {
        padding: 40px var(--container-padding);
    }
    .content-media-section__media {
        height: 300px;
    }
    .content-media-section__title {
        margin-bottom: 20px;
    }
    .content-media-section__divider {
        width: 60px;
        margin-bottom: 20px;
    }
    .content-media-section__description {
        margin-bottom: 24px;
    }
    .content-media-section__cta {
        padding: 14px 24px;
        font-size: 13px;
        gap: 8px;
    }
    .content-media-section__cta-icon {
        width: 14px;
        height: 14px;
    }
}
.page-header {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 210px;
    overflow: hidden;
}
.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.page-header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 40px var(--container-padding);
    width: 100%;
    position: relative;
    z-index: 2;
}
.page-header__content {
    text-align: center;
    color: var(--color-white);
}
.page-header__title {
    font-family: var(--font-family-michroma);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}
.page-header__nav {
    display: flex;
    justify-content: center;
}
.page-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page-header__nav-link {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-family: var(--font-family-poppins);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.page-header__nav-link:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.page-header__nav-link--active {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}
.page-header__nav-link--active:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-black);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .page-header {
        min-height: 400px;
        margin-top: 80px;
    }
    .page-header__title {
        margin-bottom: 32px;
    }
    .page-header__nav-list {
        gap: 12px;
    }
    .page-header__nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
        margin-top: 60px;
    }
    .page-header__title {
        margin-bottom: 24px;
    }
    .page-header__nav-list {
        gap: 8px;
        max-width: 100%;
    }
    .page-header__nav-link {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 480px) {
    .page-header {
        min-height: 300px;
    }
    .page-header__title {
        margin-bottom: 20px;
    }
    .page-header__nav-list {
        gap: 6px;
        justify-content: center;
    }
    .page-header__nav-link {
        padding: 6px 12px;
        font-size: 11px;
        min-width: auto;
    }
}
@media (max-width: 600px) {
    .page-header__nav-list {
        max-width: 100%;
        justify-content: center;
    }
    .page-header__nav-link {
        min-width: 80px;
        text-align: center;
    }
}
.page-header__title {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.page-header__nav {
    opacity: 0;
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.text-split-section {
    position: relative;
    padding: 70px 0;
    background-color: var(--color-white);
}
.text-split-section--white {
    background-color: var(--color-white);
    color: var(--color-black);
}
.text-split-section--gray {
    background-color: #f8f9fa;
    color: var(--color-black);
}
.text-split-section--blue {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.text-split-section--green {
    background-color: #4a6741;
    color: var(--color-white);
}
.text-split-section__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}
.text-split-section__title {
    font-family: var(--font-family-libre-baskerville);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1.68px;
    color: inherit;
}
.text-split-section__paragraph {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: inherit;
    opacity: 0.95;
}
.text-split-section__paragraph:last-child {
    margin-bottom: 0;
}
.text-split-section__paragraph + .text-split-section__cta {
    margin-top: 40px;
}
.text-split-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 4px;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 40px;
}
.text-split-section__cta:hover {
    background-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.text-split-section__cta:hover .text-split-section__cta-text,
.text-split-section__cta:hover .text-split-section__cta-icon {
    color: var(--color-white);
}
.text-split-section__cta:hover .text-split-section__cta-icon {
    transform: translateX(4px);
}
.text-split-section--blue .text-split-section__cta:hover .text-split-section__cta-text,
.text-split-section--blue .text-split-section__cta:hover .text-split-section__cta-icon {
    color: var(--color-primary);
}
.text-split-section--green .text-split-section__cta:hover .text-split-section__cta-text,
.text-split-section--green .text-split-section__cta:hover .text-split-section__cta-icon {
    color: #4a6741;
}
.text-split-section--white .text-split-section__cta:hover .text-split-section__cta-text,
.text-split-section--white .text-split-section__cta:hover .text-split-section__cta-icon,
.text-split-section--gray .text-split-section__cta:hover .text-split-section__cta-text,
.text-split-section--gray .text-split-section__cta:hover .text-split-section__cta-icon {
    color: var(--color-white);
}
.text-split-section__cta-text {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.text-split-section__cta-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
    .text-split-section {
        padding: 100px 0;
    }
    .text-split-section__container {
        gap: 60px;
    }
    .text-split-section__cta {
        margin-top: 32px;
    }
}
@media (max-width: 768px) {
    .text-split-section {
        padding: 80px 0;
    }
    .text-split-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .text-split-section__title {
        margin-bottom: 0;
    }
    .text-split-section__paragraph {
        margin-bottom: 20px;
    }
    .text-split-section__cta {
        margin-top: 32px;
        padding: 14px 28px;
        font-size: 13px;
    }
    .text-split-section__cta-icon {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 480px) {
    .text-split-section {
        padding: 60px 0;
    }
    .text-split-section__container {
        gap: 32px;
    }
    .text-split-section__paragraph {
        margin-bottom: 16px;
    }
    .text-split-section__cta {
        margin-top: 24px;
        padding: 12px 24px;
        font-size: 12px;
        gap: 8px;
    }
}
.gallery-section {
    position: relative;
    padding: 70px 0;
    background-color: #f4f5f1;
}
.gallery-section--white {
    background-color: var(--color-white);
}
.gallery-section--dark {
    background-color: #2c2a29;
    color: var(--color-white);
}
.gallery-section--blue {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.gallery-section__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.gallery-section__header {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-section__title {
    font-family: var(--font-family-poppins);
    font-size: clamp(22px, 4vw, 24px);
    font-weight: 300;
    letter-spacing: 3.5px;
    color: var(--color-black);
    text-transform: uppercase;
}
.gallery-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 auto;
}
.gallery-section__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.gallery-section__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-section__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
}
.gallery-section__image:hover {
    filter: grayscale(0%);
}

@media (max-width: 1200px) {
    .gallery-section {
        padding: 100px 0;
    }
    .gallery-section__header {
        margin-bottom: 60px;
    }
    .gallery-section__grid {
        gap: 20px;
        max-width: 1000px;
    }
}
@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    .gallery-section__header {
        margin-bottom: 40px;
    }
    .gallery-section__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
    }
    .gallery-section__item {
        aspect-ratio: 4/3;
    }
}
@media (max-width: 480px) {
    .gallery-section {
        padding: 60px 0;
    }
    .gallery-section__grid {
        gap: 12px;
    }
    .gallery-section__item {
        aspect-ratio: 3/2;
    }
}
.gallery-section__item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section__item:hover .gallery-section__image {
    filter: grayscale(0%);
}

.gallery-section__image:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.about-text-section {
    position: relative;
    padding: 70px 0;
    background-color: var(--color-white);
}
.about-text-section--with-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: calc(var(--page-max-width) - var(--container-padding) * 2);
    height: 1px;
    background-color: #e0e0e0;
}
.about-text-section--gray {
    background-color: #f8f9fa;
}
.about-text-section--blue {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.about-text-section__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.about-text-section__content {
    margin: 0 auto;
    text-align: center;
}
.about-text-section__title {
    font-family: var(--font-family-libre-baskerville);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1.68px;
    color: inherit;
    margin-bottom: 70px;
}
.about-text-section__paragraph {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0 0 32px 0;
    text-align: center;
}
.about-text-section--blue .about-text-section__paragraph {
    color: rgba(255, 255, 255, 0.9);
}
.about-text-section__paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .about-text-section {
        padding: 100px 0;
    }
    .about-text-section__content {
        max-width: 800px;
    }
    .about-text-section__title {
        margin-bottom: 48px;
    }
    .about-text-section__paragraph {
        margin-bottom: 28px;
    }
}
@media (max-width: 768px) {
    .about-text-section {
        padding: 80px 0;
    }
    .about-text-section__content {
        max-width: 100%;
    }
    .about-text-section__title {
        margin-bottom: 40px;
    }
    .about-text-section__title br {
        display: none;
    }
    .about-text-section__paragraph {
        margin-bottom: 24px;
        text-align: left;
    }
    .about-text-section--with-divider::before {
        width: 120px;
    }
}
@media (max-width: 480px) {
    .about-text-section {
        padding: 60px 0;
    }
    .about-text-section__title {
        margin-bottom: 32px;
    }
    .about-text-section__paragraph {
        margin-bottom: 20px;
    }
    .about-text-section--with-divider::before {
        width: 80px;
    }
}
.about-text-section__title {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.about-text-section__paragraph {
    opacity: 0;
    transform: translateY(20px);
}
.about-text-section__paragraph:nth-child(1) {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.about-text-section__paragraph:nth-child(2) {
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about-text-section--animated .about-text-section__title,
.about-text-section--animated .about-text-section__paragraph {
    opacity: 1;
    transform: translateY(0);
}

.full-width-content-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
}
.full-width-content-section--white {
    background-color: var(--color-white);
    color: var(--color-black);
}
.full-width-content-section--light-gray {
    background-color: #f8f9fa;
    color: var(--color-black);
}
.full-width-content-section--gray {
    background-color: #e9ecef;
    color: var(--color-black);
}
.full-width-content-section--blue {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.full-width-content-section--green {
    background-color: #4a6741;
    color: var(--color-white);
}
.full-width-content-section--dark {
    background-color: #2c2a29;
    color: var(--color-white);
}
.full-width-content-section__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.full-width-content-section__content {
    order: 1;
}
.full-width-content-section__media {
    order: 2;
}
.full-width-content-section--media-left .full-width-content-section__content {
    order: 2;
}
.full-width-content-section--media-left .full-width-content-section__media {
    order: 1;
}
.full-width-content-section__text {
    max-width: 100%;
}
.full-width-content-section__title {
    font-family: var(--font-family-poppins);
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 3.6px;
    color: inherit;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}
.full-width-content-section__divider {
    width: 60px;
    height: 2px;
    background-color: currentColor;
    margin: 0 0 40px 0;
    border-radius: 1px;
}
.full-width-content-section__paragraph {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: inherit;
    margin: 0 0 24px 0;
    opacity: 0.9;
}
.full-width-content-section__paragraph:last-child {
    margin-bottom: 0;
}
.full-width-content-section__paragraph + .full-width-content-section__cta {
    margin-top: 40px;
}
.full-width-content-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 4px;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 40px;
}
.full-width-content-section__cta:hover {
    background-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    color: var(--color-white);
}
.full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    transform: translateX(4px);
}
.full-width-content-section--blue .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--blue .full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    color: var(--color-primary);
}
.full-width-content-section--green .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--green .full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    color: #4a6741;
}
.full-width-content-section--dark .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--dark .full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    color: #2c2a29;
}
.full-width-content-section--white .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--white .full-width-content-section__cta:hover .full-width-content-section__cta-icon,
.full-width-content-section--light-gray .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--light-gray .full-width-content-section__cta:hover .full-width-content-section__cta-icon,
.full-width-content-section--gray .full-width-content-section__cta:hover .full-width-content-section__cta-text,
.full-width-content-section--gray .full-width-content-section__cta:hover .full-width-content-section__cta-icon {
    color: var(--color-white);
}
.full-width-content-section__cta-text {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.full-width-content-section__cta-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.full-width-content-section__image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.full-width-content-section__image:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .full-width-content-section {
        padding: 100px 0;
    }
    .full-width-content-section__container {
        gap: 60px;
    }
    .full-width-content-section__title {
        margin-bottom: 12px;
    }
    .full-width-content-section__divider {
        margin-bottom: 32px;
    }
    .full-width-content-section__paragraph {
        margin-bottom: 20px;
    }
    .full-width-content-section__cta {
        margin-top: 32px;
    }
    .full-width-content-section__image {
        min-height: 350px;
    }
}
@media (max-width: 768px) {
    .full-width-content-section {
        padding: 80px 0;
    }
    .full-width-content-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .full-width-content-section__content {
        order: 1;
    }
    .full-width-content-section__media {
        order: 2;
    }
    .full-width-content-section--media-left .full-width-content-section__content {
        order: 1;
    }
    .full-width-content-section--media-left .full-width-content-section__media {
        order: 2;
    }
    .full-width-content-section__title {
        margin-bottom: 12px;
    }
    .full-width-content-section__divider {
        width: 50px;
        margin-bottom: 24px;
    }
    .full-width-content-section__paragraph {
        margin-bottom: 18px;
    }
    .full-width-content-section__cta {
        margin-top: 28px;
        padding: 14px 28px;
        font-size: 13px;
    }
    .full-width-content-section__cta-icon {
        width: 14px;
        height: 14px;
    }
    .full-width-content-section__image {
        min-height: 300px;
        border-radius: 6px;
    }
}
@media (max-width: 480px) {
    .full-width-content-section {
        padding: 60px 0;
    }
    .full-width-content-section__container {
        gap: 32px;
    }
    .full-width-content-section__title {
        margin-bottom: 10px;
    }
    .full-width-content-section__divider {
        width: 40px;
        margin-bottom: 20px;
    }
    .full-width-content-section__paragraph {
        margin-bottom: 16px;
    }
    .full-width-content-section__cta {
        margin-top: 24px;
        padding: 12px 24px;
        font-size: 12px;
        gap: 8px;
    }
    .full-width-content-section__image {
        min-height: 250px;
        border-radius: 4px;
    }
}
.full-width-content-section__title {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.full-width-content-section__divider {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    -webkit-animation: scaleInX 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: scaleInX 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.full-width-content-section__cta {
    opacity: 0;
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}
.full-width-content-section__image {
    opacity: 0;
    transform: scale(0.95);
    -webkit-animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes scaleInX {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
@keyframes scaleInX {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
@-webkit-keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.set-section {
    position: relative;
    width: 100%;
    background-color: #fff;
}
.set-section__block {
    position: relative;
    width: 100%;
    padding: 0;
    max-width: var(--page-max-width);
    margin: 0 auto;
    background: none;
}
.set-section__block:nth-child(3n + 1) .set-section__container {
    background-color: #15578e;
}
.set-section__block:nth-child(3n + 2) .set-section__container {
    background-color: #f4f5f1;
    color: #000;
}
.set-section__block:nth-child(3n + 3) .set-section__container {
    background-color: #454647;
}
.set-section__block--text-white {
    color: #ffffff;
}
.set-section__block--text-black {
    color: #000000;
}
.set-section__container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.set-section__block--media-right .set-section__content {
    order: 1;
}
.set-section__block--media-right .set-section__media {
    order: 2;
}
.set-section__block--media-left .set-section__content {
    order: 2;
}
.set-section__block--media-left .set-section__media {
    order: 1;
}
.set-section__block--media-center .set-section__container {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
}
.set-section__block--media-center .set-section__content {
    order: 1;
    margin-bottom: 40px;
}
.set-section__block--media-center .set-section__media {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
}
.set-section__content {
    padding: 40px 0;
}
.set-section__block--media-right .set-section__content {
    padding-right: 80px;
    padding-left: var(--container-padding);
}
.set-section__block--media-left .set-section__content {
    padding-left: 80px;
    padding-right: var(--container-padding);
}
.set-section__text {
    max-width: 100%;
}
.set-section__title {
    font-family: var(--font-family-main);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    color: inherit;
    margin: 0 0 32px 0;
    text-transform: uppercase;
}
.set-section__paragraph {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: inherit;
    margin: 0 0 24px 0;
    opacity: 0.95;
}
.set-section__paragraph:last-child {
    margin-bottom: 0;
}
.set-section__paragraph + .set-section__list,
.set-section__paragraph + .set-section__cta {
    margin-top: 32px;
}

.set-section__list-title {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 500;
    color: inherit;
    margin: 0 0 16px 0;
    opacity: 0.95;
}
.set-section__block ul {
    list-style: none;
    margin: 0;
    margin-top: 32px;
    padding: 0;
}
.set-section__block li {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: inherit;
    margin: 0 0 8px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}
.set-section__block li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
    font-weight: bold;
}
.set-section__block li:last-child {
    margin-bottom: 0;
}
.set-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 32px;
}
.set-section__cta:hover {
    background-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.set-section__cta:hover .set-section__cta-icon {
    transform: translateX(4px);
}
.set-section__block:nth-child(3n + 1) .set-section__cta:hover .set-section__cta-text,
.set-section__block:nth-child(3n + 1) .set-section__cta:hover .set-section__cta-icon {
    color: #15578e;
}
.set-section__block:nth-child(3n + 2) .set-section__cta:hover .set-section__cta-text,
.set-section__block:nth-child(3n + 2) .set-section__cta:hover .set-section__cta-icon {
    color: #f4f5f1;
}
.set-section__block:nth-child(3n + 3) .set-section__cta:hover .set-section__cta-text,
.set-section__block:nth-child(3n + 3) .set-section__cta:hover .set-section__cta-icon {
    color: #454647;
}
.set-section__cta-text {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.set-section__cta-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.set-section__media {
    height: 100%;
}
.set-section__image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.set-section__image:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .set-section__block--media-right .set-section__content {
        padding-right: 60px;
    }
    .set-section__block--media-left .set-section__content {
        padding-left: 60px;
    }
    .set-section__title {
        margin-bottom: 24px;
    }
    .set-section__paragraph {
        margin-bottom: 20px;
    }
    .set-section__paragraph + .set-section__list,
    .set-section__paragraph + .set-section__cta {
        margin-top: 24px;
    }
    .set-section__list {
        margin-top: 24px;
    }
    .set-section__list-title {
        margin-bottom: 12px;
    }
    .set-section__list-item {
        margin-bottom: 6px;
    }
    .set-section__cta {
        margin-top: 24px;
    }
    .set-section__image {
        min-height: 350px;
    }
    .set-section__block--media-center .set-section__content {
        margin-bottom: 32px;
    }
}
@media (max-width: 768px) {
    .set-section__container {
        grid-template-columns: 1fr;
    }
    .set-section__content {
        order: 1;
        margin-bottom: 40px;
    }
    .set-section__block--media-right .set-section__content,
    .set-section__block--media-left .set-section__content {
        padding: 40px var(--container-padding);
    }
    .set-section__media {
        order: 2;
    }
    .set-section__block--media-left .set-section__content {
        order: 1;
    }
    .set-section__block--media-left .set-section__media {
        order: 2;
    }
    .set-section__block--media-center .set-section__container {
        text-align: left;
    }
    .set-section__block--media-center .set-section__content {
        margin-bottom: 32px;
    }
    .set-section__title {
        margin-bottom: 20px;
    }
    .set-section__paragraph {
        margin-bottom: 18px;
    }
    .set-section__paragraph + .set-section__list,
    .set-section__paragraph + .set-section__cta {
        margin-top: 20px;
    }
    .set-section__list {
        margin-top: 20px;
    }
    .set-section__list-title {
        margin-bottom: 10px;
    }
    .set-section__list-item {
        margin-bottom: 6px;
        padding-left: 16px;
    }
    .set-section__cta {
        margin-top: 20px;
        padding: 14px 28px;
        font-size: 13px;
    }
    .set-section__cta-icon {
        width: 14px;
        height: 14px;
    }
    .set-section__image {
        min-height: 300px;
        border-radius: 6px;
    }
}
@media (max-width: 480px) {
    .set-section__content {
        margin-bottom: 32px;
    }
    .set-section__title {
        margin-bottom: 16px;
    }
    .set-section__paragraph {
        margin-bottom: 16px;
    }
    .set-section__paragraph + .set-section__list,
    .set-section__paragraph + .set-section__cta {
        margin-top: 16px;
    }
    .set-section__list {
        margin-top: 16px;
    }
    .set-section__list-title {
        margin-bottom: 8px;
    }
    .set-section__list-item {
        margin-bottom: 4px;
        padding-left: 14px;
    }
    .set-section__cta {
        margin-top: 16px;
        padding: 12px 24px;
        font-size: 12px;
        gap: 8px;
    }
    .set-section__image {
        min-height: 250px;
        border-radius: 4px;
    }
    .set-section__block--media-center .set-section__content {
        margin-bottom: 24px;
    }
}
.set-section__title {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
.set-section__paragraph {
    opacity: 0;
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.set-section__list {
    opacity: 0;
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.set-section__cta {
    opacity: 0;
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.set-section__image {
    opacity: 0;
    transform: scale(0.95);
    -webkit-animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.industry-gallery {
    position: relative;
    padding: 70px 0;
    background-color: var(--color-white);
}
.industry-gallery__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.industry-gallery__header {
    margin-bottom: 60px;
}
.industry-gallery__title {
    font-family: var(--font-family-main);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-black);
    margin: 0;
    text-transform: uppercase;
}
.industry-gallery__slider-wrapper {
    position: relative;
}
.industry-gallery__slider {
    width: 100%;
    overflow: hidden;
}
.industry-gallery__slide {
    width: 100%;
    height: auto;
}
.industry-gallery__images {
    display: flex;
    gap: 24px;
    width: 100%;
}
.industry-gallery__item {
    position: relative;
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.industry-gallery__item:hover .industry-gallery__image {
    transform: scale(1.05);
}
.industry-gallery__item:hover .industry-gallery__overlay {
    opacity: 1;
    visibility: visible;
}
.industry-gallery__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}
.industry-gallery__item:hover .industry-gallery__image {
    filter: grayscale(0%);
}
.industry-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-gallery__zoom-icon {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-gallery__item:hover .industry-gallery__zoom-icon {
    transform: scale(1.1);
}
.industry-gallery__nav {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.industry-gallery__nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.industry-gallery__nav-btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.industry-gallery__nav-btn:active {
    transform: scale(0.95);
}
.industry-gallery__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.industry-gallery__nav-btn.swiper-button-disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-black);
    transform: none;
}
.industry-gallery__nav-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1200px) {
    .industry-gallery {
        padding: 100px 0;
    }
    .industry-gallery__header {
        margin-bottom: 50px;
    }
    .industry-gallery__images {
        gap: 20px;
    }
    .industry-gallery__nav {
        bottom: 16px;
        left: 16px;
    }
    .industry-gallery__nav-btn {
        width: 36px;
        height: 36px;
    }
    .industry-gallery__nav-btn svg {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 768px) {
    .industry-gallery {
        padding: 80px 0;
    }
    .industry-gallery__header {
        margin-bottom: 40px;
    }
    .industry-gallery__images {
        gap: 12px;
    }
    .industry-gallery__nav {
        bottom: 12px;
        left: 12px;
        gap: 6px;
    }
    .industry-gallery__nav-btn {
        width: 32px;
        height: 32px;
    }
    .industry-gallery__nav-btn svg {
        width: 12px;
        height: 12px;
    }
    .industry-gallery__zoom-icon {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 480px) {
    .industry-gallery {
        padding: 60px 0;
    }
    .industry-gallery__images {
        gap: 8px;
    }
    .industry-gallery__nav {
        bottom: 8px;
        left: 8px;
    }
    .industry-gallery__nav-btn {
        width: 28px;
        height: 28px;
    }
    .industry-gallery__nav-btn svg {
        width: 10px;
        height: 10px;
    }
    .industry-gallery__zoom-icon {
        width: 24px;
        height: 24px;
    }
}
.industry-gallery__item {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.industry-gallery__item:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.industry-gallery__item:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.industry-gallery__item:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.industry-gallery__item:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__caption {
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 4px;
}

.bulletin-splash {
    position: relative;
    padding: 60px 0;
    background-color: var(--color-white);
}
.bulletin-splash--recent {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}
.bulletin-splash__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.bulletin-splash__title {
    font-family: var(--font-family-poppins);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    color: #2c2a29;
    margin: 0 0 40px 0;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}
.bulletin-splash__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.bulletin-splash__card {
    position: relative;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-splash__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.bulletin-splash__card:hover .bulletin-splash__card-img {
    transform: scale(1.05);
}
.bulletin-splash__card:hover .bulletin-splash__card-icon {
    transform: scale(1.1);
    background-color: rgba(21, 87, 142, 0.9);
}
.bulletin-splash__card:hover .bulletin-splash__card-cta {
    transform: translateX(8px);
}
.bulletin-splash__card:hover .bulletin-splash__card-cta .bulletin-splash__card-cta-icon {
    transform: translateX(4px);
}
.bulletin-splash__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.bulletin-splash__card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}
.bulletin-splash__card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-splash__card-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(21, 87, 142, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.bulletin-splash__card-icon svg {
    width: 24px;
    height: 24px;
}
.bulletin-splash__card-content {
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 400px);
}
.bulletin-splash__card-title {
    font-family: var(--font-family-poppins);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0 0 16px 0;
}
.bulletin-splash__card-description {
    margin: 0 0 24px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    max-height: 3.2em;
}
.bulletin-splash__card-description p,
.bulletin-splash__card-description span,
.bulletin-splash__card-description div,
.bulletin-splash__card-description li {
    font-family: var(--font-family-main);
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    margin: 0;
    padding: 0;
}
.bulletin-splash__card-description p:not(:first-child),
.bulletin-splash__card-description span:not(:first-child),
.bulletin-splash__card-description div:not(:first-child),
.bulletin-splash__card-description li:not(:first-child) {
    display: none;
}
.bulletin-splash__card-description p:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bulletin-splash__card-description * + * {
    display: none !important;
}
.bulletin-splash__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}
.bulletin-splash__card-cta-text {
    position: relative;
}
.bulletin-splash__card-cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-splash__card-cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-splash__card:hover .bulletin-splash__card-cta-text::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .bulletin-splash {
        padding: 100px 0;
    }
    .bulletin-splash__grid {
        gap: 32px;
    }
    .bulletin-splash__card-image {
        height: 280px;
    }
    .bulletin-splash__card-content {
        padding: 28px 20px 20px 20px;
        height: calc(100% - 280px);
    }
    .bulletin-splash__card-title {
        margin-bottom: 14px;
    }
    .bulletin-splash__card-description {
        margin-bottom: 20px;
    }
}
@media (max-width: 992px) {
    .bulletin-splash__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .bulletin-splash__card-image {
        height: 260px;
    }
    .bulletin-splash__card-content {
        height: calc(100% - 260px);
    }
}
@media (max-width: 768px) {
    .bulletin-splash {
        padding: 80px 0;
    }
    .bulletin-splash__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bulletin-splash__card-image {
        height: 240px;
    }
    .bulletin-splash__card-icon {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
    }
    .bulletin-splash__card-icon svg {
        width: 20px;
        height: 20px;
    }
    .bulletin-splash__card-content {
        padding: 24px 20px 20px 20px;
        height: calc(100% - 240px);
    }
    .bulletin-splash__card-title {
        margin-bottom: 12px;
    }
    .bulletin-splash__card-description {
        margin-bottom: 18px;
    }
}
@media (max-width: 480px) {
    .bulletin-splash {
        padding: 60px 0;
    }
    .bulletin-splash__grid {
        gap: 20px;
    }
    .bulletin-splash__card-image {
        height: 200px;
    }
    .bulletin-splash__card-icon {
        width: 36px;
        height: 36px;
        bottom: 10px;
        right: 10px;
    }
    .bulletin-splash__card-icon svg {
        width: 18px;
        height: 18px;
    }
    .bulletin-splash__card-content {
        padding: 20px 16px 16px 16px;
        height: calc(100% - 200px);
    }
    .bulletin-splash__card-title {
        margin-bottom: 10px;
    }
    .bulletin-splash__card-description {
        margin-bottom: 16px;
    }
    .bulletin-splash__card-cta {
        font-size: 13px;
        gap: 6px;
    }
    .bulletin-splash__card-cta-icon {
        width: 14px;
        height: 14px;
    }
}
.bulletin-splash__card {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.bulletin-splash--animated .bulletin-splash__card {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bulletin-splash__card-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.bulletin-splash__card-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.bulletin-page {
    min-height: 100vh;
    background-color: #ffffff;
}

.bulletin-header {
    padding: 40px 0;
}
.bulletin-header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.bulletin-header__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-header__back-link:hover {
    color: #7fb3d3;
    transform: translateX(-4px);
}
.bulletin-header__back-link:hover .bulletin-header__back-icon {
    transform: translateX(-2px);
}
.bulletin-header__back-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-header__back-text {
    text-transform: uppercase;
}
.bulletin-header__title {
    font-family: var(--font-family-poppins);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    color: #2c2a29;
    margin: 0 0 16px 0;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}
.bulletin-header__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bulletin-header__date-icon {
    width: 16px;
    height: 16px;
    color: #7fb3d3;
}
.bulletin-header__date {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.bulletin-content {
    padding: 0px 0 60px 0;
}
.bulletin-content__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.bulletin-article {
    margin-bottom: 80px;
}
.bulletin-article:last-child {
    margin-bottom: 0;
}
.bulletin-article__content {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2a29;
    overflow: hidden;
}
.bulletin-article__content p {
    margin: 0 0 24px 0;
}
.bulletin-article__content p:last-child {
    margin-bottom: 0;
}
.bulletin-article__content p strong {
    font-weight: 600;
    color: #2c2a29;
}
.bulletin-article__image {
    margin-bottom: 20px;
}
.bulletin-article__footer {
    padding-top: 30px;
    clear: both;
}
.bulletin-article__social {
    display: flex;
    align-items: center;
    gap: 48px;
}
.bulletin-article__social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bulletin-article__social-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}
.bulletin-article__social-icon {
    width: 20px;
    height: 20px;
}
.bulletin-article__social-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.bulletin-article--image-left .bulletin-article__image {
    float: left;
    width: 100%;
    max-width: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 40px;
    margin-bottom: 20px;
}
.bulletin-article--image-right .bulletin-article__image {
    float: right;
    width: 100%;
    max-width: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: 40px;
    margin-bottom: 20px;
}
.bulletin-article--image-center {
    text-align: center;
}
.bulletin-article--image-center .bulletin-article__image {
    display: block;
    margin: 0 auto 40px auto;
    -o-object-fit: cover;
    object-fit: cover;
    float: none;
}
.bulletin-article--image-center .bulletin-article__content {
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 1200px) {
    .bulletin-header {
        padding: 32px 0;
    }
    .bulletin-header__title {
        font-size: 40px;
    }
    .bulletin-header__back-link {
        margin-bottom: 24px;
    }

    .bulletin-content {
        padding: 60px 0;
    }

    .bulletin-article {
        margin-bottom: 60px;
    }
    .bulletin-article--image-left .bulletin-article__image {
        max-width: 350px;
        margin-right: 32px;
    }
    .bulletin-article--image-right .bulletin-article__image {
        max-width: 350px;
        margin-left: 32px;
    }
    .bulletin-article--image-center .bulletin-article__image {
        max-height: 300px;
    }
    .bulletin-article__social {
        gap: 36px;
    }
}
@media (max-width: 992px) {
    .bulletin-header__title {
        font-size: 36px;
    }

    .bulletin-article {
        margin-bottom: 50px;
    }
    .bulletin-article--image-left .bulletin-article__image,
    .bulletin-article--image-right .bulletin-article__image {
        float: none;
        display: block;
        margin: 0 auto 24px auto;
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
    .bulletin-article--image-center .bulletin-article__image {
        height: 250px;
    }
    .bulletin-article__social {
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .bulletin-header {
        padding: 24px 0;
    }
    .bulletin-header__title {
        font-size: 28px;
    }
    .bulletin-header__back-link {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .bulletin-content {
        padding: 40px 0;
    }

    .bulletin-article {
        margin-bottom: 40px;
    }
    .bulletin-article__content {
        font-size: 16px;
    }
    .bulletin-article__content p {
        margin-bottom: 20px;
    }
    .bulletin-article__image {
        height: 300px !important;
        max-width: 100% !important;
    }
    .bulletin-article__footer {
        margin-top: 30px;
        padding-top: 20px;
    }
    .bulletin-article__social {
        flex-wrap: wrap;
        gap: 20px;
    }
    .bulletin-article__social-text {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .bulletin-header__title {
        font-size: 24px;
        line-height: 1.3;
    }
    .bulletin-header__back-link {
        font-size: 12px;
        gap: 6px;
    }
    .bulletin-header__back-icon {
        width: 14px;
        height: 14px;
    }

    .bulletin-article {
        margin-bottom: 32px;
    }
    .bulletin-article__content {
        font-size: 15px;
        line-height: 1.6;
    }
    .bulletin-article__image {
        margin-bottom: 16px;
    }
    .bulletin-article__footer {
        margin-top: 24px;
        padding-top: 16px;
    }
    .bulletin-article__social {
        flex-direction: column;
        gap: 16px;
    }
}
.contact-contact {
    background: var(--color-secondary);
    min-height: 600px;
}
@media (max-width: 768px) {
    .contact-contact {
        min-height: auto;
    }
}
.contact-contact__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 600px;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-contact__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.contact-contact__info {
    background: var(--color-secondary);
    display: flex;
    padding: 60px 40px 60px var(--container-padding);
}
@media (max-width: 1200px) {
    .contact-contact__info {
        padding: 50px 30px 50px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .contact-contact__info {
        padding: 50px 30px 50px var(--container-padding);
    }
}
@media (max-width: 480px) {
    .contact-contact__info {
        padding: 40px 20px 40px var(--container-padding);
    }
}
.contact-contact__info-content {
    width: 100%;
    max-width: 400px;
}
@media (max-width: 768px) {
    .contact-contact__info-content {
        max-width: 100%;
    }
}
.contact-contact__section {
    margin-bottom: 50px;
}
.contact-contact__section:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .contact-contact__section {
        margin-bottom: 40px;
    }
}
.contact-contact__section-title {
    font-family: var(--font-family-poppins);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 25px 0;
}
@media (max-width: 768px) {
    .contact-contact__section-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
.contact-contact__item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-contact__item:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .contact-contact__item {
        margin-bottom: 20px;
    }
}
.contact-contact__icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-contact__details {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}
.contact-contact__details-phone {
    margin-top: 5px;
}
.contact-contact__details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-contact__details a:hover {
    color: var(--accent-color);
}
.contact-contact__details div {
    margin-bottom: 2px;
}
.contact-contact__details div:last-child {
    margin-bottom: 0;
}
.contact-contact__details strong {
    font-weight: 600;
    color: var(--color-black);
}
.contact-contact__social-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}
@media (max-width: 768px) {
    .contact-contact__social-text {
        margin-bottom: 15px;
    }
}
.contact-contact__social {
    display: flex;
    gap: 15px;
}
.contact-contact__social-link {
    color: #666;
    transition: color 0.3s ease;
}
.contact-contact__social-link:hover {
    color: var(--color-primary);
}
.contact-contact__form {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    padding: 60px var(--container-padding) 60px 40px;
}
@media (max-width: 1200px) {
    .contact-contact__form {
        padding: 50px var(--container-padding) 50px 30px;
    }
}
@media (max-width: 768px) {
    .contact-contact__form {
        padding: 50px var(--container-padding) 50px 30px;
    }
}
@media (max-width: 480px) {
    .contact-contact__form {
        padding: 40px var(--container-padding) 40px 20px;
    }
}
.contact-contact__form-content {
    width: 100%;
    max-width: 1000px;
}
@media (max-width: 768px) {
    .contact-contact__form-content {
        max-width: 100%;
    }
}
.contact-contact__form-title {
    font-family: var(--font-family-poppins);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 30px 0;
}
@media (max-width: 768px) {
    .contact-contact__form-title {
        font-size: 15px;
        margin-bottom: 25px;
    }
}
.contact-contact__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 480px) {
    .contact-contact__form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.contact-contact__form-group--full {
    grid-column: 1/-1;
}
.contact-contact__form-group input[type='file'] {
    width: 0;
}
.contact-contact__input {
    width: 100%;
    padding: 15px 16px;
    border: none;
    background: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    transition: all 0.3s ease;
}
.contact-contact__input::-moz-placeholder {
    color: #999;
}
.contact-contact__input:-ms-input-placeholder {
    color: #999;
}
.contact-contact__input::placeholder {
    color: #999;
}
.contact-contact__input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
    .contact-contact__input {
        padding: 10px 14px;
        font-size: 13px;
    }
}
.contact-contact__textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    background: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}
.contact-contact__textarea::-moz-placeholder {
    color: #999;
}
.contact-contact__textarea:-ms-input-placeholder {
    color: #999;
}
.contact-contact__textarea::placeholder {
    color: #999;
}
.contact-contact__textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
    .contact-contact__textarea {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 100px;
    }
}
.contact-contact__file-input {
    position: relative;
    display: flex;
}
.contact-contact__file-input-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.contact-contact__file-display {
    flex: 1;
    border-radius: 0;
}
.contact-contact__file-button {
    background: #999;
    color: var(--color-white);
    padding: 12px 20px;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.contact-contact__file-button:hover {
    background: #777;
}
@media (max-width: 480px) {
    .contact-contact__file-button {
        padding: 10px 16px;
        font-size: 11px;
    }
}
.contact-contact__submit {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 14px 24px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}
.contact-contact__submit:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .contact-contact__submit {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.contact-contact__submit.btn--loading,
.btn.btn--loading {
    position: relative;
    pointer-events: none;
}
.contact-contact__submit.btn--loading:after,
.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;
}
.contact-contact__submit.btn--loading::before,
.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);
    }
}

.contact-contact__submit-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.contact-contact__submit:hover .contact-contact__submit-icon {
    transform: translateX(3px);
}

.contact-map {
    background: var(--color-white);
    padding: 0;
}
.contact-map__container {
    background-image: url(/img/misc/rd_map.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-map__content {
    position: relative;
}
.contact-map__map-wrapper {
    position: relative;
    overflow: hidden;
}
.contact-map__map-link {
    display: block;
    position: relative;
    transition: all 0.3s ease;
    aspect-ratio: 32/13;
}
.contact-map__map-link:hover .contact-map__map-image {
    transform: scale(1.02);
}
.contact-map__map-link:hover .contact-map__map-overlay {
    opacity: 1;
}
.contact-map__map-image {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s ease;
}
@media (max-width: 768px) {
    .contact-map__map-image {
        height: 400px;
    }
}
@media (max-width: 480px) {
    .contact-map__map-image {
        height: 300px;
    }
}
.contact-map__map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-map__map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    text-align: center;
}
.contact-map__map-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.contact-map__map-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
    .contact-map__map-text {
        font-size: 14px;
    }
}
.contact-map__button-wrapper {
    position: absolute;
    bottom: 30px;
    right: 50%;
    z-index: 10;
    width: 100%;
    transform: translateX(50%);
    max-width: var(--page-max-width);
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-map__button-wrapper {
        bottom: 20px;
    }
}
@media (max-width: 480px) {
    .contact-map__button-wrapper {
        bottom: 15px;
    }
}
.contact-map__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: var(--color-white);
    color: var(--color-black);
    padding: 12px 20px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
    transition: all 0.3s ease;
}
.contact-map__button:hover {
    background: #e67e22;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.contact-map__button:hover .contact-map__button-arrow {
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .contact-map__button {
        padding: 10px 16px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .contact-map__button {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
}
.contact-map__button-icon {
    flex-shrink: 0;
}
.contact-map__button-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.history-timeline {
    position: relative;
    background-color: var(--color-white);
}
.history-timeline__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    position: relative;
    min-height: 100vh;
}
.history-timeline__nav {
    position: -webkit-sticky;
    position: sticky;
    top: 240px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 40px 0;
    z-index: 10;
}
.history-timeline__nav-list {
    list-style: none;
    margin: 0;
    padding: 0 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}
.history-timeline__nav-list::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #e0e0e0 0%, #d0d0d0 50%, #e0e0e0 100%);
    border-radius: 1px;
}
.history-timeline__nav-item {
    position: relative;
}
.history-timeline__nav-link {
    display: block;
    padding: 12px 16px 12px 32px;
    color: #666;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 6px;
    margin-bottom: 2px;
}
.history-timeline__nav-link::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #d0d0d0;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
.history-timeline__nav-link:hover {
    color: var(--color-black);
    background-color: rgba(16, 71, 118, 0.05);
    transform: translateX(2px);
}
.history-timeline__nav-link:hover::before {
    background-color: var(--color-primary);
    transform: translateY(-50%) scale(1.2);
}
.history-timeline__nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(16, 71, 118, 0.1) 0%, rgba(16, 71, 118, 0.05) 100%);
    box-shadow: 0 2px 8px rgba(16, 71, 118, 0.1);
}
.history-timeline__nav-link.active::before {
    background-color: var(--color-primary);
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 3px rgba(16, 71, 118, 0.2);
}
.history-timeline__nav-text {
    display: block;
    position: relative;
}
.history-timeline__content {
    padding: 40px 60px;
    position: relative;
}
.history-timeline__section-image {
    display: none;
}
.history-timeline__section {
    margin-bottom: 120px;
    scroll-margin-top: 100px;
}
.history-timeline__section:last-child {
    margin-bottom: 40px;
}
.history-timeline__section-content {
    max-width: 600px;
}
.history-timeline__section-title {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 32px 0;
    line-height: 1.2;
}
.history-timeline__text {
    margin-bottom: 40px;
}
.history-timeline__text p {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0 0 16px 0;
}
.history-timeline__text p:last-child {
    margin-bottom: 0;
}
.history-timeline__year-block {
    margin-bottom: 40px;
    padding: 24px 0;
    border-left: 3px solid #f0f0f0;
    padding-left: 24px;
    position: relative;
}
.history-timeline__year-block::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 32px;
    width: 9px;
    height: 9px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.history-timeline__year-block:last-child {
    margin-bottom: 0;
}
.history-timeline__year {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 12px 0;
}
.history-timeline__year-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.history-timeline__image {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 5;
}
.history-timeline__image-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.history-timeline__image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.history-timeline__image-item.active {
    opacity: 1;
}

@media (max-width: 1200px) {
    .history-timeline__container {
        grid-template-columns: 180px 1fr 350px;
    }
    .history-timeline__nav {
        top: 110px;
    }
    .history-timeline__content {
        padding: 40px 40px;
    }
    .history-timeline__nav-link {
        padding: 14px 20px 14px 25px;
        font-size: 15px;
    }
}
@media (max-width: 992px) {
    .history-timeline__container {
        grid-template-columns: 160px 1fr 300px;
    }
    .history-timeline__content {
        padding: 40px 30px;
    }
    .history-timeline__nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
    .history-timeline__section-title {
        margin-bottom: 24px;
    }
    .history-timeline__year-block {
        margin-bottom: 32px;
    }
}
@media (max-width: 1000px) {
    .history-timeline {
        max-width: 100%;
    }
    .history-timeline__container {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    .history-timeline__nav {
        grid-column: 1/-1;
        max-width: 100%;
        overflow: auto;
    }
    .history-timeline__nav {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        top: 80px;
        z-index: 100;
        background-color: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 0;
        margin: 0;
    }
    .history-timeline__nav::after {
        display: none;
    }
    .history-timeline__nav-list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 0 var(--container-padding) 8px var(--container-padding);
    }
    .history-timeline__nav-list::before {
        display: none;
    }
    .history-timeline__nav-list::-webkit-scrollbar {
        height: 4px;
    }
    .history-timeline__nav-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    .history-timeline__nav-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
    .history-timeline__nav-item {
        flex-shrink: 0;
    }
    .history-timeline__nav-link {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 4px;
        white-space: nowrap;
    }
    .history-timeline__nav-link::before {
        display: none;
    }
    .history-timeline__nav-link.active {
        background: var(--color-primary);
        color: var(--color-white);
    }
    .history-timeline__nav-link.active::after {
        display: none;
    }
    .history-timeline__nav-link:hover {
        background-color: rgba(16, 71, 118, 0.1);
        transform: none;
    }
    .history-timeline__content {
        padding: 40px 40px;
    }
    .history-timeline__section-content {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .history-timeline__container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        padding: 0;
    }
    .history-timeline__content {
        padding: 30px 5%;
        order: 2;
    }
    .history-timeline__section {
        margin-bottom: 80px;
    }
    .history-timeline__section-title {
        margin-bottom: 24px;
    }
    .history-timeline__section-image {
        display: block;
        width: 100%;
        margin-bottom: 32px;
        border-radius: 8px;
        overflow: hidden;
    }
    .history-timeline__section-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .history-timeline__image {
        display: none;
    }
}
@media (max-width: 480px) {
    .history-timeline__nav {
        top: 60px;
        padding: 12px 0;
    }
    .history-timeline__nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    .history-timeline__content {
        padding: 20px 5%;
    }
    .history-timeline__section {
        margin-bottom: 60px;
    }
    .history-timeline__section-title {
        margin-bottom: 20px;
    }
    .history-timeline__section-image {
        height: 250px;
        margin-bottom: 24px;
    }
    .history-timeline__year-block {
        margin-bottom: 24px;
        padding: 16px 0;
        padding-left: 16px;
    }
    .history-timeline__year {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .history-timeline__year-text {
        font-size: 15px;
    }
}
/* [MAIN CSS START] */
.relative {
    position: relative;
}

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

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

.text-block {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    line-height: 150%;
}
.text-block__text {
    margin-top: 30px;
}
.text-block__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.text-block__links > a {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid var(--color-name-200, #9daac1);
    color: #000;
    transition: 0.2s ease;
}
.text-block__links > a.active {
    background-color: var(--color-name-200, #9daac1);
}
.text-block__links > a:hover {
    background-color: var(--color-name-200, #9daac1);
}

.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,
textarea.error,
select.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(32px, 3vw, 46px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.92px;
}
.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-2);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.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.p-padding label {
    padding-left: 31px;
}
.pretty .state label {
    text-indent: 0;
}
.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;
    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: 12px;
    color: #4f4f4f;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
}
.breadcrumbs li:last-child * {
    font-weight: 600;
}
.breadcrumbs a,
.breadcrumbs p {
    font-weight: 400;
    font-size: 12px;
    text-align: right;
    letter-spacing: 0.06px;
    color: #000;
}

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