/*@font-face {*/
/*    font-family: 'Manrope',sans-serif;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    font-display: swap;*/
/*    src: url('fonts/Manrope-SemiBold.ttf') format("truetype");*/
/*}*/


@font-face {
    font-family: 'Manrope',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Manrope-Regular.ttf') format("truetype");
}

* {
    padding: 0;
    margin: 0;
    border: 0;

}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}
ul{
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
    font-family: 'Manrope',sans-serif;
    cursor: pointer;

}
a:focus,
a:active {
    outline: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    background-color: inherit;
    color: inherit;
    text-transform: uppercase;

}
input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: transparent !important;
    color: fieldtext !important;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

:root {

    --gray-100: #ffffff; /* White */
    --gray-200: #E7E7E9; /* Light gray */
    --gray-300: #ABABAB; /* Medium gray */
    --gray-400: #000000; /* Black */


    --burgundy: #89312E;


    --error: #FF5A4F;
}


body {
    font-family: 'Manrope', sans-serif;
    font-weight:400;
    font-size: 16px;
    line-height: 1;
    color: var(--gray-400);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.body-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}

main{
    flex: 1;
}
.header{
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.container{
    width: 100%;
    padding: 0 15px;
}
.header__inner{
    position: relative;
    display: flex;
    gap: 90px;
    padding: 15px 0;
}

.header__logo{

}

.header__inner.header--light{
    color: var(--gray-100);
}
.header__inner.header--light .header__logo svg path{
    fill: var(--gray-100);
}
.header__inner.header--light .header__menu-search-icon svg path{
    fill: var(--gray-100);
}

.header__inner.header--dark{
    color: var(--gray-300);
    position: relative;
    z-index: 3;
}
.header__inner.header--dark:before{
    opacity: 0.5;
    transition: all 1s ease;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background: #ffffff;
    z-index: -4;
}

.header__inner.header--dark .header__logo svg path{
    fill: var(--gray-400);
}
.header__inner.header--dark .header__menu-search-icon svg path{
    fill: var(--gray-400);
}
.header__inner.header--dark .header__menu-button svg path{
    stroke: var(--gray-400);
}
.header__inner.header--dark .header__menu-language-link:hover{
    color: var(--gray-400);
}
.header__inner.header--dark .header__menu-language-link.active{
    color: var(--gray-400);
}

.header__menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: flex-start;
    position: relative;
}
.header__menu-list{
    display: flex;
    gap: 60px;
    align-items: center;
}
.header__menu-link{
    opacity: 0.6;
    transition: all .2s;
    text-transform: uppercase;
}
.header__menu-link.active{
    opacity: 1;
}
.header__menu-link:hover{
    opacity: 1;
}
.header__inner.header--dark .header__menu-link:hover{
    color: var(--gray-400);
    opacity: 1;
}
.header__inner.header--dark .header__menu-link.active{
    color: var(--gray-400);
    opacity: 1;
}
.header__inner.header--dark .header__menu-link{
    opacity: 1;
}
.header__menu-actions{
    display: flex;
    gap: 41px;
    flex:1;
    justify-content: flex-end;
}

.header__menu-search{
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: flex-end;
}
.header__menu-search-wrapper{
    width: 272px;
    border-bottom: 1px solid var(--gray-400);
    /*display: flex;*/
    justify-content: space-between;

    display: none;
}
.header__menu-search-wrapper.active{
    display: flex;
}

.header__inner.header--light .header__menu-search-wrapper{
    border-bottom: 1px solid var(--gray-100);
}


/* Блок с результатами */
/*.header__menu-search-results {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background: white;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
/*    margin-top: 4px;*/
/*    display: none;*/
/*    z-index: 10;*/
/*    max-height: 200px;*/
/*    overflow-y: auto;*/
/*}*/

/*.header__menu-search-results.active {*/
/*    display: block;*/
/*}*/

/*.header__menu-search-results-item {*/
/*    padding: 8px 10px;*/
/*    cursor: pointer;*/
/*    transition: background 0.2s;*/
/*}*/

