/*html {
    scroll-behavior: smooth;
}*/
*{
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 100;
}
html, body{
    overflow: hidden;
}
body {
    position: relative;
}
.diashow-btn{
    z-index: 300;
    background: rgba(255, 255, 255, 0.384);
    color: #ffffffa6;
    display: inline-block;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    transform: translate(-50%, 0px);
    left: 50%;
    transition: .3s all ease;
}
/*for light backgrounds*/
.diashow-btn-dark{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    background: rgba(226, 226, 226, 0.7);
    color: rgb(37, 37, 37);
}
.diashow-btn:hover{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.diashow-btn:active{
    transform: translate(-50%, 3px);
}
.btn-down{
    bottom: 10px;
    padding-top: 16px;
}
.btn-up{
    top: 10px;
    padding-top: 14px;
}
.img-text-box{
    max-width: 70%;
    border: 1px solid lightgrey;
    background: #ffffff;
    padding: 5px;
    border-radius: 3px;
    z-index: 300;
    position: fixed;
    bottom: 6px;
    left: 6px;
    color: #DFDFDF;
}
.img-title{
    font-size: 11px;
    font-family: "Century Gothic";
}
.img-sub-title{
    font-size: 8px;
    font-family: "Century Gothic";
}
/*for light backgrounds*/
.img-title-dark{
    color: black;
}
.img-sub-title-dark{
    color: black;
}
.diashow-btn-small{
    z-index: 300;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgb(226, 226, 226);
    color: #4d4d4d;
    border-radius: 50%;
    text-align: center;
    padding-top: 11px;
    box-sizing: border-box;
    font-size: 15px;
    cursor: pointer;
    transition: .3s all ease;
}
.diashow-btn-small:hover{
    background: rgb(204, 204, 204);
}
.btn-tone{
    right: 8px;
    bottom: 8px;
}
.btn-home{
    right: 54px;
    bottom: 8px;
}

/*################################*/
.imgWrapper{
    z-index: -100;
    width: 100%;
    height: 100vh;
    /*-webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-position: center !important;*/

    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.imgWrapper img {
    position: absolute;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    height: 100vh;
}

@media (max-aspect-ratio: 16/9) {
    .imgWrapper img {
        position: absolute;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        width: 100vw;
        height: auto;
    }
}