body{
    margin: 0;
    padding: 0;
    background-color: #000;
    background-image: url('../images/bg.jpg');
    /* background:linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/bg.jpg'); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-position: center;
    font-family: 'Roboto', sans-serif;
}
p{
    margin: 0;
}
.preloader{
    background: #000;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.header{
    position: fixed;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
}
.logo img{
    height: 80vh;
    width: auto;
}

.footer{
    position: fixed;
    bottom: 24px;
    right: 0;
    text-align: right;
}
.footer .img-wrap{
    margin-right: 24px;
}
.footer .img-wrap img{
    width: 125px;
}
.email a{
    padding: 12px 24px;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    display: inline-block;
background: rgb(0,0,0);
background: -moz-linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,1) 100%);
background: linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.email a:hover{
    color: #fbf808;
    text-decoration: underline;
}

.logo-mobile{display: none;}
@media  (max-width: 576px){
    .logo-mobile{display: block;}
    .logo-desktop{display: none;}
    body{
        background-size: calc(100% - 25px);
        background-image: url('../images/bg-mobile.jpg');
        background-position: right bottom;
    }
    /* .header{
        width: 100%;
    text-align: center;
    left: 0;
    }

    .footer{
        width: 100%;
        text-align: center;
    }
    .email a{
        width: 100%;
    display: inline-block;
    } */

    /**************************/
    .header{
        top:16px;
        left: 16px;
        transform: translate(0);
    }

    .footer{
        bottom: 16px;
    }

    .logo img{
        width: 26px;
        height: auto;
    }
     .footer .img-wrap{
        margin-right: 16px;
    } 
    .email a{
        font-size: 16px;
        padding: 12px 16px;
    }
}