/* Fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-white-rgb: 255 255 255;
    --color-white-10: rgb(var(--color-white-rgb) / 10%);
    --color-white-20: rgb(var(--color-white-rgb) / 20%);
    --color-white-40: rgb(var(--color-white-rgb) / 40%);
    --color-white-50: rgb(var(--color-white-rgb) / 50%);
    --color-white-60: rgb(var(--color-white-rgb) / 60%);
    --color-gray: #EFF0F1;
    --color-gray-2: #9E9E9E;
    --color-dark-gray: #4C4C4C;
    --color-light-gray: #E6EAF3;
    --color-extra-light-gray: #F2F6F9;
    --color-blue: #4978BC;
    --color-main-blue: #253A71;
    --color-light-blue: #6DACDE;
    --color-light-blue-2: #E6EFF6;
    --color-light-blue-3: #CAE0EF;
    --color-red: #F32E2E;
    /* Fonts */
    --font-family-primary: 'Montserrat';
    /* Container */
    --container-width: 84rem;
    --container-padding: 1rem;
    /* Swiper */
    --swiper-theme-color: var(--color-main-blue);
    --swiper-navigation-size: 3rem;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-horizontal-gap: 3px;
    --swiper-pagination-bullet-inactive-color: #C0C0C0;
    --swiper-pagination-bullet-inactive-opacity: 1;
    /* Choices */
    --choices-font-size-md: 0.875rem;
    --choices-bg-color: var(--color-white);
    --choices-input-height: 3.5rem;
    --choices-keyline-color: var(--color-light-gray);
    --choices-list-single-padding: 0;
    --choices-placeholder-opacity: 1;
    --choices-arrow-margin-top: 0;
    --choices-arrow-right: 1rem;
    --choices-bg-color-dropdown: var(--color-gray);
    --choices-dropdown-item-padding: 0.75rem 1rem;
    --choices-highlighted-color: var(--color-white);
}

/* Normalize */
html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    scrollbar-gutter: stable;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

main,
header,
footer {
    display: block;
}

hr {
    overflow: visible;
    height: 0;
}

:where(ul[class]) {
    list-style: none;
}

:where(ul, ol):where([class]) {
    padding-left: 0;
}

a {
    display: inline-block;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}

code,
kbd,
samp {
    font-family: monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    shape-margin: 1rem;
    background-size: cover;
    background-repeat: no-repeat;
    border-style: none;
}

video {
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 0.0625rem dotted ButtonText;
}

legend {
    display: table;
    max-width: 100%;
    white-space: normal;
    color: inherit;
}

textarea {
    overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -0.125rem;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

[hidden] {
    display: none;
}

[fill] {
    fill: currentColor;
}

[stroke] {
    stroke: currentColor;
}

svg * {
    transition-property: fill, stroke;
}

::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue);
}

::-webkit-scrollbar-track {
    background: var(--color-gray-2);
}

* {
    scrollbar-face-color:var(--color-blue);
    scrollbar-track-color: var(--color-gray-2);
}

::selection {
    background-color: var(--color-blue);
    color: var(--color-white)
}

/* HTML */
html {
    min-width: 320px;
}

/* Body */
body {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -2%;
    color: var(--color-black);
}

/* Title */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 1.625rem;
    line-height: 1.23;
}

@media (min-width: 992px) {
    h1 {
        font-size: 4.44vw;
        line-height: 1.125;
    }
}

@media (min-width: 1440px) {
    h1 {
        font-size: 4rem;
    }
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 992px) {
    h2 {
        font-size: 3.89vw;
        line-height: 1.143;
    }
}

@media (min-width: 1440px) {
    h2 {
        font-size: 3.5rem;
    }
}

h3 {
    font-size: 1.3125rem;
    line-height: 1.56;
}

@media (min-width: 992px) {
    h3 {
        font-size: 2.77778vw;
        line-height: 1;
    }
}

@media (min-width: 1440px) {
    h3 {
        font-size: 2.5rem;
    }
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    h4 {
        font-size: 1.5rem;
        line-height: 1.167;
    }
}

h5 {
    text-transform: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    h5 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

h6 {
    text-transform: none;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: -1%;
}

@media (min-width: 992px) {
    h6 {
        font-size: 1rem;
        line-height: 1.25;
        letter-spacing: -2%;
    }
}

/* Title Color */
:is(h1, h2, h3, h4, h5, h6) > span {
    color: var(--color-blue);
}

/* Subtitle */
.subtitle {
    position: relative;
    display: inline-block;
    padding: 0 0.625rem;
    background-image: url('../images/icons/bracket-left.svg'), url('../images/icons/bracket-right.svg');
    background-position: left 3px top 50%, right 3px top 50%;
    background-size: 0.1875rem 0.9375rem;
    background-repeat: no-repeat;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-blue);
}

@media (min-width: 992px) {
    .subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Link */
.link {
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-main-blue);
}

@media (min-width: 992px) {
    .link {
        font-size: 1rem;
    }
}

.link:hover {
    color: var(--color-blue);
}

/* Social */
.social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.social a {
    display: flex;
    padding: 0.25rem;
}

.social a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--color-white);
    transition: inherit;
}

.social a:hover svg {
    fill: var(--color-light-blue);
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-main-blue);
    border: 0;
    border-radius: 2rem;
    outline: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.42857;
    letter-spacing: 0;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        line-height: 1.5;
    }
}

