@import "https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap";

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg, .swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none
}

.swiper-button-lock {
    display: none
}

.swiper-horizontal .swiper-button-prev, .swiper-horizontal .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2)
}

.swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-prev, .swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto
}

.swiper-horizontal .swiper-button-next, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto
}

.swiper-horizontal .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
    transform: rotate(180deg)
}

.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
    transform: rotate(0)
}

.swiper-vertical .swiper-button-prev, .swiper-vertical .swiper-button-next, .swiper-vertical ~ .swiper-button-prev, .swiper-vertical ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2)
}

.swiper-vertical .swiper-button-prev, .swiper-vertical ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    transform: rotate(-90deg)
}

.swiper-vertical .swiper-button-next, .swiper-vertical ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    transform: rotate(90deg)
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block
}

*[hidden] {
    display: none
}

body {
    line-height: 1
}

menu, ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

* {
    outline: 0;
    -webkit-tap-highlight-color: transparent
}

*, *:before, *:after {
    box-sizing: border-box
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%
}

button {
    text-transform: inherit;
    cursor: pointer
}

img, video, svg {
    display: block;
    width: 100%;
    height: auto
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none
}

a:link {
    -webkit-tap-highlight-color: transparent
}

address {
    font-style: normal
}

small {
    font-size: inherit
}

input, select, button, textarea {
    padding: 0;
    color: inherit;
    font: inherit;
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased
}

textarea {
    resize: none
}

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-bg: #fff;
    --color-text: #000;
    --color-error: #d92f00;
    --color-success: #178b22;
    --color-media: #dfdfdf;
    --color-brand: #000;
    --color-primary: #7e7d7d;
    --color-light: #ededed;
    --color-dark: #3f3e3e
}

:root {
    --wrapper-width: 182rem;
    --header-height: 10rem;
    --columns: 3;
    --margin: 5rem;
    --gutter: 5rem;
    --section-spacing: 5rem
}

@media screen and (max-width: 1279px) {
    :root {
        --margin: 4rem;
        --gutter: 3rem
    }
}

@media screen and (max-width: 1023px) {
    :root {
        --margin: 2.4rem;
        --header-height: 8rem
    }
}

@supports (height: 100svh) {
    :root {
        --vh: 1svh
    }
}

.visually-hidden {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    border: 0
}

.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
    width: auto;
    height: auto;
    margin: 0;
    position: static;
    white-space: inherit;
    overflow: visible;
    clip: auto
}

@keyframes appear {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes disappear {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes appear-left {
    0% {
        transform: translate(4rem);
        opacity: 0
    }
    to {
        transform: translate(0);
        opacity: 1
    }
}

@keyframes appear-right {
    0% {
        transform: translate(-4rem);
        opacity: 0
    }
    to {
        transform: translate(0);
        opacity: 1
    }
}

@keyframes appear-up {
    0% {
        transform: translateY(4rem);
        opacity: 0
    }
    to {
        transform: translate(0);
        opacity: 1
    }
}

@keyframes appear-down {
    0% {
        transform: translateY(-4rem);
        opacity: 0
    }
    to {
        transform: translate(0);
        opacity: 1
    }
}

@keyframes shake {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(2rem)
    }
    to {
        transform: translateY(0)
    }
}

[data-in-viewport] {
    animation-duration: .8s;
    animation-timing-function: ease;
    animation-fill-mode: forwards
}

[data-in-viewport][data-in-viewport-delay="1"] {
    animation-delay: .1s
}

[data-in-viewport][data-in-viewport-delay="2"] {
    animation-delay: .2s
}

[data-in-viewport][data-in-viewport-delay="3"] {
    animation-delay: .3s
}

[data-in-viewport][data-in-viewport-delay="4"] {
    animation-delay: .4s
}

[data-in-viewport][data-in-viewport-delay="5"] {
    animation-delay: .5s
}

[data-in-viewport][data-in-viewport-delay="6"] {
    animation-delay: .6s
}

[data-in-viewport][data-in-viewport-delay="7"] {
    animation-delay: .7s
}

[data-in-viewport][data-in-viewport-delay="8"] {
    animation-delay: .8s
}

[data-in-viewport][data-in-viewport-delay="9"] {
    animation-delay: .9s
}

[data-in-viewport][data-in-viewport-delay="10"] {
    animation-delay: 1s
}

[data-in-viewport][data-in-viewport-delay="11"] {
    animation-delay: 1.1s
}

[data-in-viewport][data-in-viewport-delay="12"] {
    animation-delay: 1.2s
}

[data-in-viewport][data-in-viewport-delay="13"] {
    animation-delay: 1.3s
}

[data-in-viewport][data-in-viewport-delay="14"] {
    animation-delay: 1.4s
}

[data-in-viewport=fade] {
    opacity: 0
}

[data-in-viewport=fade].is-in-viewport {
    animation-name: appear
}

[data-in-viewport=right] {
    opacity: 0
}

[data-in-viewport=right].is-in-viewport {
    animation-name: appear-left
}

[data-in-viewport=left] {
    opacity: 0
}

[data-in-viewport=left].is-in-viewport {
    animation-name: appear-right
}

[data-in-viewport=bottom] {
    opacity: 0
}

[data-in-viewport=bottom].is-in-viewport {
    animation-name: appear-up
}

[data-in-viewport=top] {
    opacity: 0
}

[data-in-viewport=top].is-in-viewport {
    animation-name: appear-down
}

[data-lazy-load], [data-video-autoplay], .media iframe {
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-fill-mode: none;
    opacity: 0
}

[data-lazy-load].is-loaded, [data-video-autoplay].is-loaded, .media.has-started iframe {
    animation-name: appear;
    opacity: 1
}

html.has-nav-visible, html.has-menu-visible, html.has-dialog-visible, body.has-nav-visible, body.has-menu-visible, body.has-dialog-visible {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none
}

body {
    font-family: Sora, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    color: var(--color-text);
    background-color: var(--color-bg)
}

html {
    --rem-scaling-base: min(12px, .6944444444vw);
    font-size: .5208333333vw
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 10px
    }
}

@media screen and (max-width: 1679px) {
    html {
        font-size: .5813953488vw
    }
}

@media screen and (max-width: 1279px) {
    html {
        font-size: .7320644217vw
    }
}

@media screen and (max-width: 1023px) {
    html {
        font-size: 1.171875vw
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.5652173913vw
    }
}

@media screen and (max-width: 519px) {
    html {
        font-size: 2.1276595745vw
    }
}

.alert {
    display: flex;
    flex-direction: column
}

.alert__message {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 2rem;
    padding: 1rem 2rem;
    color: var(--color-white)
}

.alert__message b, .alert__message strong {
    font-weight: 600
}

.alert__message ul {
    padding-left: 1.1em;
    list-style: initial
}

.alert__message ul ul {
    list-style: lower-roman
}

.alert__message ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.alert__message a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.alert__message a:hover {
    background-size: 100% 1px
}

.alert__message u {
    text-decoration: underline
}

.alert__message em, .alert__message i {
    font-style: italic
}

.alert__message.is-success {
    text-align: center;
    background: none;
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

.alert__message.has-error {
    background: var(--color-error)
}

.button {
    transition: all .4s ease-in-out;
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .5rem 1.1rem;
    color: var(--color-black);
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-black);
    border-radius: 3rem
}

@media (hover: hover) {
    .button:hover {
        color: var(--color-white);
        background-color: var(--color-black)
    }
}

.button:focus-visible {
    color: var(--color-white);
    background-color: var(--color-black)
}

.button img, .button svg {
    width: 1.1rem
}

.button path {
    fill: currentcolor
}

.button--light {
    color: var(--color-white);
    border-color: var(--color-white)
}

@media (hover: hover) {
    .button--light:hover {
        color: var(--color-black);
        background-color: var(--color-white)
    }
}

