@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* FONTS */
    --font-primary: "Poppins";
    --font-secondary: "Poppins";
    --font-tertiary: "Work Sans";

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-light: 300;
    --font-weight-book: "Book";
    --font-weight-italic: "Italic";
    --font-weight-bold-italic: "Bold Italic";
    --font-weight-semibold-italic: "Semibold Italic";
    --font-weight-medium-italic: "Medium Italic";
    --font-weight-light-italic: "Light Italic";

    --desktop-h1-font-family: var(--font-primary);
    --desktop-h1-weight: var(--font-weight-semibold);
    --desktop-h1-size: 80px;
    --desktop-h1-line-height: 112px;
    --desktop-h2-font-family: var(--font-primary);
    --desktop-h2-weight: var(--font-weight-semibold);
    --desktop-h2-size: 48px;
    --desktop-h2-line-height: 54px;
    --desktop-h3-font-family: var(--font-secondary);
    --desktop-h3-weight: var(--font-weight-regular);
    --desktop-h3-size: 32px;
    --desktop-h3-line-height: 40px;
    --desktop-h4-font-family: var(--font-secondary);
    --desktop-h4-weight: var(--font-weight-semibold);
    --desktop-h4-size: 24px;
    --desktop-h4-line-height: 30px;
    --desktop-h5-font-family: var(--font-tertiary);
    --desktop-h5-weight: var(--font-weight-bold);
    --desktop-h5-size: 18px;
    --desktop-h5-line-height: 24px;
    --desktop-h6-font-family: var(--font-tertiary);
    --desktop-h6-weight: var(--font-weight-semibold);
    --desktop-h6-size: 16px;
    --desktop-h6-line-height: 20px;

    --mobile-h1-font-family: var(--font-primary);
    --mobile-h1-weight: var(--font-weight-semibold);
    --mobile-h1-size: 48px;
    --mobile-h1-line-height: 60px;
    --mobile-h2-font-family: var(--font-primary);
    --mobile-h2-weight: var(--font-weight-semibold);
    --mobile-h2-size: 32px;
    --mobile-h2-line-height: 40px;
    --mobile-h3-font-family: var(--font-secondary);
    --mobile-h3-weight: var(--font-weight-regular);
    --mobile-h3-line-height: 30px;
    --mobile-h3-size: 24px;
    --mobile-h4-font-family: var(--font-secondary);
    --mobile-h4-weight: var(--font-weight-semibold);
    --mobile-h4-size: 20px;
    --mobile-h4-line-height: 25px;
    --mobile-h5-font-family: var(--font-tertiary);
    --mobile-h5-weight: var(--font-weight-bold);
    --mobile-h5-size: 18px;
    --mobile-h5-line-height: 20px;
    --mobile-h6-font-family: var(--font-tertiary);
    --mobile-h6-weight: var(--font-weight-semibold);
    --mobile-h6-size: 16px;
    --mobile-h6-line-height: 20px;



    --paragraph-font-family: var(--font-tertiary);
    --paragraph-weight: var(--font-weight-regular);
    --paragraph-size: 16px;
    --paragraph-line-height: 24px;
    --paragraph-small-font-family: var(--font-tertiary);
    --paragraph-small-weight: var(--font-weight-regular);
    --paragraph-small-size: 14px;
    --paragraph-small-line-height: 21px;

    --button-font-family: var(--font-tertiary);
    --button-weight: var(--font-weight-semibold);
    --button-size: var(--paragraph-size);
    --button-line-height: var(--paragraph-line-height);
    --input-font-family: var(--font-tertiary);
    --input-weight: var(--font-weight-semibold);
    --input-size: var(--paragraph-size);
    --input-line-height: var(--paragraph-line-height);
    --link-font-family: var(--font-tertiary);
    --link-weight: var(--font-weight-regular);
    --link-size: var(--paragraph-size);
    --link-line-height: var(--paragraph-line-height);
    --navbar-nav-link-padding-x: 1rem !important;



    /* BRAND COLORS */
    --main-brand: #192853;
    --accents-1: #6d87c2;
    --accents-2: #e5e2dd;
    --accents-3: #a58d67;
    --neutrals-white: #ffffff;
    --neutrals-light-grey: #f2f2f2;
    --neutrals-medium-grey: #d9d9d9;
    --neutrals-dark-grey: #989898;
    --neutrals-black: #0F0F0F;
    --ui-positive: #009681;
    --ui-negative: #d13346;
    --ui-warning: #e7aa35;

    /* FILE DATA */
    --border-radius-interactives: 0px;
    --border-radius-cards: 0px;
    --desktop-side-padding: 120px;
    --mobile-side-padding: 24px;
    --desktop-gutter: 32px;
    --mobile-gutter: 16px;

}


.line {
    height: 64px;
    width: 1px;
    background-color: rgba(31, 31, 31, 0.5);
}

.f-ss {
    background-image: url(../src/images/v882batch2-kul-03\ 1.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

body {
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    color: var(--neutrals-black);
    margin-top: 88px;
}

h1 {
    font-size: var(--desktop-h1-size);
    line-height: var(--desktop-h1-line-height);
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: var(--desktop-h1-font-family);

}

h2 {
    font-size: var(--desktop-h2-size);
    line-height: var(--desktop-h2-line-height);
    font-family: var(--desktop-h2-font-family);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--neutrals-black);
}

h3 {
    font-family: var(--desktop-h3-font-family);
    font-size: var(--desktop-h3-size);
    font-weight: var(--desktop-h3-weight);
    line-height: var(--desktop-h3-line-height);
    color: var(--neutrals-black);
}

h4 {
    font-family: var(--desktop-h4-font-family);
    font-size: var(--desktop-h4-size);
    line-height: var(--desktop-h4-line-height);
    font-weight: var(--desktop-h4-weight);
    color: var(--neutrals-black);
}

h5 {
    font-family: var(--desktop-h5-font-family);
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
    color: #2C3038;
}

h6 {
    font-family: var(--desktop-h6-font-family);
    font-size: var(--desktop-h6-size);
    line-height: var(--desktop-h6-line-height);
    font-weight: var(--desktop-h6-weight);
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 18px;
    color: #8E8E8E;
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
    transition: all 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.navbar-nav .nav-link:hover {
    color: var(--accents-3);
}

.navbar-nav .nav-link.active {
    color: #0F0F0F;
}

nav a.navbar-brand {
    font-size: var(--desktop-h2-line-height);
    line-height: var(--logo-line-height);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children .nav-link::after {
    content: '';
    background-image: url(../assets/icons/icon-drop.svg);
    width: 12px;
    height: 7px;
    display: block;
    background-repeat: no-repeat;
    position: relative;
    right: 0;
    top: 40%;
    transition: all 0.3s;
}

.menu-item-has-children .nav-link.active::after {
    background-image: url(../assets/icons/icon-drop-assets-3.svg);
}

.menu-item-has-children.active .sub-menu .nav-link::after,
.menu-item-has-children .sub-menu .nav-link::after {
    display: none;
}

.menu-item-has-children.active .nav-link::after {
    content: '';
    background-image: url(../assets/icon-down-green.svg);
    width: 12px;
    height: 7px;
    display: block;
    background-repeat: no-repeat;
    position: relative;
    right: 0;
    top: 40%;
    transition: all 0.3s;
}

.sub-menu {
    position: absolute;
    z-index: 9999;
    background: #fff;
    list-style: none;
    padding: 15px;
    font-size: 17px;
    display: none;
    box-shadow: 0px 4px 15px 0px #00000026;
    text-align: left;
    flex-direction: column;
    width: max-content;
}


.menu-item-has-children:hover .sub-menu {
    display: flex;
}

.navbar-nav .active .sub-menu .nav-link {
    color: var(--neutrals-black);
    border-bottom: unset !important;
    text-decoration: unset;
}

.language-drop {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    margin-left: 1rem;
    color: #8E8E8E;
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    font-family: var(--font-primary);
}

.language-drop:hover {
    color: var(--neutrals-black) !important;
}

.header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
}

#language_dropdown {
    /* order: 2; */

    margin-left: 1rem;
    font-size: var(--input-size);
    line-height: var(--input-line-height);
    font-family: var(--font-tertiary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
}

#language_dropdown .dropdown-menu {
    min-width: max-content;
    width: 100%;

    margin-top: 0.6rem !important;
    border: 1px solid #E3E3E3
    box-shadow: 4px 8px 16px 0px #00000014;
    border-radius: 16px;
}
#language_dropdown .dropdown-menu a{
    font-family: 'Poppins';
font-weight: 400;
font-size: 18px;
line-height: 100%;
color: #0F0F0F;
text-align: center;
padding: 5px 20px;
text-transform: uppercase;
}

