*{
    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;
}
/* HEADER End*/
/* SECTION */
.headPage{
    padding-top: 210px;
}
.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;
}
/* SECTION End*/
/* MainMap */
.MainMap{
    margin: 140px 0;
    width: 100%;
    height: 516px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* MainMap End*/
/* Contact-Form */
.contactTitle h2{
    font-size: 36px;
    color: #110f10;
    font-weight: 400;
}
.cont-Form{
    width: 100%;
    padding-top: 140px;
    padding-bottom: 140px;
}
.cont-Form form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cont-Form .form-name{
    width: 45.23%;
}
.cont-Form .form-email{
    width: 45.23%;
}
.cont-Form input{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #b4b4b4;
    outline: none;
    padding-bottom: 10px;
    font-size: 17px;
    color: #110f10;
}
.cont-Form input::placeholder{
    color: #b4b4b4;
    font-size: 17px;
}
.cont-Form form input:-webkit-autofill,
.cont-Form form input:-webkit-autofill:hover, 
.cont-Form form input:-webkit-autofill:focus, 
.cont-Form form input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #110f10 !important;
}
.form-textarea{
    width: 100%;
}
.cont-Form textarea{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #b4b4b4;
    outline: none;
    font-size: 17px;
    color: #110f10;
}
.form-textarea{
    margin-top: 88px;
}
.cont-Form textarea::placeholder{
    color: #b4b4b4;
    font-size: 17px;
}
.cont-Form button{
    background: #110f10;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    margin-top: 40px;
    padding: 17px 74px;
    font-size: 14px;
    transition: all .3s;
}
.cont-Form button:hover{
    background: #000;
}
.cont-Info{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 140px;
}
.info-inner{
    width: 33.33%;
}
.info-inner-title h3{
    color: #110f10;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 24px;
}
.info-inner-item p{
    color: rgba(17,15,16, .75);
    font-size: 14px;
    line-height: 24px;
        padding-right: 80px;
    text-align: justify;
}
.info-inner-item a{
  color: rgb(17,15,16);
    margin-right: 30px;
    font-size: 30px;
}
#winError{
    padding-top: 10px;
    color: rgb(240, 62, 62);
}
#MessageSent{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
}
#overlaySentPopup{
    width: 100%;
    height: 100%;
}
.MessagePopup{
    width: 500px;
    height: 300px;
    background: rgb(19, 18, 18);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.MessagePopup .PopupTitle h2{
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px;
}
.PopupSubTitle p{
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    font-weight: 400;
    text-align: center;
}
#SentPopupClose{
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
#SentPopupClose i{
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    line-height: 19px;
    padding: 8px 10px;
    transition: all .3s;
}
#SentPopupClose i:hover{
    color: #fff;
}
/* Contact-Form End*/
/* 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;
    }
    .wrapper-container{
        padding: 0 20px;
    }
    .cont-Form .form-name{
        width: 100%;
    }
    .cont-Form .form-email{
        width: 100%;
        margin-top: 80px;
    }
    .contactTitle h2{
        font-size: 26px;
    }
    /* FullNav */
    .Nav__menu{
        height: 60px;
        padding: 0 15px;
    }
    .nav__logo__full img{
        width: 170px;
        display: block;
    }
    .Nav_navigation a{
       font-size: 36px;
    line-height: 36px;
    }
    /* 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;
    }
    .cont-Info{
        flex-wrap: wrap;
    }
    .info-inner{
        width: 100%;
        margin-bottom: 50px;
    }
    .info-inner:last-child{
        margin-bottom: 0;
    }
}

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