.btn:hover {
    background-color: var(--color-blue);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn svg {
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    color: inherit;
}

.btn-gray {
    background-color: var(--color-gray);
    color: var(--color-main-blue);
}

.btn-gray:hover {
    background-color: var(--color-light-blue);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    border: 0.0625rem solid var(--color-light-gray);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3%;
    color: var(--color-black);
}

.btn-white:hover {
    background-color: var(--color-main-blue);
    color: var(--color-white);
}

/* Container */
.container {
    max-width: calc(var(--container-width) + 2 * var(--container-padding));
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Main */
body > main {
    position: relative;
    overflow: hidden;
}

/* Admin Bar */
.admin-bar .header {
    top: 32px;
}

.admin-bar .header-nav {
    height: calc(100vh - 32px);
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }

    .admin-bar .header-nav {
        height: calc(100vh - 46px);
    }
}

@media (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
}

/* Header */
.header {
    --header-color: var(--color-white);
    padding: 1rem 0;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.3s;
}

.header:after {
    content: '';
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.header.active:after {
    visibility: visible;
    opacity: 1;
}

.header.scrolled:not(.active) {
    --header-color: var(--color-black);
    background-color: var(--color-white-50);
    backdrop-filter: blur(1rem);
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.header-row {
    display: grid;
    grid-template-columns: repeat(2, auto); 
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 992px) {
    .header-row {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.header-nav {
    width: 100%;
    height: 100vh;
    padding-bottom: 5.4375rem;
    background-color: var(--color-white);
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(-100%);
    transition: all 0.5s;
}

@media (min-width: 992px) {
    .header-nav {
        max-width: 44.5rem;
    }
}

.header.active .header-nav {
    transform: translateX(0);
}

.header-nav-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem;
    --header-color: var(--color-black);
}

@media (min-width: 992px) {
    .header-nav-row {
        padding: 2rem 3rem;
    }
}

.header .menu {
    padding-top: 2rem;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .header .menu {
        padding-top: 0;
        border-top: 0;
    }
}

.header .menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.125rem 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -3%;
    font-size: 1rem;
    line-height: 2;
    color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 390px) {
    .header .menu li a {
        font-size: 1.25rem;
        line-height: 2.1;
    }
}

@media (min-width: 992px) {
    .header .menu li a {
        padding: 0.125rem 3rem;
        font-size: 1.5rem;
        line-height: 2.417;
    }
}

.header .menu li a:hover {
    background-color: #F2F6F9;
}

.header .menu li a svg {
    flex: 0 0 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--color-black);
    transform: translateX(25%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

@media (min-width: 390px) {
    .header .menu li a svg {
        flex: 0 0 2.0625rem;
        width: 2.0625rem;
        height: 2.0625rem;
    }
}

.header .menu li a:hover svg {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.btn-menu {
    position: relative;
    grid-column: 1;
    justify-self: start;
    padding-right: 2.5rem;
    background: none;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.25;
    color: var(--header-color);
    cursor: pointer;
    transition: color 0.3s;
}

.btn-menu:before,
.btn-menu:after {
    content: '';
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--header-color);
    position: absolute;
    right: 0;
    transition: all 0.3s;
}

.header.active .btn-menu:before,
.header.active .btn-menu:after {
   background-color: var(--color-black);
}

.btn-menu:before {
    top: 0.3125rem;
}

.header.active .btn-menu:before {
    top: 49%;
    transform: rotate(-45deg) translate(0, -50%);
}

.btn-menu:after {
    bottom: 0.3125rem;
}

.header.active .btn-menu:after {
    bottom: 49%;
    transform: rotate(45deg) translate(0, 50%);
}

.header-social {
    display: none;
    grid-column: 2;
    justify-self: center;
}

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

.header-social .social {
    gap: 0;
}

.header-social .social a {
    padding: 0.825625rem;
    border: 0.0625rem solid var(--color-white-20);
    border-radius: 50%;
    backdrop-filter: blur(0.25rem);
}

.header-social .social a:hover {
    background-color: var(--color-light-blue);
    border-color: var(--color-light-blue);
}

.header-social .social a svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--header-color);
}

.header-social .social a:hover svg {
    fill: var(--color-white);
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 2;
    justify-self: end;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.428572;
    letter-spacing: -3%;
    color: var(--header-color);
}

@media (min-width: 992px) {
    .header-phone {
        grid-column: 3;
        background-color: var(--color-white-10);
        padding: 0.4375rem 1.25rem;
        border: 0.0625rem solid var(--color-white-40);
        border-radius: 2rem;
        backdrop-filter: blur(0.5rem);
    }
}

@media (min-width: 992px) {
    .header-phone:hover {
        background-color: var(--color-main-blue);
        border-color: var(--color-main-blue);
        color: var(--color-white);
    }
}

@media (min-width: 992px) {
    .header-nav .header-phone {
        display: none;
    }
}

.header-phone span:first-child:not(:last-child) {
    display: none;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.16667;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .header-phone span:first-child:not(:last-child) {
        display: inline;
    }
}

/* Hero */
.section-hero {
    --image-height: 102.459vw;
    --before-height: 18.44262vw;
    --padding-top: 95.7991vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--color-white);
    padding-top: var(--padding-top);
    padding-bottom: 2.3125rem;
}

@media (min-width: 480px) {
    .section-hero {
        --image-height: 61.1111vw;
        --before-height: 18.6111vw;
        --padding-top: 50.41666vw;
    }
}

@media (min-width: 992px) {
    .section-hero {
        padding-bottom: 5rem;
    }
}

.section-hero:before {
    content: '';
    width: 100%;
    height: var(--before-height);
    background: url('../images/hero-bg.png') 0 0 / 100% auto no-repeat;
    position: absolute;
    top: calc(var(--image-height) - var(--before-height));
    left: 0;
}

.section-hero:after {
    content: '';
    width: 100%;
    height: var(--image-height);
    background-color: var(--color-gray);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero-row {
    position: relative;
    margin-bottom: 0.625rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: minmax(0, 59.7222vw) auto;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .hero-content > div:only-child {
        grid-column: 2;
    }
}

.hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

@media (min-width: 768px) {
    .hero-body {
        align-items: flex-start;
    }
}

.hero-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.11111;
    color: rgba(0, 0, 0, 0.7);
}

.hero-text p {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.375rem;
}

@media (min-width: 992px) {
    .hero-text p {
        align-items: center;
        gap: 0.5rem;
    }
}

.hero-text span br {
    display: none;
}

@media (min-width: 992px) {
    .hero-text span br {
        display: inline;
    }
}

.hero-text strong {
    font-size: 2rem;
    line-height: 1;
    color: var(--color-black);
}

@media (min-width: 992px) {
    .hero-text strong {
        font-size: 3rem;
        line-height: 1.166666;
    }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .hero-btns {
        justify-content: flex-start;
    }
}

.hero-btns .btn {
    padding: 0.8225rem;
}

@media (min-width: 992px) {
    .hero-btns .btn {
        padding: 1rem 1.5rem;
    }
}

.hero-image {
    width: 100%;
    height: var(--image-height);
    border-bottom: 0.125rem solid var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About */
.section-about {
    position: relative;
    z-index: 1;
    padding: 3.4375rem 0 3rem;
}

@media (min-width: 992px) {
    .section-about {
        padding: 9.375rem 0;
    }
}

.section-about:after {
    content: '';
    width: 100%;
    height: 100%;
    min-height: 141.5rem;
    background: linear-gradient(180deg, #F2F6F9 0%, #FFFFFF 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-top {
        grid-template-columns: minmax(0, 32.3125rem) minmax(0, 25.625rem);
    }
}

@media (min-width: 992px) {
    .about-top {
        margin-bottom: 4rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .about-top > div:only-child {
        grid-column: 2;
    }
}

.about-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 992px) {
    .about-intro {
        gap: 3.5rem;
    }
}

.about-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -3%;
}

@media (min-width: 992px) {
    .about-text {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

.about-text strong {
    font-weight: 500;
}

.about-items {
    --cols: 2;
    --col-gap: 0rem;
    --col-width: calc((100% - var(--col-gap) * (var(--cols) - 1)) / var(--cols));
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem var(--col-gap);
    margin-bottom: 2.625rem;
}

@media (min-width: 768px) {
    .about-items {
        --cols: 3;
    }
}

@media (min-width: 992px) {
    .about-items {
        margin-bottom: 8rem;
    }
}

.about-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.5rem 0.25rem;
    flex: 0 0 var(--col-width);
    max-width: var(--col-width);
    padding-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -3%;
}

@media (min-width: 992px) {
    .about-item {
        gap: 1.5rem 1rem;
        padding-left: 1.5rem;
    }
}

.about-item__title {
    position: relative;
    width: 100%;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.334;
}

@media (min-width: 992px) {
    .about-item__title {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.about-item__title:before {
    content: '';
    width: 0.125rem;
    height: 100%;
    background-color: var(--color-main-blue);
    position: absolute;
    top: 0;
    left: -0.75rem;
}

@media (min-width: 992px) {
    .about-item__title:before {
        left: -1.5rem;
    }
}

.about-item__value {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-blue);
}

@media (min-width: 992px) {
    .about-item__value {
        font-size: 6.25rem;
        line-height: 1;
    }
}

.about-item__label {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.334;
    color: var(--color-gray-2);
}

@media (min-width: 992px) {
    .about-item__label {
        font-size: 1.875rem;
        line-height: 1;
    }
}

.about-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-bottom {
        flex-direction: row;
        align-items: stretch;
        gap: 3.3%;
    }
}

.about-bottom > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 992px) {
    .about-bottom > div {
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .about-description {
        max-width: 20.387%;
    }
}

@media (min-width: 992px) {
    .about-description {
        padding-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .about-description > h4 {
        display: none;
    }
}

@media (min-width: 768px) {
    .about-gallery {
        max-width: 38.2444%;
        margin-bottom: -1.375rem;
    }
}

@media (min-width: 768px) {
    .about-tagline {
        max-width: 30.209%;
    }
}

@media (min-width: 992px) {
    .about-tagline {
        padding-left: 2.75rem;
    }
}

.about-name {
    font-size: 1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    display: none;
    width: 100%;
    padding-bottom: 104%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .about-image {
        display: block;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-gallery .swiper {
    width: 100%;
    height: 100%;
}

.about-gallery-item {
    --arrows-height: 0.8125rem;
    --arrows-padding: 0.75rem;
    position: relative;
    height: 100%;
    margin: auto;
    padding: var(--arrows-padding);
}

@media (min-width: 768px) {
    .about-gallery-item {
        --arrows-padding: 1.375rem;
    }
}

.about-gallery-item > span {
    width: calc(100% - var(--arrows-padding) * 4);
    height: var(--arrows-height);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.75s;
}

.swiper-slide-active .about-gallery-item > span {
    width: 100%;
}

.about-gallery-item > span:before,
.about-gallery-item > span:after {
    content: '';
    display: block;
    width: var(--arrows-height);
    height: 100%;
    border: 0.125rem solid var(--color-black);
    position: absolute;
}

.about-gallery-item > span:first-child {
    top: calc(var(--arrows-padding) * 2);
}

.swiper-slide-active .about-gallery-item > span:first-child {
    top: 0;
}

.about-gallery-item > span:first-child:before {
    border-right: 0;
    border-bottom: 0;
    left: 0;
}

.about-gallery-item > span:first-child:after {
    border-left: 0;
    border-bottom: 0;
    right: 0;
}

.about-gallery-item > span:last-child {
    bottom: calc(var(--arrows-padding) * 2);
}

.swiper-slide-active .about-gallery-item > span:last-child {
    bottom: 0;
}

.about-gallery-item > span:last-child:before {
    border-top: 0;
    border-right: 0;
    left: 0;
}

.about-gallery-item > span:last-child:after {
    border-top: 0;
    border-left: 0;
    right: 0;
}

.about-gallery-item picture {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    padding-bottom: 89.821%;
}

@media (min-width: 640px) {
    .about-gallery-item picture {
        padding-bottom: 64%;
    }
}

@media (min-width: 768px) {
    .about-gallery-item picture {
        padding-bottom: 106.383%;
    }
}

.about-gallery-item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.section-about .swiper-nav {
    display: none;
}

@media (min-width: 768px) {
    .section-about .swiper-nav {
        display: flex;
    }
}

.section-about .swiper-pagination {
    position: static;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .section-about .swiper-pagination {
        display: none;
    }
}

.about-tagline > h4 {
    display: none;
    margin-top: auto;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .about-tagline > h4 {
        display: block;
    }
}

.about-tagline > .btn {
    margin: 0.5rem auto 0;
}

@media (min-width: 768px) {
    .about-tagline > .btn {
        margin: 0;
    }
}

/* Visualization */
.section-visualization {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.visualization-row {
    min-height: 0.375rem;
}

.visualization-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .visualization-top {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
}

.visualization-items {
    --cols: 2;
    --col-gap: 0.75rem;
    --col-width: calc((100% - var(--col-gap) * (var(--cols) - 1)) / var(--cols));
    display: flex;
    flex-wrap: wrap;
    gap: 2.125rem var(--col-gap);
}

@media (min-width: 992px) {
    .visualization-items {
        --cols: 4;
        align-items: center;
        justify-content: center;
    }
}

.visualization-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
    flex: 0 0 var(--col-width);
    max-width: var(--col-width);
    padding-top: 0.625rem;
    padding-left: 0.5rem;
}

@media (min-width: 480px) {
    .visualization-item {
        flex-direction: row;
        align-items: center;
        padding-left: 0;
    }
}

.visualization-item__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-light-gray);
    border-radius: 50%;
}

.visualization-item__icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--color-light-blue);
    outline: 0.1875rem solid var(--color-white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.625rem;
    line-height: 1.4;
    letter-spacing: 0;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
}

.visualization-item__icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.visualization-image {
    position: relative;
    z-index: -1;
    display: block;
    margin-top: 0.25rem;
    padding-bottom: 52.512%;
}

@media (min-width: 480px) {
    .visualization-image {
        margin-top: -0.375rem;
        padding-bottom: 43.6112%;
    }
}

.visualization-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

/* Infrastructure */
.section-infrastructure {
    position: relative;
    z-index: 1;
    background-color: var(--color-extra-light-gray);
    background-image: url('../images/infrastructure-bg-1.png'), url('../images/infrastructure-bg-2.png'), url('../images/infrastructure-bg-3.png');
    background-position: left top, right bottom, left calc(50% - 34.25rem) bottom 9.5625rem;
    background-size: 5.3125rem auto, 5.375rem auto, 0;
    background-repeat: no-repeat;
    padding: 3.125rem 0 3rem;
    overflow: hidden;
}

@media (min-width: 480px) {
    .section-infrastructure {
        background-size: 19.30556vw auto, 16.52778vw auto;
    }
}

@media (min-width: 992px) {
    .section-infrastructure {
        padding: 9.375rem 0;
    }
}

@media (min-width: 1440px) {
    .section-infrastructure {
        background-size: auto;
    }
}

.infrastructure-row {
    max-width: 97.6191%;
    margin: 0 auto;
}

.infrastructure-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .infrastructure-top {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
}

.infrastructure-item {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .infrastructure-item {
        grid-template-columns: minmax(0, 23.629%) minmax(0, 39.635%) minmax(0, 22.561%);
    }
}

.infrastructure-item__head {
    display: none;
}

@media (min-width: 768px) {
    .infrastructure-item__head {
        display: block;
    }
}

.infrastructure-item__head .swiper-fraction {
    margin-bottom: 1rem;
}

.infrastructure-item__title {
    font-size: 1.125rem;
    line-height: 1.555556;
}

@media (min-width: 768px) {
    .infrastructure-item__title {
        font-size: 2.77778vw;
        line-height: 1;
    }
}

@media (min-width: 1440px) {
    .infrastructure-item__title {
        font-size: 2.5rem;
    }
}

.infrastructure-item__img picture {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 102.86%;
}

@media (min-width: 480px) {
    .infrastructure-item__img picture {
        padding-bottom: 78%;
    }
}

@media (min-width: 768px) {
    .infrastructure-item__img picture {
        padding-bottom: 110.962%;
    }
}

.infrastructure-item__img picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.infrastructure-item__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .infrastructure-item__body {
        padding-bottom: 9.375vw;
        text-align: left;
    }
}

@media (min-width: 1440px) {
    .infrastructure-item__body {
        padding-bottom: 8.4375rem;
    }
}

.infrastructure-item__text {
    letter-spacing: -3%;
    color: var(--color-dark-gray);
}

@media (min-width: 768px) {
    .infrastructure-item__body .swiper-fraction {
        display: none;
    }
}

@media (min-width: 768px) {
    .infrastructure-item__body .infrastructure-item__title {
        display: none;
    }
}

.infrastructure-item .swiper-fraction {
    color: var(--color-dark-gray);
}

.section-infrastructure .swiper-nav {
    display: none;
}

@media (min-width: 768px) {
    .section-infrastructure .swiper-nav {
        display: flex;
        position: absolute;
        right: 22.561%;
        bottom: 0;
        z-index: 1;
        transform: translateX(100%);
    }
}

@media (min-width: 992px) {
    .section-infrastructure .swiper-nav {
        bottom: 2.70833vw;
    }
}

@media (min-width: 1440px) {
    .section-infrastructure .swiper-nav {
        bottom: 2.4375rem;
    }
}

.section-infrastructure .swiper-pagination {
    position: static;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .section-infrastructure .swiper-pagination {
        display: none;
    }
}

/* Apartments */
.section-apartments {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .section-apartments {
        padding: 9.375rem 0 8.875rem;
    }
}

.apartments-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .apartments-top {
        gap: 1.5rem;
        max-width: 63%;
        margin: 0 auto 4rem;
    }
}