.button--light:focus-visible {
    color: var(--color-black);
    background-color: var(--color-white)
}

.checkbox {
    --icon-size: 2.1rem;
    display: inline-flex;
    cursor: pointer;
    pointer-events: none
}

@media screen and (max-width: 767px) {
    .checkbox {
        --icon-size: 1.8rem
    }
}

.checkbox__input {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    border: 0
}

.checkbox__icon, .checkbox__description {
    pointer-events: all
}

.checkbox__icon {
    transition: background-color .4s ease-in-out;
    width: var(--icon-size);
    height: var(--icon-size);
    margin-top: .4rem;
    background: var(--color-white)
}

.checkbox__input:checked ~ .checkbox__icon {
    background: var(--color-black)
}

.checkbox__description {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    max-width: calc(100% - var(--icon-size));
    padding-left: .8rem
}

.checkbox__description b, .checkbox__description strong {
    font-weight: 600
}

.checkbox__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.checkbox__description ul ul {
    list-style: lower-roman
}

.checkbox__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.checkbox__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.checkbox__description a:hover {
    background-size: 100% 1px
}

.checkbox__description u {
    text-decoration: underline
}

.checkbox__description em, .checkbox__description i {
    font-style: italic
}

.form {
    display: flex;
    flex-direction: column
}

.form__title {
    margin-bottom: 3.7rem
}

@media screen and (max-width: 1023px) {
    .form__title {
        margin-bottom: 2rem
    }
}

.form__field {
    width: calc(50% - var(--gutter) / 2);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-black)
}

@media screen and (max-width: 767px) {
    .form__field {
        width: 100%
    }
}

.form__field::-webkit-input-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.form__field:-moz-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.form__field::-moz-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.form__field:-ms-input-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.form__field--message {
    width: 100%;
    height: 20rem;
    resize: none
}

@media screen and (max-width: 1023px) {
    .form__field--message {
        height: 15rem
    }
}

.form__field:focus::-webkit-input-placeholder {
    opacity: 0
}

.form__field:focus:-moz-placeholder {
    opacity: 0
}

.form__field:focus::-moz-placeholder {
    opacity: 0
}

.form__field:focus:-ms-input-placeholder {
    opacity: 0
}

.form__consents {
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    margin-bottom: 3rem;
    padding-top: 1rem
}

@media screen and (max-width: 1279px) {
    .form__consents {
        margin-bottom: 2rem;
        padding-top: 0
    }
}

.form__cta {
    text-align: right
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 11rem
}

@media screen and (max-width: 1679px) {
    .pagination {
        margin-top: 8rem
    }
}

@media screen and (max-width: 1023px) {
    .pagination {
        margin-top: 5rem
    }
}

.pagination__start, .pagination__end {
    width: 3.6rem
}

@media screen and (max-width: 767px) {
    .pagination__start, .pagination__end {
        width: 3rem
    }
}

.pagination__start img, .pagination__start svg, .pagination__end img, .pagination__end svg {
    display: block;
    width: 100%
}

.pagination__prev, .pagination__next {
    width: 2.2rem
}

@media screen and (max-width: 767px) {
    .pagination__prev, .pagination__next {
        width: 1.6rem
    }
}

.pagination__prev img, .pagination__prev svg, .pagination__next img, .pagination__next svg {
    display: block;
    width: 100%
}

.pagination__start, .pagination__prev {
    margin-right: 6rem
}

@media screen and (max-width: 1023px) {
    .pagination__start, .pagination__prev {
        margin-right: 3.6rem
    }
}

.pagination__next, .pagination__end {
    margin-left: 6rem
}

@media screen and (max-width: 1023px) {
    .pagination__next, .pagination__end {
        margin-left: 3.6rem
    }
}

.pagination__page {
    margin-right: .6rem;
    transition: color .4s ease
}

.pagination__page.is-active {
    font-weight: 700
}

.socials {
    display: flex;
    gap: 2rem;
    align-items: center
}

@media screen and (max-width: 1023px) {
    .socials {
        gap: 1.2rem
    }
}

.socials__link {
    transition: opacity .4s ease-in-out;
    display: block;
    width: 2.4rem
}

@media (hover: hover) {
    .socials__link:hover {
        opacity: .6
    }
}

.socials__link:focus-visible {
    opacity: .6
}

.socials__link img, .socials__link svg {
    display: block;
    width: 100%
}

.dialog {
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    background: var(--color-light);
    padding-block: 9.7rem
}

@media screen and (max-width: 1023px) {
    .dialog {
        padding-block: 0
    }
}

.dialog.is-visible {
    visibility: visible;
    pointer-events: all;
    opacity: 1
}

.dialog__container {
    height: 100%
}

@media screen and (max-width: 1023px) {
    .dialog__container {
        padding-bottom: 3rem;
        overflow-y: auto
    }
}

.dialog__close {
    position: absolute;
    top: 4rem;
    right: var(--margin);
    z-index: 2
}

@media screen and (max-width: 1023px) {
    .dialog__close {
        top: var(--margin)
    }
}

.langs {
    display: flex;
    align-items: center
}

.langs__item:not(:last-child):after {
    content: "|";
    margin-inline: .7rem
}

.langs__link {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.langs__link:hover {
    background-size: 100% 1px
}

.langs__link.is-active {
    font-weight: 700
}

.links {
    display: flex;
    align-items: center
}

.links__item:not(:last-child):after {
    content: "|";
    margin-inline: .5rem
}

.links__link {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.links__link:hover {
    background-size: 100% 1px
}

.links--light .links__link {
    color: var(--color-white)
}

.links__link.is-active {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition: none;
    background-size: 100% 1px
}

.category {
    display: block;
    position: relative
}

@media (hover: hover) {
    .category:hover .category__title {
        color: var(--color-black);
        background-color: var(--color-white)
    }

    .category:hover .category__media img {
        transform: scale(1.02)
    }
}

.category:focus-visible .category__title {
    color: var(--color-black);
    background-color: var(--color-white)
}

.category:focus-visible .category__media img {
    transform: scale(1.02)
}

.category__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .category__media {
        overflow: hidden
    }
}

.category__media:before {
    content: "";
    display: block;
    padding-top: 146.3414634146%
}

.category__media video, .category__media img, .category__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.category__media video, .category__media img {
    object-fit: cover
}

.category__media img {
    transition: transform .4s ease-in-out;
    backface-visibility: hidden
}

.category__title {
    max-width: calc(100% - 4rem);
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2
}

.news-tile {
    display: block
}

@media (hover: hover) {
    .news-tile:hover .news-tile__media img {
        transform: scale(1.02)
    }
}

.news-tile:focus-visible .news-tile__media img {
    transform: scale(1.02)
}

.news-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative;
    margin-bottom: 2.5rem
}

@supports not (overflow: clip) {
    .news-tile__media {
        overflow: hidden
    }
}

.news-tile__media:before {
    content: "";
    display: block;
    padding-top: 75%
}

.news-tile__media video, .news-tile__media img, .news-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.news-tile__media video, .news-tile__media img {
    object-fit: cover
}

@media screen and (max-width: 1023px) {
    .news-tile__media {
        margin-bottom: 2rem
    }
}

.news-tile__media img {
    transition: transform .4s ease-in-out;
    backface-visibility: hidden
}

.news-tile__info {
    display: flex;
    margin-bottom: .5rem
}

.news-tile__category, .news-tile__date {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3
}

.news-tile__category:not(:last-child):after {
    content: "|";
    margin-inline: .5rem
}

.news-tile__title {
    font-weight: 600
}

.post-slider {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter)
}

.post-slider__gallery, .post-slider__nav {
    width: calc(50% - var(--gutter) / 2)
}

.post-slider__gallery {
    margin: 0
}

@media screen and (max-width: 1023px) {
    .post-slider__gallery {
        width: calc(100% - (var(--gutter) + 6rem))
    }
}