#language_dropdown #languageSwitcher {
    color: var(--neutrals-darkgrey);
    font-weight: var(--font-weight-semibold);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    color: #8E8E8E;
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    font-family: var(--font-primary);
    text-transform: capitalize;
}

#language_dropdown .dropdown-item {
    padding: 4px 6px;
    min-width: 100%;
}

#language_dropdown .dropdown-toggle::after {
    content: url(../images/arrow-bottom.svg);
    border: unset;
    vertical-align: 0.1rem;
    font-size: 0.5rem;
}

.anim-block-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    max-width: 906px;
}

.anim-block-header img {
    height: auto;
    width: 100%;
    object-fit: cover;


}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        /* ← можеш змінити */
    }

    100% {
        transform: scale(1);
    }
}


.asp-6-7 {
    aspect-ratio: 6/7;
    width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-toggler,
.soc-btn {
    border: unset;
    box-shadow: 0px 4px 10px 0px #00000014;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-brand);
}

.soc-btn {
    border: 2px solid var(--accents-2);
    transition: all 0.3s ease-in-out;
}

.soc-btn i.bi {
    color: var(--accents-2);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.soc-btn:hover {
    background-color: var(--accents-2);
    opacity: 1;

}

.soc-btn:hover i.bi {
    color: var(--neutrals-white);
}

.avatar-circle {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accents-2);
    border-radius: 100px;
}

.avatar-circle img {
    border-radius: 100px;
}

.btn {
    background-color: #FCE500;
    color: #0F0F0F;
    font-weight: 400;
    padding: 20px 22px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--button-font-family);
    border-radius: 16px;
    min-width: 301px;
}

.btn:hover {
    background-color: #96989C;
    color: var(--neutrals-white);
    border-color: #96989C;
    opacity: 1;
}

.btn-outline {
    background-color: unset;
    color: var(--accents-2);
    border: 1px solid var(--accents-2);
}

.btn-outline:hover {
    background-color: var(--accents-2);
    color: var(--neutrals-white);
    border: 2px solid var(--accents-2);
}

.btn-outline i.bi {
    transition: all 0.3s ease-in-out;
}

.btn-outline:hover i.bi {
    color: var(--neutrals-white);
}

.btn-white {
    box-shadow: 0px 4px 10px 0px #00000014;
    background-color: var(--neutrals-white);
    color: var(--main-brand);
}

.btn-white:hover {
    background-color: var(--neutrals-mediumgrey);
    color: var(--main-brand);
}

.btn-outline-white {
    box-shadow: 0px 4px 10px 0px #00000014;
    color: var(--neutrals-white);
    border: 3px solid var(--neutrals-white);
    background-color: unset;
}

.btn-outline-white:hover {
    background-color: unset;
    border: 3px solid var(--neutrals-black);
    color: var(--neutrals-black);
}

.btn-product {
    background: unset;
    color: var(--main-brand);
    padding: 0;
    line-height: var(--link-line-height);
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    border: unset;
}

.btn-product:hover {
    background: unset;
    color: var(--main-brand);
}

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

.text-brand {
    color: var(--main-brand);
}



.bg-light-grey {
    background-color: var(--neutrals-lightgrey);
}

.br-intr {
    border-radius: var(--border-radius-interactives);
}

.br-cards {
    border-radius: var(--border-radius-cards);
}

.br-cards-top {
    border-top-left-radius: var(--border-radius-cards);
    border-top-right-radius: var(--border-radius-cards);
}

.mh-376 {
    max-height: 376px;
    width: 100%;
    object-fit: cover;
}

.mh-480 {
    max-height: 480px;
    object-fit: cover;
}

.mh-653 {
    max-height: 653px;
    object-fit: cover;
}

.min-h-480 {
    min-height: 460px;
    background-size: cover;
    background-position: center;
}

.icon-square {
    width: 48px;
    height: 48px;
    flex: none;
}

.icon-square-big {
    width: 64px;
    min-width: 64px;
    height: 64px;
    flex: none;
}

.border-custom {
    border: 1px solid var(--neutrals-lightgrey);
}

.rotate-315 {
    transform: rotate(315deg);
}

.accordion-item {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--neutrals-mediumgrey);
}

.accordion-item:first-of-type {
    border-top: 1px solid var(--neutrals-mediumgrey);
}

.accordion-button {
    border: unset !important;
    box-shadow: unset !important;
    background: unset !important;
}

.accordion-button::after {
    background-image: url(../src/icons/arrow-right.svg);
    background-size: cover;
    width: 15.75px;
    height: 28px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../src/icons/arrow-right.svg);
    background-size: cover;
    width: 15.75px;
    height: 28px;
    transform: rotate(180deg);
}

h3 .accordion-button {
    font-family: var(--desktop-h3-font-family);
    font-size: var(--desktop-h3-size);
    font-weight: var(--desktop-h3-weight);
    line-height: var(--desktop-h3-line-height);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.input-email {
    min-width: 335px;
    border: 0;
    outline: 0;
    padding: 1rem;
    border: 1px solid var(--neutrals-lightgrey);
}

.product-card {
    box-shadow: 0px 12px 24px 0px #24285214;
    border-radius: var(--border-radius-cards);
}

.product-card .ratio::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: unset;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    border-top-left-radius: var(--borderradius-cards);
    border-top-right-radius: var(--borderradius-cards);
}

