HTML, body{
    font-family: 'Hanken Grotesk';
    font-weight: 200;
    /* background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1); */
    line-height: 1.5;
    height: 100%;
}

img{
    display: inline-block;
    width: 100%;
    height: auto;
}
.btn{
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    overflow: hidden;
    position: relative;
}
ul{
    padding: 0;
}
li{
    list-style: none;
}
.btn:hover{
    transition: all 0.2s ease;
    background-color: rgba(0, 0, 0, 0.4) ;
}

.btn img{
    display: block;
    width: 20px;
    margin-right: 10px;
}
#wrapper .inside{
    padding: 40px;
    box-sizing: border-box;
}
#header{
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
#header h1{
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 1);
    left: 10vw;
    text-transform: uppercase;
    font-size: 4em;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
#header h1 a{
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    transition: all 0.2s ease;
}
#header h1 a:hover{
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;

}
#wrapper, 
#footer .inside{
    max-width: auto;
    margin: 0 auto; 
    width: 100%;
    /* overflow: hidden; */
}
#footer .inside{
padding: 0 10vw;
box-sizing: border-box;
}
.flex-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
}
.flex-container .visual{
    flex: 1 0 40%;
}
.flex-container .content{
    flex: 1 0 60%;
    padding: 2em;
    box-sizing: border-box;
}
.flex-container h2{
    margin: 0;
    font-size: 1.7em;
}
#footer{
    background-color: rgba(0, 0, 0, 1);
    padding: 20px 0 60px;
    box-sizing: border-box;
}
#footer .flex-container{
    justify-content: space-between;
}
#footer a{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}
#footer a:hover{
    text-decoration: underline;
}
#footer .flex-container > div{
    flex: 0 1 50%;
}
#footer .flex-container .footer-nav.right{
    text-align: right;
}
#footer ul{
    margin: 0;
    padding: 0;
}
#footer li{
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
}
#footer .socials img{
    width: 32px;
    height: auto;
}
#bground{
    overflow: hidden;
    margin-top: -25em;
}
#main{
    padding: 0 10vw;
}
#bground{
transform: scale(1.4);
animation: kenburns 50s infinite; 
    
}

    @keyframes kenburns{
        0%{
            transform: translate(0em, 0em) scale(1.1);
        }
        20%{
           transform: translate(1.8em, -1em) scale(1.4);
        }
        40%{
            transform: translate(-2em, 0) scale(1.2);
        }
        60%{
            /* transform: translate(-1.4em, -2em) scale(1.6); */
            transform: translate(-9em, 11em) scale(1.4)
        }
        80%{
            /* transform: translate(-1em, -1.5em) scale(1.3); */
            transform: translate(3em, -2em) scale(1.2)
        }
        100%{
            transform: translate(0em, 0em) scale(1.1);
        }
    }

    .contact-lang{
        flex-direction: row;
        justify-content: space-between;
    }
    .btn.lang{
        width: 40px;
    }