.post-slider__nav {
    display: flex;
    gap: 4.4rem;
    align-items: center;
    align-self: flex-start;
    position: sticky;
    top: calc(var(--header-height) + 3rem)
}

@media screen and (max-width: 1023px) {
    .post-slider__nav {
        gap: 3rem;
        width: 6rem
    }
}

@media screen and (max-width: 767px) {
    .post-slider__nav {
        justify-content: flex-end
    }
}

.post-slider__button {
    width: 1.7rem
}

.post-slider__button.is-hidden {
    visibility: hidden;
    pointer-events: none;
    opacity: 0
}

.posts-nav {
    overflow: clip
}

@supports not (overflow: clip) {
    .posts-nav {
        overflow: hidden
    }
}

.posts-nav__menu {
    scrollbar-width: none;
    display: flex;
    gap: 10.7rem;
    align-items: center;
    padding-bottom: 0;
    overflow-x: auto;
    padding-inline: var(--margin)
}

.posts-nav__menu::-webkit-scrollbar {
    display: none
}

@media screen and (max-width: 1679px) {
    .posts-nav__menu {
        gap: 6rem
    }
}

@media screen and (max-width: 1023px) {
    .posts-nav__menu {
        gap: var(--gutter)
    }
}

.posts-nav__link {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px;
    white-space: nowrap
}

.posts-nav__link:hover {
    background-size: 100% 1px
}

.posts-nav__link.is-active {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition: none;
    background-size: 100% 1px
}

.post-tile {
    display: block
}

@media (hover: hover) {
    .post-tile:hover .post-tile__media img {
        transform: scale(1.02)
    }
}

.post-tile:focus-visible .post-tile__media img {
    transform: scale(1.02)
}

.post-tile__media {
    margin-bottom: 2.5rem
}

@media screen and (max-width: 1023px) {
    .post-tile__media {
        margin-bottom: 2rem
    }
}

.post-tile--horizontal .post-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .post-tile--horizontal .post-tile__media {
        overflow: hidden
    }
}

.post-tile--horizontal .post-tile__media:before {
    content: "";
    display: block;
    padding-top: 35.7267950963%
}

.post-tile--horizontal .post-tile__media video, .post-tile--horizontal .post-tile__media img, .post-tile--horizontal .post-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.post-tile--horizontal .post-tile__media video, .post-tile--horizontal .post-tile__media img {
    object-fit: cover
}

.post-tile--square .post-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .post-tile--square .post-tile__media {
        overflow: hidden
    }
}

.post-tile--square .post-tile__media:before {
    content: "";
    display: block;
    padding-top: 99.8248686515%
}

.post-tile--square .post-tile__media video, .post-tile--square .post-tile__media img, .post-tile--square .post-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.post-tile--square .post-tile__media video, .post-tile--square .post-tile__media img {
    object-fit: cover
}

.post-tile--mid .post-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .post-tile--mid .post-tile__media {
        overflow: hidden
    }
}

.post-tile--mid .post-tile__media:before {
    content: "";
    display: block;
    padding-top: 66.7250437828%
}

.post-tile--mid .post-tile__media video, .post-tile--mid .post-tile__media img, .post-tile--mid .post-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.post-tile--mid .post-tile__media video, .post-tile--mid .post-tile__media img {
    object-fit: cover
}

.post-tile--vertical .post-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .post-tile--vertical .post-tile__media {
        overflow: hidden
    }
}

.post-tile--vertical .post-tile__media:before {
    content: "";
    display: block;
    padding-top: 140.6304728546%
}

.post-tile--vertical .post-tile__media video, .post-tile--vertical .post-tile__media img, .post-tile--vertical .post-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.post-tile--vertical .post-tile__media video, .post-tile--vertical .post-tile__media img {
    object-fit: cover
}

.post-tile__media img {
    transition: transform .4s ease-in-out;
    backface-visibility: hidden
}

.post-tile__info {
    display: flex;
    margin-bottom: .5rem
}

.post-tile__category, .post-tile__date {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3
}

.post-tile__category:not(:last-child):after {
    content: "|";
    margin-inline: .5rem
}

.post-tile__title {
    font-weight: 600
}

.project-tile {
    display: block
}

@media (hover: hover) {
    .project-tile:hover .project-tile__media img {
        transform: scale(1.02)
    }
}

.project-tile:focus-visible .project-tile__media img {
    transform: scale(1.02)
}

.project-tile__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative;
    margin-bottom: 2.5rem
}

@supports not (overflow: clip) {
    .project-tile__media {
        overflow: hidden
    }
}

.project-tile__media:before {
    content: "";
    display: block;
    padding-top: 75%
}

.project-tile__media video, .project-tile__media img, .project-tile__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.project-tile__media video, .project-tile__media img {
    object-fit: cover
}

@media screen and (max-width: 1023px) {
    .project-tile__media {
        margin-bottom: 2rem
    }
}

.project-tile__media img {
    transition: transform .4s ease-in-out;
    backface-visibility: hidden
}

.project-tile__title {
    font-weight: 600
}

.filters {
    display: flex;
    gap: var(--gutter);
    justify-content: space-between
}

@media screen and (max-width: 1023px) {
    .filters {
        display: grid;
        grid-template-columns:repeat(3, 1fr);
        row-gap: 1.2rem
    }
}

@media screen and (max-width: 767px) {
    .filters {
        grid-template-columns:repeat(2, 1fr)
    }
}

.filters__item {
    display: flex;
    flex-direction: column;
    position: relative
}

.filters__item--search {
    width: 17rem
}

@media screen and (max-width: 1023px) {
    .filters__item--search {
        width: initial
    }
}

.filters__item--type {
    width: 18.9rem
}

@media screen and (max-width: 1023px) {
    .filters__item--type {
        width: initial
    }
}

.filters__item--functions {
    width: 22.9rem
}

@media screen and (max-width: 1023px) {
    .filters__item--functions {
        width: initial
    }
}

.filters__item--status {
    width: 18.3rem
}

@media screen and (max-width: 1023px) {
    .filters__item--status {
        width: initial
    }
}

.filters__item--localization {
    width: 16.8rem
}

@media screen and (max-width: 1023px) {
    .filters__item--localization {
        width: initial
    }
}

.filters__item--year {
    width: 8.9rem
}

@media screen and (max-width: 1023px) {
    .filters__item--year {
        width: initial
    }
}

.filters__trigger {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    display: flex;
    gap: 1rem;
    align-items: center
}

.filters__trigger span {
    overflow: clip;
    max-width: calc(100% - 2.2rem);
    white-space: nowrap
}

@supports not (overflow: clip) {
    .filters__trigger span {
        overflow: hidden
    }
}

.filters__trigger img {
    width: 1.2rem
}

.filters__content {
    transition: opacity .2s ease-in-out;
    max-height: 41.8rem;
    padding: 1rem;
    position: absolute;
    top: calc(100% + .8rem);
    left: 0;
    z-index: 2;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    border-radius: 1.5rem;
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .filters__content {
        width: 100%;
        max-height: 20rem
    }
}

.is-open .filters__content {
    visibility: visible;
    pointer-events: all;
    opacity: 1
}

.filters__list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem
}

.filters__filter {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px;
    text-align: left
}

.filters__filter:hover {
    background-size: 100% 1px
}

.filters__filter.is-active {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition: none;
    background-size: 100% 1px
}

.filters__search {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    display: block;
    padding-block: .5rem;
    border-bottom: 1px solid var(--color-black)
}

@media screen and (max-width: 767px) {
    .filters__search {
        width: 100%
    }
}

.filters__search::-webkit-input-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.filters__search:-moz-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.filters__search::-moz-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.filters__search:-ms-input-placeholder {
    transition: opacity .3s ease-in-out;
    color: var(--color-primary);
    opacity: 1
}

.filters__search:focus::-webkit-input-placeholder {
    opacity: 0
}