.product-card:not(.blog-card):hover .ratio::after {
    background: rgba(0, 0, 0, 0.32);

}

.product-card:not(.blog-card):hover h4 {
    color: var(--main-brand);
}

.small-p,
.pagination-item {
    font-family: var(--paragraph-small-font-family);
    font-size: var(--paragraph-small-size);
    line-height: var(--paragraph-small-line-height);
    font-weight: var(--paragraph-small-weight);
}

.label-category {
    font-family: var(--paragraph-small-font-family);
    font-size: var(--paragraph-small-size);
    line-height: var(--paragraph-small-line-height);
    font-weight: var(--paragraph-small-weight);
    padding: 4px 12px;
    background-color: var(--neutrals-mediumgrey);
    border-radius: 100px;
    text-decoration: unset;
    color: var(--neutrals-black);
}

.swiper-arrow-left,
.swiper-arrow-right,
.btn-nav {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    background: rgba(252, 229, 0, 1);
    border: 1px solid rgba(252, 229, 0, 1);
    cursor: pointer;
}

.swiper-arrow-left.dissable,
.swiper-arrow-right.dissable,
.btn-nav.dissable,
.project-popup-arrow.dissable {
    border: 1px solid rgba(15, 15, 15, 0.16);
    background-color: var(--neutrals-white);
    pointer-events: none;
}



.swiper-arrow-left:hover,
.swiper-arrow-right:hover {
    background-color: var(--neutrals-mediumgrey);
}

.swiper-pagination-bullet {
    opacity: 1;
    background-color: var(--neutrals-darkgrey);
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: var(--main-brand);
}

.swiper-pagination {
    bottom: unset !important;
    top: unset !important;
}

.link {
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    text-decoration: unset;
}

.form-check {
    padding: 0;
    margin-bottom: 0.5rem;
}

.form-check input {
    font-size: 24px;
    border: 1px solid var(--neutrals-darkgrey);
    margin: unset !important;
}

.form-check .form-check-label {
    padding-left: 1rem;
    font-weight: var(--font-weight-semibold);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    font-family: var(--paragraph-font-family);
}

.pagination-item {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid var(--neutrals-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neutrals-dark-grey);
    text-decoration: unset;
}

.pagination-item.active {
    border: 1px solid var(--accents-2);
    color: var(--neutrals-white);
    background-color: var(--accents-2);
}

.pagination-item.disable {
    border: unset;
}

.rotate-180 img {
    transform: rotate(180deg);
}

.testimonials-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px;
}

.box-shadow {
    border: 1px solid var(--accents-1);
    box-shadow: 0px 12px 24px 0px #24285214;

}

.blog-category {
    border: 1px solid var(--neutrals-mediumgrey);
    border-radius: 32px;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    font-weight: var(--button-weight);
    color: var(--neutrals-black);
    padding: 12px 24px;
}

.blog-category:hover {
    border: 1px solid var(--neutrals-black);
}

.blog-category.active {
    border: 1px solid var(--neutrals-black);
    background-color: var(--neutrals-black);
    color: var(--neutrals-white);
}

.wpcf7-form label,
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
}

.wpcf7-form input,
.wpcf7-form textarea {
    padding: 15px;
    margin-top: 0.75rem;
    background-color: var(--neutrals-white);
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    border-radius: 16px;
    border-color: #fff !important;
    border: 1px solid #C4C4C4;
    box-shadow: unset !important;
    outline: unset !important;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #C4C4C4;
}

.wpcf7-form input:focus,
.wpcf7-form input:active,
.wpcf7-form textarea:active,
.wpcf7-form textarea:focus {
    border: 1px solid var(--bg-black) !important;
    outline: unset !important;
}

.wpcf7-form label {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    color: #0F0F0F;
    text-align: start;
}

.wpcf7-form input[type=submit] {
    background-color: #0F0F0F;
    display: flex;
    width: 100%;
    padding: 15px 24px;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.wpcf7-form input[type=submit]:hover {
    background-color: #96989C;
}

.wpcf7-form input:active,
.wpcf7-form input:focus,
.wpcf7-form input:focus-visible {
    border: 1px solid #0F0F0F !important;
}

.contact-description p {
    font-weight: var(--font-weight-semibold);
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
}

.container-1 {
    width: 100%;
    display: flex;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    align-items: center;
}

.container-1 input#search {
    width: 100%;
    height: 40px;
    border: 1px solid var(--neutrals-mediumgrey);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    float: left;
    color: var(--neutrals-black);
    padding-left: 45px;
    border-radius: var(--borderradius-interactives);
}

.container-1 .icon {
    position: absolute;
    margin-left: 18px;
    z-index: 1;
    color: #4f5b66;
}

.custom-drop {
    padding: 8px 16px;
    border: 1px solid var(--neutrals-mediumgrey);
    border-radius: var(--borderradius-interactives);
    position: relative;
    display: flex;
    align-items: center;
}

.custom-drop::after {
    content: url(../images/chevron-down.svg);
    position: absolute;
    right: 1rem;
}

.contact-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn i.bi {
    color: var(--accents-2);
    font-size: 16px;
}

.list-none {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 1rem;
}

.mb-minus {
    margin-bottom: -1.5rem;
}

.breadcrumbs {
    display: flex;
    gap: 1rem;
}

.breadcrumbs span,
.breadcrumbs span i.bi,
.breadcrumbs a.btn-icon,
.breadcrumbs a.btn-icon i.bi {
    color: var(--main-brand);
    font-size: var(--link-size);
    font-weight: var(--link-weight);
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
}

.breadcrumbs a.btn-icon,
.breadcrumbs a.btn-icon i.bi {
    color: var(--neutrals-dark-grey);
    transition: all 0.3s ease-in-out;
}

.breadcrumbs a.btn-icon:hover,
.breadcrumbs a.btn-icon:hover i.bi {
    color: var(--accents-2);
}

.breadcrumbs span.dissable {
    color: var(--neutrals-dark-grey);
}

.contact-a-l {
    display: flex;
    gap: 0.5rem;
    color: var(--main-brand);
    text-transform: uppercase;
    font-weight: var(--button-weight);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    line-height: var(--button-line-height);
    align-items: center;
}

.contact-a-l i.bi {
    font-size: 16px;
    color: var(--main-brand);
}

@media(min-width:1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x);
    }

    .navbar-expand-xl .navbar-nav .sub-menu .nav-link {
        padding-left: 0;
        padding-right: 0;
    }
}

@media(max-width:1200px) {
    nav a.navbar-brand {
        font-size: var(--mobile-h2-line-height);
        line-height: var(--mobile-logo-line-height);
    }
}

