@charset "UTF-8";

#loader {
    width: 100vw;
    height: 100vh;
    background-color: var(--backgroundColor);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader .Logo {width: 12.5rem;}
#loader .Logo path {opacity: 0;}

body.loaded #loader {    
    opacity: 0;
    visibility: hidden;}

header {
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 5vw 0;
    position: fixed;
    top: 0%;
    left: 0;
    z-index: 99;
}

header .Logo {width: 10rem;height: 2.7rem;}
header .Logo path {fill: #181818;}
header a svg {width: 7.7rem;height: 3.6rem;}

@media screen and (min-width: 720px) {

    header {
        padding: 10rem 7.5vw 0;
    }

}