:root {
    --gray: #3A393B;
    --green: #95A092;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background-color: white;
    color: var(--gray);
}

.body-wrapper {
    width: 100vw;
}

html.lenis,
html.lenis body {
    height: auto;
}

html {
    scroll-behavior: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 90px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 72px;
    line-height: 1.1;
    padding-bottom: 30px;
    margin-bottom: 60px;
    border-bottom: 2px solid var(--gray);
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}

h1 .letter,
h2 .letter {
    display: inline-block;
    position: relative;
}

h1 .line,
h2 .line {
    position: absolute;
    width: 1vmin;
    height: 64%;
    background-color: var(--gray);
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 span,
h2 span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h4 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h5 {
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0 0;
}

h6 {
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    margin: 20px 0 0;
}

p,
li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 500;
}

p:last-child,
li:last-child {
    margin-bottom: 0;
}

li {
    margin: 0;
    margin-left: 16px;
}

ul {
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 2px solid var(--gray);
    margin: 20px 0;
}

section {
    margin: 120px 0;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.primary-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: transparent;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
}

.primary-link img,
.primary-link svg {
    transition: all 0.3s;
    transform: translateX(3px);
    display: inline-block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    vertical-align: baseline;
    margin-top: 0;
    margin-left: 10px;
}

.primary-link svg circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.6s cubic-bezier(.17, .59, .4, .88);
}

.primary-link:hover svg circle {
    stroke-dashoffset: 800;
}

::selection {
    background: #D4DBD2;
    color: var(--gray);
}

::-moz-selection {
    background: #D4DBD2;
    color: var(--gray);
}

.rccookie-container {
    background-color: var(--white);
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--green);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--gray);
}

.rccookie-modal .modal-header,
.rccookie-modal .modal-content,
.rccookie-modal .modal-footer {
    border-radius: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--green) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--gray);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--green);
    border-color: var(--green) !important;
    color: white;
}

.sliderMask {
    border-color: var(--green) !important;
    background-color: var(--green) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--green);
    background-color: var(--green) !important;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

.rccookie-container h4,
h5 {
    margin-top: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--gray);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--gray);
}

button {
    font-family: 'Barlow', sans-serif;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    height: 74px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s, box-shadow 0.5s, border-bottom 0.5s;
    border-bottom: 2px solid var(--gray);
}

.desktop-navbar.active {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid transparent;
}

.desktop-navbar.project,
.mobilmenu.project {
    border-bottom: 2px solid white;
}

.mobilmenu.project {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.desktop-navbar .left {
    display: flex;
    align-items: center;
}

.desktop-navbar .links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-navbar .logo {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s;
}

.desktop-navbar.project .logo,
.mobilmenu.project .logo {
    filter: brightness(5);
}

.desktop-navbar.project.active .logo,
.mobilmenu.project.active .logo {
    filter: brightness(1);
}

.desktop-navbar .logo img {
    width: 170px;
}

.desktop-navbar .links .nav-item {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.3s;
}

.desktop-navbar.project .links .nav-item {
    color: white;
    padding: 5px 0;
}

.desktop-navbar.project.active .links .nav-item {
    color: var(--gray);
}

.desktop-navbar .links .nav-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background-color: var(--gray);
    transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.desktop-navbar.project .links .nav-item::after {
    background-color: white;
}

.desktop-navbar.project.active .links .nav-item::after {
    background-color: var(--gray);
    transition: background-color 0.3s;
}

.desktop-navbar .links .nav-item:hover::after {
    width: 100%;
}

.desktop-navbar .links a svg {
    width: 14px;
    margin-left: 8px;
    transition: transform 0.3s;
}

.desktop-navbar .links a svg path {
    transition: stroke 0.3s;
    stroke: var(--gray);
}

.desktop-navbar.project .links a svg path {
    stroke: white;
}

.desktop-navbar.project.active .links a svg path {
    stroke: var(--gray);
}

.desktop-navbar .links a.active svg {
    transform: rotate(180deg);
}

/* NAVBAR DROPDOWN */

.desktop-navbar .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--green);
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    z-index: 998;
    display: flex;
    justify-content: space-between;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.desktop-navbar .navbar-dropdown.active {
    max-height: 190px;
    z-index: 999;
}

