*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* HEADER */
.header{
    width: 100%;
    height: 114px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
/* logo */
.nav__logo{
    padding-left: 70px;
}
.nav__logo img{
    /*width: 111px;*/
}
/* btn menu */
.nav__btn{
    padding-right: 70px;
}
.btn-burger{
    width: 25px;
    height: 12px;
    display: block;
    position: relative;
    cursor: pointer;
}
.btn-burger span:before,
.btn-burger span:after{
    content: '';
    width: 25px;
    height: 2px;
    background-color: #110f10;
    position: absolute;
    display: block;
    transition: all .3s;
}
.btn-burger span:before{
    top: 0;
}
.btn-burger span:after{
   bottom: 0;
}
.click-burger span::before{
    transform:rotate(-45deg);
    top: 5px;
}
.click-burger span::after{
    transform:rotate(45deg);
    bottom: 5px;
}
/* SECTION */
.wrapper-container{
    max-width: 1252px;
    width: 100%;
    padding: 0 45px;
    margin: 0 auto;
}
.project-title{
    text-align: center;
    padding-top: 204px;
    margin-bottom: 55px;
}
.project-title h1{
    font-size: 60px;
    font-weight: 400;
    color: #110f10;
}
/* fillter */
.select-fillter .filter-button-group{
    display: flex;
    justify-content: center;
}
.select-fillter{
    padding-bottom: 5rem;
    overflow: hidden;
}
.select-fillter .btn-select{
    list-style: none;
    margin-right: 50px;
    font-size: 17px;
    color: #110f10;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    text-decoration: none;
        text-align: center;
}
.select-fillter .btn-select:focus{
    outline: none;
}
.select-fillter .btn-select::before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #110f10;
    transition: all .3s;
}
.select-fillter .btn-select:hover::before{
    width: 100%;
}
.select-fillter .btn-select:last-child{
    margin-right: 0px;
}
.btn-active::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #110f10;
}
.open_filter_mob{
    width: 100%;
    text-align: center;
    background-color: #110f10;
    padding: 15px 0;
    font-size: 17px;
    display: none;
    cursor: pointer;
}
.open_filter_mob span{
    color: #fff;
}
.mobile_filter{
    flex-direction: column;
    background-color: #f1f1f1;
    padding: 20px 0;
    display: none !important;
    transition: all .3s;
}
.opened_mobile_filter{
    display: flex !important;
}
.mobile_filter .btn-select{
    width: 100%;
    padding: 15px 0;
}
.mobile_filter .btn-active::after{
    width: 0;
}
.mobile_filter .btn-select:hover::before{
    width: 0;
}
/* Projects */
.grid-projects{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.item-project{
    position: relative;
    flex: 0 0 50%;
    margin-bottom: 5rem;
}
.item-project-width{
    width: 100%;
}
.onHover{
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    text-decoration: none;
    z-index: 1;
    margin: 0 auto;
}
.onHover::before {
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 60%);
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s ease-in-out;
    z-index: 2;
}
.onHover:hover::before{
    opacity: 1;
}
.item-project__image{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
    display: block;
}
.onHover:hover .item-project__image{
    transform: scale(1.05);
}
.onHover__details{
    color: #fff;
    padding: 0 2rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0%, 0);
    transition: all .5s ease-in-out;
    z-index: 2;
}
.onHover:hover .onHover__details{
    opacity: 1;
    transform: translate3d(0, 100%, 0);
}
/* FOOTER */
/* Footer */
.footer{
    width: 100%;
    background: #110F10;
    margin-top: 0px;
    padding-top: 50px;
}
.footer .wrapper-container .StoryTitle{
    padding-top: 100px;
    padding-bottom: 80px;
}
.footer .StoryTitle h2{
    color: #fff;
}
.wrapp-footer{
    display: flex;
    justify-content: space-between;
}
.wrapp-footer .littleStory{
    padding-bottom: 50px;
}
.wrapp-footer .littleStory p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 475px;
    line-height: 20px;
    padding-bottom: 30px;
} 
.wrapp-footer .littleStory a{
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
.wrapp-footer .littleStory a:hover{
    text-decoration: underline;
}
.footer-detals{
    color: #fff;
    font-size: 17px;
}
.footer-detals p{
    padding-bottom: 34px;
}
.footer-detals a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}
.footer-detals a:hover{
    text-decoration: underline;
}
.footer-detals span{
    font-weight: 500;
    padding-right: 10px;
}
.footer-detals div{
    padding-bottom: 15px;
}
.footer-detals div:last-child{
    padding-bottom: 0px;
}
.footer-menu a{
display: inline-block;
    margin-bottom: 15px;
    color: #fff;
    padding-right: 25px;
    text-decoration: none;
}
.footer-menu a:hover{
    text-decoration: underline;
}
.right-reserved{
    font-size: 15px;
    padding-bottom: 60px;
    color: #fff;
}
.right-reserved .footer-menu{
    width: 70%;
    float: left;
    text-align: left;
}
.right-reserved p{
    width: 30%;
    float: right;
    text-align: right;
}
/* /FOOTER */
/* NAV SECTION */
.Nav__section{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all .5s;
}
.Nav__overlay{
    width: 100%;
    height: 100vh;
    background-color: #555;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transition: all .5s;
}
.Nav_wrapper{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: all .5s;
    transition-delay: 0.5s;
    background-color: #ffffff;
}
.Nav__menu{
    width: 100%;
    height: 114px;
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.nav__logo__full img{
    /*width: 111px;*/
}
.btn-burger__full{
    width: 25px;
    height: 25px;
    display: block;
    position: relative;
    cursor: pointer;
}
.btn-burger__full span:before,
.btn-burger__full span:after{
    content: '';
    width: 25px;
    height: 2px;
    background-color: #000;
    position: absolute;
    display: block;
    transition: all .3s;
}
.btn-burger__full span:before{
    transform: rotate(-45deg);
    top: 12.5px;
}
.btn-burger__full span:after{
   transform: rotate(45deg);
   top: 12.5px;
}
.Nav_navigation{
text-align: left;
    display: flex;
    align-items: center;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
}
.Nav_navigation ul{
    margin-left: 75px;
}
.Nav_navigation li{
    list-style: none;
    margin-bottom: 20px; 
}
.Nav_navigation a{
    color: #000;
    text-decoration: none;
    font-weight: normal;
    font-size: 25px;
    transition: all .3s;
    position: relative;
}
.Nav_navigation li:hover a{
    color: #4f4e4f;
}
.wrapper-social-media__full{
    display: block;
    height: 114px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.social-media__full{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.social-media__full a{
color: #000;
    text-decoration: none;
    font-weight: 400;
    margin: 0 25px;
    font-size: 25px;
}
.Nav_navigation .Nav_act{
    color: #4f4e4f;
}
/* PRELOADER */
.pace{
    pointer-events: none;
    user-select: none;
    z-index: 999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: #1b1b1b;
}
.pace .pace-progress{
    transform: translate3d(0, 0, 0);
    max-width: 400px;
    position: absolute;
    z-index: 999999999;
    display: block;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: grey;
}
.pace.pace-inactive{
    display: none;
}
#preloader{
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    background: #110f10;
    overflow: hidden;
    position: fixed;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 99999999;
}
.preload-img{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.preload-img img{
    /*width: 111px;*/
}
/* Media */
@media screen and (max-width: 1500px){
    .header{
        height: 80px; 
    }
    .nav__logo{
        padding-left: 40px;    
    }
    .nav__btn{
        padding-right: 40px;    
    }
}
@media screen and (max-width: 1000px){
    .right-reserved {
    font-size: 15px;
    padding-bottom: 0px;
    color: #fff;
}
        .right-reserved .footer-menu {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 30px;
}
    .right-reserved p {
    width: 100%;
    float: none;
    text-align: center;
}
    .grid-projects {
    position: relative;
    display: initial;
    flex-wrap: wrap;
    justify-content: center;
}
    .header{
        padding-right: 0;
        height: 60px;
    }
    .nav__logo img{
        display: block;
        width: 170px;
    }
    .nav__logo{
        padding-left: 20px;
    }
    .nav__btn{
        padding-right: 20px;
    }
    .project-title h1{
        font-size: 46px;
    }
    .item-project-width{
        width: 100%;
    }
    .wrapper-container{
        padding: 0 20px;
    }
    .onHover{
        width: 100%;
    }
    .onHover::before{
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    }
    .onHover__details{
        top: auto;
        bottom: 50px;
        opacity: 1;
    }
    /* FullNav */
    .Nav__menu{
        height: 60px;
        padding: 0 15px;
    }
    .nav__logo__full img{
        width: 170px;
        display: block;
    }
    .Nav_navigation a{
        font-size: 64px;
        line-height: 64px;
    }
    /* Preloader */
    .pace{
        width: 220px;
    }
    .pace .pace-progress{
        max-width: 220px;
    }
    /* Footer */
    .wrapp-footer{
        flex-direction: column;
    }
    .footer-detals{
        padding-bottom: 50px;
    }
    .footer-menu{
        padding-bottom: 50px;
    }
    .footer .wrapper-container{
        padding: 0 20px;
    }
}
@media screen and (max-width: 768px){
    .header{
        background: #fff;
    }
    .full_filter{
        display: none !important;
    }
    .open_filter_mob{
        display: block !important;
    }
}
@media screen and (max-width: 560px){
    .Nav_navigation a{
        font-size: 36px;
        line-height: 36px;
    }
    .select-fillter .filter-button-group{
        flex-wrap: wrap;
    }
}


.btn-slid {
    padding: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.btn-slid a {
     background: black;
    padding: 20px;
    padding-right: 40px;
    padding-left: 40px;
    color: white;
    margin-bottom: 50px;
    text-decoration: none;
}
.btn-slid a:hover {
    text-decoration: underline;
}

/* left side*/
.wrapper-left{
    height: 100%;
}
.text-slid{
    position: relative;
    height: 100vh;
    z-index: 9999;
}
.slid-cont{
    padding-left: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.slid-cont .title{
    padding-bottom: 20px;
}
.slid-cont .title h1{
    font-size: 65px;
    color: #110f10;
    font-weight: 400;
    line-height: 65px;
}
.slid-cont .categories span{
    color: #8d99a7;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 14px;
}
.slid-cont .subTitile{
    max-width: 500px;
    padding-top: 20px;
}
.slid-cont .subTitile p{
    font-size: 16px;
    color: #110f10;
    line-height: 30px;
}
.btn-slid{
    position: absolute;
    bottom: 0;
    left: 0;
}
.btn-slid a{
    background-color: #110f10;
    color: white;
    display: inline-block;
    width: 280px;
    height: 70px;
    text-align: center;
    padding-top: 28px;
    text-decoration: none;
    font-size: 18px;
    transition: all .2s ease;
}
.btn-slid a i{
    padding-left: 30px;
}
.btn-slid a:hover{
    background-color: #0a090a;
}