.apartments-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: -3%;
}

@media (min-width: 992px) {
    .apartments-filter {
        margin-bottom: 4rem;
        padding: 1.5rem 0;
        border-block: 1px solid var(--color-light-gray); 
    }
}

.apartments-filter__sections {
    width: 100%;
}

@media (min-width: 992px) {
    .apartments-filter__sections {
        max-width: 24.108%;
    }
}

.apartments-filter__sections .choices .choices__inner,
.apartments-filter__sections .choices[data-type*=select-one] .choices__inner {
    background-color: var(--color-gray);
}

@media (min-width: 992px) {
    .apartments-filter__sections .choices .choices__inner,
    .apartments-filter__sections .choices[data-type*=select-one] .choices__inner {
        --choices-input-height: 3rem;
        padding: 0.875rem 1rem;
        border: none;
    }
}

.apartments-filter__rooms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.apartments-filter__rooms--list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}

.apartments-filter__room input[type=checkbox] {
    display: none;
}

.apartments-filter__room span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.0625rem solid var(--color-light-gray);
    border-radius: 50%;
    letter-spacing: -4%;
    cursor: pointer;
    transition: all 0.3s;
}

.apartments-filter__room input:checked + span {
    background-color: var(--color-main-blue);
    border-color: var(--color-main-blue);
    color: var(--color-white);
}