@media(min-width:992px) {
    .border-lg-start {
        border-left: 1px solid var(--neutrals-white);
    }

    .ratio-lg-16x9 {
        --bs-aspect-ratio: 56.25%;
    }
}

@media(max-width:991px) {
    body {
        font-family: var(--font-tertiary);
        font-size: var(--paragraph-size);
        line-height: var(--paragraph-line-height);
        color: var(--neutrals-black);
    }

    h1 {
        font-size: 40px;
        line-height: 50px;
        font-weight: var(--mobile-h1-weight);
        font-family: var(--mobile-h1-font-family);
        font-weight: 400;
    }

    h2 {
        font-size: var(--mobile-h2-size);
        line-height: var(--mobile-h2-line-height);
        font-family: var(--mobile-h2-font-family);
        font-weight: 400;
    }

    h3 {
        font-family: var(--mobile-h3-font-family);
        font-size: var(--mobile-h3-size);
        font-weight: var(--mobile-h3-weight);
        line-height: var(--mobile-h3-line-height);
    }

    h4 {
        font-family: var(--mobile-h4-font-family);
        font-size: var(--mobile-h4-size);
        line-height: var(--mobile-h4-line-height);
        font-weight: var(--mobile-h4-weight);
    }



    .border-mob-top {
        border-top: 1px solid var(--neutrals-white);
    }

    h3 .accordion-button {
        font-family: var(--mobile-h3-font-family);
        font-size: var(--mobile-h3-size);
        font-weight: var(--mobile-h3-weight);
        line-height: var(--mobile-h3-line-height);
        padding-left: 0;
        padding-right: 0;
    }

    .accordion-body {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .min-h-480 {
        min-height: 400px;
    }

    .input-email {
        min-width: unset;
    }

    .btn {
        width: 100%;
    }
}












/*EDIT BY MAARTEN FROM HERE*/


/* general */
.bg-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.min-h-416 {
    min-height: 416px;
}


.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: unset;
    color: var(--accents-2);
    border: unset;
    gap: 0.5rem;
    padding: 0;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.btn-icon:hover {
    border-bottom: 2px solid var(--accents-2);
    background-color: transparent;
    color: var(--accents-2);
}

.btn-icon i.bi {
    color: var(--accents-2);
}



/*element text with bg image */

.el-text-bg-image {
    background-position: center;
    background-size: cover;
}

.el-text-bg-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
}

.el-text-bg-image .btn-outline:hover {
    color: #fff;
}



/* element divider */
.el-divider {
    min-height: 3rem;
}

.el-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4 / 1;
    max-height: 336px;
}

/* element video */
.el-video .iframe-wrapper {
    position: relative;
    padding: 56.34% 0 0 0;
}

