@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/instrument-sans-v4-latin-regular.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/instrument-sans-v4-latin-italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/instrument-sans-v4-latin-500.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/instrument-sans-v4-latin-500italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-500italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/instrument-sans-v4-latin-600.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/instrument-sans-v4-latin-600italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-600italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/instrument-sans-v4-latin-700.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-700.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/instrument-sans-v4-latin-700italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-700italic.ttf') format('truetype');
}

@view-transition {
    navigation: auto;
}

:root {
    color-scheme: light only;
    --color-text: #091423;
    --color-primary: #1421ff;
}

html {
    background-color: #FFF;
}

button,
a {
    color: inherit;
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-right: 100px;
        padding-left: 100px;
    }
}

body {
    background-color: #FFF;
    color: var(--color-text);
    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 30px;
    z-index: 65555;
}

.header {
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 11px;
    border: 0;
    position: relative;
}

.header:before {
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 247, 247, 0.6);
    z-index: -1;
    backdrop-filter: blur(100px);
}

.header-logo svg {
    width: auto;
    height: 24px;
}

.header-toggle {
    border: 0;
    margin: 0;
    padding: 8px;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin: -8px -11px -8px 0;
    padding: 16px 19px 16px 60px;
    cursor: pointer;
}

.header-toggle svg {
    display: inline-block;
    vertical-align: -2px;
    fill: currentcolor;
    width: 1em;
    height: 1em;
}

.header-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
}

.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu>li>a {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: -0.24px;
}

.header-contact {
    width: 40%;
    background: #FFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.20px;
    text-transform: uppercase;
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .header {
        width: 327px;
    }

    .header-menu>li>a {
        font-size: 18px;
        letter-spacing: -0.18px;
    }

    .header-contact {
        font-size: 14px;
        letter-spacing: -0.14px;
    }
}

@media (min-width: 1400px) {
    .header-menu>li>a {
        font-size: 16px;
        letter-spacing: -0.16px;
    }
}