.apartments-filter__floors {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    padding-right: 2.5rem;
}

@media (min-width: 992px) {
    .apartments-filter__floors {
        width: 20.727%;
        margin: 0 auto;
    }
}

.apartments-filter__floors--slider {
    width: 100%;
    height: 0.0625rem;
    margin-left: 1rem;
    border: none;
    box-shadow: none;
}

.apartments-filter__floors--slider .noUi-connect {
    background-color: var(--color-light-gray);
}

.apartments-filter__floors--slider .noUi-handle {
    width: 0.5rem;
    height: 0.5rem;
    right: -0.25rem;
    top: -0.25rem;
    border-radius: 50%;
    background-color: var(--color-main-blue);
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.apartments-filter__floors--slider .noUi-handle:before,
.apartments-filter__floors--slider .noUi-handle:after {
    display: none !important;
}

.apartments-filter__floors--slider .slider-tooltip {
    position: absolute;
    top: -0.25rem; 
}

.apartments-filter__floors--slider .left-handle-value {
    right: 1rem; 
}

.apartments-filter__floors--slider .right-handle-value {
    left: 1rem;
}

.apartments-filter__floors--slider .noUi-pips-horizontal {
    padding: 0;
    z-index: -2;
}

.apartments-filter__floors--slider .noUi-marker-horizontal.noUi-marker {
    width: 0.0625rem;
    height: 0.25rem;
    background-color: var(--color-light-gray);
    margin-top: -0.125rem;
}

.apartments-filter__floors--slider .noUi-marker-large,
.apartments-filter__floors--slider .noUi-value {
    display: none !important;
}

.apartments-filter__filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background-color: var(--color-white);
    padding: 1.2rem 1.3125rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -4%;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .apartments-filter__filter {
        display: none;
    }
}