.navbar-dropdown .item {
    margin: 20px 0;
    width: 25%;
    height: 150px;
    color: white;
    border-right: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-dropdown .item:last-of-type {
    border-right: none;
}

.navbar-dropdown .item span {
    max-width: 200px;
}

/* LOADER */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.end {
    opacity: 0;
}

.loader video {
    width: 100%;
    max-width: 500px;
}

.hero {
    width: 100vw;
    height: 100dvh;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero *,
.header * {
    user-select: none;
    -webkit-user-select: none;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    display: none;
}

.hero h2 {
    color: white;
    font-size: 12vmin;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.3vmin;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: none;
}

.hero h2 .line {
    background-color: white;
}

.intro {
    background-color: var(--green);
    color: white;
    overflow: hidden;
    padding: 80px 20px;
    margin-top: 0;
}

.intro .bgshape {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 450px;
    opacity: 0.6;
}

.bgshape path:first-of-type {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
}

.bgshape path:nth-of-type(2) {
    stroke-dasharray: 3000;
    stroke-dashoffset: 0;
}

.intro h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 40px;
}

.intro p {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.projects .arrows {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    margin-top: 20px;
}

.projects .arrows button {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    transition: opacity 0.3s;
}

.projects .arrows .swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
}

.projects .arrows button img {
    width: 20px;
    margin-top: 2px;
    transition: transform 0.3s;
}

.projects .arrows .prev:hover img {
    transform: translateX(-8px);
}

.projects .arrows .next:hover img {
    transform: translateX(8px);
}

.projects .arrows .swiper-button-disabled img,
.projects .arrows .swiper-button-disabled img {
    transform: translateX(0);
}

/* SWIPER */

.relative {
    position: relative;
}

.swiper-button-prev,
.swiper-button-next,
.relative .next,
.relative .prev {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px !important;
    font-weight: 500;
    color: var(--gray);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

.projects .swiper-pagination {
    text-align: left;
    top: auto;
    bottom: 0;
    font-size: 30px;
    font-weight: 700;
    width: fit-content;
}

.projects .swiper-pagination-current {
    font-size: 60px;
}

.projects .swiper {
    width: 100%;
    overflow: visible;
}

.projects h3 {
    font-size: 66px;
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    margin-left: -5px;
    text-transform: none;
}

.projects h3:last-child {
    margin-bottom: -18px;
}

.projects .swiper-slide {
    transition: transform 0.6s, opacity 0.6s;
    padding-bottom: 100px;
    position: relative;
    z-index: 11;
}

.projects .swiper-slide h3,
.projects .swiper-slide .primary-link,
.projects .swiper-slide .status {
    opacity: 0;
    transition: opacity 0.5s;
}

.projects .swiper-slide.swiper-slide-active * {
    opacity: 1;
}

.projects .swiper-slide .image {
    display: block;
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    opacity: 1 !important;
}

.projects .swiper-slide .image img {
    height: 450px;
    opacity: 1 !important;
}

.status {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    animation: status 40s infinite linear;
}

.projects .swiper-slide .primary-link {
    position: absolute;
    z-index: 11;
    bottom: 20px;
    right: 0;
}

@keyframes status {
    0% {
        transform: translate(50%, -50%);
    }

    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

.status img {
    width: 160px !important;
    height: 160px !important;
    object-fit: contain;
    display: none;
}

.status.construction img:nth-of-type(1) {
    display: block;
}

.status.finished img:nth-of-type(2) {
    display: block;
}

.status.empty img:nth-of-type(3) {
    display: block;
}

.status.sold img:nth-of-type(4) {
    display: block;
}

.projects .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8);
    opacity: 0.8;
}

.services {
    padding: 0;
    display: flex;
    width: 100%;
    aspect-ratio: 16/7;
    position: relative;
}

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

.services .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.services .item {
    width: 33.3333%;
    height: 100%;
    border-right: 2px solid #FFFFFFAA;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s;
}

.services .item:last-of-type {
    border-right: none;
}

.services .item a {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services .item h3 {
    text-transform: uppercase;
    max-width: 380px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    transition: color 0.3s;
    margin-bottom: 40px;
}

.services .item .primary-link {
    color: white;
    opacity: 0;
    margin-top: -50px;
    transition: margin-top 0.3s, opacity 0.3s, color 0.3s;
}

.services .item:hover {
    background-color: #FFFFFFBB;
}

.services .item:hover h3 {
    color: var(--gray);
}

.services .item:hover .primary-link {
    color: var(--gray);
    opacity: 1;
    margin-top: 0;
}

.services .item .primary-link circle {
    stroke: white;
    transition: stroke 0.3s;
    stroke-dashoffset: 800;
}

.services .item .primary-link path {
    fill: white;
    transition: fill 0.3s;
}

.services .item:hover .primary-link circle {
    stroke: var(--gray);
}

.services .item:hover .primary-link path {
    fill: var(--gray);
}

.whyus .content {
    display: flex;
    margin-top: 100px;
}

.whyus.about .content {
    margin-top: 0;
}

.whyus .content:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.whyus .content .left {
    width: calc(50% + 5vw);
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding-right: 100px;
    padding-bottom: 20px;
}

.whyus.about .content .left {
    width: 50%;
}

.whyus .content:nth-of-type(2n) .left {
    padding-left: 100px;
    padding-right: 0;
}

.whyus .content .left .line {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--gray);
}

.whyus .content h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    max-width: 400px;
    line-height: 1.2;
}