/*.header__menu-search-results-item:hover {*/
/*    background: #f4f4f4;*/
/*}*/





.header__menu-search-input{
    width: 100%;
    height: 100%;
    background: transparent;
    padding-right: 16px;

    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.header__menu-search-input::placeholder{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-300);
}
.header__inner.header--light .header__menu-search-input{
    color: var(--gray-100);
}
.header__inner.header--light .header__menu-search-input::placeholder{
    color: var(--gray-100);
}
.header__menu-search-button{
    opacity: 0;
    pointer-events: none;
}
.header__menu-search-button svg rect{
    transition: all 0.3s ;
}
.header__menu-search-button:hover svg rect{
    fill: var(--gray-400);
}
.header__menu-search-button.visible {
    opacity: 1;
    pointer-events: all;
}

.header__menu-language span{
    opacity: 0.6;
}
.header__menu-language-link{
    color: inherit;
    opacity: 0.6;
    transition: all .2s;
}
.header__menu-language-link:hover{
    opacity: 1;
}
.header__menu-language-link.active{
    opacity: 1;
    transition: all .2s;
}
.header__menu-search-icon{
    transition: all .2s;
    opacity: 1;
}
.header__menu-search-icon:hover{
    opacity: 0.6;
}

.header__mobile{
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    z-index: 1001;
    top: 0;
    height: 100%;
    padding: 16px 20px;
    left: -100%;
    transition: left 0.4s ease 0s;
    background: var(--gray-100);

    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 405px;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);

}
.header__mobile::-webkit-scrollbar {
    display: none;
}

.header__mobile.open{
    left: 0;
}
.header__mobile-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 49px;
}
.header__mobile-button{
    padding: 10px;
    align-self: flex-start;
}
.header__mobile-button svg rect{
    transition: all 0.3s ;
}

.header__mobile-button:hover svg rect{
    fill: var(--gray-300);
}


.header__mobile_list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.header__mobile_list-top{
    gap: 33px;
}
.header__mobile_list-level-two{
    display: none;
    padding-left: 32px;
    gap: 19px;
}
.header__mobile_list-level-two.open{
    display: flex;
    margin-top: 28px;
}
.header__mobile_list-level-three{
    display: none;
    padding-left: 32px;
}
.header__mobile_list-level-three.open{
    margin-top: 22px;
    gap: 16px;
    display: flex;
}

.header__mobile-link-level{
    margin-bottom: 8px;
}
.header__mobile-arrow svg{
    transform: rotate(180deg);
    margin-left: 4px;
}
.header__mobile-link.open .header__mobile-arrow svg {
    transform: rotate(360deg);
}

.header__mobile-link.open .header__mobile-arrow svg path {
    fill: var(--gray-400);
}

.header__mobile-link{
    color: var(--gray-300);
    transition: all 0.3s ease-in-out;
    padding: 8px 0;
}
.header__mobile-link.open{
    color: var(--gray-400);
}

.header__mobile-link:hover{
    color: var(--gray-400);
}
.header__mobile-arrow svg{
    margin-bottom: 2px;
    transition: transform 0.3s;
}
.header__mobile-arrow svg path{
    transition: all 0.3s ease-in-out;
}

.header__mobile-link:hover  .header__mobile-arrow svg path {
    fill: var(--gray-400);
}


.header__mobile-link.active{
    color: var(--gray-400);
}
.header__mobile-link.active .header__mobile-arrow svg path{
    color: var(--gray-400);
    fill: var(--gray-400);
}

.header__mobile-bottom{
    margin-top: auto;
}
.header__mobile-bottom .header__menu-language-link{
    color: var(--gray-300);
    opacity: 1;
    transition: all .3s;
    padding: 8px 0;
}
.header__mobile-bottom .header__menu-language-link:hover{
    color: var(--gray-400);
    opacity: 1;
}
.header__mobile-bottom span {
    color: var(--gray-300);
    opacity: 1;
}
.header__menu-button{
    display: none;
    padding: 14px;
}