.el-video .iframe-wrapper iframe {
    border-radius: var(--borderradius-interactives);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*element logos */
.slider-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.slider-logos .swiper-slide {
    max-width: 300px;
    width: auto;
    /*flex-shrink: 0;*/
}

.slider-logos .swiper-slide img {
    max-height: 100px;
    object-fit: contain;
}






/* wrapped usp */

@media(max-width:767px) {
    .el-usp-wrapped .col-md-6:not(:last-child):after {
        content: '';
        position: relative;
        width: 100%;
        height: 1px;
        background-color: white;
        margin-top: 1rem;
    }
}

@media(min-width:768px) AND (max-width: 1199px) {
    .el-usp-wrapped .col-md-6:nth-child(2n) {
        border-left: 1px solid #fff;
    }
}

@media(min-width:1200px) {
    .el-usp-wrapped .col-md-6:nth-child(3n+2) {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}









.fit-img-to-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.fit-img-to-content>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.swiper-slide {
    height: auto;
}





.bg-brand-color-1 {
    background-color: var(--main-brand);
}

.bg-brand-color-1 * {
    color: #fff;
}

.bg-brand .text-accents-2 {
    color: var(--accents-2);
}

.bg-brand-color-1 .btn {
    background-color: var(--accents-3);
    color: var(--neutrals-white);
    border: 1px solid var(--accents-3);
}


.bg-brand-color-1 .btn:hover {
    background-color: #aa9672;
    color: var(--neutrals-white);
    border-color: var(--neutrals-white);
}

.bg-brand-color-1 .btn-outline {
    border: 1px solid var(--accents-3);
    background-color: var(--main-brand);
    color: var(--accents-3);
}

.bg-brand-color-1 .btn-outline:hover {
    background-color: var(--accents-3);
    color: var(--neutrals-white);
    border: 1px solid var(--accents-3);
}

.bg-brand-color-1 .btn-icon {
    background-color: unset;
    color: var(--accents-2);
    border: unset;
    gap: 0.5rem;
    border-bottom: 2px solid var(--main-brand);
    border-radius: 0;
}

.bg-brand-color-1 .btn-icon:hover {
    background-color: unset;
    color: var(--accents-2);
    border-bottom: 2px solid var(--accents-2);
}

.bg-brand-color-1 .btn-icon i.bi {
    color: var(--accents-2);
}

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

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

.bg-grad {
    background-image: url(../assets/Elements/Background-Pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* .bg-grad::before{
position: absolute;
width: 100%;
height: 100%;
content: '';
background-image: url(../assets/Elements/Accent-white.svg);
} */
.icon-home-div {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accents-2);
}

.text-accents-2 {
    color: var(--accents-2);
}

.text-accents-1 {
    color: var(--accents-1);
}

.text-accents-3 {
    color: var(--accents-3);
}

.btn-arrow {
    border: 1px solid var(--accents-3);
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accents-3);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-nav.btn-right img {
    transform: rotate(180deg);
}

.btn-arrow i.bi {
    color: var(--accents-3);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.btn-arrow:hover {
    background-color: var(--accents-3);
}

.btn-arrow:hover i.bi {
    color: var(--neutrals-white);
}

.avatar-h {
    width: 80px;
    height: 80px;
}

.p-32 {
    padding: 32px;
}

.lees-meer-d {
    color: var(--main-brand);
    text-transform: uppercase;
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
    font-size: var(--link-size);
    transition: all 0.3s ease-in-out;
}

.lees-meer-d:hover {
    color: var(--accents-3);
}


i.bi {
    color: var(--main-brand);
    display: block;
    font-size: 28px;
}

i.bi.fs-normal {
    font-size: inherit;
}

i.bi.bi-star-fill {
    color: var(--neutrals-mediumgrey);
    font-size: 16px;
}

i.bi.bi-star-fill.color-yellow {
    color: var(--ui-warning);
}


.bi-chevron-left::before,
.bi-chevron-right::before {
    font-weight: 600 !important;
}




a {
    color: var(--main-brand);
    text-decoration: none;
}

a:hover,
a:active {
    color: var(--main-brand);
    opacity: .8;
}


.border-top {
    border-top: 1px solid var(--neutrals-lightgrey) !important;
}

.border-bottom,
.el-posts .scnd-column .row:last-child {
    border-bottom: 1px solid var(--neutrals-lightgrey) !important;
}

.el-text-image ul {
    list-style: unset;
    display: flex;
    flex-direction: column;
    gap: 0.0;
    padding: 0;
    margin: 0;
}

.el-text-image ul li {
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.el-text-image ul li::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background-color: var(--neutrals-black);
    display: inline-block;
    left: 0;
    margin-left: 0.5rem;
}

.el-text-image ul li p {
    margin-bottom: 0;
}

.product-card .btn-icon {
    color: var(--main-brand);
    font-weight: var(--font-weight-regular);
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.product-card .btn-icon i.bi {
    color: var(--main-brand);
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}

.product-card .btn-icon:hover {
    border: transparent;
    color: var(--main-brand);
    opacity: 0.4;
}

.product-card .btn-icon:hover i.bi {
    color: var(--main-brand);
    opacity: 0.4;
}

.product-card h4 {
    margin-right: 3rem;
}

.p-2rem {
    padding: 32px;
}

.bg-quote h4 {
    color: var(--neutrals-white);
}

.btn-contact-page {
    padding: 0 !important;
}

.btn-contact-page:hover {
    border-bottom: 2px solid transparent;
}

footer .nav-link {
    color: var(--neutrals-black);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

footer .nav-link:hover {
    color: var(--accents-3);
}

.link-exp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    line-height: var(--link-line-height);
    color: var(--main-brand);
    text-transform: uppercase;
}

.link-exp i.bi {
    font-size: 16px;
    color: var(--main-brand);
}

.btn-cont {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cont i.bi {
    color: var(--neutrals-white);
    font-size: 16px;
}

.img-h-a {
    width: 157px;
    height: 157px;
    border-radius: 100px;
    object-fit: cover;
}

.line-b {
    height: 1px;
    background-color: var(--neutrals-medium-grey);
    width: 100%;
}

@media(max-width:991px) {
    .align-items-center-2 {
        align-items: center;
    }

    .fit-img-to-content {
        position: relative;
    }

    .avatar-div-mobile .h-auto {
        width: 100%;
    }

    .avatar-div-mobile .h-auto .btn {
        width: 100%;
    }

    .contact-btn {
        justify-content: center;
        align-items: center;
    }

    .mob-center img {
        object-position: center !important;
    }

    .p-2rem {
        padding: 1.5rem;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }

    .navbar-nav .nav-item .nav-link {
        justify-content: center;
    }

    .nav-item .sub-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        background: unset;
        box-shadow: unset;
        padding: 0;
        margin: auto;
    }

    .nav-item.have-child .nav-link::after {
        display: none;
    }

    .nav-item .sub-menu .nav-link {
        color: var(--main-brand);
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .language-drop {
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
    }

    .p-32 {
        padding: 24px;
    }

    .anim-block-header {
        display: none;
    }

    .btn {
        justify-content: center;
    }
}

.navbar-toggler:focus {
    box-shadow: unset;
}

@media(max-width:1200px) {
    nav.navbar {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .navbar-brand img {
        max-width: 100px;
    }

    .contact-btn {
        justify-content: center;
        align-items: center;
    }

    .p-2rem {
        padding: 1.5rem;
    }
}

.short-info h3 {
    color: #0F0F0F;
    font-size: 40px;
    line-height: 40px;
}

.short-info span {
    font-size: 24px;
    opacity: 0.5;
    color: #2C3038;
    font-size: 24px;
    text-align: start;
}

.bg-yellow {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 582px;
    height: auto;
    padding: 32px;
    background: #FCE500EB;
    border-radius: 16px 0 0 16px;
    backdrop-filter: blur(16px);
    right: 0;
    bottom: 20%;
    gap: 32px;
}

.bg-yellow h4 {
    font-family: "Poppins";
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0F0F0F;
}

.bg-yellow h4 {
    font-family: "Poppins";
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0F0F0F;
}

.bg-yellow span {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0F0F0F;
}

.bg-yellow .bb-1-c {
    padding-bottom: 16px;
    border-bottom: 1px solid #9C9C9C;
}

.bg-grey {
    background-color: #F5F5F5;
}

.section-black {
    background-image: url(../src/images/v882-kul-33\ 1.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-yellow {
    color: #FCE500;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
}

.section-black * {
    color: var(--neutrals-white);
}

.section-black .text-yellow {
    color: #FCE500;
}

.accordion-item {
    background-color: transparent;
}

h3 .accordion-button {
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 64px;
    line-height: 106%;
    letter-spacing: -6%;
    color: #FFFFFF !important;
}

.accordion-item h3 b,
.accordion-item p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -4%;
    color: #FFFFFFB8;
}

.accordion-button[aria-expanded="true"]+b {
    display: none;
}


.slider-blogs .swiper-slide .ratio-16x9,
.owl-carousel .swiper-slide .ratio-16x9 {
    overflow: hidden;
    border-radius: var(--border-radius-cards);
}

.slider-blogs .swiper-slide,
.owl-carousel .swiper-slide {
    cursor: pointer;
}

.slider-blogs .swiper-slide .ratio-16x9 img,
.owl-carousel .swiper-slide .ratio-16x9 img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.slider-blogs .swiper-slide:hover .ratio-16x9 img,
.owl-carousel .swiper-slide:hover .ratio-16x9 img {
    transform: scale(1.2);
}

.col-port .portfolio-card .ratio-16x9 img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.col-port .portfolio-card {
    cursor: pointer;
}

.col-port .portfolio-card:hover .ratio-16x9 img {
    transform: scale(1.2);
}

.portfolio-card .over-before {
    overflow: hidden;
}

.slider-blogs .swiper-slide .over-before,
.portfolio-card .over-before,
.owl-carousel .swiper-slide .over-before {
    position: relative;
}



.slider-blogs .swiper-slide .over-before .tags,
.portfolio-card .over-before .tags,
.owl-carousel .swiper-slide .over-before .tags {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
    z-index: 11;
}

.slider-blogs .swiper-slide .over-before .tags div,
.portfolio-card .over-before .tags div,
.owl-carousel .swiper-slide .over-before .tags div {
    font-size: var(--paragraph-small-size);
    text-transform: uppercase;
    padding: 4px 8px;
    color: var(--neutrals-white);
    border: 1px solid var(--neutrals-white);
    border-radius: 100px;
}

.section-banner {
    position: relative;
    background-color: #000;
    /* твій bg */
    z-index: 1;
}

.section-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../src/images/6c8e247be66f4d7f02a89e8143fe9cb3976aa897.jpg');
    background-size: cover;
    background-position: bottom;
    opacity: 0.16;
    z-index: -1;
}

.section-banner img {
    max-width: 300px;
}

.section-contant {
    position: relative;
    z-index: 1;
    background-color: #FCE500;
}

.section-contant::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../src/images/62475cb1cfa8211bded63e77a09d7b90c81cb677.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: -1;
}

.footer-logo {
    max-width: 77px;
    margin-top: 12px;
}

footer {
    background-color: #0E0E0E;
}

footer * {
    color: #FFFFFF;
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

footer ul li a {
    opacity: 0.7;
}

footer ul li {
    display: flex;
}

.line-footer {
    width: 100%;
    height: 1px;
    opacity: 0.16;
    background-color: #FFFFFF;
}

.socials-icons {
    display: flex;
    align-items: center;
    gap: 32px
}

.short-info .d-flex {
    gap: 0.5rem;
    text-align: start;
    align-items: start;
}

.short-info {
    align-items: center;
}

.bread {
    margin-bottom: 32px;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    display: block;
}

.about-section h3,
.section-project h3 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -3%;
    margin-bottom: 32px;
}

.about-section p,
.section-project p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    opacity: 0.62;
    margin-bottom: 32px;
}

.link-c {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #0F0F0F;
}

.section-service h3 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 54px;
    line-height: 106%;
    letter-spacing: -6%;

}

.section-service p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 24px;
    line-height: 124%;
    letter-spacing: -4%;
    color: #FFFFFFB8;

}

h3 .accordion-button {
    padding-top: 0;
    padding-bottom: 14px;
}

.section-service .accordion-item h3 {
    margin-bottom: 0;
}

.accordion-item {
    border-top: 1px solid #FFFFFF40 !important;
    padding-top: 24px;
    padding-bottom: 24px;
}

.accordion-item p {
    margin-bottom: 0;
    max-width: 90%;
}

.accordion .accordion-item:first-of-type {
    padding-top: 0 !important;
    border-top: unset !important;
}

.over-before img {
    border-radius: 16px;
}
.link-arrow-r{
cursor: pointer;
}
.link-arrow-r:hover{
    opacity: 1;
}

/*.link-arrow-r {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.2);
    width: max-content;
}

.link-arrow-r i.bi {
    color: #0F0F0F;
    font-size: 18px;
}*/

.swiper-slide h6 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    opacity: 0.64;
    margin-bottom: 12px;
}

.swiper-slide h5 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -2%;
    margin-bottom: 16px;
}

.swiper-slide p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    opacity: 0.64;
}