.filters__search:focus:-moz-placeholder {
    opacity: 0
}

.filters__search:focus::-moz-placeholder {
    opacity: 0
}

.filters__search:focus:-ms-input-placeholder {
    opacity: 0
}

.member-modal {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    overflow-y: auto
}

@media screen and (max-width: 1023px) {
    .member-modal {
        row-gap: 3rem;
        height: auto
    }
}

.member-modal__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative;
    width: 33.333%;
    position: sticky;
    top: 0
}

@supports not (overflow: clip) {
    .member-modal__media {
        overflow: hidden
    }
}

.member-modal__media:before {
    content: "";
    display: block;
    padding-top: 138.4375%
}

.member-modal__media video, .member-modal__media img, .member-modal__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.member-modal__media video, .member-modal__media img {
    object-fit: cover
}

@media screen and (max-width: 1023px) {
    .member-modal__media {
        width: 100%
    }
}

.member-modal__content {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    width: 66.666%;
    padding-inline: calc(var(--margin) / 2) var(--margin)
}

@media screen and (max-width: 1023px) {
    .member-modal__content {
        row-gap: 2rem;
        width: 100%
    }
}

.member-modal__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .member-modal__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .member-modal__title {
        font-size: 2.6rem
    }
}

.member-modal__description b, .member-modal__description strong {
    font-weight: 600
}

.member-modal__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.member-modal__description ul ul {
    list-style: lower-roman
}

.member-modal__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.member-modal__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.member-modal__description a:hover {
    background-size: 100% 1px
}

.member-modal__description u {
    text-decoration: underline
}

.member-modal__description em, .member-modal__description i {
    font-style: italic
}

.project-details {
    display: flex;
    flex-direction: column;
    row-gap: 2rem
}

@media screen and (max-width: 1023px) {
    .project-details {
        row-gap: 1rem
    }
}

.project-details__item {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-black)
}

.project-details__item b, .project-details__item strong {
    font-weight: 600
}

.project-details__item ul {
    padding-left: 1.1em;
    list-style: initial
}

.project-details__item ul ul {
    list-style: lower-roman
}

.project-details__item ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.project-details__item a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.project-details__item a:hover {
    background-size: 100% 1px
}

.project-details__item u {
    text-decoration: underline
}

.project-details__item em, .project-details__item i {
    font-style: italic
}

@media screen and (max-width: 1023px) {
    .project-details__item {
        padding-bottom: 1rem
    }
}

.about-project {
    display: flex;
    flex-direction: column;
    row-gap: 4.2rem
}

@media screen and (max-width: 1023px) {
    .about-project {
        row-gap: 3rem
    }
}

.about-project__heading {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3
}

.about-project__description b, .about-project__description strong {
    font-weight: 600
}

.about-project__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.about-project__description ul ul {
    list-style: lower-roman
}

.about-project__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.about-project__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.about-project__description a:hover {
    background-size: 100% 1px
}

.about-project__description u {
    text-decoration: underline
}

.about-project__description em, .about-project__description i {
    font-style: italic
}

.project-media {
    display: flex;
    flex-direction: column;
    row-gap: .2rem
}

.project-media__media {
    display: block
}

.project-media__caption {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3
}

.project-media__caption b, .project-media__caption strong {
    font-weight: 600
}

.project-media__caption ul {
    padding-left: 1.1em;
    list-style: initial
}

.project-media__caption ul ul {
    list-style: lower-roman
}

.project-media__caption ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.project-media__caption a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.project-media__caption a:hover {
    background-size: 100% 1px
}

.project-media__caption u {
    text-decoration: underline
}

.project-media__caption em, .project-media__caption i {
    font-style: italic
}

.hero-slider {
    margin-bottom: var(--section-spacing)
}

.hero-slider__slide {
    width: 100%;
    padding-inline: var(--margin);
    display: flex;
    align-items: flex-end;
    height: calc(100svh - var(--header-height));
    position: relative;
    padding-block: 6rem
}

@media screen and (max-width: 1023px) {
    .hero-slider__slide {
        padding-block: calc(var(--margin) * 2);
        height: auto;
        aspect-ratio: 1
    }
}

.hero-slider__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .hero-slider__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .hero-slider__title {
        font-size: 2.6rem
    }
}

.hero-slider__title--light {
    color: var(--color-white)
}

.hero-slider__bcg {
    overflow: clip;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

@supports not (overflow: clip) {
    .hero-slider__bcg {
        overflow: hidden
    }
}

.hero-slider__bcg img, .hero-slider__bcg video {
    transition: transform 2s linear;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slider .swiper-slide-active img {
    transform: scale(1.03)
}

.info {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: var(--section-spacing)
}

.info__content {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    max-width: 90.8rem
}

@media screen and (max-width: 1023px) {
    .info__content {
        gap: 3rem;
        max-width: 100%
    }
}

.info__description b, .info__description strong {
    font-weight: 600
}

.info__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.info__description ul ul {
    list-style: lower-roman
}

.info__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.info__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.info__description a:hover {
    background-size: 100% 1px
}

.info__description u {
    text-decoration: underline
}

.info__description em, .info__description i {
    font-style: italic
}

.info__button {
    align-self: flex-start
}

.content-info {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    min-height: calc(100svh - var(--header-height));
    margin-bottom: var(--section-spacing);
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .content-info {
        grid-template-columns:repeat(1, 1fr);
        min-height: unset
    }
}

.content-info--default {
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .content-info--default {
        margin-bottom: var(--section-spacing)
    }
}

.content-info__content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: var(--margin)
}

@media screen and (max-width: 1023px) {
    .content-info__content {
        gap: 3rem;
        align-self: start
    }
}

.content-info__description {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .content-info__description {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .content-info__description {
        font-size: 2.6rem
    }
}

.content-info__button {
    align-self: flex-start;
    margin-top: auto
}

.content-info__media {
    padding: var(--margin);
    position: relative
}

@media screen and (max-width: 1023px) {
    .content-info__media {
        height: 100svh
    }
}

.content-info__image {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.content-info__image img, .content-info__image video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.content-info__caption {
    position: relative;
    z-index: 2;
    color: var(--color-white)
}

.categories {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: var(--section-spacing)
}

.categories__list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .categories__list {
        grid-template-columns:repeat(1, 1fr)
    }
}

.info-list {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: var(--section-spacing)
}

.info-list__heading, .info-list__list, .info-list__button {
    max-width: calc(66.666% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .info-list__heading, .info-list__list, .info-list__button {
        max-width: 100%
    }
}

.info-list__heading {
    margin-bottom: 5rem
}

@media screen and (max-width: 1023px) {
    .info-list__heading {
        margin-bottom: 3rem
    }
}

.info-list__list {
    display: flex;
    flex-direction: column;
    row-gap: 10rem
}

@media screen and (max-width: 1279px) {
    .info-list__list {
        row-gap: 5rem
    }
}

@media screen and (max-width: 1023px) {
    .info-list__list {
        row-gap: var(--gutter)
    }
}

.info-list__list--default {
    row-gap: 5rem
}

@media screen and (max-width: 1023px) {
    .info-list__list--default {
        row-gap: var(--gutter)
    }
}

.info-list__item {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-black)
}

@media screen and (max-width: 1023px) {
    .info-list__item {
        padding-bottom: 1rem
    }
}

.info-list__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .info-list__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .info-list__title {
        font-size: 2.6rem
    }
}

.info-list__title:not(:last-child) {
    margin-bottom: 2rem
}

@media screen and (max-width: 1023px) {
    .info-list__title:not(:last-child) {
        margin-bottom: 1rem
    }
}

.info-list__description b, .info-list__description strong {
    font-weight: 600
}

.info-list__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.info-list__description ul ul {
    list-style: lower-roman
}

.info-list__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.info-list__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.info-list__description a:hover {
    background-size: 100% 1px
}

.info-list__description u {
    text-decoration: underline
}

.info-list__description em, .info-list__description i {
    font-style: italic
}

.info-list__text {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    display: block;
    margin-top: 5rem;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .info-list__text {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .info-list__text {
        font-size: 2.6rem
    }
}

@media screen and (max-width: 1023px) {
    .info-list__text {
        margin-top: var(--gutter)
    }
}

.info-list__button {
    margin-top: 3.6rem
}

@media screen and (max-width: 1023px) {
    .info-list__button {
        margin-top: 3rem
    }
}

.news {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: 9.7rem
}

@media screen and (max-width: 1279px) {
    .news {
        margin-bottom: var(--section-spacing)
    }
}

.news--default {
    margin-bottom: 0;
    padding-block: 10rem var(--section-spacing);
    background: var(--color-light)
}

@media screen and (max-width: 1279px) {
    .news--default {
        padding-block: var(--section-spacing)
    }
}

.news__heading {
    margin-bottom: 4rem
}

@media screen and (max-width: 1023px) {
    .news__heading {
        margin-bottom: 3rem
    }
}

.news__list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .news__list {
        grid-template-columns:repeat(1, 1fr)
    }
}

.news__button {
    margin-top: 4.6rem
}

@media screen and (max-width: 1023px) {
    .news__button {
        margin-top: 3rem
    }
}

.contact-us {
    width: 100%;
    padding-inline: var(--margin);
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
    border-top: 1px solid var(--color-black);
    padding-block: 4.5rem 2rem;
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .contact-us {
        padding-block: var(--section-spacing)
    }
}

.contact-us__content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    width: calc(33.333% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .contact-us__content {
        row-gap: 3rem;
        width: 100%
    }
}

.contact-us__description b, .contact-us__description strong {
    font-weight: 600
}

.contact-us__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.contact-us__description ul ul {
    list-style: lower-roman
}

.contact-us__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.contact-us__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.contact-us__description a:hover {
    background-size: 100% 1px
}

.contact-us__description u {
    text-decoration: underline
}

.contact-us__description em, .contact-us__description i {
    font-style: italic
}

.contact-us__socials {
    margin-top: auto
}

.contact-us__form {
    width: calc(66.666% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .contact-us__form {
        width: 100%
    }
}

.basic-hero {
    width: 100%;
    padding-inline: var(--margin);
    padding-block: 5rem 5.5rem
}

@media screen and (max-width: 1279px) {
    .basic-hero {
        padding-block: var(--section-spacing)
    }
}

.basic-hero__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600;
    text-align: center
}

@media screen and (max-width: 1023px) {
    .basic-hero__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .basic-hero__title {
        font-size: 2.6rem
    }
}

.content {
    width: 100%;
    padding-inline: var(--margin);
    padding-block: 5.5rem 10rem
}

@media screen and (max-width: 1279px) {
    .content {
        padding-block: 0 var(--section-spacing)
    }
}

.content__description b, .content__description strong {
    font-weight: 600
}

.content__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.content__description ul ul {
    list-style: lower-roman
}

.content__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.content__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.content__description a:hover {
    background-size: 100% 1px
}

.content__description u {
    text-decoration: underline
}

.content__description em, .content__description i {
    font-style: italic
}

.content__description--centered {
    text-align: center
}

.error {
    width: 100%;
    padding-inline: var(--margin);
    display: flex;
    flex-direction: column;
    row-gap: 3.5rem;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-height));
    position: relative;
    color: var(--color-white);
    text-align: center;
    padding-block: var(--margin)
}