.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.banner-container{
    width: 100%;
    height: 100%;
}
.banner-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}
.banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.banner-swiper .swiper-slide::after{
    background: var(--gray-400);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0.2;
}
.banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 2s ease-in-out;
}

.swiper-slide:not(.swiper-slide-active) .banner-image {
    transform: scale(1.05);
}


.awards-banner{
    max-width: 1604px;
    margin: 80px auto;
    padding: 0 15px;
}

.awards__body-top{
    max-width: 932px;
    display: flex;
    flex-direction: column;
    gap: 61px;
    margin-bottom: 60px;
}
.awards__body-text{
    font-family: inherit;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gray-400);
    line-height: 160%;
}
.awards__body-step{
    max-width: 858px;
}
.awards__body-bottom{
    display: flex;
    gap: 30px;
}
.awards__body-step-image img{
    width: 100%;
    height: auto;
}
.awards__body-step{
    display: flex;
    gap: 254px;
    position: relative;
}
.awards__body-step-item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.awards__body-step-item p{
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.03em;
}
.awards__body-step-item-circle{
    border-radius: 100%;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border: 2px solid var(--gray-200);
    position: relative;
    z-index: 1;
    background: var(--gray-100);
    transition: background 0.2s;
}
.awards__body-step-item-circle:hover{
    background-color: var(--gray-200);

}
.awards__body-step-line{
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    top: 33px;
}

.awards__body-step-item-circle.active{
    background-color: var(--gray-200);
}

