body{
    position: relative;
/*    width: 100vw;*/
    font-family: 'Manrope', sans-serif;
    background-color: #1A191B;
    overflow-x: hidden;
}
@font-face {/*Light*/
    font-family: "ProximaNova";
    src: url("../font/Proxima-Nova-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}
html.stop,
body.stop {
    overflow: hidden;
    position: relative;
    height: 100%;
}
img{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
a{
    text-decoration: none;
}
/*
html::-webkit-scrollbar,
body::-webkit-scrollbar{
    margin: 10px;
    background: none;
    width: 0px;
}
html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button{
    display: none;
}
html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece{
    background: rgba(0,0,0,0.15);
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb{
    margin: 10px;
    background: rgba(0,0,0,0.75);
    border-radius: 3px;;
}
*/
.block-1{
    width: 100vw;
    height: 100vh;
    background: url('../img/christopher-baumeist.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.block-1 .bg-dark{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,1)));
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.8), rgba(0,0,0,1));
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,1));
    z-index: 1;
}
.block-1 .container{
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 10;
}
.block-1 .logo{
    width: 420px;
    top: -250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    position: absolute;
}
.block-1 h1{
    color: #ffffff;
    font-size: 36px;
    font-family: 'ProximaNova',Arial,sans-serif;
    line-height: 56px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}
.block-1 .text{
    color: #ffffff;
    font-size: 16px;
    font-family: 'ProximaNova',Arial,sans-serif;
    line-height: 25px;
    font-weight: 300;
    text-align: center;
}

.block-1 .bottom-line{
    position: absolute;
    bottom: 105px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
}
.block-1 .bottom-line a{
    width: 30px;
    height: 30px;
    margin-right: 30px;
    border: 2px solid #cc091c;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.block-1 .bottom-line a:hover{
    background: red;
}
.block-1 .bottom-line a:last-child{
    margin-right: 0;
}
.block-1 .bottom-line a img{
    width: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
@media (max-width: 640px){
    .block-1 .logo{
        width: 360px;
    }
    .block-1 h1{
        font-size: 30px;
        line-height: 47px;
    }
}
@media (max-width: 500px){
    .block-1 .logo{
        width: 250px;
    }
    .block-1 h1{
        font-size: 22px;
        line-height: 34px;
    }
}