.apartments-filter__filter:hover {
    background-color: var(--color-main-blue);
    color: var(--color-white);
}

.apartments-filter__filter svg {
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
    fill: none;
    color: inherit;
}

.apartments-filter div[inert] {
    display: none !important;
}

.apartments-filter-popup {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 20.625rem;
    padding: 2rem;
}

@media (min-width: 992px) {
    .apartments-filter-popup {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        max-width: 58.5rem;
        width: 100%;
        padding: 0;
    }
}

.apartments-filter-popup__title {
    display: block;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 992px) {
    .apartments-filter-popup__title {
        display: none;
    }
}

.apartments-filter__btns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 992px) {
    .apartments-filter__btns {
        width: auto;
        margin-left: auto;
    }
}

.apartments-filter__apply {
    display: inline-flex;
}

@media (min-width: 992px) {
    .apartments-filter__apply {
        display: none;
    }
}

@media (min-width: 992px) {
    .apartments-filter__reset {
        text-transform: none;
    }
}

.apartments-nofound {
    padding: 5rem 1rem;
    text-align: center;
}

.apartments-items .container {
    padding-right: 0;
}

@media (min-width: 640px) {
    .apartments-items .container {
        padding-right: var(--container-padding);
    }
}

.apartment-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 21.25rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--color-gray);
}

.apartment-item__img img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: contain;
}

.apartment-item__title {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -3%;
    color: rgba(0, 0, 0, 0.7);
}

 @media (min-width: 992px) {
    .apartment-item__title {
        font-size: 1.25rem;
        line-height: 1.4;
    }
 }

.section-apartments .swiper-pagination {
    position: static;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .section-apartments .swiper-pagination {
        margin-top: 2.5rem;
    }
}

/* Calculation */
.section-calculation {
    position: relative;
    z-index: 1;
}

.section-calculation:before {
    content: '';
    width: 215px;
    height: 171px;
    background: url('../images/calculation-bg-mobile.png') 0 / contain no-repeat;
    position: absolute;
    top: -2.6875rem;
    right: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .section-calculation:before {
        content: none;
    }
}

.calculation-row {
    max-width: 41.5rem;
    margin: 0 auto;
    padding-bottom: 1.625rem;
}

@media (min-width: 768px) {
    .calculation-row {
        min-height: 30rem;
    }
}

.calculation-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .calculation-top {
        margin-bottom: 3rem;
    }
}

.calculation-image {
    position: relative;
    z-index: -1;
    display: block;
    padding-bottom: 74.796%;
}

@media (min-width: 768px) {
    .calculation-image {
        margin-top: -30rem;
        padding-bottom: 63.334%;
    }
}

.calculation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

/* Cost */
.section-cost {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .section-cost {
        padding: 9.375rem 0;
    }
}

.cost-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cost-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .cost-row {
        max-width: 69.875rem;
        margin: 0 auto;
    }
}

.cost-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cost-content {
        max-width: 84%;
    }
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.5rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 0.5rem;
}