.awards__body-step-info{
    padding-top: 7px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: inherit;
    font-weight: 500;
    color: var(--gray-300);

    text-transform: uppercase;
}
.awards__body-step-info-name{
    line-height: 150%;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.awards__body-step-info-address{
    font-size: 10px;
}
.arrow-down{
    position: fixed;
    bottom: 36px;
    left: 50%;


    transform: translateX(-50%) rotate(180deg); /* объединяем */
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 1px -1px 0 rgba(126, 126, 126, 0.25), inset 0 0 7px 0 rgba(193, 193, 193, 0.25);
}
.arrow-down.rotated {
    transform: translateX(-50%) rotate(360deg);
}
.arrow-down svg g rect{
    transition: all 0.3s;
}
.arrow-down:hover svg g rect{
    fill-opacity: 1;
}


.arrow-down-projects{
    opacity: 0;
}
.arrow-down-projects.visible {
    opacity: 1;
    visibility: visible;
}
.arrow-down-projects.rotated {
    transform: translateX(-50%) rotate(0deg);
}


.arrow-down-project-detail {
    position: fixed;
    bottom: 36px;
    left: 50%;


    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 1px -1px 0 rgba(126, 126, 126, 0.25), inset 0 0 7px 0 rgba(193, 193, 193, 0.25);

    transform: translateX(-50%) translateY(0) rotate(180deg);
    cursor: pointer;
    z-index: 1000;
}
.arrow-down-project-detail.hidden {
    transform: translateX(-50%) translateY(100px);
}
.arrow-down-project-detail svg g rect{
    transition: all 0.3s;
}
.arrow-down-project-detail:hover svg g rect{
    fill-opacity: 1;
}

.projects{
    margin-top: 128px;
}
.projects-container{
    padding: 40px 15px;
}
.projects__nav{
    max-width: 961px;
    margin: 0 auto;
}
.projects__list{
    display: flex;
    flex-direction: row;
    gap: 39px;
    justify-content: center;

    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
}
.projects__list::-webkit-scrollbar {
    display: none;
}
.projects__link{
    color: var(--gray-300);
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.projects__link:hover{
    color: var(--gray-400);
}
.projects__link.active{
    color: var(--gray-400);
}
/*.projects__link .projects__link-arrow svg {*/
/*    margin-bottom: 3px;*/
/*}*/
.projects__link .projects__link-arrow svg path {
    fill: var(--gray-300);
    margin-bottom: 3px;
    transition: all 0.3s;
}

.projects__link:hover .projects__link-arrow svg path {
    fill: var(--gray-400);

}

.projects__link.active .projects__link-arrow svg path {
    fill: var(--gray-400);

}

.projects__list-level-two{
    margin-top: 16px;
    opacity: 0;
    transition: all .3s;
    gap: 30px;
}

.projects__list-level-two.active {
    display: flex;
    opacity: 1;
}
.projects__link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}
.projects__link-arrow.rotated {
    transform: rotate(360deg);
}

.projects__catalog{
    display: flex;
    /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
    justify-content: space-between;
    align-items: center;
    row-gap: 100px;
    column-gap: 44px;
    flex-wrap: wrap;
    margin-top: 59px;
}
.project{
    position: relative;
    width: 22%;
}
.project:hover .project__text{
    opacity: 1;
}
.project-vertically{
    padding: 0 86px;
}
.project-vertically .project__image{
    width: 100%;
}
.project-vertically .project__text{
    width: 100%;
    max-width: 228px;
}
.project__image{
    margin-bottom: 8px;
}
.project__image img{
    width: 100%;
    height: auto;
}
.project__text{
    font-size: 15px;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: all 0.3s;
    opacity: 0;
    position: absolute;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 120%;
}


/*footer*/
.footer{
    padding: 15px;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: auto;
}
.footer-container{
    display: grid;
    grid-template-areas: 'con con'
                        'studio social';
}
.footer-left{
    grid-area: studio;
}
.footer-connection{
    grid-area: con;
    margin-bottom: 8px;
}
.footer-social{
    grid-area: social;
}
.footer-item{
    display: flex;
    justify-content: flex-end;
    gap: 236px;
}
.footer-name{
    font-weight: 500;
    color: var(--gray-400);
    width: 100px;
}
.footer-link{
    width: 100px;
    color: var(--gray-300);
    transition: all 0.3s;
}
.footer-link:hover{
    color: var(--gray-400);
}

.contacts__banner{
    position: relative;
    height: 100%;
    overflow-y: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.contacts{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gray-200);
    padding: 44px 16px 17px 16px;
    max-width: 1251px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 93px;
}
.contacts__form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;

}
.contacts__title{
    color: var(--gray-300);
}
.contacts__form{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.contacts__form-block{
    display: flex;
    flex-direction: column;
    position: relative;
}
.contacts__form-block:hover .contacts__form-line {
    border-color: var(--gray-400);
}
.contacts__form-block:hover .contact__form-input::placeholder {
    color: var(--gray-400);
}

.contacts__form-block.active .contacts__form-line {
    border-color: var(--gray-400);
}

.contacts__form-block.error .contacts__form-line {
    border-color: var(--error);
}

.contacts__form-block.success .contacts__form-line {
    border-color: var(--gray-400);
}


.contacts__form-error{
    position: absolute;
    opacity: 0;
    bottom: 41px;
    font-size: 10px;
    color: var(--error);
}
.contacts__form-line{
    /*background-color: var(--gray-300);*/
    border-top: 1px solid var(--gray-300);
    width:100%;

    transition: 0.3s;
}
.contacts__form-input-block {
    width: 100%;
}

.contact__form-input{
    font-family: 'Manrope', sans-serif;
    background: transparent;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: 0.03em;
    transition: 0.3s;
    width: 100%;
    padding-top: 10px;
}

.contact__form-input::placeholder {
    color: var(--gray-300);
    transition: 0.3s;
}

.contacts__form-block.active .contact__form-input {
    color: var(--gray-400);
}

.contact__form-textarea{
    resize: none;
    width: 100%;
}

.contacts__form-btn{
    padding: 8px;
    width: 100%;
    border: 1px solid var(--gray-400);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.contacts__form-btn:hover{
    border: 1px solid var(--gray-400);
    color: var(--gray-100);
    background-color: var(--gray-400);
}
.contacts__agree{
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gray-400);
}
.contacts__agree-link{
    color: var(--gray-300);
    transition: 0.3s;
}
.contacts__agree-link:hover{
    color: var(--gray-400);
}
.contacts__footer{
    padding: 0;
}

.contacts__footer .footer-item{
    gap: 96px;
}


.contacts__success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #88312F; /* красный фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.contacts__success.active {
    opacity: 1;
    pointer-events: all;
}