.whyus .content .primary-link {
    margin-top: 20px;
}

.whyus .content .right {
    width: calc(50% - 5vw);
    position: relative;
    height: 100%;
    min-height: 500px;
}

.whyus.about .content .right {
    width: 50%;
}

.whyus .content .right .image {
    width: 45vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.whyus.about .content .right .image {
    width: 50vw;
}

.whyus .content:nth-of-type(2n) .right .image {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
}

.whyus .content .right .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CONTACT */

.contact {
    margin: 140px 0 0;
}

.contact .container {
    display: flex;
}

.contact .left,
.contact .right {
    position: relative;
    padding: 80px 0;
}

.contact .left {
    width: calc(50% + 5vw);
}

.contact .left::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--green);
    z-index: -1;
}

.contact h2,
.contact p,
.contact label,
.contact a,
.contact .primary-link {
    color: white;
}

.contact h2 {
    border-bottom: 2px solid white;
    margin-bottom: 40px;
}

.contact h2 .line {
    background-color: white;
}

.contact .left p {
    margin-bottom: 10px;
}

.contact .content {
    padding-right: calc(80px + 5vw);
}

.contact .right {
    width: calc(50% - 5vw);
}

.contact .right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--green);
    opacity: 0.4;
}

.contact .right .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45vw;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact .bgshape {
    position: absolute;
    z-index: 1;
    bottom: -3vw;
    right: -6vw;
    opacity: 0.8;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

form input,
form textarea {
    padding: 15px 0;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    resize: none;
    background-color: transparent;
    border-bottom: 1px solid white;
}

form input::placeholder,
form textarea::placeholder {
    opacity: 0.8;
    color: white;
}

form .checks {
    margin: 10px 0;
}

.form-check {
    margin: 15px 0;
    margin-left: 37px;
    padding-left: 0 !important;
}

.form-group {
    margin-bottom: 0;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -37px;
    width: 24px;
    height: 24px;
    border: 2px solid white;
    transition: 0.3s ease;
}

/* .form-check-input:checked+label::before {
    background-color: var(--green);
} */

.form-check-input+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -37px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.form-check-input:checked+label::after {
    opacity: 1;
    top: 0;
}

form .primary-link svg path {
    fill: white;
}

form .primary-link svg circle {
    stroke: white;
}

/* FOOTER */

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

footer .content {
    padding: 100px 25px;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer .item img {
    width: 150px;
    margin-bottom: 20px;
}

footer .item {
    display: flex;
    flex-direction: column;
    width: 25%;
}

footer .item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
}

footer .item a {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}

footer .item a img {
    width: 32px;
    margin-bottom: 0;
}

footer .social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 30px;
    width: 100%;
}

footer .raccoon a {
    display: inline;
}

.project-header {
    position: relative;
    margin: 0;
    min-height: 100dvh;
}

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

.project-header .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.project-header .bg::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    opacity: 0.2;
}

.project-header .back {
    position: absolute;
    top: 120px;
    left: 40px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 18px;
}

.project-header .back img {
    width: 24px;
}

.project-header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 20px;
}

.project-header .subtitle {
    position: relative;
}

.project-header h3 {
    font-size: 30px;
    padding-left: 100px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
}

.project-header .subtitle .line {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 2px;
    background-color: white;
}

.project-header h1 {
    color: white;
}

.project-header h1 .line {
    background-color: white;
}

.project-header .nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 60px;
}

.project-header .nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.project-header .nav a img {
    width: 54px;
}

.project-infos {
    margin: 0;
    background-color: var(--green);
    padding: 100px 20px 60px;
    overflow: visible;
}

.project-infos .status {
    top: -100px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: projectStatus 40s infinite linear;
    filter: brightness(5);
}

@keyframes projectStatus {
    0% {
        transform: translate(-40%, -50%);
    }

    100% {
        transform: translate(-40%, -50%) rotate(360deg);
    }
}

.project-infos .container {
    display: flex;
    justify-content: space-around;
}

.project-infos .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 20%;
}