@media screen and (max-width: 1023px) {
    .error {
        row-gap: 3rem
    }
}

.error__title {
    font-family: Sora, sans-serif;
    font-size: 20rem;
    line-height: 1
}

@media screen and (max-width: 1023px) {
    .error__title {
        font-size: 16rem
    }
}

@media screen and (max-width: 767px) {
    .error__title {
        font-size: 12rem
    }
}

.error__description b, .error__description strong {
    font-weight: 600
}

.error__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.error__description ul ul {
    list-style: lower-roman
}

.error__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.error__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.error__description a:hover {
    background-size: 100% 1px
}

.error__description u {
    text-decoration: underline
}

.error__description em, .error__description i {
    font-style: italic
}

.error__bcg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.error__bcg img, .error__bcg video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.clients {
    width: 100%;
    padding-inline: var(--margin);
    padding-block: 1.5rem 16.6rem
}

@media screen and (max-width: 1279px) {
    .clients {
        padding-block: 0 var(--section-spacing)
    }
}

.clients__list {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 5.5rem 6.5rem;
    align-items: center
}

@media screen and (max-width: 1679px) {
    .clients__list {
        gap: var(--gutter)
    }
}

@media screen and (max-width: 1279px) {
    .clients__list {
        grid-template-columns:repeat(5, 1fr)
    }
}

@media screen and (max-width: 1023px) {
    .clients__list {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media screen and (max-width: 767px) {
    .clients__list {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media screen and (max-width: 519px) {
    .clients__list {
        grid-template-columns:repeat(2, 1fr)
    }
}

.clients__item {
    display: flex;
    align-items: center;
    justify-content: center
}

.clients__logo img {
    width: auto;
    max-width: 100%;
    max-height: 8rem
}

.contact {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    min-height: calc(100svh - var(--header-height));
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .contact {
        grid-template-columns:repeat(1, 1fr)
    }
}

.contact:not(:first-child) {
    margin-top: -4rem
}

.contact__content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    padding: var(--margin) var(--margin) 2rem
}

@media screen and (max-width: 1279px) {
    .contact__content {
        padding: var(--margin)
    }
}

@media screen and (max-width: 1023px) {
    .contact__content {
        row-gap: 3rem
    }
}

.contact__description b, .contact__description strong {
    font-weight: 600
}

.contact__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.contact__description ul ul {
    list-style: lower-roman
}

.contact__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.contact__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.contact__description a:hover {
    background-size: 100% 1px
}

.contact__description u {
    text-decoration: underline
}

.contact__description em, .contact__description i {
    font-style: italic
}

.contact__form {
    margin-top: 1.4rem
}

@media screen and (max-width: 1023px) {
    .contact__form {
        margin-top: 0
    }
}

.contact__map {
    position: relative
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(1)
}

.post {
    width: 100%;
    padding-inline: var(--margin);
    padding-block: 5.5rem 10rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter)
}

@media screen and (max-width: 1279px) {
    .post {
        padding-block: 0 var(--section-spacing)
    }
}

.post__media {
    width: calc(33.333% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .post__media {
        row-gap: 3rem;
        width: 100%
    }
}

.post__content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    width: calc(66.666% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .post__content {
        row-gap: 3rem;
        width: 100%
    }
}

.post__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .post__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .post__title {
        font-size: 2.6rem
    }
}

.post__description b, .post__description strong {
    font-weight: 600
}

.post__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.post__description ul ul {
    list-style: lower-roman
}

.post__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.post__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.post__description a:hover {
    background-size: 100% 1px
}

.post__description u {
    text-decoration: underline
}

.post__description em, .post__description i {
    font-style: italic
}

.post__description--centered {
    text-align: center
}

.post__button {
    align-self: flex-start
}

.post__slider {
    margin-top: 3.4rem
}

@media screen and (max-width: 1023px) {
    .post__slider {
        margin-top: 2rem
    }
}

.posts {
    margin-bottom: 8.7rem
}

@media screen and (max-width: 1279px) {
    .posts {
        margin-bottom: var(--section-spacing)
    }
}

.posts__nav {
    margin-bottom: 3.5rem
}

@media screen and (max-width: 1023px) {
    .posts__nav {
        margin-bottom: 3rem
    }
}

.posts__cols, .posts__pagination {
    width: 100%;
    padding-inline: var(--margin)
}

.posts__cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .posts__cols {
        grid-template-columns:repeat(1, 1fr)
    }
}

.posts__col--mobile {
    display: none
}

@media screen and (max-width: 1023px) {
    .posts__col--mobile {
        display: block
    }
}

@media screen and (max-width: 1023px) {
    .posts__col--desktop {
        display: none
    }
}

.posts__list {
    display: flex;
    flex-direction: column
}

.posts__col--1 .posts__list {
    row-gap: 7.9rem
}

.posts__col--2 .posts__list {
    row-gap: 8.3rem
}

.posts__col--3 .posts__list {
    row-gap: 5rem
}

.posts__col--mobile .posts__list {
    row-gap: var(--margin)
}

.projects {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: 8.8rem
}

@media screen and (max-width: 1279px) {
    .projects {
        margin-bottom: var(--section-spacing)
    }
}

.projects__filters {
    margin-bottom: 3.5rem
}

@media screen and (max-width: 1023px) {
    .projects__filters {
        margin-bottom: 3rem
    }
}

.projects__list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .projects__list {
        grid-template-columns:repeat(1, 1fr)
    }
}