.contacts__success-message {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-100);
}

.contacts__success-name {
    opacity: 0.6;
}
.contacts__success-text{
    font-size: 11px;
}
.contacts__success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 9px;
}
.contacts__success-close svg rect{
    transition: all 0.3s;
}

.contacts__success-close:hover svg rect{
    fill: var(--gray-300);
}


.project-detail__banner{
    padding: 15px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.project-detail__logo{
    position: absolute;
    top: 15px;
    left: 15px;
}
.project-detail__close{
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.project-detail__close:hover{
    opacity: 1;
}
.project-detail__content{
    padding: 80px 15px;
    display: flex;
    gap: 231px;
    justify-content: space-between;
}
.project-detail__info{
    max-width: 583px;
}
.project-detail__title{
    color: var(--gray-300);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 42px;
}
.project-detail__list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-detail__item{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}
.project-detail__item-name{

    color: var(--gray-400);
}
.project-detail__item-text{
    font-size: 11px;
    color: var(--gray-400);
}
.project-detail__images{
    padding: 0 66px;
}

.fancybox__container {
    z-index: 99999 !important; /* достаточно высокий слой, чтобы быть над всем */
}

.project-detail__images {
    width: 100%;
    max-width: 1072px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.project-detail__image-wrapper{
    position: relative;
    display: flex;
    max-width: 940px;

    margin: 0 auto;
}
.project-detail__images img {
    width: 100%;
    /*height: auto;*/
    display: block;
    height: 100%;
    object-fit: cover;
    max-width: 940px;

    margin: 0 auto;
    position: relative;
}
.overlay-image{
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.overlay-image svg{
    padding-bottom: 11px;
    text-align: center;
    margin-top: 21px;
}
.overlay-image-text{
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-100);
}
.project-detail__images .swiper-wrapper {
    display: flex;

}
.project-detail__images .swiper-slide{
    width: 100%;
}
.project-detail__images .swiper-button-prev,
.project-detail__images .swiper-button-next {
    transition: filter 0.3s ease;
}

.project-detail__images .swiper-button-prev svg,
.project-detail__images .swiper-button-next svg {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: filter 0.3s ease;
}

.project-detail__images .swiper-button-prev:hover svg,
.project-detail__images .swiper-button-next:hover svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.project-detail__images .swiper-pagination{
    bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-detail__images .swiper-pagination-bullet {
    border: 1px solid var(--gray-100);
    width: 8px;
    background: transparent;
    height: 8px;
    opacity: 1;
}

.project-detail__images .swiper-pagination-bullet-active {
    background: var(--gray-100);
    width: 10px;
    height: 10px;
}
.project-detail__images .swiper-button-prev svg, .project-detail__images svg{
    width: unset;
    height: unset;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom:0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: var(--gray-100);
}

/* Активное состояние */
.popup.active {
    opacity: 1;
    visibility: visible;
}
.clients{
    padding: 246px 49px 140px 177px;
}
.clients__list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 134px;
    row-gap: 40px;
}
.client{
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client img{
    filter: grayscale(1);
}
.client img:hover{
    filter: grayscale(0);
}
.fancybox__counter {
    left: 10px;
    right: auto;
}
.not-found{
    /*padding: 320px 0;*/
    display: flex;
    flex-direction: column;
    height: 100%;
}
.not-found__block{
    flex:1;
    max-width: 210px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.not-found__title{
    font-size: 56px;
    color: var(--gray-300);
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
}
.not-found__text{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 42px;
}
.not-found__link{
    border: 1px solid var(--gray-400);
    padding: 8px 21px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    max-width: 197px;
    white-space: nowrap;
    transition: 0.3s ease;

}
.not-found__link:hover{
    background: var(--gray-400);
    color: var(--gray-100);
}




.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    background: var(--gray-100);

}


.progress-bar {
    margin-top: 77px;
    background-color: #eee;
    border-radius: 2px;
    overflow: hidden;
    width: 191px;
    height: 5px;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--burgundy);
    transition: width 0.3s;
}


.personal{
    padding: 150px 40px 72px 40px;
    font-family: 'Manrope',sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 110%;
}
.personal h1 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 15px;
    margin-top: 20px;
    line-height: 110%;
    font-size: 11px;
}
.personal h2 {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 11px;
    line-height: 110%;
}
.personal p {
    font-family: inherit;
    margin-bottom: 15px;
    margin-left: 15px;
    font-weight: 400;
    font-size: 11px;
}

.personal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 15px;
    margin-bottom: 20px;
}
.personal li {
    line-height: 110%;

}
.personal li::before {
    content: '';
    width: 3px;
    height: 3px;
    margin-bottom: 3px;
    margin-right: 4px;
    background: #000;
    position: relative;
    display: inline-block;
    border-radius: 50%;
}
.personal__list li::before {
    content: none;
}
@media (max-width: 1600px){
    .clients__list{
        column-gap: 90px;
    }
    .clients{
        padding: 178px 15px 72px 178px;
    }
}

@media screen and (max-width: 1440px) {
    .header__menu-search{
        width: 82%;
    }
    .header__menu-search-wrapper{
        width: 100%;
    }
    .awards__body-top {
        gap: 47px;
    }

    .awards__body-bottom {
        gap: 44px;
    }

    .awards__body-step-info {
        padding-top: 3px;
        max-width: 340px;
        gap: 16px;
    }
    .awards__body-step-info-name{
        line-height: 150%;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        font-size: 16px;
    }
    .project-vertically{
        padding: 0 44px;
    }
    .contacts{
        max-width: 940px;
        gap: 66px;
    }
    .project-detail__images img{
        max-width: 659px;
    }
    .project-detail__content{
        gap: 33px;
    }
    .project-detail__item{
        gap:0;
    }
    /*.not-found{*/
    /*    padding: 233px 0;*/
    /*}*/
}

@media screen and (max-width: 1320px) {
    .header__menu-search{
        width: 68%;
    }
}

@media screen and (max-width: 1137px) {
    .projects__catalog{
        row-gap: 64px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .project{
        width: 100%;
    }
    /*.project .project__image img{*/
    /*    width: 472px;*/
    /*    height: 265px;*/
    /*}*/
    /*.project-vertically .project__image img{*/
    /*    width: 230px;*/
    /*    height: 395px;*/
    /*}*/
    .project__text{
        opacity: 1;
    }
    .project-vertically{
        padding: 0 25%;
    }
}

@media screen and (max-width: 1024px) {
    .header__menu-actions{
        margin-left: auto;
        gap: 8px;
    }
    .header__menu-language{
        display: none;
    }
    .header__menu-button{
        display: flex;
    }
    .header__menu-search{
        width: 81%;
    }
    .header__menu-search-icon{
        padding: 14px;
    }
    .header__menu-list{
        display: none;
    }
    .awards__body-text{
        max-width: 604px;
    }
    .awards__body-top{
        max-width: unset;
    }
    .awards__body-step{
        max-width: unset;
        gap: unset;
        justify-content: space-between;
        margin-left: 10px;
        max-width: 968px;
    }
    .awards__body-bottom{
        gap: 20px;
    }
    .awards-banner{
        padding: 0 20px;
    }
    .awards__body-step-image img{
        max-width: 604px;
    }
    .awards__body-top{
        gap: 60px;
        margin-bottom: 49px;
    }
    .footer{
        padding: 20px;
    }
    .footer-container{
        grid-template-areas: 'studio social con';
        justify-content: space-between;
    }
    .footer-item{
        justify-content: flex-end;
        gap: 10px;
    }
    .footer-link{
        width: unset;
    }
    .footer-name{
        margin-right: 8px;
    }
    .footer-connection{
        margin-bottom: 0px;
    }
    .header__inner.header--dark{
        padding: 20px 0;
    }
    .header__inner.header--dark .header__menu-actions{
        margin-top: -12px;
    }
    .contacts{
        max-width: 614px;
        gap: 0px;
        padding: 20px 20px 31px 20px;
    }
    .contacts__form-wrapper{
        gap: 37px;
        margin-bottom: 45px;
    }
    .contacts__form{
        grid-template-columns: 1fr;
        gap: 68px;
    }
    .contacts__title{
        max-width: 200px;
        line-height: 150%;
    }
    .contacts__footer{
        padding: 0;
        margin-top:84px;
    }
    .contacts__footer .footer-container{
        grid-template-areas: 'studio social con';
        grid-template-columns: 1fr 1fr 2fr;
        gap: 76px;
    }
    .contacts__footer .footer-item{
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 20px;
        justify-content: flex-start;
    }
    .contacts__footer .footer-left{
        white-space: nowrap;
    }
    .contacts__form-btn{
        margin-top: -14px;
        padding: 10px;
    }
    .project-detail__content{
        flex-direction: column-reverse;
        gap: 50px;
        padding: 60px 20px;
    }
    .project-detail__images img{
        max-width: unset;
        max-height: 549px;
    }
    .project-detail__images .swiper-pagination{
        bottom: 30px;
    }
    .clients{
        padding: 138px 15px 15px 15px;
    }
    .clients__list{
        justify-content: center;
    }
    .client img{
        filter: grayscale(0);
    }
    .contacts__form-error{
        bottom: 25px;
    }
}

@media screen and (max-width: 1000px) {
    .awards__body-bottom{
        flex-direction: column-reverse;
    }
    .awards__body-step-image img{
        max-width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .header__mobile{
        width: 395px;
        padding: 16px 15px;
    }
    .footer-name{
        margin-right: 0;
    }
    .project-vertically{
        padding: 0 17%;
    }
    .projects__list{
        justify-content: flex-start;
        gap: 32px;
    }
    .projects__list-level-two{
        margin-top: 32px;
    }
    .projects__catalog{
        margin-top: 69px;
    }
    .header__menu-search{
        width: 86%;
    }
    .overlay-image{
        display: flex;
    }
}

@media screen and (max-width: 700px) {
    .footer-container{
        grid-template-areas: 'social con'
                            'studio studio ';
        justify-content: flex-start;
        column-gap: 23px;
        row-gap: 48px;
    }
    .footer-item {
        display: grid;
        grid-template-columns: auto auto ;
        row-gap: 20px;
        column-gap: 12px;
    }


    .footer-item > :first-child {
        grid-column: 1 / -1;
    }

}

@media screen and (max-width: 660px) {
    .contacts{
        max-width: unset;
        width: calc(100% - 40px);
        padding: 12px 12px 21px 12px;
        margin-top: 25px;
    }
    .contacts__footer .footer-container{
        grid-template-areas: 'social con'
    'studio studio ';
        grid-template-columns: 1fr 1fr;
        row-gap: 37px;
        column-gap: 20px;
    }
    .contacts__footer .footer-item{
        display: flex;

        flex-direction: column;
    }
    .contacts__form-wrapper{
        margin-bottom: 40px;
    }
    .contacts__footer{
        margin-top: 56px;
    }
    .contacts__footer .footer-item.footer-connection{
        align-items: end;
    }
}


@media screen and (max-width: 500px) {
    .header__inner{
        gap: 16px;
    }
    .header__menu-search {
        width: 100%;
    }
    .header__mobile{
        width: 100%;
    }
    .projects{
        margin-top: 105px;
    }
    .projects__catalog{
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        row-gap: 39px;
    }
    .project__text{
        position: unset;
    }
    .projects__list{
        gap: 12px;
    }

    .projects__list-level-two{
        margin-top: 28px;
    }
    .header__menu-actions{
        gap: 0;
    }
    .contacts__form-wrapper{
        gap: 29px;
        margin-bottom: 33px;
    }
    .contacts__agree{
        line-height: 130%;
    }
    .project-detail__item{
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 247px;
    }
    .client{
        width: 140px;
        height: 140px;
    }
    .client svg{
        transform: scale(0.9);
    }
    .clients__list{
        column-gap: 55px;
    }
    .project-detail__banner{
        background-position:35%;
    }
    .personal{
        padding: 60px 20px 40px 20px;
    }
}