.project-infos .item p {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.project-infos .item h3 {
    font-size: 26px;
    margin-bottom: 0;
    text-align: center;
}

.project-infos .item:nth-of-type(2) {
    width: 22%;
}

.project-infos .item:nth-of-type(3) {
    width: 17%;
}

.project-infos .item:nth-of-type(4) {
    width: 25%;
}

.project-infos .item:nth-of-type(5) {
    width: 17%;
}

.project-infos .item:nth-of-type(6) {
    width: 19%;
}

.link-to-3d {
    position: sticky;
    top: 74px;
    z-index: 99;
    background-color: var(--gray);
    color: white !important;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
}

.link-to-3d img {
    width: 20px;
    margin-left: 5px;
}

.dg.ac {
    z-index: 999 !important;
}

.informations .container {
    max-width: 950px;
}

.informations p {
    font-size: 20px;
}

.project-video {
    padding: 0;
}

.project-video a>img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

.project-video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-plans h2 {
    margin-bottom: 80px;
}

.project-plans .primary-link {
    margin: 60px auto 0;
}

.text-left-image-right,
.text-right-image-left {
    display: flex;
    align-items: center;
    gap: 120px;
    margin: 100px 0;
}

.text-left-image-right .text,
.text-right-image-left .text {
    width: 55%;
}

.text-left-image-right h3,
.text-right-image-left h3 {
    font-size: 24px;
}

.text-left-image-right .image,
.text-right-image-left .image {
    width: 45%;
}

.text-left-image-right .image img,
.text-right-image-left .image img {
    width: 100%;
    object-fit: contain;
}

.project-params {
    padding: 100px 20px;
    margin: 0;
    background-color: #95A09288;
}

.project-params h2 {
    margin-bottom: 60px;
}

.project-params .item {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 2px solid var(--green);
}

.project-params .item:last-of-type {
    border-bottom: none;
}

.project-params .item p {
    width: 50%;
    margin-bottom: 0;
    padding-right: 20px;
    font-weight: 600;
}

.project-params .item p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.project-params .primary-link {
    margin: 60px auto 0;
}

.text-left-image-full-right,
.text-right-image-full-left {
    margin: 100px 0;
}

.text-left-image-full-right .content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.text-left-image-full-right .content .text {
    width: 50%;
}

.text-left-image-full-right .content .right {
    width: 50%;
    position: relative;
    min-height: 500px;
}

.text-left-image-full-right .content .image {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50vw - 50px);
    height: 100%;
    overflow: hidden;
}

.text-left-image-full-right .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.two-full-images {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 0;
    margin: 100px 0;
}

.two-full-images .image {
    width: 100%;
    max-width: 1140px;
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.two-full-images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-right-image-full-left .content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.text-right-image-full-left .content .text {
    width: 50%;
}

.text-right-image-full-left .content .left {
    width: 50%;
    position: relative;
    min-height: 500px;
}

.text-right-image-full-left .content .image {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50vw - 50px);
    height: 100%;
    overflow: hidden;
}

.text-right-image-full-left .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7.5;
}

.banner-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.icons .items {
    display: flex;
    max-width: 950px;
    margin: 0 auto;
    gap: 60px;
}

.icons .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 33%;
}

.icons .item h4,
.icons .item p {
    margin-bottom: 0;
    text-align: center;
}

.icons .item p {
    font-weight: 400;
}

.icons .item img {
    height: 64px;
}

.icons .primary-link {
    margin: 60px auto 0;
}

.header {
    position: relative;
    margin: 0;
    padding: 160px 0 120px;
}

.header .bgshape {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-40%);
    opacity: 0.4;
}

.header h1 {
    text-align: center;
}

.projects-subpage .filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.projects-subpage .filters button {
    padding: 10px 24px 12px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--gray);
    border-radius: 99px;
    background-color: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.projects-subpage .filters button.active,
.projects-subpage .filters button:hover {
    background-color: var(--green);
    color: white;
    border-color: var(--green);
}

.projects-subpage .items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.projects-subpage .item {
    width: calc(50% - 15px);
    aspect-ratio: 5.6/4;
    position: relative;
    overflow: hidden;
}

.projects-subpage .item img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.66s cubic-bezier(.17, .67, .46, .98);
}

.projects-subpage .item:hover img,
.projects-subpage .item:focus img {
    transform: scale(1.06);
}

.projects-subpage .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.2;
    transition: opacity 0.3s, background-color 0.3s;
}

.projects-subpage .item:hover::after,
.projects-subpage .item:focus::after {
    background-color: var(--green);
    opacity: 0.6;
}

.projects-subpage .item h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 1;
}

.projects-subpage .item .primary-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.projects-subpage .item:hover .primary-link,
.projects-subpage .item:focus .primary-link {
    opacity: 1;
}

.projects-subpage .item .primary-link svg path {
    fill: white;
}

.projects-subpage .item .primary-link svg circle {
    stroke: white;
}

.projects-subpage .item:hover .primary-link svg circle,
.projects-subpage .item:focus .primary-link svg circle {
    stroke-dashoffset: 800;
}

