*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* NAVIGATION */
.header{
    width: 100%;
    height: 114px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
/*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 */
.headPage{
        padding-top: 160px;
    padding-bottom: 30px;
}
.wrapper-container{
    max-width: 1252px;
    width: 100%;
    padding: 0 70px;
    margin: 0 auto;
}
.headPage-title h1{
    font-weight: 400;
    font-size: 36px;
    color: #110f10;
}
.headPage-subTitle{
    padding: 44px 0 51px 0;
}
.headPage-subTitle p{
    font-weight: 400;
    font-size: 16px;
    color: #8d99a7;
}
.headPage-theStory{
    display: flex;
    justify-content: flex-end;
}
.headPage-theStory a{
    font-weight: 500;
    font-size: 16px;
    color: #110f10;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.headPage-theStory a span{
    width: 45px;
    height: 45px;
    background: #110f10;
    border-radius: 50px;
    margin-left: 20px;
    text-align: center;
    transition: all .3s;
}
.headPage-theStory a span i{
    color: #fff;
    font-size: 15px;
    line-height: 45px;
}
.headPage-theStory a:hover{
    text-decoration: underline;
}
.headPage-theStory a:hover span{
    background: #000;
}
/* OurStory */
.OurStory{
    padding: 140px 0 140px;
}
.wrappTeam{
    padding: 140px 0 60px;
}
.wrapperStory{
    display: flex;
}
.StoryTitle{
    min-width: 309px;
}
.TheTeam{
    min-width: 270px;
}
.team-wrapper-container{
    padding: 0 30px 0 70px;
}
.StoryTitle h2{
    font-weight: 400;
    font-size: 36px;
    color: #110f10;
}
.StorySubTitle p{
    color: #110f10;
    opacity: .75;
    font-size: 16px;
    line-height: 2;
}
.StorySubTitle p:last-child{
    padding-top: 37px;
}
/* The Team */
.StoryTeam{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: -webkit-fill-available;
}
.inner-team{
    margin: 0 37px;
    margin-bottom: 80px;
}
.main-inner-team{
    width: 33%;
}
.item-team{
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
        margin: 30px;
            border: 1px solid #e4e4e4;
}
.item-team::before{
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 60%);
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s ease-in-out;
    z-index: 2;
}
.inner-team:hover .item-team::before{
    opacity: 1;
}
.item-team-title{
    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;
}
.inner-team:hover .item-team-title{
    opacity: 1;
    transform: translate3d(0, 100%, 0);
}
.item-team-title h3{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}
.item-team-title span{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8d99a7;
}
.inner-team-link{
    padding: 10px 0 0;
}
.inner-team-link a{
    margin-right: 21px;
    color: #110f10;
    font-size: 12px;
    text-decoration: underline;
    text-transform: uppercase;
}
.inner-team-link a:last-child{
    margin-right: 0px;
}
.inner-team-link a:hover{
    text-decoration: none;
}
/* Counting */
.Counting{
    background-color: #110f10;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}
.wrapp_counting{
    display: flex;
}
.wrapp_counting .b{
    color: #fff;
    text-align: center;
    width: 25%;
    padding: 140px 0;
}
.wrapp_counting .Number span{
    font-size: 80px;
}
.wrapp_counting .counting-title p{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wrapp_counting .counting-title{
    position: relative;
}
.wrapp_counting .counting-title::after{
    content: '';
    position: absolute;
    width: 93px;
    height: 3px;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.wrapp_counting .counting-title p{
    padding-top: 31px;
}
/* OurPartners */
.wrapp-OurPartners{
    padding-top: 140px;
}
.wrapp-inner{
    display: flex;
    justify-content: space-between;
}
.item-partner{
    width: 30%;
    height: 255px;
    background-color: rgba(182,182,182, .2);
    position: relative;
    overflow: hidden;
}
.item-partner img{
    width: 150px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease-in-out;
}
.item-partner:hover img{
    width: 180px;
}
.wrapp-OurPartners .StoryTitle{
    padding-bottom: 80px;
}
/* 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;
}
/* 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;
        z-index: 1;
    }
    .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;
}
    .header{
        padding-right: 0;
        height: 60px;
    }
    .nav__logo img{
        display: block;
        width: 170px;
    }
    .nav__logo{
        padding-left: 20px;
    }
    .nav__btn{
        padding-right: 20px;
    }
    .headPage-title h1{
        font-size: 26px;
    }
    .StoryTitle h2{
        font-size: 26px;
    }
    .wrapperStory{
        flex-direction: column;
    }
    .wrapperStory .StoryTitle h2{
        padding-bottom: 80px;
    }
    .wrapp_counting .Number span{
        font-size: 50px;
    }
    .wrapper-container{
        padding: 0 20px;
    }
    .team-wrapper-container{
        padding-left: 20px;
    }
    .main-inner-team{
        width: 100%;
    }
    .inner-team{
        margin: 0 0 80px 0;
    }
    .wrapp_counting{
        flex-wrap: wrap;
    }
    .wrapp_counting .b{
        width: 50%;
        padding: 70px 0;
    }
    .item-partner{
        height: 200px;
    }
    .item-partner img{
        width: 120px;
    }
    .item-partner:hover img{
        width: 135px;
    }
    /* 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;
    }
    .wrapp-inner{
        flex-wrap: wrap;
    }
    .item-partner{
        width: 49%;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 460px){
    .Nav_navigation a{
        font-size: 36px;
        line-height: 36px;
    }
    .Counting{
        padding: 30px 0;
    }
    .wrapp_counting .b{
        width: 100%;
        padding: 40px 0;
    }
    .item-partner{
        width: 100%;
        margin-bottom: 20px;
    }
}

    .project-title h1{
          font-size: 60px;
    font-weight: 400;
    color: #110f10;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 90px;
    }
    .item-project-width{
        width: 100%;
    }