.section-black-2 {
    background-image: url(../src/images/bg-black-2.svg);
}

.member-col h5 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 40px;
    line-height: 112.00000000000001%;
    letter-spacing: -6%;
    margin-bottom: 6px;
}

.member-col p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 112.00000000000001%;
    letter-spacing: -6%;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}

.member-col img {
    border-radius: 16px;
}

.row-second-member h2 {
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 80px;
    line-height: 112.00000000000001%;
    letter-spacing: -6%;
    color: #FCE500;
}

.row-second-member p {
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 24px;
    line-height: 112.00000000000001%;
    letter-spacing: -5%;
    color: rgba(255, 255, 255, 0.72) !important;
}

.row-third-member h4 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -5%;
}

.row-third-member img {
    border-radius: 16px;
}

.section-testimonials h3 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -3%;
    margin-bottom: 16px;
}

.section-testimonials p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    opacity: 0.64;
}

.c-slider {
    background-color: #FFFFFF;
    padding: 32px !important;
    border-radius: 16px;
}

.c-slider h6 {
    font-family: 'Mona Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    margin-bottom: 4px;
}

.c-slider span {
    display: block;
    font-family: 'Mona Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    opacity: 0.64;
}

.c-slider h3 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: -2%;
}

.c-slider p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    opacity: 0.64;
}

.section-banner h2 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 56px;
    line-height: 130%;
    letter-spacing: -3%;
    margin-bottom: 0;
    text-align: center;
}

.section-banner .pdf-icon {
    filter: invert(1);
}

.section-banner .link-c {
    color: var(--neutrals-white);
    text-decoration: unset;
    padding-bottom: 0.5rem;
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #737373;
    gap: 0.5rem;
    font-size: 24px;
}

.section-contant h2 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 72px;
    line-height: 130%;
    letter-spacing: -3%;
    text-align: center;
}

.section-contant p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
    opacity: 0.8;
}

.contact-icon {
    width: 80px;
    height: 80px;
    min-height: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon i.bi {
    color: #3E3A0D;
    font-size: 27px;
}

.contact-description h6 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: -2%;
    margin-bottom: 0;
}

.contact-description a, .contact-description span {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000512;
    text-decoration: unset;
    margin-bottom: 0;
}

.wpcf7-form {
    background: #FFF377;
    backdrop-filter: blur(32px);
    border: 1px solid rgba(251, 251, 251, 1);
    padding: 32px;
    border-radius: 16px;
}

footer h6 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -2%;
    margin-bottom: 16px;
}

footer ul {
    gap: 12px;
    margin-bottom: 0;
}

footer ul li a {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -2%;
    opacity: 0.7;
}

.gap-48 {
    gap: 48px;
}

.footer-row-last span,
.footer-row-last a {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -2%;
    opacity: 0.56;
    color: #FFFFFF !important;
}

.open-popup-btn {
    display: inline-block;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.project-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-start; /* було center */
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 9999;
    overflow-y: auto;
}

.project-popup.active {
    opacity: 1;
    visibility: visible;
}

.project-popup__dialog {
    width: 100%;
    max-width: 1230px;
    background: #fff;
    border-radius: 16px;
    padding: 54px 54px 44px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    margin: 0 auto; /* додай */
}

.project-popup__label {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    opacity: 0.64;
    color: #0F0F0F;
    margin-bottom: 12px;
}

.project-popup__title {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: -2%;
    color: #0F0F0F;
    margin-bottom: 12px;
}

.project-popup__content {
    max-width: 1100px;
}

.project-popup__content p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -2%;
    color: #0F0F0F;
    opacity: 0.64;
}

.project-popup__download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.project-popup__download:hover {
    text-decoration: underline;
}

.project-popup__download svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
}

.project-popup__close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.project-popup__close::before,
.project-popup__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #111;
    transform-origin: center;
}