.numbers .container {
    display: flex;
    justify-content: center;
    gap: 10%;
}

.numbers .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    gap: 15px;
}

.numbers .item h3 {
    font-size: 108px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--green);
    text-transform: none;
    line-height: 1;
}

.numbers .item p {
    font-size: 22px;
    max-width: 250px;
    text-align: center;
}

.reviews .next,
.reviews .prev {
    filter: invert(1);
    top: calc(50% - 50px);
}

.reviews .next img,
.reviews .prev img {
    width: 40px;
}

.reviews .next {
    right: 0;
}

.reviews p {
    max-width: 650px;
    font-weight: 400;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
}

.reviews .swiper-slide {
    padding-bottom: 100px;
}

.reviews h4 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 550px;
    text-align: center;
    border-top: 2px solid var(--gray);
    margin-bottom: 0;
    text-transform: none;
    padding-top: 20px;
}

.contact-subpage {
    padding: 0;
    margin-top: 100px;
}

.contact-subpage .container {
    max-width: 550px;
    padding: 0 20px;
}

.contact-subpage p {
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

.contact-subpage form input,
.contact-subpage form textarea {
    border-bottom: 1.5px solid var(--gray);
    color: var(--gray);
}

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

.contact-subpage .form-check-input+label::before {
    border: 1.5px solid var(--gray);
}

.contact-subpage .form-check-input:checked+label::before {
    background-color: var(--green);
    border-color: var(--green);
}

.contact-subpage form .primary-link {
    margin: 0 auto;
    font-weight: 600;
}

.contact-subpage form .primary-link svg path {
    fill: var(--gray);
}

.contact-subpage form .primary-link svg circle {
    stroke: var(--gray);
}

.contact-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7.7;
    padding: 0;
    margin-bottom: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    opacity: 0.4;
    z-index: 1;
}

.contact-bg .bgshape {
    position: absolute;
    top: 0;
    right: -6vw;
    z-index: 2;
    width: 56%;
    height: 105%;
    aspect-ratio: 758/690;
}

.article {
    margin-top: 80px;
}

.article h3 {
    font-size: 72px;
    margin: 60px 0 30px;
    font-weight: 700;
}

.article h4 {
    font-size: 36px;
    margin: 30px 0 20px;
    font-weight: 700;
    text-transform: none;
}

.article h5 {
    font-size: 20px;
    margin: 20px 0;
}

.article h6 {
    font-size: 18px;
    margin: 20px 0;
}

.article img {
    width: 100%;
    margin: 30px 0;
}

.three-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--green);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s;
}

.three-loader.ended {
    opacity: 0;
}

.three-loader .items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.three-loader circle {
    stroke-dasharray: 754;
    stroke-dashoffset: 754;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.35s;
}

.three-loader .percent {
    font-size: 60px;
    font-weight: 700;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 1;
    transform: translate(-45%, -55%);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.interface {
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    pointer-events: none;
    padding: 0 20px;
    height: calc(100dvh - 94px);
}

.interface .views {
    background-color: #FFFFFFAA;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    min-width: 200px;
    pointer-events: all;
    position: absolute;
    bottom: 0;
    left: 0;
}

.interface .views .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
}

.interface .views .header img {
    width: 14px;
    transition: all 0.3s;
    transform: rotate(180deg);
}

.interface .views.active .header img {
    transform: rotate(0deg);
}

.interface .views .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(.17, .67, .46, .98);
}

.interface .views .content .view {
    display: block;
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid var(--green);
    position: relative;
    transition: padding 0.3s;
    text-align: left;
}

.interface .views .content .view:first-of-type {
    border-top: 1px solid var(--gray);
}

.interface .views .content .view.active {
    padding: 12px 20px 12px 40px;
    font-weight: 600;
}

.interface .views .content .view:last-of-type {
    border-bottom: none;
}

.interface .views .content .view::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url('../images/check.svg') no-repeat center center;
    opacity: 0;
    transition: all 0.3s;
}

.interface .views .content .view.active::before {
    left: 20px;
    opacity: 1;
}

.interface .help-button,
.interface .back-button {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: var(--green);
    color: white;
    border-radius: 99px;
    font-weight: 500;
    pointer-events: all;
}

.interface .help-button {
    bottom: 20px;
    right: 20px;
}

.interface .back-button {
    top: 0;
    left: 20px;
}

.interface .help-button img,
.interface .back-button img {
    width: 36px;
}

.help-modal {
    position: fixed;
    z-index: 1001;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 700px;
    background-color: white;
    display: none;
    opacity: 0;
    transition: all 0.45s cubic-bezier(.17, .67, .46, .98);
}

.help-modal.active {
    opacity: 1;
    top: 50%;
}