@media (min-width: 992px) {
    .cost-item {
        gap: 1.5rem;
        min-height: 6rem;
        padding: 1.75rem 1.5rem;
    }
}

.cost-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.cost-item__icon img {
    object-fit: contain;
}

.cost-bgs > span:nth-child(1),
.cost-bgs > span:nth-child(2),
.cost-bgs > span:nth-child(3) {
    width: 100%;
    position: absolute;
    z-index: -1;
}

@media (min-width: 768px) {
    .cost-bgs > span:nth-child(1) {
        max-width: 49.08vw;
        height: 49.17vw;
        background: url('../images/cost-bg-1.png') 0 / contain no-repeat;
        top: 9.375rem;
        left: 0;
    }
}

@media (min-width: 1440px) {
    .cost-bgs > span:nth-child(1) {
        max-width: 44.1875rem;
        height: 44.25rem;
    }
}

.cost-bgs > span:nth-child(2) {
    max-width: 24.375rem;
    height: 46.875rem;
    margin: auto;
    background: url('../images/cost-bg-mob-2.png') 0 / contain no-repeat;
    top: -3rem;
    left: auto;
    right: 0;
}

@media (min-width: 768px) {
    .cost-bgs > span:nth-child(2) {
        max-width: 60.8125rem;
        height: 46.25rem;
        background-image: url('../images/cost-bg-2.png');
        left: 0;
    }
}

@media (min-width: 992px) {
    .cost-bgs > span:nth-child(2) {
        top: 5rem;
    }
}

@media (min-width: 768px) {
    .cost-bgs > span:nth-child(3) {
        max-width: 31.8125rem;
        height: 57.6875rem;
        background: url('../images/cost-bg-3.png') 0 / contain no-repeat;
        top: 2rem;
        right: 0;
    }
}

/* Plan */
.section-plan {
    position: relative;
    z-index: 1;
}

.plan-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .plan-top {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 0.5rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 992px) {
    .plan-top > *:first-child {
        width: 100%;
    }

    .plan-top > .plan-title:nth-of-type(2) {
        margin-left: auto;
    }

    .plan-top > .subtitle:not(:first-child):has(+ .plan-title) {
        margin-bottom: 0.75rem;
    }
}

.plan-title {
    display: none;
}

@media (min-width: 992px) {
    .plan-title {
        display: block;
    }
}

@media (min-width: 992px) {
    .plan-heading {
        display: none;
    }
}

.plan-image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 71.722%;
}

@media (min-width: 480px) {
    .plan-image {
        padding-bottom: 53.471%;
    }
}

@media (min-width: 992px) {
    .plan-image {
        padding-bottom: 48.6112%;
    }
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Documents */
.section-documents {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .section-documents {
        padding: 9.375rem 0;
    }
}

.section-documents:before {
    content: '';
    width: 100%;
    max-width: 24.375rem;
    height: 28.875rem;
    background: url('../images/documents-bg-mob-1.png') 0 / contain no-repeat;
    position: absolute;
    top: 5rem;
    left: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .section-documents:before {
        max-width: 52.99vw;
        height: 86.11vw;
        background-image: url('../images/documents-bg-1.png');
        top: 0;
    }
}

@media (min-width: 1440px) {
    .section-documents:before {
        max-width: 47.6875rem;
        height: 77.5rem;
    }
}

.section-documents:after {
    content: '';
    width: 100%;
    max-width: 9.875rem;
    height: 9.875rem;
    background: url('../images/documents-bg-mob-2.png') 0 / contain no-repeat;
    position: absolute;
    top: 3rem;
    right: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .section-documents:after {
        max-width: 37.99vw;
        height: 49.16vw;
        background-image: url('../images/documents-bg-2.png');
        top: 0;
    }
}

@media (min-width: 1440px) {
    .section-documents:after {
        max-width: 34.1875rem;
        height: 44.25rem;
    }
}

.documents-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .documents-top {
       gap: 1.5rem;
       margin-bottom: 4rem;
   }
}

.documents-items {
    --cols: 1;
    --col-gap: 0.5rem;
    --col-width: calc((100% - var(--col-gap) * (var(--cols) - 1)) / var(--cols));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--col-gap);
}

@media (min-width: 768px) {
    .documents-items {
        --cols: 3;
    }
}

@media (min-width: 992px) {
    .documents-items {
        --col-gap: 1rem;
    }
}

.document-item {
    display: flex;
    align-items: center;
    flex: 0 0 var(--col-width);
    max-width: var(--col-width);
    padding: 1rem;
    background-color: var(--color-white);
    border: 0.0625rem solid var(--color-light-gray);
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .document-item {
        padding: 1.94vw 2.22vw;
    }
}

@media (min-width: 1440px) {
    .document-item {
        padding: 1.75rem 2rem;
    } 
}

.document-item:hover {
    border-color: var(--color-light-blue);
}

.document-item__icon {
    flex: 0 0 2.25rem;
    max-width: 2.25rem;
}

@media (min-width: 992px) {
    .document-item__icon {
        flex: 0 0 3.125rem;
        max-width: 3.125rem;
    }
}

.document-item__icon img {
    object-fit: contain;
}

.document-item__title {
    margin: 0 0.75rem 0 1.875rem;
    text-transform: none;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-black);
}

@media (min-width: 390px) {
    .document-item__title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .document-item__title {
        margin-left: 2.22vw;
        font-size: 1.66vw;
        line-height: 1.16;
    }
}

@media (min-width: 1440px) {
    .document-item__title {
        margin-left: 2rem;
        font-size: 1.5rem;
    }
}

.document-item svg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    padding: 0.75rem;
    background-color: var(--color-light-blue-2);
    border-radius: 50%;
    color: var(--color-black);
    fill: none;
    transition: inherit;
}

.document-item:hover svg {
    background-color: var(--color-light-blue);
    color: var(--color-white);
}

/* Location */
.section-location {
    position: relative;
    z-index: 1;
}

