@media (min-width: 1600px) { @font-face {
    font-family: 'KyivType Sans';
    src: url('/assets/KyivType-VariableGX/KyivTypeSans-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Serif';
    src: url('/assets/KyivType-VariableGX/KyivTypeSerif-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Titling';
    src: url('/assets/KyivType-VariableGX/KyivTypeTitling-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

:root {
	--column-width: 1240px;
	--offset: calc(50% - (var(--column-width) / 2));
    --black: #343131;
    --white: #FFFFFF;
    --back:  #FAF9F4;
    --back2: #F8EAE9;
    --dark-color-brandbook: #112822;
    --gold-color-brandbook: #D1B583;
    --pink-brandbook: #CEADB4;
    --light-brown-brandbook: #F3E8D2;
    --dark-gray-brandbook: #434C51;
    --link: #234FFC;
}

body, input, textarea, select {
	font-family: 'Noto Sans', sans-serif;
	font-size: 15px;
	-webkit-text-size-adjust: none;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

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

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

.mb {
    margin-bottom: 120px;
}

.btn-primary-gold {
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--gold-color-brandbook);
    color: var(--white);
    font-family: "KyivType Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* Slider */
 .slick-slider
 {
     position: relative;

     display: block;
     box-sizing: border-box;

     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;

     -webkit-touch-callout: none;
     -khtml-user-select: none;
     -ms-touch-action: pan-y;
     touch-action: pan-y;
     -webkit-tap-highlight-color: transparent;
 }

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus
{
    outline: none;
}

.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}

.slick-track:after
{
    clear: both;
}

.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}

.slick-slide img
{
    display: block;
}

.slick-slide.slick-loading img
{
    display: none;
}

.slick-slide.dragging img
{
    pointer-events: none;
}

.slick-initialized .slick-slide
{
    display: block;
}

.slick-loading .slick-slide
{
    visibility: hidden;
}

.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.contact-form-input {
    width: 100% !important;
    padding: 16px;
    border-radius: 12px;
    background: var(--white);
    color: var(--black);
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border: none;
}


/* MODALS */

.no-scroll {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000000;
}

.container-modal {
    border-radius: 8px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.input-error.color-red {
    color: #FF151F;
}

.form-answer.error {
    color: #FF151F;
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
}

.closemodal svg {
    width: 20px;
    height: 20px;
}

#screen {
    transition: transform 0.5s ease, height 0.5s ease, width 0.5s ease;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 5px;
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 22px;
    background-image: url('/assets/images/check-svg.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.contact-tile-copy.show-tooltip .tooltip {
    visibility: visible;
    opacity: 1;
}

.mobile {
    display: none !important;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.error-message {
    color: red;
    font-size: 13px;
    display: none;
}

.dis-color-blue header,
.dis-color-blue footer,
.dis-color-blue .body-wrapper,
.dis-color-blue {
    background-color: #bde9f9;
}

.dis-color-grey header,
.dis-color-grey footer,
.dis-color-grey .body-wrapper,
.dis-color-grey {
    background-color: transparent;
}

.dis-color-yellow header,
.dis-color-yellow footer,
.dis-color-yellow .body-wrapper,
.dis-color-yellow {
    background-color: #f2ecce;
}

.dis-active header > *,
.dis-active footer > *,
.dis-active .body-wrapper > * {
    filter: grayscale(1);
}

.dis-active .page-404-img {
    filter: invert(1);
}

.dis-active .article-page-wrapper,
.dis-active .wave-top,
.dis-active .yellow-wave,
.dis-active .wave-bottom,
.dis-active .index-wave,
.dis-active .expertise-section-wrapper,
.dis-active .projects-list-item {
    background: transparent !important;
}

.dis-active .page-404-title,
.dis-active .page-404-subtitle,
.dis-active .banner-header-modal-btn,
.dis-active .reasons-section-title,
.dis-active .reasons-section-subtitle,
.dis-active .mission-section-highlight,
.dis-active .mission-section-text,
.dis-active .banner-slider-item-small-text,
.dis-active .banner-slider-item-big-text,
.dis-active .header-btn-open,
.dis-active .language-switcher-item,
.dis-active .header-bottom-nearest,
.dis-active .header-projects-title,
.dis-active .header-nav-item,
.dis-active .footer-socials-title,
.dis-active .footer-top-column-title {
    color: var(--dark-color-brandbook) !important;
}

.dis-active .photo-section-img {
    display: none !important;
}

.dis-photo-disabled .text-section-img {
    display: none !important;
}

.dis-photo-disabled img {
    opacity: 0 !important;
    pointer-events: none !important;
}

.dis-photo-disabled .banner-slider-item {
    background: transparent !important;
} 
    .scroll-down {
       /* position: absolute;
        left: 48px;
        bottom: 48px;*/
        opacity: 1;
        z-index: 3;
        -webkit-transition: .4s;
        transition: .4s;
        -webkit-transition-delay: .7s;
        transition-delay: .7s;
        cursor: pointer;
    }

    .scroll-down .icon {
        display: inline-block;
        vertical-align: middle;
    }

    .scroll-down .icon div {
        width: 28px;
        height: 46px;
        border-radius: 13px;
        background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
        background-image: linear-gradient(0deg, #ddd, #fff);
    }

    .scroll-down .icon span {
        width: 7px;
        height: 7px;
        background-color: #434C51;
        position: absolute;
        left: 11px;
        top: 11px;
        border-radius: 100%;
        -webkit-animation-name: Mouse;
        animation-name: Mouse;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    @-webkit-keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }

    @keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }


    .banner-slider-dots-box {
        justify-content: center;
        display: flex;
        padding: 10px 16px;
        align-items: center;
        gap: 14px;
        border-radius: 100px;
        background: white;
        width: fit-content;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
    }

    .slider-dots button {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: block;
        border: 0;
        background-color: transparent;
        margin: 0 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        z-index: 0;
        transition: .3s all;
    }

    .slider-dots button:after {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #C8C8C8;
    }

    .banner-slider-dots-box .slick-active button:after {
        content: none;
        display: none;
    }

    .banner-slider-dots-box .slick-active button:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        border: 2px solid rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }

    .circle-bg {
        fill: none;
        stroke: rgba(0, 0, 0, 0.05);
        stroke-width: 2;
    }

    .circle-go {
        fill: none;
        stroke: rgb(67, 76, 81);
        stroke-width: 2;
        stroke-linecap: round;
        animation: progress 5s linear forwards;
        stroke-dasharray: 56.52; /* 2 * π * radius (9) */
        stroke-dashoffset: 56.52;
        transform-origin: center; /* Ensure proper rotation */
        transform: rotate(-90deg);
    }

    .circle-tx {
        fill: #000;
        font: bold 10px 'Arial';
        text-anchor: middle;
    }

    @keyframes progress {
        from {
            stroke-dashoffset: 56.52;
        }
        to {
            stroke-dashoffset: 0;
        }
    }

    .dot {
        fill: #000; /* Same as the color used in the button dot */
        stroke: none;
    }


    .banner-wrapper {
        position: relative;
    }

    .banner-header-wrapper {
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 160px;
        z-index: 999;
    }

    .banner-header-logo {
        width: 55px;
        height: 61px;
        object-fit: contain;
    }

    .banner-header-inner-right {
        display: flex;
        align-items: center;
        gap: 35px;
    }

    .banner-header-eye-btn {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: var(--pink-brandbook);
        display: flex;
        padding: 9px;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .banner-header-modal-btn {
        display: flex;
        padding: 14px 24px 13px 24px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 12px;
        border: 2px solid var(--white);
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        text-transform: uppercase;
        cursor: pointer;
        background: transparent;
        height: 45px;
    }

    .banner-bottom-wrapper {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }


    .banner-slider-item {
        width: 100%;
        height: 728px;
        position: relative;
        background-size: cover !important;
    }

    .banner-slider-item-content {
        position: absolute;
        bottom: 138px;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-slider-item-small-text {
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
    }

    .banner-slider-item-big-text {
        margin-top: 16px;
        color: #FFF;
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 50px;
        text-transform: uppercase;
        width: 1240px;
    }

 

.breadcrumbs {
	background: var(--color-back-and-stroke);
	margin: 30px;
}

.breadcrumbs-inner {
	display: inline;
	list-style: none;
}

.breadcrumbs-item {
	display: inline;
}

.breadcrumbs-link {
    color: var(--dark-color-brandbook);
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
	display: inline;
    text-decoration: none;
}

.breadcrumbs-link::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-image: url('/assets/images/breadcrumb.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 3.5px;
    margin-bottom: 2px;
}

.breadcrumbs-last::after{
	display: none;
}

.breadcrumbs-last{
    color: #747576;
}


 
    .settings-wrapper {
        width: 100%;
        height: 100%;
        background: var(--back);
        display: none;
        flex-direction: column;
        height: 200px;
    }

    .settings-wrapper.active {
        display: flex;
    }

    .settings-top {
        padding: 23px 0;
        border-bottom: 1px solid #8A8A8A;
    }

    .settings-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-top-options {
        display: flex;
        align-items: center;
        gap: 108px;
    }

    .settings-top-option {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .settings-top-option-title {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
    }

    .settings-top-option-vars {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .settings-top-option-btn {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-top-option-btn.active {
        padding: 6px 8px;
        color: var(--white);
        border-radius: 6px;
        background: var(--dark-gray-brandbook);
    }

    .option-small-text {
        font-size: 18px;
    }

    .option-medium-text {
        font-size: 22px;
    }

    .option-big-text {
        font-size: 26px;
    }

    .full-version-btn {
        display: flex;
        padding: 15px 24px;
        justify-content: center;
        align-items: center;
        gap: 16px;
        border-radius: 12px;
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .settings-bottom {
        margin-top: 23px;
    }

    .settings-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-logo {
        width: 55px;
        height: 61px;
        object-fit: contain;
    }

    .settings-bottom-btns {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .settings-modal-btn {
        display: flex;
        padding: 14px 24px 13px 24px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 12px;
        border: 2px solid var(--dark-color-brandbook);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        text-transform: uppercase;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-btn-menu {
        display: flex;
        padding: 12px 24px 11px 24px;
        justify-content: center;
        align-items: center;
        gap: 16px;
        border-radius: 12px;
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        text-transform: uppercase;
        border: 2px solid var(--dark-color-brandbook);
        cursor: pointer;
    }

    .settings-btn-menu span {
        background-color: white !important;
    }

 
    .language-switcher-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 18px;
        text-decoration: none;
    }

    .language-switcher-item img {
        width: 18px;
        height: 18px;
    }

    .language-switcher-item.white {
        color: var(--white);
    }

 
    .header-btn-open {
        display: flex;
        align-items: center;
        padding: 12px 24px 11px 24px;
        justify-content: center;
        align-items: center;
        gap: 16px;
        border-radius: 12px;
        background: var(--white);
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        position: fixed;
        top: 23px;
        right: var(--offset);
        z-index: 999999;
        border: none;
        outline: none;
        cursor: pointer;
        height: 45px;
    }

    .header-btn-open.active {
        background: var(--gold-color-brandbook);
        color: var(--white);
        display: flex !important;
    }

    .burger-icon {
        width   : 28px;
        height  : 16px;
        cursor  : pointer;
        position: relative;
    }

    .burger-icon span {
        background-color: #112822;
        height          : 2px;
        position        : absolute;
        width           : 100%;
        left            : 0;
        transition      : all 0.3s ease;
        border-radius   : 10px;
    }

    .burger-icon span:first-child {
        top: 0;
    }

    .burger-icon span:nth-child(2) {
        top: 8px;
    }

    .burger-icon span:last-child {
        top: 16px;
    }

    .header-btn-open.active .burger-icon span {
        background-color: white;
    }

    .header-btn-open.active .burger-icon span:first-child {
        transform: rotate(45deg);
        top: 8px;
    }

    .header-btn-open.active .burger-icon span:nth-child(2) {
        opacity: 0;
    }

    .header-btn-open.active .burger-icon span:last-child {
        transform: rotate(-45deg);
        top: 8px;
    }


    /* Initial state */
    header {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--dark-color-brandbook);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    /* Active state (visible) */
    header.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-top {
        padding: 23px 0;
        border-bottom: 1px solid #28564A;
    }

    .header-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 150px;
    }

    .header-nav {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .header-nav-item {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-nav-item:hover {
        text-decoration: underline;
    }

    .header-inner {
        display: flex;
        transform: translateY(-100%);
        flex-direction: column;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    header.active .header-inner {
        transform: translateY(0); /* Slide down to visible position */
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-projects {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .header-projects-title {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
    }

    .header-projects-list {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .header-projects-item {
        display: flex;
        padding: 15px 24px 14px 24px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 12px;
        background: var(--white);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-bottom {
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-bottom-nearest {
        display: flex;
        align-items: center;
        gap: 16px;
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
    }

    .header-bottom-right {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .header-socials {
        display: flex;
        align-items: center;
        gap: 16px;
    }

 
    .container-modal-become-partner {
        width: 870px;
        border-radius: 24px;
        background: var(--pink-brandbook);
    }

    .container-modal-become-partner::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 462.19px;
        height: 273.915px;
        background-image: url('/assets/images/partner-bottom-left-bird.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .container-modal-become-partner::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0px;
        width: 277.58px;
        height: 264px;
        background-image: url('/assets/images/partner-top-right-bird.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top right;
    }

    .become-partner-modal-content {
        padding: 60px 80px;
        display: flex;
        flex-direction: column;
        z-index: 99;
    }

    .become-partner-modal-title {
        color: var(--white);
        font-family: Montserrat, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        text-transform: uppercase;
    }

    .become-partner-modal-subtitle {
        margin-top: 16px;
        color: var(--white);
        font-family: "Noto Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 21px;
    }

    .become-partner-form {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .become-partner-form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .become-partner-form-footer {
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 90px;
    }

    .become-partner-form-footer-policy, .become-partner-form-footer-policy a {
        display: inline;
        color: var(--white);
        font-family: "Noto Sans", sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: 600;
        line-height: 15px;
    }

    .become-partner-form-btn {
        display: flex;
        width: 345px;
        padding: 18px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 16px;
        background: var(--dark-color-brandbook);
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 23px;
        text-transform: uppercase;
        border: none;
        outline: none;
    }

 
    .checkout-icon-link {
        position: fixed;
        right: 100px;
        bottom: 100px;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background: var(--back);
        border-radius: 50%;
        width: 65px;
        height: 65px;
        border: 1px solid gainsboro;

        box-shadow: 0 8px 25px rgba(0,0,0,0.25);

        transition: transform .2s, box-shadow .2s;
    }

    .checkout-icon-link:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    }

    .checkout-icon-link-inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .checkout-icon-link-count {
        position: absolute;
        top: -8px;
        right: -10px;

        min-width: 22px;
        height: 22px;

        background: red;
        color: white;

        font-size: 12px;
        font-weight: bold;

        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 2px 6px;
    }

    .checkout-icon-link {
        animation: cartPulse 2s infinite;
    }

    @keyframes cartPulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.6); }
        70% { box-shadow: 0 0 0 15px rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }

    .footer-payments-list {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer-payments-list img {
        height: 22.5px;
    }

    footer {
        border-radius: 24px 24px 0px 0px;
        background: var(--back);
        padding: 50px 0 37px 0;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 65px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 65px;
    }

    .footer-top-columns {
        display: flex;
        align-items: flex-start;
        gap: 102px;
    }

    .footer-top-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-top-column-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }

    .footer-top-column-items {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .footer-top-column-item {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .text-lowercase {
        text-transform: lowercase;
    }

    .footer-top-column-item:hover {
        text-decoration: underline;
    }

    .footer-top-boxes {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-top-boxes-container {
        display: flex;
        align-items: flex-start;
        gap: 93px;
    }

    .footer-top-icon-box {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-top-icon-box-title {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        text-transform: uppercase;
    }

    .footer-top-icon-box-title img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .footer-top-icon-box-text {
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-decoration: none;
    }

    .footer-top-icon-box-text.link:hover {
        text-decoration: underline;
    }

    .footer-socials {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-socials-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }

    .footer-socials-list {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .footer-social img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .footer-bottom {
        padding-top: 27px;
        border-top: 1px dashed #DBDBDB;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-bottom-link {
        color: var(--dark-color-brandbook);
        font-family: Montserrat, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        text-decoration: none;
    }

    .footer-bottom-link.hover:hover {
        text-decoration: underline;
    }

 
    .page-404 {
        position: relative;
    }

    .page-404-bird {
        position: absolute;
        right: 278px;
        top: -80px;
    }

    .page-404-flower-left {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .page-404-flower-right {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-404-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 90px;
    }

    .page-404-img {
        width: 421px;
        height: 151px;
        object-fit: contain;
        margin-top: 85px;
    }

    .page-404-title {
        margin-top: 65px;
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
        text-transform: uppercase;
    }

    .page-404-subtitle {
        margin-top: 20px;
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase;
    }

    .page-404-btn {
        margin-top: 40px;
    }

    body {
        background: var(--dark-color-brandbook);
    }

    .breadcrumbs-link {
        color: var(--white);
    }

    .breadcrumbs-last {
        color: #C5C5C5;
    }

    footer {
        border-radius: 0;
    }

    .banner-slider-wrapper, .banner-bottom-wrapper {
        display: none !important;
    }

    .banner-header-wrapper {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        padding: 15px 0;
    }

 }@media (max-width: 1600px) and (min-width: 1000px) { @font-face {
    font-family: 'KyivType Sans';
    src: url('/assets/KyivType-VariableGX/KyivTypeSans-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Serif';
    src: url('/assets/KyivType-VariableGX/KyivTypeSerif-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Titling';
    src: url('/assets/KyivType-VariableGX/KyivTypeTitling-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

:root {
	--column-width: 86.1111vw;
	--offset: calc(50% - (var(--column-width) / 2));
    --black: #343131;
    --white: #FFFFFF;
    --back:  #FAF9F4;
    --back2: #F8EAE9;
    --dark-color-brandbook: #112822;
    --gold-color-brandbook: #D1B583;
    --pink-brandbook: #CEADB4;
    --light-brown-brandbook: #F3E8D2;
    --dark-gray-brandbook: #434C51;
    --link: #234FFC;
}

body, input, textarea, select {
	font-family: 'Noto Sans', sans-serif;
	font-size: 1.0417vw;
	-webkit-text-size-adjust: none;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

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

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

.mb {
    margin-bottom: 8.3333vw;
}

.btn-primary-gold {
    display: flex;
    padding: 0.9722vw 2.2222vw;
    justify-content: center;
    align-items: center;
    gap: 0.6944vw;
    flex-shrink: 0;
    border-radius: 1.1111vw;
    background: var(--gold-color-brandbook);
    color: var(--white);
    font-family: "KyivType Sans";
    font-size: 0.9028vw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5972vw;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* Slider */
 .slick-slider
 {
     position: relative;

     display: block;
     box-sizing: border-box;

     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;

     -webkit-touch-callout: none;
     -khtml-user-select: none;
     -ms-touch-action: pan-y;
     touch-action: pan-y;
     -webkit-tap-highlight-color: transparent;
 }

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus
{
    outline: none;
}

.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}

.slick-track:after
{
    clear: both;
}

.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}

.slick-slide img
{
    display: block;
}

.slick-slide.slick-loading img
{
    display: none;
}

.slick-slide.dragging img
{
    pointer-events: none;
}

.slick-initialized .slick-slide
{
    display: block;
}

.slick-loading .slick-slide
{
    visibility: hidden;
}

.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.contact-form-input {
    width: 100% !important;
    padding: 1.1111vw;
    border-radius: 0.8333vw;
    background: var(--white);
    color: var(--black);
    font-family: "Noto Sans", sans-serif;
    font-size: 0.9028vw;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5278vw;
    border: none;
}


/* MODALS */

.no-scroll {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000000;
}

.container-modal {
    border-radius: 0.5556vw;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.0833vw;
    position: absolute;
    top: 4.1667vw;
    left: 50%;
    transform: translateX(-50%);
}

.input-error.color-red {
    color: #FF151F;
}

.form-answer.error {
    color: #FF151F;
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 1.0417vw;
    right: 1.0417vw;
    z-index: 999;
}

.closemodal svg {
    width: 1.3889vw;
    height: 1.3889vw;
}

#screen {
    transition: transform 0.5s ease, height 0.5s ease, width 0.5s ease;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5556vw;
}

.content ul li {
    position: relative;
    padding-left: 1.5278vw;
    margin-bottom: 0.3472vw;
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4167vw;
    width: 0.9722vw;
    height: 1.5278vw;
    background-image: url('/assets/images/check-svg.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 0.4167vw;
    padding: 0.3472vw;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0.3472vw;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.contact-tile-copy.show-tooltip .tooltip {
    visibility: visible;
    opacity: 1;
}

.mobile {
    display: none !important;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4167vw;
}

.error-message {
    color: red;
    font-size: 0.9028vw;
    display: none;
}

.dis-color-blue header,
.dis-color-blue footer,
.dis-color-blue .body-wrapper,
.dis-color-blue {
    background-color: #bde9f9;
}

.dis-color-grey header,
.dis-color-grey footer,
.dis-color-grey .body-wrapper,
.dis-color-grey {
    background-color: transparent;
}

.dis-color-yellow header,
.dis-color-yellow footer,
.dis-color-yellow .body-wrapper,
.dis-color-yellow {
    background-color: #f2ecce;
}

.dis-active header > *,
.dis-active footer > *,
.dis-active .body-wrapper > * {
    filter: grayscale(1);
}

.dis-active .page-404-img {
    filter: invert(1);
}

.dis-active .article-page-wrapper,
.dis-active .wave-top,
.dis-active .yellow-wave,
.dis-active .wave-bottom,
.dis-active .index-wave,
.dis-active .expertise-section-wrapper,
.dis-active .projects-list-item {
    background: transparent !important;
}

.dis-active .page-404-title,
.dis-active .page-404-subtitle,
.dis-active .banner-header-modal-btn,
.dis-active .reasons-section-title,
.dis-active .reasons-section-subtitle,
.dis-active .mission-section-highlight,
.dis-active .mission-section-text,
.dis-active .banner-slider-item-small-text,
.dis-active .banner-slider-item-big-text,
.dis-active .header-btn-open,
.dis-active .language-switcher-item,
.dis-active .header-bottom-nearest,
.dis-active .header-projects-title,
.dis-active .header-nav-item,
.dis-active .footer-socials-title,
.dis-active .footer-top-column-title {
    color: var(--dark-color-brandbook) !important;
}

.dis-active .photo-section-img {
    display: none !important;
}

.dis-photo-disabled .text-section-img {
    display: none !important;
}

.dis-photo-disabled img {
    opacity: 0 !important;
    pointer-events: none !important;
}

.dis-photo-disabled .banner-slider-item {
    background: transparent !important;
} 
    .scroll-down {
       /* position: absolute;
        left: 3.3333vw;
        bottom: 3.3333vw;*/
        opacity: 1;
        z-index: 3;
        -webkit-transition: .4s;
        transition: .4s;
        -webkit-transition-delay: .7s;
        transition-delay: .7s;
        cursor: pointer;
    }

    .scroll-down .icon {
        display: inline-block;
        vertical-align: middle;
    }

    .scroll-down .icon div {
        width: 1.9444vw;
        height: 3.1944vw;
        border-radius: 0.9028vw;
        background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
        background-image: linear-gradient(0deg, #ddd, #fff);
    }

    .scroll-down .icon span {
        width: 0.4861vw;
        height: 0.4861vw;
        background-color: #434C51;
        position: absolute;
        left: 0.7639vw;
        top: 0.7639vw;
        border-radius: 100%;
        -webkit-animation-name: Mouse;
        animation-name: Mouse;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    @-webkit-keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }

    @keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }


    .banner-slider-dots-box {
        justify-content: center;
        display: flex;
        padding: 0.6944vw 1.1111vw;
        align-items: center;
        gap: 0.9722vw;
        border-radius: 6.9444vw;
        background: white;
        width: fit-content;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
    }

    .slider-dots button {
        width: 1.3889vw;
        height: 1.3889vw;
        border-radius: 50%;
        display: block;
        border: 0;
        background-color: transparent;
        margin: 0 0.6944vw;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        z-index: 0;
        transition: .3s all;
    }

    .slider-dots button:after {
        content: "";
        display: block;
        width: 0.3472vw;
        height: 0.3472vw;
        border-radius: 50%;
        background-color: #C8C8C8;
    }

    .banner-slider-dots-box .slick-active button:after {
        content: none;
        display: none;
    }

    .banner-slider-dots-box .slick-active button:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        border: 2px solid rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }

    .circle-bg {
        fill: none;
        stroke: rgba(0, 0, 0, 0.05);
        stroke-width: 2;
    }

    .circle-go {
        fill: none;
        stroke: rgb(67, 76, 81);
        stroke-width: 2;
        stroke-linecap: round;
        animation: progress 5s linear forwards;
        stroke-dasharray: 56.52; /* 2 * π * radius (9) */
        stroke-dashoffset: 56.52;
        transform-origin: center; /* Ensure proper rotation */
        transform: rotate(-90deg);
    }

    .circle-tx {
        fill: #000;
        font: bold 0.6944vw 'Arial';
        text-anchor: middle;
    }

    @keyframes progress {
        from {
            stroke-dashoffset: 56.52;
        }
        to {
            stroke-dashoffset: 0;
        }
    }

    .dot {
        fill: #000; /* Same as the color used in the button dot */
        stroke: none;
    }


    .banner-wrapper {
        position: relative;
    }

    .banner-header-wrapper {
        position: absolute;
        top: 1.0417vw;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 11.1111vw;
        z-index: 999;
    }

    .banner-header-logo {
        width: 3.8194vw;
        height: 4.2361vw;
        object-fit: contain;
    }

    .banner-header-inner-right {
        display: flex;
        align-items: center;
        gap: 2.4306vw;
    }

    .banner-header-eye-btn {
        width: 3.125vw;
        height: 3.125vw;
        border-radius: 0.6944vw;
        background: var(--pink-brandbook);
        display: flex;
        padding: 0.625vw;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .banner-header-modal-btn {
        display: flex;
        padding: 0.9722vw 1.6667vw 0.9028vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 0.3472vw;
        border-radius: 0.8333vw;
        border: 2px solid var(--white);
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw;
        text-transform: uppercase;
        cursor: pointer;
        background: transparent;
        height: 3.125vw;
    }

    .banner-bottom-wrapper {
        position: absolute;
        bottom: 2.0833vw;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }


    .banner-slider-item {
        width: 100%;
        height: 50.5556vw;
        position: relative;
        background-size: cover !important;
    }

    .banner-slider-item-content {
        position: absolute;
        bottom: 9.5833vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-slider-item-small-text {
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        text-transform: uppercase;
    }

    .banner-slider-item-big-text {
        margin-top: 1.1111vw;
        color: #FFF;
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 2.7778vw;
        font-style: normal;
        font-weight: 700;
        line-height: 3.4722vw;
        text-transform: uppercase;
        width: 86.1111vw;
    }

 

.breadcrumbs {
	background: var(--color-back-and-stroke);
	margin: 2.0833vw;
}

.breadcrumbs-inner {
	display: inline;
	list-style: none;
}

.breadcrumbs-item {
	display: inline;
}

.breadcrumbs-link {
    color: var(--dark-color-brandbook);
    font-family: "Noto Sans", sans-serif;
    font-size: 0.9028vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5278vw;
	display: inline;
    text-decoration: none;
}

.breadcrumbs-link::after {
    content: "";
    display: inline-block;
    width: 0.4167vw;
    height: 0.4167vw;
    background-image: url('/assets/images/breadcrumb.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0.2431vw;
    margin-bottom: 2px;
}

.breadcrumbs-last::after{
	display: none;
}

.breadcrumbs-last{
    color: #747576;
}


 
    .settings-wrapper {
        width: 100%;
        height: 100%;
        background: var(--back);
        display: none;
        flex-direction: column;
        height: 13.8889vw;
    }

    .settings-wrapper.active {
        display: flex;
    }

    .settings-top {
        padding: 1.5972vw 0;
        border-bottom: 1px solid #8A8A8A;
    }

    .settings-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-top-options {
        display: flex;
        align-items: center;
        gap: 7.5vw;
    }

    .settings-top-option {
        display: flex;
        align-items: center;
        gap: 1.1111vw;
    }

    .settings-top-option-title {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
    }

    .settings-top-option-vars {
        display: flex;
        align-items: center;
        gap: 1.1111vw;
    }

    .settings-top-option-btn {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5556vw;
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-top-option-btn.active {
        padding: 0.4167vw 0.5556vw;
        color: var(--white);
        border-radius: 0.4167vw;
        background: var(--dark-gray-brandbook);
    }

    .option-small-text {
        font-size: 1.25vw;
    }

    .option-medium-text {
        font-size: 1.5278vw;
    }

    .option-big-text {
        font-size: 1.8056vw;
    }

    .full-version-btn {
        display: flex;
        padding: 1.0417vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 1.1111vw;
        border-radius: 0.8333vw;
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .settings-bottom {
        margin-top: 1.5972vw;
    }

    .settings-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-logo {
        width: 3.8194vw;
        height: 4.2361vw;
        object-fit: contain;
    }

    .settings-bottom-btns {
        display: flex;
        align-items: center;
        gap: 1.7361vw;
    }

    .settings-modal-btn {
        display: flex;
        padding: 0.9722vw 1.6667vw 0.9028vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 0.3472vw;
        border-radius: 0.8333vw;
        border: 2px solid var(--dark-color-brandbook);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw;
        text-transform: uppercase;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-btn-menu {
        display: flex;
        padding: 0.8333vw 1.6667vw 0.7639vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 1.1111vw;
        border-radius: 0.8333vw;
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw;
        text-transform: uppercase;
        border: 2px solid var(--dark-color-brandbook);
        cursor: pointer;
    }

    .settings-btn-menu span {
        background-color: white !important;
    }

 
    .language-switcher-item {
        display: flex;
        align-items: center;
        gap: 0.6944vw;
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.25vw;
        text-decoration: none;
    }

    .language-switcher-item img {
        width: 1.25vw;
        height: 1.25vw;
    }

    .language-switcher-item.white {
        color: var(--white);
    }

 
    .header-btn-open {
        display: flex;
        align-items: center;
        padding: 0.8333vw 1.6667vw 0.7639vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 1.1111vw;
        border-radius: 0.8333vw;
        background: var(--white);
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        text-transform: uppercase;
        position: fixed;
        top: 1.5972vw;
        right: var(--offset);
        z-index: 999999;
        border: none;
        outline: none;
        cursor: pointer;
        height: 3.125vw;
    }

    .header-btn-open.active {
        background: var(--gold-color-brandbook);
        color: var(--white);
        display: flex !important;
    }

    .burger-icon {
        width   : 1.9444vw;
        height  : 1.1111vw;
        cursor  : pointer;
        position: relative;
    }

    .burger-icon span {
        background-color: #112822;
        height          : 2px;
        position        : absolute;
        width           : 100%;
        left            : 0;
        transition      : all 0.3s ease;
        border-radius   : 0.6944vw;
    }

    .burger-icon span:first-child {
        top: 0;
    }

    .burger-icon span:nth-child(2) {
        top: 0.5556vw;
    }

    .burger-icon span:last-child {
        top: 1.1111vw;
    }

    .header-btn-open.active .burger-icon span {
        background-color: white;
    }

    .header-btn-open.active .burger-icon span:first-child {
        transform: rotate(45deg);
        top: 0.5556vw;
    }

    .header-btn-open.active .burger-icon span:nth-child(2) {
        opacity: 0;
    }

    .header-btn-open.active .burger-icon span:last-child {
        transform: rotate(-45deg);
        top: 0.5556vw;
    }


    /* Initial state */
    header {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--dark-color-brandbook);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    /* Active state (visible) */
    header.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-top {
        padding: 1.5972vw 0;
        border-bottom: 1px solid #28564A;
    }

    .header-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 10.4167vw;
    }

    .header-nav {
        display: flex;
        align-items: center;
        gap: 1.7361vw;
    }

    .header-nav-item {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-nav-item:hover {
        text-decoration: underline;
    }

    .header-inner {
        display: flex;
        transform: translateY(-100%);
        flex-direction: column;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    header.active .header-inner {
        transform: translateY(0); /* Slide down to visible position */
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-projects {
        margin-top: 3.4722vw;
        display: flex;
        flex-direction: column;
        gap: 1.7361vw;
    }

    .header-projects-title {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        text-transform: uppercase;
    }

    .header-projects-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1.7361vw;
    }

    .header-projects-item {
        display: flex;
        padding: 1.0417vw 1.6667vw 0.9722vw 1.6667vw;
        justify-content: center;
        align-items: center;
        gap: 0.3472vw;
        border-radius: 0.8333vw;
        background: var(--white);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-bottom {
        margin-top: 3.4722vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-bottom-nearest {
        display: flex;
        align-items: center;
        gap: 1.1111vw;
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.25vw;
    }

    .header-bottom-right {
        display: flex;
        align-items: center;
        gap: 3.4722vw;
    }

    .header-socials {
        display: flex;
        align-items: center;
        gap: 1.1111vw;
    }

 
    .container-modal-become-partner {
        width: 60.4167vw;
        border-radius: 1.6667vw;
        background: var(--pink-brandbook);
    }

    .container-modal-become-partner::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32.0965vw;
        height: 19.0219vw;
        background-image: url('/assets/images/partner-bottom-left-bird.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .container-modal-become-partner::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0vw;
        width: 19.2764vw;
        height: 18.3333vw;
        background-image: url('/assets/images/partner-top-right-bird.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top right;
    }

    .become-partner-modal-content {
        padding: 4.1667vw 5.5556vw;
        display: flex;
        flex-direction: column;
        z-index: 99;
    }

    .become-partner-modal-title {
        color: var(--white);
        font-family: Montserrat, sans-serif;
        font-size: 1.6667vw;
        font-style: normal;
        font-weight: 700;
        line-height: 2.2222vw;
        text-transform: uppercase;
    }

    .become-partner-modal-subtitle {
        margin-top: 1.1111vw;
        color: var(--white);
        font-family: "Noto Sans", sans-serif;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.4583vw;
    }

    .become-partner-form {
        margin-top: 1.6667vw;
        display: flex;
        flex-direction: column;
        gap: 1.3889vw;
    }

    .become-partner-form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3889vw;
    }

    .become-partner-form-footer {
        margin-top: 0.3472vw;
        display: flex;
        align-items: center;
        gap: 6.25vw;
    }

    .become-partner-form-footer-policy, .become-partner-form-footer-policy a {
        display: inline;
        color: var(--white);
        font-family: "Noto Sans", sans-serif;
        font-size: 0.7639vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.0417vw;
    }

    .become-partner-form-btn {
        display: flex;
        width: 23.9583vw;
        padding: 1.25vw 2.2222vw;
        justify-content: center;
        align-items: center;
        gap: 0.6944vw;
        flex-shrink: 0;
        border-radius: 1.1111vw;
        background: var(--dark-color-brandbook);
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.5972vw;
        text-transform: uppercase;
        border: none;
        outline: none;
    }

 
    .checkout-icon-link {
        position: fixed;
        right: 6.9444vw;
        bottom: 6.9444vw;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.0417vw;
        background: var(--back);
        border-radius: 50%;
        width: 4.5139vw;
        height: 4.5139vw;
        border: 1px solid gainsboro;

        box-shadow: 0 0.5556vw 1.7361vw rgba(0,0,0,0.25);

        transition: transform .2s, box-shadow .2s;
    }

    .checkout-icon-link:hover {
        transform: scale(1.08);
        box-shadow: 0 0.6944vw 2.4306vw rgba(0,0,0,0.35);
    }

    .checkout-icon-link-inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .checkout-icon-link-count {
        position: absolute;
        top: -0.5556vw;
        right: -0.6944vw;

        min-width: 1.5278vw;
        height: 1.5278vw;

        background: red;
        color: white;

        font-size: 0.8333vw;
        font-weight: bold;

        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 2px 0.4167vw;
    }

    .checkout-icon-link {
        animation: cartPulse 2s infinite;
    }

    @keyframes cartPulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.6); }
        70% { box-shadow: 0 0 0 1.0417vw rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }

    .footer-payments-list {
        display: flex;
        align-items: center;
        gap: 1.3889vw;
    }

    .footer-payments-list img {
        height: 1.5625vw;
    }

    footer {
        border-radius: 1.6667vw 1.6667vw 0vw 0vw;
        background: var(--back);
        padding: 3.4722vw 0 2.5694vw 0;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 4.5139vw;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 4.5139vw;
    }

    .footer-top-columns {
        display: flex;
        align-items: flex-start;
        gap: 7.0833vw;
    }

    .footer-top-column {
        display: flex;
        flex-direction: column;
        gap: 1.3889vw;
    }

    .footer-top-column-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.1111vw;
    }

    .footer-top-column-items {
        display: flex;
        flex-direction: column;
        gap: 0.9722vw;
    }

    .footer-top-column-item {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.3194vw;
        text-transform: uppercase;
        text-decoration: none;
    }

    .text-lowercase {
        text-transform: lowercase;
    }

    .footer-top-column-item:hover {
        text-decoration: underline;
    }

    .footer-top-boxes {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-top-boxes-container {
        display: flex;
        align-items: flex-start;
        gap: 6.4583vw;
    }

    .footer-top-icon-box {
        display: flex;
        flex-direction: column;
        gap: 1.3889vw;
    }

    .footer-top-icon-box-title {
        display: flex;
        align-items: center;
        gap: 0.5556vw;
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: 0.6944vw;
        font-style: normal;
        font-weight: 600;
        text-transform: uppercase;
    }

    .footer-top-icon-box-title img {
        width: 1.8056vw;
        height: 1.8056vw;
        object-fit: contain;
    }

    .footer-top-icon-box-text {
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: 1.0417vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5278vw;
        text-decoration: none;
    }

    .footer-top-icon-box-text.link:hover {
        text-decoration: underline;
    }

    .footer-socials {
        display: flex;
        flex-direction: column;
        gap: 1.3889vw;
    }

    .footer-socials-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.1111vw;
    }

    .footer-socials-list {
        display: flex;
        align-items: center;
        gap: 1.1111vw;
    }

    .footer-social img {
        width: 2.2222vw;
        height: 2.2222vw;
        object-fit: contain;
    }

    .footer-bottom {
        padding-top: 1.875vw;
        border-top: 1px dashed #DBDBDB;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-bottom-link {
        color: var(--dark-color-brandbook);
        font-family: Montserrat, sans-serif;
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.1111vw;
        text-decoration: none;
    }

    .footer-bottom-link.hover:hover {
        text-decoration: underline;
    }

 
    .page-404 {
        position: relative;
    }

    .page-404-bird {
        position: absolute;
        right: 19.3056vw;
        top: -5.5556vw;
    }

    .page-404-flower-left {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .page-404-flower-right {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .page-404-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 6.25vw;
    }

    .page-404-img {
        width: 29.2361vw;
        height: 10.4861vw;
        object-fit: contain;
        margin-top: 5.9028vw;
    }

    .page-404-title {
        margin-top: 4.5139vw;
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 2.2222vw;
        font-style: normal;
        font-weight: 700;
        line-height: 3.3333vw;
        text-transform: uppercase;
    }

    .page-404-subtitle {
        margin-top: 1.3889vw;
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.6667vw;
        text-transform: uppercase;
    }

    .page-404-btn {
        margin-top: 2.7778vw;
    }

    body {
        background: var(--dark-color-brandbook);
    }

    .breadcrumbs-link {
        color: var(--white);
    }

    .breadcrumbs-last {
        color: #C5C5C5;
    }

    footer {
        border-radius: 0;
    }

    .banner-slider-wrapper, .banner-bottom-wrapper {
        display: none !important;
    }

    .banner-header-wrapper {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        padding: 1.0417vw 0;
    }

 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.6875vw * ((320 - 320 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { @font-face {
    font-family: 'KyivType Sans';
    src: url('/assets/KyivType-VariableGX/KyivTypeSans-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Serif';
    src: url('/assets/KyivType-VariableGX/KyivTypeSerif-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

@font-face {
    font-family: 'KyivType Titling';
    src: url('/assets/KyivType-VariableGX/KyivTypeTitling-VarGX.ttf') format('truetype-variations');
    font-weight: 1 1000; /* Supports all weights */
    font-style: normal;
}

:root {
	--column-width: calc(90.625vw * var(--coef-w));
	--offset: calc(4.6875vw * var(--coef-w));
    --black: #343131;
    --white: #FFFFFF;
    --back:  #FAF9F4;
    --back2: #F8EAE9;
    --dark-color-brandbook: #112822;
    --gold-color-brandbook: #D1B583;
    --pink-brandbook: #CEADB4;
    --light-brown-brandbook: #F3E8D2;
    --dark-gray-brandbook: #434C51;
    --link: #234FFC;
}

body, input, textarea, select {
	font-family: 'Arial', sans-serif;
	font-size: calc(5vw * var(--coef-w));
	-webkit-text-size-adjust: none;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

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

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

.mb {
    margin-bottom: calc(18.75vw * var(--coef-w));
}

.btn-primary-gold {
    display: flex;
    padding: calc(4.375vw * var(--coef-w)) calc(10vw * var(--coef-w));
    justify-content: center;
    align-items: center;
    gap: calc(3.125vw * var(--coef-w));
    flex-shrink: 0;
    border-radius: calc(5vw * var(--coef-w));
    background: var(--gold-color-brandbook);
    color: var(--white);
    font-family: "KyivType Sans";
    font-size: calc(4.0625vw * var(--coef-w));
    font-style: normal;
    font-weight: 700;
    line-height: calc(7.1875vw * var(--coef-w));
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus
{
    outline: none;
}

.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}

.slick-track:after
{
    clear: both;
}

.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}

.slick-slide img
{
    display: block;
}

.slick-slide.slick-loading img
{
    display: none;
}

.slick-slide.dragging img
{
    pointer-events: none;
}

.slick-initialized .slick-slide
{
    display: block;
}

.slick-loading .slick-slide
{
    visibility: hidden;
}

.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.contact-form-input {
    width: 100% !important;
    padding: calc(4.375vw * var(--coef-w)) calc(3.75vw * var(--coef-w));
    border-radius: calc(3.75vw * var(--coef-w));
    background: var(--white);
    color: var(--black);
    font-family: "Noto Sans", sans-serif;
    font-size: calc(3.4375vw * var(--coef-w));
    font-style: normal;
    font-weight: 500;
    line-height: calc(5.3125vw * var(--coef-w));
    border: none;
}

/* MODALS */

.no-scroll {
    overflow: hidden;
}

.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: calc(2.5vw * var(--coef-w));
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(6.25vw * var(--coef-w)) var(--offset);
    position: absolute;
    top: calc(18.75vw * var(--coef-w));
    left: 50%;
    transform: translateX(-50%);
}

.input-error.color-red {
    color: #FF151F;
}

.form-answer.error {
    color: #FF151F;
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: calc(7.5vw * var(--coef-w));
    right: calc(7.5vw * var(--coef-w));
    z-index: 999;
}

.closemodal svg {
    width: calc(5vw * var(--coef-w));
    height: calc(5vw * var(--coef-w));
}

#screen {
    transition: transform 0.5s ease, height 0.5s ease, width 0.5s ease;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-top: calc(2.5vw * var(--coef-w));
}

.content ul li {
    position: relative;
    padding-left: calc(6.875vw * var(--coef-w));
    margin-bottom: calc(1.5625vw * var(--coef-w));
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(1.875vw * var(--coef-w));
    width: calc(4.375vw * var(--coef-w));
    height: calc(6.875vw * var(--coef-w));
    background-image: url('/assets/images/check-svg.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: calc(1.875vw * var(--coef-w));
    padding: calc(1.5625vw * var(--coef-w));
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: calc(1.5625vw * var(--coef-w));
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.contact-tile-copy.show-tooltip .tooltip {
    visibility: visible;
    opacity: 1;
}

.desktop {
    display: none !important;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: calc(1.875vw * var(--coef-w));
}

.error-message {
    color: red;
    font-size: calc(2.8125vw * var(--coef-w));
    display: none;
}

.dis-color-blue header,
.dis-color-blue footer,
.dis-color-blue .body-wrapper,
.dis-color-blue {
    background-color: #bde9f9;
}

.dis-color-grey header,
.dis-color-grey footer,
.dis-color-grey .body-wrapper,
.dis-color-grey {
    background-color: transparent;
}

.dis-color-yellow header,
.dis-color-yellow footer,
.dis-color-yellow .body-wrapper,
.dis-color-yellow {
    background-color: #f2ecce;
}

.dis-active header > *,
.dis-active footer > *,
.dis-active .body-wrapper > * {
    filter: grayscale(1);
}

.dis-active .page-404-img {
    filter: invert(1);
}

.dis-active .article-page-wrapper,
.dis-active .wave-top,
.dis-active .yellow-wave,
.dis-active .wave-bottom,
.dis-active .index-wave,
.dis-active .expertise-section-wrapper,
.dis-active .projects-list-item {
    background: transparent !important;
}

.dis-active .page-404-title,
.dis-active .page-404-subtitle,
.dis-active .banner-header-modal-btn,
.dis-active .reasons-section-title,
.dis-active .reasons-section-subtitle,
.dis-active .mission-section-highlight,
.dis-active .mission-section-text,
.dis-active .banner-slider-item-small-text,
.dis-active .banner-slider-item-big-text,
.dis-active .header-btn-open,
.dis-active .language-switcher-item,
.dis-active .header-bottom-nearest,
.dis-active .header-projects-title,
.dis-active .header-nav-item,
.dis-active .footer-socials-title,
.dis-active .footer-top-column-title {
    color: var(--dark-color-brandbook) !important;
}

.dis-active .photo-section-img {
    display: none !important;
}

.dis-photo-disabled .text-section-img {
    display: none !important;
}

.dis-photo-disabled img {
    opacity: 0 !important;
    pointer-events: none !important;
}

.dis-photo-disabled .banner-slider-item {
    background: transparent !important;
} 
    .scroll-down {
        /* position: absolute;
         left: calc(15vw * var(--coef-w));
         bottom: calc(15vw * var(--coef-w));*/
        opacity: 1;
        z-index: 3;
        -webkit-transition: .4s;
        transition: .4s;
        -webkit-transition-delay: .7s;
        transition-delay: .7s;
        cursor: pointer;
    }

    .scroll-down .icon {
        display: inline-block;
        vertical-align: middle;
    }

    .scroll-down .icon div {
        width: calc(8.75vw * var(--coef-w));
        height: calc(14.375vw * var(--coef-w));
        border-radius: calc(4.0625vw * var(--coef-w));
        background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
        background-image: linear-gradient(0deg, #ddd, #fff);
    }

    .scroll-down .icon span {
        width: calc(2.1875vw * var(--coef-w));
        height: calc(2.1875vw * var(--coef-w));
        background-color: #434C51;
        position: absolute;
        left: calc(3.4375vw * var(--coef-w));
        top: calc(3.4375vw * var(--coef-w));
        border-radius: 100%;
        -webkit-animation-name: Mouse;
        animation-name: Mouse;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    @-webkit-keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }

    @keyframes Mouse {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }

        50% {
            opacity: 1
        }

        65% {
            -webkit-transform: translateY(18px);
            transform: translateY(18px);
            opacity: 0
        }

        68% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        69% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0
        }

        75% {
            opacity: 1
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1
        }
    }


    .banner-slider-dots-box {
        justify-content: center;
        display: flex;
        padding: calc(3.125vw * var(--coef-w)) calc(5vw * var(--coef-w));
        align-items: center;
        gap: calc(4.375vw * var(--coef-w));
        border-radius: calc(31.25vw * var(--coef-w));
        background: white;
        width: fit-content;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
    }

    .slider-dots button {
        width: calc(6.25vw * var(--coef-w));
        height: calc(6.25vw * var(--coef-w));
        border-radius: 50%;
        display: block;
        border: 0;
        background-color: transparent;
        margin: 0 calc(3.125vw * var(--coef-w));
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        z-index: 0;
        transition: .3s all;
    }

    .slider-dots button:after {
        content: "";
        display: block;
        width: calc(1.5625vw * var(--coef-w));
        height: calc(1.5625vw * var(--coef-w));
        border-radius: 50%;
        background-color: #C8C8C8;
    }

    .banner-slider-dots-box .slick-active button:after {
        content: none;
        display: none;
    }

    .banner-slider-dots-box .slick-active button:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        border: 2px solid rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }

    .circle-bg {
        fill: none;
        stroke: rgba(0, 0, 0, 0.05);
        stroke-width: 2;
    }

    .circle-go {
        fill: none;
        stroke: rgb(67, 76, 81);
        stroke-width: 2;
        stroke-linecap: round;
        animation: progress 5s linear forwards;
        stroke-dasharray: 56.52; /* 2 * π * radius (9) */
        stroke-dashoffset: 56.52;
        transform-origin: center; /* Ensure proper rotation */
        transform: rotate(-90deg);
    }

    .circle-tx {
        fill: #000;
        font: bold calc(3.125vw * var(--coef-w)) 'Arial';
        text-anchor: middle;
    }

    @keyframes progress {
        from {
            stroke-dashoffset: 56.52;
        }
        to {
            stroke-dashoffset: 0;
        }
    }

    .dot {
        fill: #000; /* Same as the color used in the button dot */
        stroke: none;
    }


    .banner-wrapper {
        position: relative;
    }

    .banner-header-wrapper {
        position: absolute;
        top: calc(4.6875vw * var(--coef-w));
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: calc(50vw * var(--coef-w));
        z-index: 999;
    }

    .banner-header-logo {
        width: calc(17.1875vw * var(--coef-w));
        height: calc(19.0625vw * var(--coef-w));
        object-fit: contain;
    }

    .banner-header-inner-right {
        display: flex;
        align-items: center;
        gap: calc(10.9375vw * var(--coef-w));
    }

    .banner-header-eye-btn {
        width: calc(14.0625vw * var(--coef-w));
        height: calc(14.0625vw * var(--coef-w));
        border-radius: calc(3.125vw * var(--coef-w));
        background: var(--pink-brandbook);
        display: flex;
        padding: calc(2.8125vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        cursor: pointer;
        display: none;
    }

    .banner-header-modal-btn {
        display: flex;
        padding: calc(2.1875vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(1.5625vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        border: 2px solid var(--white);
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
        cursor: pointer;
        background: transparent;
        height: calc(14.0625vw * var(--coef-w));
        display: none;
    }

    .banner-bottom-wrapper {
        position: absolute;
        bottom: calc(9.375vw * var(--coef-w));
        left: 0;
        right: 0;
        z-index: 999;
    }

    .banner-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }


    .banner-slider-item {
        width: 100%;
        height: calc(150vw * var(--coef-w));
        position: relative;
        background-size: cover !important;
    }

    .banner-slider-item-content {
        position: absolute;
        bottom: calc(43.125vw * var(--coef-w));
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-slider-item-small-text {
        color: var(--white);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
    }

    .banner-slider-item-big-text {
        margin-top: calc(5vw * var(--coef-w));
        color: #FFF;
        text-align: center;
        font-family: "KyivType Sans";
        font-size: calc(6.25vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(9.375vw * var(--coef-w));
        text-transform: uppercase;
        width: 100%;
    }

 

.breadcrumbs {
    background: var(--color-back-and-stroke);
    margin: calc(9.375vw * var(--coef-w)) 0;
}

.breadcrumbs-inner {
	display: inline;
	list-style: none;
}

.breadcrumbs-item {
	display: inline;
}

.breadcrumbs-link {
    color: var(--dark-color-brandbook);
    font-family: "Noto Sans", sans-serif;
    font-size: calc(3.4375vw * var(--coef-w));
    font-style: normal;
    font-weight: 500;
    line-height: calc(4.6875vw * var(--coef-w));
    display: inline;
    text-decoration: none;
}

.breadcrumbs-link::after{
	content: "";
    display: inline-block;
    width: calc(1.875vw * var(--coef-w));
    height: calc(1.875vw * var(--coef-w));
    background-image: url('/assets/images/breadcrumb.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 calc(1.0938vw * var(--coef-w));
    margin-bottom: 2px;
}

.breadcrumbs-last::after{
	display: none;
}

.breadcrumbs-last{
    color: #747576;
}


 
    .settings-wrapper {
        width: 100%;
        height: 100%;
        background: var(--back);
        display: none;
        flex-direction: column;
        height: calc(93.75vw * var(--coef-w));
    }

    .settings-wrapper.active {
        display: flex;
    }

    .settings-top {
        padding: calc(7.1875vw * var(--coef-w)) 0;
        border-bottom: 1px solid #8A8A8A;
    }

    .settings-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-top-options {
        display: flex;
        align-items: center;
        gap: calc(33.75vw * var(--coef-w));
    }

    .settings-top-option {
        display: flex;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
    }

    .settings-top-option-title {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: calc(5vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.625vw * var(--coef-w));
    }

    .settings-top-option-vars {
        display: flex;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
    }

    .settings-top-option-btn {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: calc(5.625vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.625vw * var(--coef-w));
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-top-option-btn.active {
        padding: calc(1.875vw * var(--coef-w)) calc(2.5vw * var(--coef-w));
        color: var(--white);
        border-radius: calc(1.875vw * var(--coef-w));
        background: var(--dark-gray-brandbook);
    }

    .option-small-text {
        font-size: calc(5.625vw * var(--coef-w));
    }

    .option-medium-text {
        font-size: calc(6.875vw * var(--coef-w));
    }

    .option-big-text {
        font-size: calc(8.125vw * var(--coef-w));
    }

    .full-version-btn {
        display: flex;
        padding: calc(4.6875vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .settings-bottom {
        margin-top: calc(7.1875vw * var(--coef-w));
    }

    .settings-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .settings-logo {
        width: calc(17.1875vw * var(--coef-w));
        height: calc(19.0625vw * var(--coef-w));
        object-fit: contain;
    }

    .settings-bottom-btns {
        display: flex;
        align-items: center;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .settings-modal-btn {
        display: flex;
        padding: calc(4.375vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) calc(4.0625vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(1.5625vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        border: 2px solid var(--dark-color-brandbook);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
        outline: none;
        background: transparent;
        cursor: pointer;
    }

    .settings-btn-menu {
        display: flex;
        padding: calc(3.75vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) calc(3.4375vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--dark-color-brandbook);
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
        border: 2px solid var(--dark-color-brandbook);
        cursor: pointer;
    }

    .settings-btn-menu span {
        background-color: white !important;
    }

 
    .language-switcher-item {
        display: flex;
        align-items: center;
        gap: calc(3.125vw * var(--coef-w));
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.625vw * var(--coef-w));
        text-decoration: none;
    }

    .language-switcher-item img {
        width: calc(5.625vw * var(--coef-w));
        height: calc(5.625vw * var(--coef-w));
    }

 
    .header-btn-open {
        display: flex;
        align-items: center;
        padding: calc(1.875vw * var(--coef-w)) calc(3.75vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
        border-radius: calc(2.5vw * var(--coef-w));
        background: var(--white);
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: calc(3.125vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(4.375vw * var(--coef-w));
        text-transform: uppercase;
        position: fixed;
        top: calc(4.6875vw * var(--coef-w));
        right: var(--offset);
        z-index: 999999;
        border: none;
        outline: none;
        cursor: pointer;
        height: calc(10.625vw * var(--coef-w));
    }

    .header-btn-open.active {
        background: var(--gold-color-brandbook);
        color: var(--white);
        display: flex !important;
    }

    .burger-icon {
        width   : calc(5.3125vw * var(--coef-w));
        height  : calc(5vw * var(--coef-w));
        cursor  : pointer;
        position: relative;
    }

    .burger-icon span {
        background-color: #112822;
        height          : 2px;
        position        : absolute;
        width           : 100%;
        left            : 0;
        transition      : all 0.3s ease;
        border-radius   : calc(3.125vw * var(--coef-w));
    }

    .burger-icon span:first-child {
        top: 0;
    }

    .burger-icon span:nth-child(2) {
        top: calc(1.875vw * var(--coef-w));
    }

    .burger-icon span:last-child {
        top: calc(3.75vw * var(--coef-w));
    }

    .header-btn-open.active .burger-icon span {
        background-color: white;
    }

    .header-btn-open.active .burger-icon span:first-child {
        transform: rotate(45deg);
        top: calc(2.5vw * var(--coef-w));
    }

    .header-btn-open.active .burger-icon span:nth-child(2) {
        opacity: 0;
    }

    .header-btn-open.active .burger-icon span:last-child {
        transform: rotate(-45deg);
        top: calc(2.5vw * var(--coef-w));
    }


    /* Initial state */
    header {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--dark-color-brandbook);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    /* Active state (visible) */
    header.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-top {
        padding: calc(6.25vw * var(--coef-w)) 0;
        border-bottom: 1px solid #28564A;
    }

    .header-top-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin-right: calc(0vw * var(--coef-w));
        gap: calc(6.25vw * var(--coef-w));
    }

    header.active .banner-header-modal-btn {
        display: flex;
        width: 100%;
        text-decoration: none;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(5vw * var(--coef-w));
    }

    .header-nav-item {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(4.6875vw * var(--coef-w));
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-nav-item:hover {
        text-decoration: underline;
    }

    .header-inner {
        display: flex;
        transform: translateY(-100%);
        flex-direction: column;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* Delay visibility */
    }

    header.active .header-inner {
        transform: translateY(0); /* Slide down to visible position */
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s; /* No delay when showing */
    }

    .header-projects {
        margin-top: calc(4.6875vw * var(--coef-w));
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
    }

    .header-projects-title {
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.625vw * var(--coef-w));
        text-transform: uppercase;
    }

    .header-projects-list {
        display: flex;
        flex-wrap: wrap;
        gap: calc(2.5vw * var(--coef-w));
        max-height: calc(18.75vw * var(--coef-w));
        overflow: auto;
    }

    .header-projects-item {
        display: flex;
        padding: calc(3.75vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(1.5625vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--white);
        color: var(--dark-color-brandbook);
        text-align: center;
        font-family: "KyivType Sans";
        font-size: calc(2.8125vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(4.0625vw * var(--coef-w));
        text-transform: uppercase;
        text-decoration: none;
    }

    .header-bottom {
        margin-top: calc(4.6875vw * var(--coef-w));
        display: flex;
        flex-direction: column;
        gap: calc(4.0625vw * var(--coef-w));
    }

    .header-bottom-nearest {
        display: flex;
        align-items: center;
        gap: calc(3.125vw * var(--coef-w));
        color: var(--white);
        font-family: "KyivType Sans";
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.625vw * var(--coef-w));
    }

    .header-bottom-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-socials {
        display: flex;
        align-items: center;
        gap: calc(3.75vw * var(--coef-w));
    }

 


 
    .checkout-icon-link {
        position: fixed;
        right: calc(15.625vw * var(--coef-w));
        bottom: calc(15.625vw * var(--coef-w));
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: calc(4.6875vw * var(--coef-w));
        background: var(--back);
        border-radius: 50%;
        width: calc(17.1875vw * var(--coef-w));
        height: calc(17.1875vw * var(--coef-w));
        border: 1px solid gainsboro;

        box-shadow: 0 calc(2.5vw * var(--coef-w)) calc(7.8125vw * var(--coef-w)) rgba(0,0,0,0.25);

        transition: transform .2s, box-shadow .2s;
    }

    .checkout-icon-link:hover {
        transform: scale(1.08);
        box-shadow: 0 calc(3.125vw * var(--coef-w)) calc(10.9375vw * var(--coef-w)) rgba(0,0,0,0.35);
    }

    .checkout-icon-link-inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .checkout-icon-link-count {
        position: absolute;
        top: calc(-2.5vw * var(--coef-w));
        right: calc(-2.1875vw * var(--coef-w));

        min-width: calc(4.6875vw * var(--coef-w));
        height: calc(4.6875vw * var(--coef-w));

        background: red;
        color: white;

        font-size: calc(3.75vw * var(--coef-w));
        font-weight: bold;

        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 2px calc(1.25vw * var(--coef-w));
    }

    .checkout-icon-link {
        animation: cartPulse 2s infinite;
    }

    @keyframes cartPulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.6); }
        70% { box-shadow: 0 0 0 calc(4.6875vw * var(--coef-w)) rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }

    .footer-payments-list {
        display: flex;
        align-items: center;
        gap: calc(3.75vw * var(--coef-w));
    }

    .footer-payments-list img {
        height: calc(5.4688vw * var(--coef-w));
    }

    footer {
        border-radius: calc(7.5vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w));
        background: var(--back);
        padding: calc(7.8125vw * var(--coef-w)) 0;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .footer-top-columns {
        display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
    }

    .footer-top-column {
        display: flex;
        flex-direction: column;
        gap: calc(3.125vw * var(--coef-w));
    }

    .footer-top-column-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5vw * var(--coef-w));
    }

    .footer-top-column-items {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
    }

    .footer-top-column-item {
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.9375vw * var(--coef-w));
        text-transform: uppercase;
        text-decoration: none;
    }

    .text-lowercase {
        text-transform: lowercase;
    }

    .footer-top-column-item:hover {
        text-decoration: underline;
    }

    .footer-top-boxes {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .footer-top-boxes-container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .footer-top-icon-box {
        display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
    }

    .footer-top-icon-box-title {
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        color: var(--dark-color-brandbook);
        font-family: "KyivType Sans";
        font-size: calc(3.125vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        text-transform: uppercase;
    }

    .footer-top-icon-box-title img {
        width: calc(8.125vw * var(--coef-w));
        height: calc(8.125vw * var(--coef-w));
        object-fit: contain;
    }

    .footer-top-icon-box-text {
        color: var(--dark-color-brandbook);
        font-family: "Noto Sans", sans-serif;
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(5vw * var(--coef-w));
        text-decoration: none;
    }

    .footer-top-icon-box-text.link:hover {
        text-decoration: underline;
    }

    .footer-socials {
        display: flex;
        flex-direction: column;
        gap: calc(3.125vw * var(--coef-w));
    }

    .footer-socials-title {
        color: #B5B5B5;
        font-family: "Noto Sans", sans-serif;
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5vw * var(--coef-w));
    }

    .footer-socials-list {
        display: flex;
        align-items: center;
        gap: calc(5vw * var(--coef-w));
    }

    .footer-social img {
        width: calc(10vw * var(--coef-w));
        height: calc(10vw * var(--coef-w));
        object-fit: contain;
    }

    .footer-bottom {
        padding-top: calc(8.4375vw * var(--coef-w));
        border-top: 1px dashed #DBDBDB;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: calc(3.125vw * var(--coef-w));
        justify-content: space-between;
    }

    .footer-bottom-link {
        color: var(--dark-color-brandbook);
        font-family: Montserrat, sans-serif;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(5vw * var(--coef-w));
        text-decoration: none;
    }

    .footer-bottom-link.hover:hover {
        text-decoration: underline;
    }

 


 }