main {
    padding-top: 255px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.bg-light {
    background-color: #F7F7F7;
}

.bg-gradient {
    background: linear-gradient(0.61deg, rgba(247, 247, 247, 0.2) -0.42%, rgba(247, 247, 247, 0.5) 27.56%, #F7F7F7 99.46%);
}

.bg-secondary {
    background-color: #E2ECFF;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 32px 16px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .section {
        padding: 32px;
    }
}

@media (max-width: 767.9px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.lh-small {
    line-height: 1.125;
}

.section-contact {
    padding-top: 52px;
    padding-bottom: 52px;
}

.mb-contact {
    margin-bottom: 154px;
}

section+section {
    margin-top: 16px;
}

.text-end {
    text-align: right;
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}


.btn-arrow,
.btn-plus {
    display: inline-flex;
    align-items: center;
    border: 0;
    background-color: #FFF;
    border-radius: 8px;
    padding: 7px 4px 7px 11px;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-shadow {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

.btn-arrow-icon {
    line-height: 24px;
    margin-right: 7px;
}

.btn-arrow-icon svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    transform: rotate(-45deg);
    transition: all .2s ease-out;
}

[data-text]:before {
    content: attr(data-text);
}

.btn-arrow-text,
.btn-plus-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all .2s ease-out;
}

.btn-arrow-text:after,
.btn-plus-text:after {
    content: '';
    display: inline-block;
    width: 7px;
}

.btn-text-loading {
    position: absolute;
    top: 100%;
    left: 100%;
}

button.btn-arrow:hover .btn-arrow-icon svg,
a.btn-arrow:hover .btn-arrow-icon svg,
.btn-hover:hover .btn-arrow-icon svg {
    transform: rotate(0);
}

button.btn-arrow:hover .btn-arrow-text,
a.btn-arrow:hover .btn-arrow-text,
.btn-hover:hover .btn-arrow-text,
button.btn-plus:hover .btn-plus-text,
a.btn-plus:hover .btn-plus-text,
.btn-hover:hover .btn-plus-text {
    max-width: var(--maxWidth, 150px);
    opacity: 1;
}

.btn-hover[aria-expanded="true"] .btn-arrow-icon svg,
.btn-arrow.active .btn-arrow-icon svg {
    transform: rotate(45deg);
}

.btn-hover[aria-expanded="true"] .btn-arrow-text,
.btn-hover[aria-expanded="true"] .btn-plus-text {
    max-width: 0 !important;
}

.btn-plus-icon {
    transform: rotate(180deg);
    width: 16px;
    height: 24px;
    position: relative;
    margin-right: 7px;
}

.btn-plus-icon:before,
.btn-plus-icon:after {
    content: '';
    width: 16px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 0;
    background-color: var(--color-text);
    transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.btn-plus-icon:after {
    transform: rotate(90deg);
}

.btn-hover[aria-expanded="true"] .btn-plus-icon:before {
    transform: rotate(180deg);
}

.btn-hover[aria-expanded="true"] .btn-plus-icon:after {
    transform: rotate(360deg);
}

/*
.btn-plus,
.btn-arrow {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 0;
    background-color: #FFF;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 16px;
}

.btn-plus {
    transform: rotate(180deg);
}

.btn-plus:before,
.btn-plus:after {
    content: '';
    width: 15px;
    height: 2px;
    position: absolute;
    background-color: var(--color-text);
    transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.btn-plus:after {
    transform: rotate(90deg);
}

.btn-plus[aria-expanded="true"]:before {
    transform: rotate(180deg);
}

.btn-plus[aria-expanded="true"]:after {
    transform: rotate(360deg);
}

.btn-arrow svg {
    width: 1em;
    height: 1em;
    transition: transform 0.2s ease-in-out;
    transform: rotate(-45deg);
}

.btn-wrap:hover .btn-arrow svg,
.btn-arrow-active svg,
.btn-arrow:hover svg {
    transform: rotate(45deg);
}*/


.btn-arrow.btn-light {
    background-color: #F7F7F7;
}

.text-primary {
    color: var(--color-primary);
}

.btn-plus.text-primary {
    --color-text: var(--color-primary);
}

.list-item {
    background: #FFF;
    padding: 8px 19px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -1.15px;
    color: inherit;
    text-decoration: none;
}

.list-item+.list-item {
    margin-top: 8px;
}

@media (min-width: 768px) {
    .list-item {
        font-size: 32px;
        letter-spacing: -1.4px;
        padding: 12px 16px 12px 31px;
    }
}

@media (min-width: 992px) {
    .list-item {
        font-size: 38px;
        letter-spacing: -1.9px;
        padding: 16px 16px 16px 31px;
    }
}

.layout-type-heading>*,
.title {
    font-size: 31px;
    line-height: 1;
    letter-spacing: -0.62px;
    font-weight: 400;
}

.layout-type-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.layout-block+.layout-block {
    margin-top: 24px;
}

.layout-type-accordion {
    margin-right: -32px;
}

.intro-title {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.36px;
    font-weight: 400;
    margin-bottom: 32px;
}

.intro-text {
    font-size: 24px;
    line-height: 1.1875;
    letter-spacing: -1px;
    font-weight: 400;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .intro-text {
        font-size: 32px;
    }
}

.h-100 {
    height: 100%;
}

.text-lead {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.text-lead ul li p {
    margin-bottom: 0;
}



.honeypot {
    position: absolute;
    left: -9999px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 8px 10px;
    height: 38px;
    font-size: 14px;
    letter-spacing: -0.28px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid #FFF;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: var(--color-text);
    background-color: #FFF;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, .25);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, .25)
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

.form-check-input.is-invalid:checked {
    background-color: #dc3545;
}

.form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid~.form-check-label {
    color: #dc3545;
}

.form-check-label {
    display: block;
}

.form-check-description {
    display: block;
    margin-top: 8px;
    line-height: 1.3;
    font-size: 8px;
}

.alert {
    position: relative;
    padding: 16px;
    border: 1px solid transparent;
    margin-bottom: 16px;
    border-radius: 6px;
}

.alert-success {
    background-color: #d1e7dd;
    border-color: #a3cfbb;
    color: #0a3622;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f1aeb5;
    color: #58151c;
}

.stat {
    padding: 16px 16px 24px 64px;
    border-radius: 8px;
    background-color: #F7F7F7;
}

.stat+.stat {
    margin-top: 8px;
}

.stat-number {
    font-size: 105px;
    line-height: 1.1;
    letter-spacing: -5.25px;
}

.stat .block-button {
    text-align: right;
    margin-top: 48px;
}

.swiper-team .swiper-slide {
    max-width: 345px;
}

.swiper-projects .swiper-slide {
    width: calc(var(--width) * 2.6);
}

@media (min-width: 992px) {
    .swiper-projects .swiper-slide {
        width: var(--width);
    }
}

.team-image {
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-body {
    padding-top: 16px;
    max-width: 70%;
}

.team-title {
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 10px;
}

.team-text {
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -1px;
    color: #767676;
    margin-bottom: 0;
}

.hero {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.hero>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero {
        height: 600px;
    }
}

.service-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.82px;
    font-weight: 400;
}

.service-img {
    border-radius: 8px;
    position: sticky;
    top: 30px;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.service-image>* {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    gap: 13px;
    font-size: 18px;
    font-weight: 500;
}

.service-item {
    background: #FFF;
    position: relative;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-item-title {
    font-size: 32px;
    line-height: 1.1;
    color: #091423;
}

.service-item .btn-arrow {
    margin-top: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .service-item {
        padding: 24px;
        min-height: 235px;
    }

    .service-item-title {
        font-size: 42px;
    }

}

.service-item-title a {
    color: inherit;
    text-decoration: none;
}


.features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features li {
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: '+';
    position: absolute;
    left: 0;
}

.features li+li {
    margin-top: 6px;
}

.mt-auto {
    margin-top: auto;
}

.section-services {
    padding-top: 64px;
    padding-bottom: 64px;
}

footer {
    overflow: hidden;
}

.footer {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.2;
    padding: 74px 16px 32px;
}

@media (min-width: 768px) {
    .footer {
        padding: 74px 32px 32px;
    }
}

.footer-logo {
    margin-top: 111px;
    text-align: right;
}

.footer-logo svg {
    max-width: 100%;
    height: auto;
}

.footer-block {
    margin-bottom: 64px;
}

.footer-block p:last-child {
    margin-bottom: 0;
}

.footer-contact+.footer-contact {
    margin-top: 30px;
}

.footer-contact p {
    margin-bottom: 0;
}

.footer-contact-title {
    text-transform: uppercase;
}

.footer-contact-title a {
    color: inherit;
    text-decoration: none;
}

.footer-title {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li+li {
    margin-top: 8px;
}

.footer-social a {
    color: inherit;
    text-decoration: underline;
}

.footer-inner {
    display: flex;
    flex-direction: column;
}


@media (max-width: 767.99px) {
    .footer-inner>*:nth-child(1) {
        order: 1;
        margin-bottom: 42px;
    }

    .footer-inner>*:nth-child(2) {
        order: 3;
        margin-bottom: 42px;
    }

    .footer-inner>*:nth-child(3) {
        order: 2;
        margin-bottom: 42px;
    }
}

.footer-copyright {
    font-size: 16px;
    margin-top: 100px;
    display: flex;
    justify-content: start;
    text-align: left;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright a {
    color: inherit;
}

@media (min-width: 992px) {
    .footer-copyright {
        justify-content: end;
        text-align: right;
        gap: 0;
    }

    .footer-copyright div+div:before {
        content: '|';
        margin: 0 4px;
    }

}

.footer-dropdown {
    max-width: 270px;
    min-width: 255px;
}

.footer-dropdown-btn {
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    letter-spacing: -0.4px;
}

.footer-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    display: none;
    padding-top: 16px;
}

.footer-dropdown.open .footer-dropdown-menu {
    display: flex;
}

.footer-dropdown-menu a {
    color: inherit;
}

.footer-dropdown-menu>li:after {
    content: '/';
    margin: 0 3px;
}

.footer-dropdown-menu>li:last-child:after {
    content: none;
}

.aos-init {
    opacity: 0;
}

.aos-animate {
    opacity: 1;
    transition: opacity, transform ease-out;
    transition-duration: 0.6s;
}

.aos-fade-up {
    transform: translateY(50px);
}

.aos-fade-up.aos-animate {
    transform: translate(0);
}

.project {
    position: relative;
    z-index: 1;
}

.project-image,
.project-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.project-image img {
    width: 100%;
    height: auto;
}

.project-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.project-file {
    position: relative;
}

.project-file .btn-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 1;
}

.project-file .project-award {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
}

.project-file .project-award img {
    height: 48px;
    width: auto;
}

.project-body {
    margin-top: 8px;
}

.project-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}

.project-title a {
    color: inherit;
    text-decoration: none;
}

.js-swiper-video {
    opacity: 0;
    transition: all .1s ease-in-out;
}

.js-swiper-video.js-video-loaded {
    opacity: 1;
}

.project-info-title {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    color: rgba(9, 20, 35, 0.5);
    margin-bottom: 4px;
}

.project-info-value {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    line-height: 1;
}

.project-text {
    margin-top: 64px;
}

.blocks {
    font-size: 16px;
    letter-spacing: -0.02px;
    line-height: 1.25;
}

.blocks h1,
.blocks h2 {
    font-weight: 500;
    margin-bottom: 20px;
}

.blocks *+h1,
.blocks *+h2,
.blocks *+h3,
.blocks *+h4,
.blocks *+h5 {
    margin-top: 34px;
}

.blocks h1 {
    font-size: 24px;
}

.blocks h2 {
    font-size: 16px;
}

.project-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    height: 598px;

}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.project-hero-awards {
    position: absolute;
    bottom: 42px;
    right: 42px;
    display: flex;
    gap: 16px;
}

.project-hero-awards img {
    height: 65px;
    width: auto;
}

.project-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    --width: 100%;
}

.project-gallery-item-left,
.project-gallery-item-center,
.project-gallery-item-right {
    display: flex;
}

.project-gallery-item-left {
    justify-content: start;
}

.project-gallery-item-center {
    justify-content: center;
}

.project-gallery-item-right {
    justify-content: end;
}

.project-gallery-width {
    width: 100%;
}

@media (min-width: 992px) {
    .project-gallery-width {
        width: var(--width);
    }
}

.project-gallery-item-auto {
    margin-top: auto;
}

.project-gallery-item {
    margin-bottom: 16px;
}

.project-gallery-item:last-child {
    margin-bottom: 0;
}


.client {
    height: 100%;
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    font-size: 18px;
    background: linear-gradient(0.61deg, rgba(247, 247, 247, 0.2) -0.42%, rgba(247, 247, 247, 0.5) 27.56%, #F7F7F7 99.46%);
}

.client+.client {
    margin-top: 8px;
}

.client-inner {
    padding: 24px 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.client-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image svg,
.client-image img {
    filter: grayscale(1);
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 60px;
}

.client-image svg {
    height: 100%;
}

.client-body {
    display: none;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0px;
}

.client-inner {
    height: 100%;
}

@media (min-width: 992px) {
    .client-body {
        font-size: 15px;
        letter-spacing: 0.03px;
    }
}

@media (min-width: 576px) {
    .client:hover .client-image {
        width: auto;
        height: auto;
        justify-content: start;
        align-items: start;
        margin-bottom: 16px;
    }

    .client:hover .client-image img,
    .client:hover .client-image svg {
        max-width: 124px;
        max-height: 44px;
    }

    .client:hover .client-body {
        display: block;
    }

    .client:hover .client-image,
    .client:hover .client-body {
        animation: fadeIn .6s ease-in-out;
    }
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 66px;
    filter: grayscale(1);
    padding: 40px 0;
}

.stat .logos {
    padding: 0;
    filter: grayscale(0);
    gap: 30px;
    justify-content: end;
}

.stat .logos-item img {
    max-height: 80px;
}

.logos-item img {
    width: auto;
    height: auto;
    max-width: 189px;
    max-height: 70px;
    object-fit: contain;
}

@media (min-width: 1300px) {
    .logos {
        gap: 72px;
        justify-content: end;
    }
}


.project-filters {
    display: flex;
    justify-content: end;
    gap: 16px;
}

.project-filter-btn {
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.project-filter {
    position: relative;
}



@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

.project-filter-options {
    bottom: 100%;
    right: 0;
    position: absolute;
    overflow: hidden;
}

.project-filter-options ul {
    white-space: nowrap;
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-filter-options li a {
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    transition: all .2s;
}

.project-filter-options li a:hover {
    color: var(--color-primary);
}

.project-filter-options .active a {
    font-weight: 600;
    color: var(--color-primary);
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.home-filter {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 20px;
    letter-spacing: -0.32px;
    padding: 10px 0;
    margin-top: 64px;
}

.home-filter-link {
    color: inherit;
    text-decoration: none;
}

.home-filter-title {
    font-weight: 600;
}

.service-projects {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}

.service-projects a {
    color: inherit;
    text-decoration: none;
    transition: all .2s;
}

.service-projects a:hover {
    color: var(--color-primary);
}

.service-projects li:first-child>a {
    font-weight: 600;
}

.service-projects a:before {
    content: '+';
    margin-right: 8px;
}

.text-end .service-projects a:before {
    content: none;
}

.text-end .service-projects a:after {
    content: '+';
    margin-left: 8px;
}

.fixed-bottom {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: none;
}

.fixed-bottom .container {
    display: flex;
    justify-content: end;
}


.cta {
    display: flex;
    border-radius: 19px;
    background-color: rgba(247, 247, 247, 0.6);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 8px;
    align-items: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .fixed-bottom {
        position: fixed;
        bottom: 80px;
        display: block;
    }

    .cta {
        max-width: 456px;
        margin-bottom: 0;
    }
}

.cta-image {
    width: 78px;
    height: 78px;
    border-radius: 15px;
    flex-shrink: 0;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-body {
    flex-grow: 1;
    padding: 7px 8px;
}

.cta-btn {
    flex-shrink: 0;
}

.cta-title {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.cta-text {
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1.2;
    margin-bottom: 0;
}

.cta-btn {
    width: 48px;
    height: 48px;
    background: #F7F7F7;
    border-radius: 10px;
    font-size: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.cta-btn svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    transform: rotate(-45deg);
}

.pt-64 {
    padding-top: 64px !important;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-42 {
    margin-bottom: 42px;
}

.mb-58 {
    margin-bottom: 58px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-200 {
    margin-bottom: 200px;
}

.mb-6 {
    margin-bottom: 4.688rem !important;
}

.list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-menu a {
    padding: 22px 22px 22px 36px;
    font-size: 24px;
    letter-spacing: -0.48px;
    display: flex;
    justify-content: space-between;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    background-color: #F7F7F7;
}

.list-menu a.active {
    background-color: #DEEAFF;
}

.list-menu li+li {
    margin-top: 8px;
}

.row-project {
    --bs-gutter-y: 48px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
}

.col-project {
    margin-top: var(--bs-gutter-y);
}

@media (max-width: 767.99px) {
    .col-project {
        flex: 0 0 auto;
        width: 100% !important;
    }

    .col-project .project-vertical {
        width: 70%;
    }
}

.overflow-hidden {
    overflow: hidden;
}