.project-section{
    padding: 0 10vw;
    display: flex;
    justify-content: center;
    max-width: 1540px;
    margin: 0 auto;
}
.project-section__content{
   display: flex;
    gap: 40px;
    width: 100%;
}
.project-section__block{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-section__block:nth-of-type(1){
    overflow: hidden;
    width: 42%;
}
.project-section__block:nth-of-type(2){
    width: 58%;
}
.project-section__title{
font-size: 40px;
font-weight: 400;
line-height: 51.52px;
text-align: left;
margin-bottom: 15px;

}
.project-section__desc{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.project-section__desc-element-wrapper{
    display: flex;
    gap: 40px;
}
.project-section__desc-element{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.project-section__desc-name{
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.05px;
    text-align: left;
    align-items: flex-start;
    gap: 12px;
    color:#66788A;
}
.project-section__desc-element span:last-of-type::first-letter{
    text-transform: uppercase;
}
.project-section__img-wrapper{
    max-height: 400px;
}
.project-section__desc-element span:last-of-type{
    font-size: 16px;
    font-weight: 400;
    line-height: 20.61px;
    text-align: left;
    margin-top: auto;
    min-height: 42px;
}
.project-section__desc-element a{
  text-decoration: underline;
  color: black;
}
.project-section__desc-body{
    font-size: 16px;
    font-weight: 400;
    line-height: 20.61px;
    text-align: left;
}
.project-section__desc-body a{
    text-decoration: underline;
    color: black;
}
.project-section__img{
    object-fit: contain;
    height: 100%
}
.swiper{
    width: 100%;
}
.swiper__head{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.swiper-button-next svg,.swiper-button-prev svg{
    height: 10px;
    width: 5px;
}
.swiper__btn-wrapper{
    position: relative;
    display: flex;
    margin-left: auto;
    gap: 32px;
}
.swiper__btn-wrapper *::after{
    display: none;
}
.swiper__btn-wrapper > *{
    position: static;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    margin-top: 0;
    box-shadow: 0px 1px 5px 0px #3F3F4426;
    border: 1px solid #00000003
}
.swiper-slide{
    list-style: none;
}
.swiper-slide a{
    height: 150px;
    width: 100%;
    display: block;
}
.swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#player{
    height: 100%;
    width: 100%;
}
iframe{
    width: 100%;
    height: 100%;
}
.project-section__video{
    aspect-ratio: 3/1.65;
    width: auto;
    max-height: 450px;
}


@media (min-width:0px)and (max-width:1350px) {
    .project-section__block{
        display: contents;
    }
    .project-section__content{
        display: flex;
        flex-direction: column;
    }
    .project-section__content .swiper{
        order: 3;
    }
    .project-section__desc{
        order: 2;
    }
    .project-section__img-wrapper{
        order: 1;
    }
    .project-section__video{
        order: 4;
    }
}
@media (max-width:900px) {
    .project-section__desc-element-wrapper{
        flex-wrap: wrap;
        gap: 24px;
    }
    .project-section__desc{
        gap: 0;
    }
}