.project-popup__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.project-popup__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 991px) {
    .project-popup {
        padding: 30px 16px;
    }

    .project-popup__dialog {
        padding: 40px 24px 30px;
        border-radius: 18px;
    }

    .project-popup__title {
        font-size: 34px;
    }

    .project-popup__content p {
        font-size: 18px;
    }

    .project-popup__download {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .project-popup__title {
        font-size: 28px;
    }

    .project-popup__content p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .project-popup__close {
        top: 16px;
        right: 16px;
    }
}

.project-info-pop {
    display: none;
}

.section-service .accordion-item h3 {
    line-height: unset;
}
.ratio-team{
        --bs-aspect-ratio: 125%;
        aspect-ratio: 125%;
}
.ratio-team img{
    object-fit: cover;
}

@media(max-width:1200px) {
    .anim-block-header {
        display: block;
        position: relative;
        right: unset;
        top: unset;
        width: 100%;
        overflow: unset;
        max-width: 100%;
    }

    .f-ss {
        display: flex;
        flex-direction: column;
    }

    .f-ss .container-xl {
        order: 2;
    }

    .f-ss .anim-block-header {
        order: 1;
    }

    .bg-yellow {
        width: auto;
        padding: 16px;
        gap: 0;
    }

    .bg-yellow h4 {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
    }

    .bg-yellow {
        width: 90%;
        bottom: -20%;
    }

    .bg-yellow span {
        font-size: 12px;
        line-height: 100%;
    }

    .bg-yellow .bb-1-c {
        padding-bottom: 8px;
    }

    h1 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
    }

    .f-ss h5 {
        font-size: 14px;
        line-height: 21px;
    }

    .short-info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .line {
        height: 1px;
        width: 100%;
        max-width: 65px;
    }

    .short-info .d-flex {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .btn {
        width: 100%;
    }
}

@media(max-width:991px) {


    .about-section h3,
    .section-project h3 {
        font-weight: 400;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: -3%;
    }

    .about-section p,
    .section-project p {
        font-size: 14px;
        line-height: 140%;
        letter-spacing: -2%;
    }

    .link-c {
        font-size: 16px;
        line-height: 140%;
    }

    .section-service h3 {
        font-weight: 400;
        font-size: 40px;
        line-height: 120%;
        letter-spacing: -6%;
    }

    .section-service p {
        font-weight: 400;
        font-size: 22px;
        line-height: 130%;
        letter-spacing: -4%;
    }

    h3 .accordion-button {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
        letter-spacing: -6%;
    }

    .accordion-item h3 b,
    .accordion-item p {
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        letter-spacing: -4%;
    }

    .accordion-button::after {
        width: 10px !important;
        height: 18px !important;
    }

    h3 .accordion-button {
        padding-bottom: 0;
    }

    .accordion-item {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .section-project h3 {
        font-weight: 400;
        font-size: 40px;
        line-height: 130%;
        letter-spacing: -3%;

    }

    .section-project p {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -2%;
    }

    .swiper-slide h6 {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: -1%;
    }

    .swiper-slide p {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: -2%;
    }

    .row-second-member p {
        font-weight: 400;
        font-size: 24px;
        line-height: 112.00000000000001%;
        letter-spacing: -5%;
    }

    .row-second-member h2 {
        font-weight: 400;
        font-size: 50px;
        line-height: 112.00000000000001%;
        letter-spacing: -6%;
    }

    .row-third-member h4 {
        font-weight: 400;
        font-size: 32px;
        line-height: 130%;
        letter-spacing: -5%;
    }

    .section-contant h2 {
        font-weight: 500;
        font-size: 32px;
        line-height: 130%;
        letter-spacing: -3%;
        text-align: start;
    }

    .bread {
        margin-bottom: 16px;
    }

    .about-section h3 {
        margin-bottom: 16px;
    }

    #testimonial-img {
        aspect-ratio: 4/3;
    }

    .c-slider h3 {
        font-weight: 400;
        font-size: 24px;
        line-height: 130%;
        letter-spacing: -2%;
    }

    .section-testimonials p {
        font-size: 16px;
    }

    .c-slider p {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -2%;
    }

    .c-slider {
        padding: 32px 16px !important;
    }

    .section-banner img {
        max-width: 159px;
    }

    .section-banner h2 {
        font-size: 32px;
        line-height: 130%;
        text-align: center;
    }

    .section-banner .link-c {
        flex-direction: column;
        align-items: center;
    }

    .section-banner .pdf-icon {
        width: 22px;
    }

    .section-banner .link-c {
        font-size: 18px;
    }

    .section-contant p {
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        letter-spacing: -2%;
        text-align: start;
    }

    .contact-description h6 {
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: -2%;
    }

    .contact-description a, .contact-description span {
        font-weight: 300;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0%;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        min-height: 56px;
        height: 56px;
    }

    .contact-icon i.bi {
        font-size: 20px;
    }

    .wpcf7-form {
        padding: 32px 16px;
    }

    .wpcf7-form label {
        font-size: 13px;
        line-height: 100%;
    }

    .wpcf7-form input,
    .wpcf7-form textarea {
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 12px;
        line-height: 18px;
    }

    .wpcf7-form input[type=submit] {
        padding: 12px 48px;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        border-radius: 16px;
    }

    footer h6 {
        text-align: start;
    }

    .footer-flex {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .footer-flex div {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .copyright {
        font-size: 12px !important;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}

@media (min-width: 1600) {
    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media(max-width:1700px) {
    .bg-yellow {
        bottom: 25%;
    }
}

@media(max-width:1600px) {
    .bg-yellow {
        bottom: 38%;
    }
}

@media(max-width:1400px) {
    .bg-yellow {
        bottom: 50%;
    }
}

@media(min-width:991px) and (max-width:1200px) {
    .bg-yellow {
        bottom: -7%;
        padding: 30px;
    }
}

@media(max-width:1200px) {
    .bg-yellow {
        bottom: -15%;
    }

    .f-ss {
        padding-left: 0;
        padding-right: 0;
    }

    .f-ss .container-xl {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media(min-width:800px) and (max-width:1200px) {
    .bg-yellow {
        bottom: -7%;
    }
}


/* ---------- BASE ---------- */

.site-header {
    position: relative;
    z-index: 1000;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
}

.mobile-header,
.mobile-menu,
.mobile-menu-backdrop {
    display: none;
}

/* ---------- DESKTOP ---------- */

@media (min-width: 1200px) {
    .header-desktop {
        display: block;
    }
}

/* ---------- MOBILE ---------- */

@media (max-width: 1199.98px) {
    .header-desktop {
        display: none !important;
    }

    .mobile-header {
        display: block;
        background: #fff;
        position: relative;
        z-index: 1002;
    }

    .mobile-header__inner {
        position: relative;
        min-height: 82px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* центр логотипа */
        padding: 12px 20px;
    }

    .mobile-header__logo {
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .mobile-header__logo img {
        max-height: 42px;
        width: auto;
        display: block;
    }

    /* бургер по центру */
    .mobile-header__toggle {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        align-items: center;
        cursor: pointer;
    }

    .mobile-header__toggle {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-header__toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #222;
        transition: 0.3s ease;
    }

    /* FULLSCREEN MENU */
    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 1004;
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        overflow: hidden;
    }

    .mobile-menu__inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 110px 26px 30px;
        position: relative;
    }

    .mobile-menu__close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 36px;
        height: 36px;
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
    }

    .mobile-menu__close span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22px;
        height: 2px;
        background: #222;
    }

    .mobile-menu__close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu__close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .mobile-menu__top {
        flex: 1 1 auto;
    }

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

    .mobile-menu__nav li {
        margin-bottom: 22px;
    }

    .mobile-menu__nav a {
        text-decoration: none;
        color: #8E8E8E;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .mobile-menu__nav li {
        margin-bottom: 24px;
    }

    .mobile-menu__lang {
        margin-top: 0;
        position: relative;
    }

    .mobile-menu__lang-current {
        font-size: 26px;

        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #8E8E8E;

    }

    .mobile-menu__lang-dropdown {
        margin-top: 14px;
        display: inline-flex;
        flex-direction: column;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .mobile-menu__lang-dropdown a {
        padding: 14px 20px;
        color: #222;
        text-decoration: none;
        font-size: 22px;
    }

    .mobile-menu__bottom {
        flex-shrink: 0;
        text-align: center;
        padding-top: 24px;
    }

    .mobile-menu__logo {
        display: inline-flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .mobile-menu__logo img {
        max-height: 68px;
        width: auto;
        display: block;
        margin-bottom: 1rem;
    }

    .mobile-menu__socials {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .mobile-menu__socials a {
        font-size: 24px;
        color: #222;
        text-decoration: none;
    }

    /* OPEN STATE */
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .mobile-menu {
        transform: translateY(0);
    }

    .mobile-menu__inner {
        background-image: url(../src/images/v882batch2-kul-03\ 1.svg);
        background-position: bottom;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

.mobile-menu .socials-icons {
    justify-content: center;
}

.error404 header, .error404 footer{
    display: none !important;
}
.error404 .container-404 .row{
        min-height: 100vh;
}
.error404 .container-404{
    background-color: #0f0f0f;
    position: relative;
    z-index: 0;
}
body.error404{
margin-top: 0 !important;
}
.container-404::before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../src/images/404.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
    content: '';
}
.container-404 *{
    position: relative;
    z-index: 1;
}
.container-404 img{
    max-width: 478px;
}
.container-404 h1{
    font-family: 'Poppins';
font-weight: 500;
font-size: 64px;
line-height: 130%;
letter-spacing: -2%;
color: #fff;
}
.container-404 p{
    font-family: 'Poppins';
font-weight: 400;
font-size: 20px;
line-height: 124%;
letter-spacing: -4%;
color: #fff;
opacity: 0.72;
}
.container-404 a{
    border-radius: 16px;
    background-color: #FCE500;
    border: unset;
    text-transform: unset;
    color: #0f0f0f;
    font-family: 'Poppins';
font-weight: 500;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
min-width: 301px;
    display: flex;
    justify-content: center;
    padding: 21px 25px;
}
footer a:hover{
    color: #fff !important;
}

@media(max-width:991px){
    .container-404 h1{
font-weight: 500;
font-size: 40px;
line-height: 130%;
letter-spacing: -2%;
vertical-align: middle;
text-align: center;
    }
    .container-404 p{
font-weight: 400;
font-size: 14px;
line-height: 124%;
letter-spacing: -4%;
    }
    .project-popup__gallery-wrap{
        flex-direction: column;
    display: flex;
    }
    .project-popup__gallery-wrap .project-popup__nav{
        order: 2;
        margin-top: 2rem;
    }
    .project-popup__gallery-wrap .owl-carousel{
        order: 1;
    }
}

.project-popup__gallery-wrap {
    width: 100%;
}

.project-popup__nav {
    width: 100%;
}

.project-popup-arrow {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    background: rgba(252, 229, 0, 1);
    border: 1px solid rgba(252, 229, 0, 1);
    cursor: pointer;
}

.project-popup-arrow i.bi {
    font-size: 28px;
    color: #0F0F0F;
}

.project-popup-gallery__item {
    width: 100%;
}

.project-popup-gallery__media {
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
}

.project-popup-gallery__media img,
.project-popup-gallery__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width:991px){
    #language_dropdown{
        margin-left: 0 !important;
    }
}

.bread-links{
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}
.bread-links .bread-have-link{
font-family: 'Poppins';
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 130%;
letter-spacing: 0%;
vertical-align: middle;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-offset: 0%;
text-decoration-thickness: 0%;
text-decoration-skip-ink: auto;
color: #0F0F0F;
}
.bread-links .bread-seperate{
    font-family: 'Poppins';
font-weight: 500;
font-style: Medium;
font-size: 14px;
leading-trim: NONE;
line-height: 130%;
letter-spacing: 0%;
vertical-align: middle;
color: #0F0F0F;
}
.bread-links .bread-havent-link{
    font-family: 'Poppins';
font-weight: 300;
font-style: Light;
font-size: 14px;
leading-trim: NONE;
line-height: 130%;
letter-spacing: 0%;
vertical-align: middle;
color: #0F0F0F;
}
.project-intro h6{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: -1%;
color: #0F0F0F;
}
.project-intro h1{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 40px;
leading-trim: NONE;
line-height: 130%;
letter-spacing: -3%;
color: #0F0F0F;
}
a.category{
    border: 1px solid #00000029;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    padding: 9px 20px;
    border-radius: 12px;
    font-family: 'Poppins';
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: -2%;
min-width: 219px;
display: flex;
justify-content: center;

}
a.category.active{
    border-color: #FCE500;
    background-color: #FCE500;
    font-weight: 500;
}
.label-category-project{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 219px;
    padding: 10px 10px;
    text-align: center;
    background-color: #FCE500;
    border-radius: 0 12px 0 12px;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -2%;
}
.find-more{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    padding: 16px 32px;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    background: #2A2A2A80;
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 0 0 16px 16px;
    bottom: -77px;
    transition: all 0.3s ease-in-out;
}
.project-card:hover .find-more{
    bottom: 0;
}
.project-card h6{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: -1%;
color: #0F0F0F;
opacity: 0.64;
}
.project-card h5{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: -2%;
color: #0F0F0F;
}
.project-card p{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 18px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: -2%;
color: #0F0F0F;
opacity: 0.64;
}
.ratio-40{
        --bs-aspect-ratio: 40.25%;
}
.project-main-img{
    border-radius: 16px 16px 0 0;
}

.project-info{
    background-color: #FCE500;
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0 16px 16px;
    flex-wrap: wrap;
}
.project-info .info-yellow{
    display: flex;
    flex-direction: column;
    min-width: 193px;
    align-items: center;
}
.project-info .info-yellow h3{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 18px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: -1%;
text-transform: uppercase;
}
.project-info .info-yellow h5{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 32px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;

}
.years-t{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: -1%;
color: #0F0F0F;
opacity: 0.64px;
}
h1.project-title-h1{
    font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 40px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: -2%;
}
.content-project p{
    font-family: 'Poppins';
font-weight: 400;
font-style: Regular;
font-size: 18px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: -2%;
opacity: 0.64;
}

@media(max-width:991px){
    a.category{
        min-width: auto;
    }
    .project-info{
        gap: 16px;
    }
    .project-info .info-yellow{
            min-width: 150px;
    }
    .project-info .info-yellow h5{
        font-size: 14px;
    }
    .project-info .info-yellow h3{
        font-size: 16px;
    }
    .ratio-40{
            --bs-aspect-ratio: 60.25%;
    }
}