.hero {
    height: calc(100svh - var(--header-height));
    margin-bottom: var(--section-spacing);
    position: relative
}

@media screen and (max-width: 1023px) {
    .hero {
        height: auto;
        aspect-ratio: 1
    }
}

.hero__bcg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

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

.content-media {
    width: 100%;
    padding-inline: var(--margin);
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .content-media {
        margin-bottom: var(--section-spacing)
    }
}

.content-media__content {
    width: calc(33.333% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .content-media__content {
        width: 100%
    }
}

.content-media__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative;
    width: calc(66.666% - var(--gutter) / 2)
}

@supports not (overflow: clip) {
    .content-media__media {
        overflow: hidden
    }
}

.content-media__media:before {
    content: "";
    display: block;
    padding-top: 67.4185463659%
}

.content-media__media video, .content-media__media img, .content-media__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.content-media__media video, .content-media__media img {
    object-fit: cover
}

@media screen and (max-width: 1023px) {
    .content-media__media {
        width: 100%
    }
}

.content-media__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .content-media__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .content-media__title {
        font-size: 2.6rem
    }
}

.content-media__title:not(:last-child) {
    margin-bottom: 5rem
}

@media screen and (max-width: 1023px) {
    .content-media__title:not(:last-child) {
        margin-bottom: 3rem
    }
}

.content-media__description b, .content-media__description strong {
    font-weight: 600
}

.content-media__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.content-media__description ul ul {
    list-style: lower-roman
}

.content-media__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.content-media__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.content-media__description a:hover {
    background-size: 100% 1px
}

.content-media__description u {
    text-decoration: underline
}

.content-media__description em, .content-media__description i {
    font-style: italic
}

.team {
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .team {
        margin-bottom: var(--section-spacing)
    }
}

.team__list {
    display: grid;
    grid-template-columns:repeat(3, 1fr)
}

@media screen and (max-width: 1023px) {
    .team__list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 519px) {
    .team__list {
        grid-template-columns:repeat(1, 1fr)
    }
}

.team__trigger {
    display: block;
    width: 100%;
    position: relative
}

@media (hover: hover) {
    .team__trigger:hover .team__title {
        color: var(--color-black);
        background-color: var(--color-white)
    }

    .team__trigger:hover .team__media--hover {
        visibility: visible;
        opacity: 1
    }
}

.team__trigger:focus-visible .team__title {
    color: var(--color-black);
    background-color: var(--color-white)
}

.team__trigger:focus-visible .team__media--hover {
    visibility: visible;
    opacity: 1
}

.team__title {
    max-width: calc(100% - var(--margin) * 2);
    position: absolute;
    bottom: var(--margin);
    left: var(--margin);
    z-index: 3
}

.team__thumbnail {
    position: relative
}

.team__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .team__media {
        overflow: hidden
    }
}

.team__media:before {
    content: "";
    display: block;
    padding-top: 138.4375%
}

.team__media video, .team__media img, .team__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.team__media video, .team__media img {
    object-fit: cover
}

.team__media--hover {
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0
}

.logotypes {
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .logotypes {
        margin-bottom: var(--section-spacing)
    }
}

.logotypes__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37.7rem;
    padding-inline: 6.5rem
}

@media screen and (max-width: 1679px) {
    .logotypes__item {
        padding-inline: 5rem;
        width: 34.7rem
    }
}

@media screen and (max-width: 1279px) {
    .logotypes__item {
        padding-inline: 1.5rem;
        width: 27.7rem
    }
}

@media screen and (max-width: 1023px) {
    .logotypes__item {
        width: 22rem
    }
}

@media screen and (max-width: 519px) {
    .logotypes__item {
        width: 16rem
    }
}

.logotypes__logo img {
    width: auto;
    max-width: 100%;
    max-height: 8rem
}

.logotypes .swiper-wrapper {
    align-items: center;
    position: relative;
    transition-timing-function: linear !important
}

.about {
    width: 100%;
    padding-inline: var(--margin);
    padding-block: 4.5rem 10rem;
    display: flex;
    flex-direction: column;
    row-gap: 5rem
}

@media screen and (max-width: 1279px) {
    .about {
        padding-block: 0 var(--section-spacing)
    }
}

@media screen and (max-width: 1023px) {
    .about {
        row-gap: 3rem
    }
}

.about__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    max-width: 91rem;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .about__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .about__title {
        font-size: 2.6rem
    }
}

.about__description {
    max-width: 57.2rem
}

.about__description b, .about__description strong {
    font-weight: 600
}

.about__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.about__description ul ul {
    list-style: lower-roman
}

.about__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.about__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.about__description a:hover {
    background-size: 100% 1px
}

.about__description u {
    text-decoration: underline
}

.about__description em, .about__description i {
    font-style: italic
}

.media-boxes {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    min-height: calc(100svh - var(--header-height))
}

@media screen and (max-width: 1023px) {
    .media-boxes {
        grid-template-columns:repeat(1, 1fr)
    }
}

.media-boxes__media {
    position: relative
}

@media screen and (max-width: 1023px) {
    .media-boxes__media {
        min-height: calc(100svh - var(--header-height))
    }
}

.is-reversed .media-boxes__media {
    order: 1
}

.media-boxes__image {
    display: block;
    width: 100%;
    height: 100%
}

.media-boxes__image img, .media-boxes__image video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-boxes__caption {
    width: 100%;
    padding: var(--margin);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: var(--color-white)
}

.media-boxes__box {
    padding: var(--margin);
    position: relative
}

@media screen and (max-width: 1023px) {
    .media-boxes__box {
        min-height: calc(100svh - var(--header-height))
    }
}

.is-reversed .media-boxes__box {
    order: 2
}

.media-boxes__bcg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.media-boxes__bcg img, .media-boxes__bcg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-boxes__content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    height: 100%
}

@media screen and (max-width: 1023px) {
    .media-boxes__content {
        row-gap: 3rem
    }
}

.media-boxes__heading {
    color: var(--color-white)
}

.media-boxes__list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem
}

.media-boxes__item {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    color: var(--color-white);
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .media-boxes__item {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .media-boxes__item {
        font-size: 2.6rem
    }
}

@media screen and (max-width: 1279px) {
    .media-boxes__item {
        font-family: Sora, sans-serif;
        font-size: 2rem;
        line-height: 1.6
    }
}

.media-boxes__item b, .media-boxes__item strong {
    font-family: Sora, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3
}

.media-boxes__item img {
    width: 2.5rem;
    margin-top: .8rem;
    margin-right: 2.8rem
}

@media screen and (max-width: 1279px) {
    .media-boxes__item img {
        width: 2rem;
        margin-top: .7rem;
        margin-right: 1rem
    }
}

.media-boxes__button {
    align-self: flex-start;
    margin-top: auto
}

.media-boxes__title, .media-boxes__description {
    max-width: 57.5rem;
    color: var(--color-white)
}

.media-boxes__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 600
}