.help-modal .cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.help-modal h3 {
    padding: 20px;
    font-weight: 700;
    font-size: 36px;
    color: var(--green);
    margin-bottom: 0;
    text-transform: none;
}

.help-modal .item {
    padding: 20px;
    border-bottom: 1px solid var(--green);
}

.help-modal .item:last-of-type {
    border-bottom: none;
}

.help-modal h4 {
    margin-top: 0;
    text-transform: none;
}

.help-modal p {
    margin-bottom: 0;
    font-weight: 400;
}

.help-modal strong {
    font-weight: 700;
    color: var(--green);
}

.keramiahaz-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 700px;
    background-color: white;
    display: none;
    opacity: 0;
    transition: all 0.45s cubic-bezier(.17, .67, .46, .98);
}

.keramiahaz-modal .text {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 0 30px 30px;
}

.keramiahaz-modal.active {
    opacity: 1;
}

.keramiahaz-modal .cancel {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.keramiahaz-modal h3 {
    font-size: 30px;
    padding: 30px 30px 0;
}

@media (max-width: 1079px) {

    .desktop-navbar {
        display: none;
    }

    p,
    li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    li {
        margin-bottom: 0;
    }

    h2 {
        font-size: 32px;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    hr {
        margin: 15px 0;
        border-top: 1px solid var(--gray);
    }

    section {
        margin: 40px 0;
    }

    .primary-link {
        font-size: 14px;
    }

    .primary-link img,
    .primary-link svg {
        width: 36px;
        height: 36px;
    }

    .primary-link svg circle {
        stroke-dashoffset: 800;
    }

    .g-recaptcha {
        transform: scale(0.93);
        transform-origin: 0 0;
    }

    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .container {
        max-width: 600px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 22px !important;
    }

    .swiper-button-prev {
        left: -40px !important;
    }

    .swiper-button-next {
        right: -40px !important;
    }

    .hero {
        height: 50svh;
    }

    .hero h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-top: 35px;
    }

    .intro {
        padding: 40px 20px;
    }

    .intro h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .intro p {
        font-size: 16px;
    }

    .intro .bgshape {
        right: -100px;
    }

    .projects .arrows {
        justify-content: space-between;
        margin: 20px 0;
    }

    .projects .arrows button {
        font-size: 16px;
    }

    .projects .arrows button img {
        width: 16px;
        margin-top: 1px;
    }

    .projects h3 {
        font-size: 28px;
        margin-left: -2px;
    }

    .projects h3:last-child {
        margin-bottom: -12px;
    }

    .projects .swiper-slide {
        padding-bottom: 70px;
    }

    .projects .swiper-slide .image {
        max-width: 80%;
    }

    .projects .swiper-slide .image img {
        height: auto;
        aspect-ratio: 16/9;
    }

    .status img {
        width: 70px !important;
        height: 70px !important;
    }

    .projects .swiper-pagination {
        font-size: 20px;
    }

    .projects .swiper-pagination-current {
        font-size: 40px;
    }

    .projects .swiper-slide .primary-link {
        bottom: 10px;
    }

    .services {
        flex-direction: column;
        aspect-ratio: auto;
        margin: 60px 0;
    }

    .services .item {
        width: 100%;
        padding: 30px 20px;
        border-right: 0;
        border-bottom: 2px solid #FFFFFFAA;
    }

    .services .item h3 {
        font-size: 26px;
        margin-bottom: 20px;
        max-width: 250px;
        line-height: 1.4;
    }

    .services .item .primary-link {
        opacity: 1;
        margin-top: 0;
    }

    .whyus .content,
    .whyus .content:nth-of-type(2n) {
        flex-direction: column-reverse;
        margin-top: 40px;
        gap: 30px;
    }

    .whyus .content .left,
    .whyus .content .right,
    .whyus.about .content .left,
    .whyus.about .content .right {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .whyus.about .content .right .image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .whyus .content .left,
    .whyus .content:nth-of-type(2n) .left {
        padding: 0;
    }

    .whyus .content .right .image,
    .whyus .content:nth-of-type(2n) .right .image {
        position: static;
        width: 100%;
        aspect-ratio: 16/9;
        max-height: 320px;
    }

    .whyus .content h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .whyus .content .left .line {
        display: none;
    }

    .whyus .content .primary-link {
        margin-top: 10px;
    }

    .contact {
        margin-top: 40px;
        background-color: var(--green);
    }

    .contact .container {
        flex-direction: column;
    }

    .contact .left,
    .contact .right {
        width: 100%;
        padding: 40px 0;
    }

    .contact .left::before {
        display: none;
    }

    .contact h2 {
        margin-bottom: 25px;
    }

    .contact .content {
        padding-right: 0;
    }

    .contact .right {
        padding: 0;
        width: 100%;
        margin-left: -20px;
    }

    .contact .right .bg {
        width: 100vw;
        max-width: 600px;
        aspect-ratio: 1;
        position: relative;
    }

    .contact .bgshape {
        display: none;
    }

    form {
        margin: 30px 0 0;

    }

    form input,
    form textarea {
        padding: 12px 0;
        font-size: 14px;
    }

    .form-check-input+label {
        font-size: 13px;
    }

    .form-check:first-of-type {
        margin-top: 0;
    }

    form .primary-link {
        margin: 0 auto;
    }

    footer .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    footer .content {
        padding: 60px 20px;
    }

    footer .item {
        width: 100%;
        align-items: center;
    }

    footer .item img {
        width: 150px;
    }

    footer .item a {
        margin-bottom: 8px;
        font-size: 14px;
    }

    footer .social {
        justify-content: center;
    }

    footer .raccoon {
        margin-top: 20px;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 6px;
        text-align: center;
    }

    .project-header {
        min-height: 70dvh;
    }

    .project-header .back {
        font-size: 14px;
        top: 90px;
        left: 20px;
        gap: 12px;
    }

    .project-header .back img {
        width: 18px;
    }

    .project-header h3 {
        font-size: 18px;
        padding-left: 65px;
        margin-top: 35px;
    }

    .project-header .subtitle .line {
        width: 50px;
    }

    .project-header h1 {
        font-size: 40px;
    }

    .project-header .nav {
        bottom: 40px;
        right: 20px;
        width: calc(100vw - 40px);
        justify-content: space-between;
        gap: 20px;
    }

    .project-header .nav a {
        font-size: 14px;
        gap: 12px;
    }

    .project-header .nav a img {
        width: 28px;
    }

    .project-infos {
        padding: 60px 20px 40px;
    }

    .project-infos .status {
        top: -60px;
        left: 47.5%;
    }

    .project-infos .status img {
        width: 80px !important;
        height: 80px !important;
    }

    .project-infos .container {
        flex-direction: column;
        gap: 30px;
    }

    .project-infos .item {
        width: 100% !important;
    }

    .project-infos .item h3 {
        font-size: 24px;
        text-align: center;
    }

    .project-infos .item p {
        font-size: 16px;
    }

    .link-to-3d {
        top: 64px;
        font-size: 16px;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 20px;
    }

    .link-to-3d span {
        margin-top: 3px;
    }

    .link-to-3d img {
        width: 16px;
    }

    .informations .container {
        max-width: 600px;
    }

    .informations p {
        font-size: 16px;
    }

    .project-video .play img {
        width: 50px;
    }

    .project-video a>img {
        aspect-ratio: 16/9;
    }

    .project-plans h2 {
        margin-bottom: 30px;
    }

    .project-plans .primary-link {
        margin: 20px auto 0;
    }

    .text-left-image-right,
    .text-right-image-left {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 40px 0;
    }

    .text-right-image-left {
        flex-direction: column;
    }

    .text-left-image-right .text,
    .text-right-image-left .text {
        width: 100%;
    }

    .text-left-image-right h3,
    .text-right-image-left h3 {
        font-size: 20px;
    }

    .text-left-image-right .image,
    .text-right-image-left .image {
        width: 100%;
    }

    .text-left-image-right .image img,
    .text-right-image-left .image img {
        height: auto;
        aspect-ratio: 16/9;
    }

    .project-params {
        padding: 40px 20px;
    }

    .project-params h2 {
        margin-bottom: 40px;
    }

    .project-params .item {
        padding: 20px 0;
    }

    .project-params .item p:first-of-type {
        font-size: 16px;
    }

    .project-params .primary-link {
        margin: 30px auto 0;
    }

    .text-left-image-full-right,
    .text-right-image-full-left {
        margin: 40px 0;
    }

    .text-left-image-full-right .content {
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: 40px;
    }

    .text-left-image-full-right .content .text,
    .text-left-image-full-right .content .right {
        width: 100%;
    }

    .text-left-image-full-right .content .right {
        min-height: auto;
        aspect-ratio: 16/9;
    }

    .text-left-image-full-right .content .image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .two-full-images {
        flex-direction: column;
        gap: 40px;
        margin: 40px 0;
        padding: 0 20px;
    }

    .two-full-images .image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        aspect-ratio: 16/9;
        min-height: auto;
    }

    .two-full-images .image img {
        aspect-ratio: 16/9;
        height: auto;
    }

    .text-right-image-full-left .content {
        flex-direction: column;
        gap: 20px;
    }

    .text-right-image-full-left .content .text {
        width: 100%;
    }

    .text-right-image-full-left .content .left {
        width: 100%;
        min-height: auto;
        aspect-ratio: 16/9;
    }

    .text-right-image-full-left .content .image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .banner-image img {
        aspect-ratio: 16/9;
    }

    .banner-image img {
        object-position: center center;
    }

    .icons .items {
        flex-direction: column;
        gap: 40px;
    }

    .icons .item {
        width: 100%;
        gap: 12px;
    }

    .icons .item h4 {
        font-size: 18px;
        margin-top: 0;
    }

    .icons .item p {
        font-size: 14px;
    }

    .icons .item img {
        height: 42px;
        margin-bottom: 8px;
    }

    .icons .primary-link {
        margin: 40px auto 0;
    }

    .header {
        padding: 120px 0 80px;
    }

    .header .bgshape {
        bottom: -40px;
    }

    .header h1 {
        font-size: 30px;
    }

    .projects-subpage .filters {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .projects-subpage .filters button {
        padding: 8px 16px 10px;
        font-size: 14px;
        border: 1px solid var(--gray);
    }

    .projects-subpage .items {
        gap: 20px;
        margin-top: 20px;
    }

    .projects-subpage .item {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .projects-subpage .item h3 {
        font-size: 18px;
        top: 10px;
        left: 10px;
    }

    .projects-subpage .item .primary-link {
        bottom: 10px;
        right: 10px;
    }

    .projects-subpage .item .primary-link svg path {
        fill: white;
    }

    .projects-subpage .item .primary-link svg circle {
        stroke: white;
    }

    .projects-subpage .item .primary-link svg circle {
        stroke-dashoffset: 800;
    }

    .numbers .container {
        flex-direction: column;
        gap: 20px;
    }

    .numbers .item {
        width: 100%;
    }

    .numbers .item h3 {
        font-size: 68px;
    }

    .numbers .item p {
        font-size: 16px;
    }

    .reviews .next,
    .reviews .prev {
        top: calc(50% - 33px)
    }

    .reviews .next img,
    .reviews .prev img {
        width: 30px;
    }

    .reviews .swiper-slide {
        padding: 0 40px 65px;
    }

    .reviews p {
        max-width: 500px;
        font-size: 13px;
    }

    .reviews h4 {
        max-width: 500px;
    }

    .contact-subpage {
        margin-top: 60px;
    }

    .contact-subpage .container {
        max-width: 500px;
    }

    .contact-subpage p {
        font-size: 14px;
    }

    .contact-subpage form input,
    .contact-subpage form textarea {
        font-size: 14px;
    }

    .contact-subpage .form-check-input+label::before {
        border: 1px solid var(--gray);
    }

    .contact-subpage .form-check-input:checked+label::before {
        background-color: var(--green);
        border-color: var(--green);
    }

    .contact-subpage form .primary-link {
        margin: 0 auto;
    }

    .contact-bg {
        aspect-ratio: 16/9;
    }

    .contact-bg img {
        object-position: center top;
    }

    .contact-bg::after {
        width: 100%;
        height: 100%;
    }

    .contact-bg .bgshape {
        width: 50%;
        height: 100%;
    }

    .article {
        margin-top: 0;
    }

    .article h3 {
        font-size: 32px;
        margin: 30px 0 20px;
    }

    .article h4 {
        font-size: 22px;
        margin: 20px 0 15px;
    }

    .article h5 {
        font-size: 18px;
        margin: 15px 0;
    }

    .article h6 {
        font-size: 16px;
        margin: 10px 0;
    }

    .article img {
        margin: 20px 0;
    }

    .interface .views {
        width: 100vw;
    }

    .interface .help-button {
        top: 0;
        bottom: auto;
        padding: 8px;
    }

    .interface .back-button {
        padding: 8px;
    }

    .interface .help-button img {
        width: 24px;
    }

    .interface .back-button img {
        width: 24px;
    }

    .help-modal h3 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .help-modal .cancel {
        width: 30px;
    }

    .three-loader .items {
        transform: scale(0.66) translate(-50%, -50%);
        transform-origin: 0 0;
    }

    .keramiahaz-modal .text {
        padding: 0 20px 20px;
    }

    .keramiahaz-modal .cancel {
        top: 20px;
        right: 20px;
    }

    .keramiahaz-modal h3 {
        font-size: 24px;
        padding: 20px 20px 0;
    }

}

@media (min-width: 1080px) and (max-width: 1299px) {
    .services .item h3 {
        font-size: 30px;
    }

    .numbers .item h3 {
        font-size: 98px;
    }

    section {
        padding: 0 40px;
    }

    footer .content {
        padding: 80px 40px;
    }

    .hero h2 {
        font-size: 80px;
    }
}