* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    min-width: 320px;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
}

body {
    background: url(../img/background/body-backgroung.svg);
    background-size: cover;
    background-position: center;
}

header {
    height: 20%;
    max-height: 20%;
    min-height: 20%;
}

main {
    height: 60%;
    max-height: 60%;
    min-height: 60%;
}

footer {
    height: 20%;
    max-height: 20%;
    min-height: 20%;
}

header,
main,
footer {
    height:100%;
    width: 100%;
    display: table;
}

#logo {
    display: table-cell;
    vertical-align: middle;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

#logo img {
    padding: 5px 20px;
    width: 90%;
    height: auto;
    max-height: 90%;
}

#language-selection {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 60%;
    max-height: 60%;
    text-align: center;
    overflow: hidden;
    padding:20px 40px;
}

#language-selection > a {
    text-decoration: none;
}

#language-selection a > img {
    width: 30%;
    height: auto;
    max-height: 30%;
    cursor: pointer;
}

#language-selection a > img:hover {
    opacity: 0.5;
    cursor: pointer;
}

#language-selection a:nth-child(2)
{
    padding-right: 10%;
    padding-left: 0%;
}

#main-button a > img {
    padding: 10px 20% 0px 20%;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
}


#main-button a > img:hover {
    opacity: 0.7;
    cursor: pointer;
}

#img-footer {
    display: none;
}

#content-footer {
    margin: 0 auto;
}

#content-footer p {
    font-size: 1.2vh;
    font-weight: 600;
    color: gray;
    float:left;
    width: 100%;
}


#content-footer .left {
    width: 55%;
    float: left;
    padding-left:5%;
}

#content-footer .separator{
   width:1px;
   height:80%;
   float:left;
   margin-right: 20px;
   padding:11.5% 0;
   border:1px solid #e6e6e6;
}

#content-footer .right {
    width: 35%;
    height: 100%;
    float: left;
}

#content-footer .right img{
    widows: 150px;
    height: auto;
    vertical-align: middle;
}



#content-footer .right p{
padding-bottom: 25px;
}

#content-footer .left img, #content-footer .right img {
    max-width: 80%;
}


/* MOBILE LARGE SCREEN */

@media screen and (min-width: 768px) and (orientation:portrait) {
    
    #content-footer .separator{
   padding:9.5% 0;
}
    
    #content-footer .left img, #content-footer .right img {
    max-width: 75%;
}

    
    }

/* VERSION DESKTOP */

@media screen and (min-aspect-ratio: 1/1) {

    header {
        height: 35%;
        max-height: 35%;
        min-height: 35%;
    }

    main {
        height: 50%;
        max-height: 50%;
        min-height: 50%;
        width:100%;
        margin:0 auto;
    }

    footer {
        position: relative;
        display: block;
        height: 15%;
        max-height: 15%;
        min-height: 15%;
    }
    
    #logo {
    display: table-cell;
    vertical-align: middle;
    max-width: 100%;
    height: 80%;
    max-height: 80%;
    margin: 0 auto;
    text-align: center;
}

    #logo img {
    padding: 5px 20px;
    width: 60%;
    height: auto;
    max-height: 80%;
    }

    #language-selection {
        height: 100%;
        max-height: 100%;
        padding: 0px;
    }

    #language-selection a > img {
        width: 12%;
        padding: 0;
        padding-bottom: 20px;
    }

    #language-selection a:nth-child(2)
    {
        padding-right: 0%;
        padding-left: 0%;
    }
    
    #main-button a > img {
        padding: 10px 35% 0px 35%;
        margin: 0 auto;
        width: 100%;
        cursor: pointer;
    }

    #img-footer {
        display: block;
        z-index:-3;
    }

    #img-footer > img {
        position:absolute;
        bottom:0;
        width: 25%;
        float: left;
    }
    
    
    #content-footer {
        position: absolute;
        right:0;
        bottom:0;
        height: 100%;
        width: 30%;
        display: block;
    }
    
     #content-footer > img{
        position:absolute;
        bottom:0;
        width: 35%;
        float:right;
    }

    #content-footer p {
        width: 100%;
        font-size:1.4vh;
        font-weight: 600;
        color: gray;
    }

    #content-footer .left {
        height: 100%;
        width: 45%;
        padding-left: 2%;
        padding-right: 0%;
        
    }
    
    #content-footer .separator{
        padding:5% 0;
    }
    

    #content-footer .right {
        width: 42%;
        float: left;
        height: 90%;
        padding-right: 0;
        padding-left: 0%;
    }

}