@charset "UTF-8";

section .top h1 {
    color: var(--mainColor);
    letter-spacing: 0;
}
section .top h2 {
    font-weight: 500;
}

/*
#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;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    padding: 5rem 8.75vw;
    z-index: 99;
}
header .right {display: flex;align-items: center;}
header .Logo {width: 16.5rem;height: 2rem;}

header a svg {width: 7.7rem;height: 3.6rem;}

header a svg.Insta {
    width: 2.4rem;
    height: 2.4rem;}

header a.Lang svg {
    margin-right: 1rem;
    width: 3rem;
    height: 1.75rem;
}


a.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 26px;
    background: rgb(199,151,20);
    background: linear-gradient(165deg, rgba(199,151,20,1) 0%, rgba(208,202,188,1) 100%);
    position: fixed;
    top: auto; left: auto;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.45));
}

a.contact-button svg {
    margin-left: -1.5px;
    margin-top: 2px;
}

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

    header {
        padding: 10rem 7.5vw 0;
    }

}