.location-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .location-top {
        margin-bottom: 4rem;
    }
}

.location-image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 76.845%;
}

@media (min-width: 480px) {
    .location-image {
        padding-bottom: 53.471%;
    }
}

@media (min-width: 992px) {
    .location-image {
        padding-bottom: 48.6112%;
    }
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Recent Posts */
.section-recent-posts {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .section-recent-posts {
        padding: 9.375rem 0;
    }
}

.recent-posts-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .recent-posts-top {
        margin-bottom: 4rem;
    }
}

.recent-posts-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.section-recent-posts .swiper-nav {
    display: none;
}

@media (min-width: 992px) {
    .section-recent-posts .swiper-nav {
       display: flex;
    }
}

.section-recent-posts .swiper-button-prev,
.section-recent-posts .swiper-button-next {
    background-color: var(--color-gray);
}

.recent-posts-slider .container {
    padding-right: 0;
}

@media (min-width: 640px) {
    .recent-posts-slider .container {
        padding-right: var(--container-padding);
    }
}

.recent-posts-slider .swiper-slide {
    height: auto;
}

.post-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    background-color: var(--color-white);
}

.post-item__img {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    padding-bottom: 78.08%;
}

@media (min-width: 480px) {
    .post-item__img {
        padding-bottom: 58%;
    }
}

@media (min-width: 640px) {
    .post-item__img {
        padding-bottom: 64.026%;
    }
}

.post-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.post-item__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 992px) {
    .post-item__meta {
        gap: 1.5rem;
        margin-top: 0.5rem;
        font-size: 1rem;
    }
}

.post-item__cat {
    letter-spacing: -3%;
    color: var(--color-gray-2);
}

.post-item__date {
    position: relative;
    padding-left: 0.75rem;
    color: var(--color-blue);
}

@media (min-width: 992px) {
    .post-item__date {
        padding-left: 1.5rem;
    }
}

.post-item__date:before {
    content: '';
    width: 0.0625rem;
    height: 0.75rem;
    background-color: var(--color-black);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.2;
}

@media (min-width: 992px) {
    .post-item__date:before {
        background-color: var(--color-main-blue);
    }
}

.post-item__title {
    font-size: 1rem;
}

@media (min-width: 390px) {
    .post-item__title {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .post-item__title {
        max-height: 3.5rem;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 1.67vw;
        color: var(--color-main-blue);
    }
}

@media (min-width: 1440px) {
    .post-item__title {
        font-size: 1.5rem;
    }
}

.post-item__text {
    font-size: 0.875rem;
    line-height: 1.42857;
}

@media (min-width: 992px) {
    .post-item__text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.post-item .link {
    margin-top: auto;
}

.popup-post {
    max-width: 70.6875rem;
    width: 96%;
    margin: 0 1rem;
    padding: 1.5rem;
    background-color: var(--color-white);
}

@media (min-width: 768px) {
    .popup-post {
        padding: 4rem;
    }
}

.popup-post__row {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 3rem;
}

@media (min-width: 992px) {
    .popup-post__row {
        grid-template-columns: minmax(0, 28.4375rem) minmax(0, 31.25rem);
    }
}

.popup-post__row > div:only-child {
    grid-column: 1 / span 2;
}

.popup-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-post__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.popup-post .post-item__meta {
    margin-top: 0;
}

.section-recent-posts .swiper-pagination {
    position: static;
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .section-recent-posts .swiper-pagination {
        display: none;
    }
}

/* Contact */
.section-contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-row {
    max-width: 23.9375rem;
    margin: 0 auto;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-row {
        min-height: 27rem;
        margin: 0;
    }
}

.contact-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-top {
       align-items: flex-start;
       text-align: left;
   }
}

@media (min-width: 992px) {
    .contact-top {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .contact-form .form-fields {
        margin-bottom: 1rem;
    }
}

.contact-image {
    position: relative;
    z-index: -1;
    display: block;
    padding-bottom: 53.417%;
}

@media (min-width: 768px) {
    .contact-image {
        margin-top: -27rem;
        padding-bottom: 53.473%;
    }
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Footer */
.footer {
    background-color: var(--color-main-blue);
    color: var(--color-white);
}

.footer-row {
    position: relative;
    z-index: 1;
}

.footer-row:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../images/footer-bg-mob.png') 50% 1rem / contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (min-width: 992px) {
    .footer-row:before {
        background: url('../images/footer-bg.png') 0 0 / contain no-repeat;
        left: -5rem;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    padding: 2.5rem 0 1.5rem;
}

@media (min-width: 992px) {
    .footer-top {
        grid-template-columns: 27.33% auto;
        padding: 6.25rem 0 4.25rem;
    }
}

.footer-top__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

@media (min-width: 992px) {
    .footer-top__col {
        gap: 1rem;
    }
}

.footer-logo {
    max-width: 14.375rem;
    margin: 0 auto 1rem;
}

@media (min-width: 992px) {
    .footer-logo {
        max-width: 22.875rem;
        margin-bottom: 3.4375rem;
    }
}

.footer-mark {
    max-width: 9.3125rem;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .footer-mark {
        max-width: 12.5rem;
    } 
}

.footer-subtitle {
    text-transform: none;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -3%;
    color: var(--color-white-60);
}

@media (min-width: 992px) {
    .footer-subtitle {
        letter-spacing: -2%;
    }
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--color-white);
}

@media (min-width: 390px) {
    .footer-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .footer-title {
        margin-bottom: 3rem;
        font-size: 4.44vw;
        line-height: 1;
    }
}

@media (min-width: 1440px) {
    .footer-title {
        font-size: 4rem;
    }
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: -4%;
    color: var(--color-white-60);
}

@media (min-width: 390px) {
    .footer-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-contact {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .footer-contact {
        font-size: 1.25rem;
    }
}

.footer-contact > li {
    max-width: 15.3125rem;
    width: 100%;
}

.footer-contact h4 {
    margin-bottom: 0.5rem;
    text-transform: none;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    color: var(--color-white);
}

@media (min-width: 992px) {
    .footer-contact h4 {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.5;
    }
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-white-10);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .footer-bottom {
        padding: 1.625rem 0;
    }
}

.footer-copyright {
    max-width: 18rem;
    color: var(--color-white-50);
    line-height: 1.2;
    letter-spacing: -4%;
}

@media (min-width: 768px) {
    .footer-copyright {
        max-width: 100%;
    }
}

/* Form */
.form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-fields {
        gap: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .form-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.43;
    cursor: pointer;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    min-height: 3.5rem;
    padding: 1.125rem 1.5rem;
    border: 0.0625rem solid var(--color-light-gray);
    border-radius: 2rem;
    outline: 0;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-gray);
    transition: all 0.3s;
}

.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
    color: var(--color-gray-2);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--color-gray-2);
}