@media screen and (max-width: 1023px) {
    .media-boxes__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .media-boxes__title {
        font-size: 2.6rem
    }
}

.media-boxes__description b, .media-boxes__description strong {
    font-weight: 600
}

.media-boxes__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.media-boxes__description ul ul {
    list-style: lower-roman
}

.media-boxes__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.media-boxes__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.media-boxes__description a:hover {
    background-size: 100% 1px
}

.media-boxes__description u {
    text-decoration: underline
}

.media-boxes__description em, .media-boxes__description i {
    font-style: italic
}

.columns {
    display: flex;
    width: 100%;
    height: 70rem;
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .columns {
        flex-direction: column;
        row-gap: 3rem;
        height: auto;
        padding-block: var(--section-spacing)
    }
}

.columns__col {
    transition: flex .4s ease-in-out;
    overflow: clip;
    display: flex;
    flex: 0 0 25%;
    flex-direction: column;
    row-gap: 5rem;
    justify-content: space-between;
    min-width: 0;
    padding: var(--margin);
    position: relative
}

@supports not (overflow: clip) {
    .columns__col {
        overflow: hidden
    }
}

@media screen and (max-width: 1023px) {
    .columns__col {
        row-gap: 2rem;
        padding: 0 var(--margin)
    }
}

@media (hover: hover) and (pointer: fine) {
    .columns__col:hover {
        flex: 0 0 50%
    }

    .columns__col:hover .columns__title {
        color: var(--color-black)
    }

    .columns__col:hover .columns__label, .columns__col:hover .columns__description-container {
        opacity: 1
    }

    .columns__col:hover .columns__description-container {
        transition: opacity .2s ease-in-out;
        transition-delay: .35s
    }

    .columns__col:hover .columns__plus {
        opacity: 0
    }
}

/*.columns__col:focus-visible {*/
/*    flex: 0 0 50%*/
/*}*/

/*.columns__col:focus-visible .columns__title {*/
/*    color: var(--color-black)*/
/*}*/

/*.columns__col:focus-visible .columns__label, .columns__col:focus-visible .columns__description-container {*/
/*    opacity: 1*/
/*}*/

/*.columns__col:focus-visible .columns__description-container {*/
/*    transition: opacity .2s ease-in-out;*/
/*    transition-delay: .25s*/
/*}*/

/*.columns__col:focus-visible .columns__plus {*/
/*    opacity: 0*/
/*}*/

@media screen and (min-width: 1024px) and (max-width: 1280px) and (hover: none) and (pointer: coarse) {
    .columns__col.is-active {
        flex: 0 0 50%
    }

    .columns__col.is-active .columns__title {
        color: var(--color-black)
    }

    .columns__col.is-active .columns__label, .columns__col.is-active .columns__description-container {
        opacity: 1
    }

    .columns__col.is-active .columns__description-container {
        transition: opacity .2s ease-in-out;
        transition-delay: .35s
    }

    .columns__col.is-active .columns__plus {
        opacity: 0
    }
}


@media screen and (max-width: 1023px) {
    .columns__col.is-active .columns__title {
        color: var(--color-black)
    }

    .columns__col.is-active .columns__label, .columns__col.is-active .columns__description-container {
        opacity: 1
    }

    .columns__col.is-active .columns__description-container {
        transition: opacity .4s ease-in-out, max-height .4s ease-in-out;
        transition-delay: 0
    }

    .columns__col.is-active .columns__plus {
        opacity: 0
    }
}

.columns__col:not(:first-child) {
    border-left: 1px solid var(--color-black)
}

@media screen and (max-width: 1023px) {
    .columns__col:not(:first-child) {
        border: none
    }
}

.columns:hover .columns__col:not(:hover) {
    flex-basis: 16.6667%
}

.columns__content {
    display: flex;
    gap: 10rem;
    align-items: flex-end;
    min-width: 0;
    max-width: 100%;
    overflow: hidden
}

@media screen and (max-width: 1679px) {
    .columns__content {
        gap: 6rem
    }
}

@media screen and (max-width: 1023px) {
    .columns__content {
        flex-direction: column;
        row-gap: 0;
        align-items: flex-start
    }
}

.columns__title {
    transition: color .4s ease-in-out;
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    color: var(--color-primary);
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-orientation: mixed
}

@media screen and (max-width: 1023px) {
    .columns__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .columns__title {
        font-size: 2.6rem
    }
}

@media screen and (max-width: 1023px) {
    .columns__title {
        writing-mode: initial;
        transform: none;
        text-orientation: initial
    }

    .columns__title br {
        display: none
    }
}

.columns__plus, .columns__label {
    transition: opacity .4s ease-in-out
}

.columns__label {
    opacity: 0
}

.columns__plus {
    width: 2.4rem;
    position: absolute;
    top: 4.6rem;
    right: var(--margin)
}

@media screen and (max-width: 1023px) {
    .columns__plus {
        width: 2rem;
        top: 0
    }
}

.columns__description-container {
    overflow: clip;
    min-width: 0;
    max-width: 100%;
    opacity: 0
}

@supports not (overflow: clip) {
    .columns__description-container {
        overflow: hidden
    }
}

@media screen and (max-width: 1023px) {
    .columns__description-container {
        transition: opacity .4s ease-in-out, max-height .4s ease-in-out;
        max-height: 0
    }

    .is-active .columns__description-container {
        max-height: 100rem
    }
}

.columns__description b, .columns__description strong {
    font-weight: 600
}

.columns__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.columns__description ul ul {
    list-style: lower-roman
}

.columns__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.columns__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.columns__description a:hover {
    background-size: 100% 1px
}

.columns__description u {
    text-decoration: underline
}

.columns__description em, .columns__description i {
    font-style: italic
}

@media screen and (max-width: 1023px) {
    .columns__description {
        padding-top: 2rem
    }
}

.project {
    width: 100%;
    padding-inline: var(--margin);
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .project {
        margin-bottom: var(--section-spacing)
    }
}

.hero + .project {
    margin-top: -2.5rem
}

@media screen and (max-width: 1279px) {
    .hero + .project {
        margin-top: 0
    }
}

.project__title, .project__details, .project__about {
    width: calc(50% - var(--gutter) / 2)
}

@media screen and (max-width: 1023px) {
    .project__title, .project__details, .project__about {
        width: 100%
    }
}

.project__title {
    font-family: Sora, sans-serif;
    font-size: 3.2rem;
    line-height: 1.3;
    margin-left: auto;
    font-weight: 600;
    text-align: right
}

@media screen and (max-width: 1023px) {
    .project__title {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .project__title {
        font-size: 2.6rem
    }
}

.project__title:not(:last-child) {
    margin-bottom: 3.5rem
}

@media screen and (max-width: 1023px) {
    .project__title:not(:last-child) {
        margin-bottom: 3rem;
        text-align: left
    }
}

.project__details:not(:last-child) {
    margin-bottom: 10rem
}

@media screen and (max-width: 1279px) {
    .project__details:not(:last-child) {
        margin-bottom: var(--section-spacing)
    }
}

.project-gallery {
    display: flex;
    flex-direction: column;
    row-gap: 7rem;
    margin-bottom: 17rem
}

@media screen and (max-width: 1279px) {
    .project-gallery {
        row-gap: var(--gutter);
        margin-bottom: var(--section-spacing)
    }
}

.project-gallery__description b, .project-gallery__description strong {
    font-weight: 600
}

.project-gallery__description ul {
    padding-left: 1.1em;
    list-style: initial
}

.project-gallery__description ul ul {
    list-style: lower-roman
}

.project-gallery__description ol {
    padding-left: 1em;
    list-style: auto;
    list-style-position: outside
}

.project-gallery__description a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.project-gallery__description a:hover {
    background-size: 100% 1px
}

.project-gallery__description u {
    text-decoration: underline
}

.project-gallery__description em, .project-gallery__description i {
    font-style: italic
}

.project-gallery__single-column--fullscreen .project-media__caption, .project-gallery__single-column--container, .project-gallery__single-column--horizontal {
    width: 100%;
    padding-inline: var(--margin)
}

.project-gallery__single-column--horizontal .project-media {
    width: 57.4rem;
    max-width: 100%;
    margin-inline: auto
}

@media screen and (max-width: 1023px) {
    .project-gallery__single-column--horizontal .project-media {
        width: 100%
    }
}

.project-gallery__single-column--vertical {
    width: 100%;
    padding-inline: var(--margin)
}

.project-gallery__single-column--vertical .project-media {
    width: 101rem;
    max-width: 100%;
    margin-inline: auto
}

@media screen and (max-width: 1023px) {
    .project-gallery__single-column--vertical .project-media {
        width: 100%
    }
}

.project-gallery__two-columns {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    row-gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .project-gallery__two-columns {
        grid-template-columns:repeat(1, 1fr)
    }
}

.project-gallery__two-columns--fullscreen .project-media__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .project-gallery__two-columns--fullscreen .project-media__media {
        overflow: hidden
    }
}

