@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: 'IvyPresto';
    src: url('../fonts/ivypresto/IvyPrestoText-Light.eot');
    src: url('../fonts/ivypresto/IvyPrestoText-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ivypresto/IvyPrestoText-Light.woff2') format('woff2'),
    url('../fonts/ivypresto/IvyPrestoText-Light.woff') format('woff'),
    url('../fonts/ivypresto/IvyPrestoText-Light.ttf') format('truetype'),
    url('../fonts/ivypresto/IvyPrestoText-Light.svg#IvyPrestoText-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IvyPresto';
    src: url('../fonts/ivypresto/IvyPrestoText-Thin.eot');
    src: url('../fonts/ivypresto/IvyPrestoText-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ivypresto/IvyPrestoText-Thin.woff2') format('woff2'),
    url('../fonts/ivypresto/IvyPrestoText-Thin.woff') format('woff'),
    url('../fonts/ivypresto/IvyPrestoText-Thin.ttf') format('truetype'),
    url('../fonts/ivypresto/IvyPrestoText-Thin.svg#IvyPrestoText-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Interstate';
    src: url('../fonts/interstate/interstate-light-cond.eot');
    src: url('../fonts/interstate/interstate-light-cond.eot?#iefix') format('embedded-opentype'),
    url('../fonts/interstate/interstate-light-cond.woff2') format('woff2'),
    url('../fonts/interstate/interstate-light-cond.woff') format('woff'),
    url('../fonts/interstate/interstate-light-cond.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    padding: 0;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}
h1, h2, h3, h4, h5 {
    font-weight: 100;
}
.size_1_5 {
    font-size: 1.5rem;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding-block: 100px;
    z-index: 99;
    border-right: 1px solid #000000;
}

#header .site-name img {
    width: 150px;
    margin-bottom: 30px;
}
#header .site-logo img {
    width: 150px;
}
#main-menu {
    margin-top: auto;
}
#main-menu .close-menu {
    display: none;
}
#main-menu .menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    margin: 0;
}
#main-menu .menu a {
    text-decoration: none;
    color: #000000;
    text-align: center;
    font-size: 21px;
    font-weight: 100;
}
#content {
    width: calc(100% - 250px);
    margin-left: 250px;
    min-height: 100dvh;
}
.hero-swiper-container {
    padding: 20px;
    border-bottom: 1px solid #000000;
}
.hero-swiper {
    overflow: hidden;
}
.hero-swiper .swiper-slide {
    display: flex;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    object-position: center center;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #000000;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 22px;
    height: 44px;
    overflow: hidden;
}
.hero-swiper .swiper-button-next {
    right: 50px;
}
.hero-swiper .swiper-button-prev {
    left: 50px;
}
.hero-swiper .swiper-button-prev:after {
    font-size: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    transform-origin: center center;
    transform: translateX(10px) rotate(45deg);
}
.hero-swiper .swiper-button-next:after {
    font-size: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    transform-origin: center center;
    transform: translateX(-10px) rotate(45deg);
}
.texts-block {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #000000;
}
.texts-block .text-item {
    text-align: center;
    max-width: 300px;
}
.texts-block .text-item .title {
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1;
}
.texts-block .text-item .subtitle {
    font-size: 21px;
}
.texts-block .text-item.small-text {
    font-size: 16px;
}
.images-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px;
    gap: 80px;
    border-bottom: 1px solid #000000;
}
.images-block .image-item img {
    max-width: 100%;
}
.images-block .image-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.images-block .image-item:nth-child(4n + 2) {
    justify-content: flex-end;
}
.images-block .image-item:nth-child(4n + 2) img,
.images-block .image-item:nth-child(4n + 4) img {
    max-width: 60%;
}
.images-block .image-item:nth-child(4n + 3) img {
    max-width: 85%;
}
#content .all-projects {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}
#content .all-projects .project-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 15px;
    align-items: center;
    text-decoration: none;
    color: #000000;
    text-align: center;
}
#content .all-projects .project-item img {
    width: 100%;
}
#content .all-projects .project-item .project-title {
    margin-top: auto;
    font-size: 21px;
}
#content h1 {
    font-weight: 100;
    font-size: 54px;
    line-height: 1;
}
#content h2 {
    font-size: 42px;
}
.ivypresto {
    font-weight: 100;
    margin: 0;
}
#burger {
    display: none;
}
.wpcf7 {
    padding-bottom: 50px;
}
.wpcf7 .wpcf7-text {
    width: 80%;
    height: 60px;
    border-radius: 0;
    padding-left: 10px;
    outline: none;
    border: none;
    border-bottom: 1px solid #5c5c5c;
    background-color: #ffffff;
    color: #5c5c5c;
}
.wpcf7 .wpcf7-textarea {
    width: 80%;
    height: 150px;
    border-radius: 0;
    padding-left: 10px;
    outline: none;
    border: none;
    border-bottom: 1px solid #5c5c5c;
    background-color: #ffffff;
    color: #5c5c5c;
    padding-top: 5px;
    resize: none;
}
.wpcf7 label {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.wpcf7 .wpcf7-submit {
    width: 120px;
    height: 36px;
    line-height: 36px;
    background-color: #fff;
    text-align: center;
    border: 1px solid #5c5c5c;
    cursor: pointer;
    transition: all 300ms ease;
    border-radius: 30px;
    font-weight: 300;
}
.wpcf7 .wpcf7-submit:hover {
    background-color: #5c5c5c;
    color: #ffffff;
}
#page.contact h3 {
    font-weight: 100;
}
#page.biography h3 {
    font-weight: 100;
}
.gallery-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding: 5%;
}
.gallery-block .gallery-block-image img {
    width: 100%;
}
.gallery-block .gallery-block-right {
    padding-top: 15%;
}
.gallery-block .gallery-block-right,
.gallery-block .gallery-block-left {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}
.btn-round a {
    border-width: 1px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    #header {
        border-right: none;
        position: relative;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #000000;
        height: 80px;
        padding: 0 15px;
    }
    #burger {
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        row-gap: 5px;
    }
    #burger span {
        width: 24px;
        height: 2px;
        background-color: #000000;
    }
    #burger span:nth-child(2) {
        width: 12px;
    }
    #main-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100dvh;
        background-color: #fff;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-110%);
        transition: transform 300ms ease;
        will-change: transform;
    }
    #main-menu.active {
        transform: translateY(0);
    }
    #header .site-logo img {
        width: 60px;
    }
    #header .site-name img {
        width: 100px;
        margin-bottom: 0;
        max-height: 60px;
        object-fit: contain;
        object-position: center left;
    }
    #main-menu .close-menu {
        display: flex;
        position: absolute;
        width: 44px;
        height: 44px;
        right: 15px;
        top: 18px;
        cursor: pointer;
    }
    #main-menu .close-menu:before,
    #main-menu .close-menu:after {
        content: '';
        width: 24px;
        position: absolute;
        height: 2px;
        background-color: #000000;
        left: 50%;
        top: 50%;
        transform-origin: center center;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    #main-menu .close-menu:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    #content {
        width: 100%;
        margin-left: 0;
    }
    .hero-swiper-container {
        padding: 15px;
    }
    .hero-swiper .swiper-slide img {
        height: 60vw;
    }
    .texts-block {
        padding: 15px;
        flex-direction: column;
        row-gap: 20px;
    }
    .texts-block .text-item {
        max-width: 360px;
    }
    .texts-block .text-item .title {
        font-size: 32px;
    }
    .images-block {
        display: grid;
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
        border-bottom: 1px solid #000000;
    }
    #header .site-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #content .all-projects {
        grid-template-columns: 1fr;
        padding: 50px 15px;
    }
    .wpcf7 .wpcf7-text,
    .wpcf7 .wpcf7-textarea {
        width: 100%;
    }
    #content h1 {
        font-size: 36px;
    }
    .gallery-block .gallery-block-right, .gallery-block .gallery-block-left {
        row-gap: 20px;
    }
    .texts-block .text-item .subtitle {
        font-size: 21px;
    }
    .texts-block .text-item.small-text {
        font-size: 16px;
    }
}