.form .btn {
    width: 100%;
}

/* Section Lines */
.section-lines {
    --cols: 2;
    --col-gap: 0rem;
    --col-width: calc((100% - var(--col-gap) * (var(--cols) - 1)) / var(--cols));
    display: flex;
    flex-wrap: wrap;
    gap: var(--col-gap);
    max-width: calc(var(--container-width) + 2 * var(--container-padding));
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .section-lines {
        --cols: 3;
    }
}

.section-lines > span {
    display: flex;
    flex: 0 0 var(--col-width);
    max-width: var(--col-width);
    width: 100%;
    height: 100%;
    border-right: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.section-lines > span:first-child {
    border-left: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.section-lines > span:nth-child(3) {
    display: none;
}

@media (min-width: 768px) {
    .section-lines > span:nth-child(3) {
        display: flex;
    }
}

/* Content */
.text-block > *:not(:last-child) {
    margin-bottom: 1rem;
}

.text-block strong, 
.text-block b {
    font-weight: 700;
}

.text-block em,
.text-block i {
    font-style: italic;
}

.text-block blockquote {
    padding-left: 1rem;
    border-left: 0.25rem solid var(--color-main-blue);
    font-style: italic;
}

.text-block a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--color-main-blue);
}

.text-block a:not([class]):hover {
    color: var(--color-blue);
}

.text-block ul {
    padding-left: 1.25rem;
    list-style-type: disc;
}

.text-block ol {
    padding-left: 1.25rem;
    list-style-type: decimal;
}

/* Swiper */
.swiper-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
    position: static;
    margin-top: 0;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-black);
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--color-light-blue);
    color: var(--color-white);
}

.swiper-button-prev svg, 
.swiper-button-next svg {
    width: 1.125rem;
    height: 1.125rem;
}

.swiper-pagination {
    height: var(--swiper-pagination-bullet-size);
    font-size: var(--swiper-pagination-bullet-size);
    line-height: var(--swiper-pagination-bullet-size);
}

/* Fancybox */
.fancybox__container {
    --f-html-color: var(--color-black);
}

.f-button.is-close-button {
    --f-close-button-width: 1.25rem;
    --f-close-button-height: 1.25rem;
    --f-button-color: var(--color-main-blue);
    --f-close-button-hover-color: var(--color-blue);
    top: 0.25rem;
    right: 0.25rem;
}

@media (min-width: 768px) {
    .f-button.is-close-button {
        --f-close-button-width: 1.75rem;
        --f-close-button-height: 1.75rem;
        top: 1rem;
        right: 1rem;
    }
}

/* Choices */
.choices .choices__inner,
.choices[data-type*=select-one] .choices__inner {
    display: inline-flex;
    align-items: center;
    padding: 1.125rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s;
}

.is-focused .choices__inner, 
.is-open .choices__inner {
    border-color: var(--color-gray-2);
}

.choices .choices__input {
    padding: 0;
}

.choices .choices__placeholder {
    color: var(--color-gray-2);
}

.choices[data-type*=select-one]::after {
    content: '';
    width: 0.5625rem;
    height: 0.375rem;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 9 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.25 0.75L4.5 4.5L0.75 0.75" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    transform: translateY(-50%);
}

.choices[data-type*="select-one"].is-open::after {
    transform: translateY(50%) rotate(180deg);
}

.choices__list--dropdown, 
.choices__list[aria-expanded] {
    margin-top: 0.5rem;
    border-radius: 1rem;
    z-index: 2;
}

.is-open .choices__list--dropdown, 
.is-open .choices__list[aria-expanded] {
    border-color: var(--color-gray-2);
}

.choices__list--dropdown .choices__item:not(:first-child), 
.choices__list[aria-expanded] .choices__item:not(:first-child) {
    border-top: 0.0625rem solid var(--color-gray-2);
}

/* Contact Form 7 */
.form .wpcf7 form .wpcf7-not-valid,
.wpcf7 form.invalid .wpcf7-response-output {
    border-color: var(--color-red);
}

.form .wpcf7 form .wpcf7-not-valid-tip {
    font-size: 0.875rem;
    color: var(--color-red);
}

.form .wpcf7 form .wpcf7-response-output {
    background-color: var(--color-white);
    margin: 1rem 0 0;
    padding: 1.25rem;
    border-width: 0.0625rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--color-dark-gray);
}

.form .wpcf7 form .wpcf7-spinner {
    display: block;
    margin: 0.25rem auto;
}

/* Ajax Loading */
.ajax_loading {
    position: relative;
    pointer-events: none;
}

.ajax_loading:before,
.ajax_loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ajax_loading:before {
    width: 3.25rem;
    height: 3.25rem;
    margin: auto;
    border: 0.5rem solid #C0C0C0;
    border-top-color: var(--color-main-blue);
    border-radius: 50%;
    animation: loaderAnimation 1.0s linear infinite;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.ajax_loading:after {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

@keyframes loaderAnimation {
    to { transform: rotate(360deg); }
}