.project-gallery__two-columns--fullscreen .project-media__media:before {
    content: "";
    display: block;
    padding-top: 112.5%
}

.project-gallery__two-columns--fullscreen .project-media__media video, .project-gallery__two-columns--fullscreen .project-media__media img, .project-gallery__two-columns--fullscreen .project-media__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.project-gallery__two-columns--fullscreen .project-media__media video, .project-gallery__two-columns--fullscreen .project-media__media img {
    object-fit: cover
}

.project-gallery__two-columns--fullscreen .project-media__caption {
    width: 100%;
    padding-inline: var(--margin)
}

.project-gallery__two-columns--fullscreen .project-media:is(:nth-child(2)) .project-media__caption {
    padding-inline: calc(var(--gutter) / 2)
}

.project-gallery__two-columns--container {
    width: 100%;
    padding-inline: var(--margin);
    gap: var(--gutter)
}

.project-gallery__two-columns--container .project-media__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .project-gallery__two-columns--container .project-media__media {
        overflow: hidden
    }
}

.project-gallery__two-columns--container .project-media__media:before {
    content: "";
    display: block;
    padding-top: 69.9435028249%
}

.project-gallery__two-columns--container .project-media__media video, .project-gallery__two-columns--container .project-media__media img, .project-gallery__two-columns--container .project-media__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.project-gallery__two-columns--container .project-media__media video, .project-gallery__two-columns--container .project-media__media img {
    object-fit: cover
}

.project-gallery__two-columns--container.is-reversed .project-gallery__media:is(:nth-child(2)), .project-gallery__two-columns--container.is-reversed .project-gallery__description {
    order: -1
}

.project-gallery__three-columns {
    width: 100%;
    padding-inline: var(--margin);
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gutter)
}

@media screen and (max-width: 1023px) {
    .project-gallery__three-columns {
        grid-template-columns:repeat(1, 1fr)
    }
}

.project-gallery__three-columns--horizontal .project-media__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .project-gallery__three-columns--horizontal .project-media__media {
        overflow: hidden
    }
}

.project-gallery__three-columns--horizontal .project-media__media:before {
    content: "";
    display: block;
    padding-top: 148.0836236934%
}

.project-gallery__three-columns--horizontal .project-media__media video, .project-gallery__three-columns--horizontal .project-media__media img, .project-gallery__three-columns--horizontal .project-media__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.project-gallery__three-columns--horizontal .project-media__media video, .project-gallery__three-columns--horizontal .project-media__media img {
    object-fit: cover
}

.project-gallery__three-columns--square .project-media__media {
    overflow: clip;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
    display: block;
    position: relative
}

@supports not (overflow: clip) {
    .project-gallery__three-columns--square .project-media__media {
        overflow: hidden
    }
}

.project-gallery__three-columns--square .project-media__media:before {
    content: "";
    display: block;
    padding-top: 100%
}

.project-gallery__three-columns--square .project-media__media video, .project-gallery__three-columns--square .project-media__media img, .project-gallery__three-columns--square .project-media__media iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.project-gallery__three-columns--square .project-media__media video, .project-gallery__three-columns--square .project-media__media img {
    object-fit: cover
}

.project-gallery__three-columns--middle-swap > :nth-child(1) {
    order: 2
}

.project-gallery__three-columns--middle-swap > :nth-child(2) {
    order: 1
}

.project-gallery__three-columns--middle-swap > :nth-child(3) {
    order: 3
}

.project-gallery__three-columns--end-swap > :nth-child(1) {
    order: 3
}

.project-gallery__three-columns--end-swap > :nth-child(2) {
    order: 1
}

.project-gallery__three-columns--end-swap > :nth-child(3) {
    order: 2
}

.footer {
    width: 100%;
    padding-inline: var(--margin);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    background: var(--color-black);
    padding-block: 4rem
}

@media screen and (max-width: 1023px) {
    .footer {
        padding-block: 3rem
    }
}

@media screen and (max-width: 519px) {
    .footer {
        flex-direction: column;
        row-gap: 1.2rem
    }
}

.footer__dev {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3
}

.footer__dev a {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.footer__dev a:hover {
    background-size: 100% 1px
}

.header {
    padding-inline: var(--margin);
    display: flex;
    gap: 3.2rem;
    align-items: center;
    width: 100%;
    height: var(--header-height);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 6000;
    padding-block: 1rem;
    background: var(--color-bg);
    box-shadow: 0 10px 30px 10px #0000000d
}

.header__logo {
    width: 8rem;
    margin-right: auto
}

@media screen and (max-width: 1023px) {
    .header__logo {
        width: 7rem
    }
}

.header__burger {
    width: 3.6rem
}

@media screen and (max-width: 1023px) {
    .header__burger {
        width: 3rem
    }
}

@media screen and (max-width: 519px) {
    .header__burger {
        width: 2.6rem
    }
}

.menu {
    display: flex;
    flex-direction: column;
    row-gap: 1rem
}

.menu__link {
    font-family: Sora, sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px
}

.menu__link:hover {
    background-size: 100% 1px
}

.menu__link.is-active {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition: none;
    background-size: 100% 1px
}

.submenu {
    padding-block: 2.2rem 3.3rem;
    display: flex;
    flex-direction: column;
    row-gap: .4rem
}

@media screen and (max-width: 1023px) {
    .submenu {
        padding-block: 1rem
    }
}

.submenu__link {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 1px;
    color: var(--color-dark)
}

.submenu__link:hover {
    background-size: 100% 1px
}

.submenu__link.is-active {
    text-decoration: none;
    transition: background-size .3s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    transition: none;
    background-size: 100% 1px
}

.nav {
    transition: transform .4s ease-in-out;
    width: 62.6rem;
    max-width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 100%;
    text-align: right;
    pointer-events: none;
    background: var(--color-light)
}

@media screen and (max-width: 1023px) {
    .nav {
        width: 100%
    }
}

.nav__close {
    width: 2.7rem;
    position: absolute;
    top: 4rem;
    right: var(--margin)
}

@media screen and (max-width: 1023px) {
    .nav__close {
        top: 2.6rem
    }
}

.nav__container {
    display: flex;
    flex-direction: column;
    gap: 4.6rem;
    height: 100%;
    overflow-y: auto;
    padding-inline: var(--margin);
    padding-block: 18rem 5.4rem
}

@media screen and (max-width: 1023px) {
    .nav__container {
        padding-block: 10rem var(--margin);
        gap: 3rem
    }
}

.nav__socials {
    justify-content: flex-end
}

.nav__links {
    justify-content: flex-end;
    margin-top: auto
}

.has-nav-visible .nav {
    transform: translate(-100%);
    pointer-events: all
}
