*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* NAVIGATION */
.navigation{
    height: 114px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 50%;
    align-items: center;
    position: absolute;
    z-index: 1;
    transition: all 1s;
}
/*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 */
.header{
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
/* 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: #ffffff;
    color: black;
    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{
    color: #6c6c6c;
}
/* right side*/
.wrapper-right{
    height: 100vh;
    width: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}
.rightSideoverlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #131214;
    z-index: 1;
}
.image-slider{
    /* width: 703px !important; */
}
.image-slide{
    height: 100vh;
}
.wrapper-social-media{
    position: absolute;
    bottom: 0;
    height: 70px;
    display: flex;
    align-items: center;
    right: 50%;
    z-index: 1;
    padding-right: 70px;
}
.social-media{
    margin-left: auto;
}
.social-media a{
    text-decoration: none;
    color: #110f10;
    font-size: 25px;
    margin-left: 45px;
}
.nav-slider{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 70px;
    padding-left: 70px;
}
.dots-slider{
    width: 70px;
    height: 70px;
    display: block;
    background-color: rgb(170, 61, 61);
}
.slider-control{
    display: flex;
    height: 70px;
    align-items: center;
    position: absolute;
    padding-right: 70px;
    bottom: 0;
    right: 0;
}
.slider-control .next{
    margin-left: 30px;
}
.slider-control button{
    background-color: #ffffff14;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    color: #000;
    transition: all .3s ease;
}
.slider-control button:focus{
    outline: none;
}
.slider-control button:hover{
    background-color: #ffffff59;
}
.dots-slider{
    position: relative;
}
/* NAV SECTION */
.Nav__section{
    width: 100%;
    height: 100vh;
    position: absolute;
    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;
}
/* 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){
    .navigation{
        height: 80px;
    }
    .nav__logo{
        padding-left: 40px;
    }
    .nav__btn{
        padding-right: 40px;
    }
    .slid-cont{
        padding-left: 40px;
    }
    .slid-cont .title h1{
        font-size: 56px;
    }
    .btn-slid a{
        width: 260px;
    }
    .slick-dots{
        padding-left: 35px !important;
    }
    .slider-control{
        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;
}

    .slid-cont .title h1{
        font-size: 46px;
    }
    .wrapper-left{
        display: none;
    }
    .wrapper-right{
        width: 100%;
        padding: 60px 15px 15px 15px;
    }
    .image-slider{
        width: 100% !important;
    }
    .image-slide{
        height: 90vh;
    }
    .slider-control{
        display: none;
    }
    .navigation{
        padding-right: 0;
        height: 60px;
    }
    .nav__logo img{
        display: block;
        width: 170px;
    }
    .nav__logo{
        padding-left: 20px;
    }
    .nav__btn{
        padding-right: 20px;
    }
    .slick-dots{
        display: none !important;
    }
    /* 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;
    }
   
}
@media screen and (max-width: 560px){
    .Nav_navigation a{
        font-size: 36px;
        line-height: 36px;
    }
}