@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



.headerLogo a {
    display: block;
    width: 100%;
    height: 100%;
}
.headerLogo {
    width: 130px;
}

#cmplz-cookiebanner-container * {
font-family:'Montserrat'!important;
}


.headerLogo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.headerContainer {
    padding: 0em 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    position: relative;
}

.headerNavigation {
    display: flex;
    flex-direction: row;
    gap: 2em;
    display: none;
}

.headerNavigation a {
    cursor: pointer;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.25s ease-in-out;
    color: black;
    text-decoration: none;
}



.headerNavigation a:hover {
    color: #f39437;
}


@media only screen and (max-width:1600px){
    html .headerContainer {
        padding: 0em 9%;
    }
}

@media only screen and (max-width:1200px){
    .headerNavigation {
        display: none;
    }
    html .headerMenuPhone .line {
       stroke: black;
   }
   html .mobileMenu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 17% 20%;
    border-top: 3px solid black;
}
.mobileMenu a {
    font-family: 'Montserrat';
}
}


/*
FOOTER
*/


.footerContainer {
    background-color: #323a43;
    padding: 2em 20%;
    padding-bottom: 0.5em;
}

.footerText h2 {
    font-family: 'Montserrat';
    color: white;
    font-weight: 500;
}

.footerText {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footerText p {
    font-family: 'Montserrat';
    color: white;
    font-size: 1.1em;
    text-align: center;
    font-weight: 500;
}

.footerText h2 {
    font-family: 'Montserrat';
    color: white;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.4em;
    font-size: 1.5em;
}

.footerText {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2em;
}

.legal a {
    color: white;
    font-family: 'Montserrat';
    text-align: center;
}

.legal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2em;
}

@media only screen and (max-width:1000px){
    html body .footerText h2 {
        font-size: 1.1em;
    }
    html .footerText p {
        font-size: 0.9em;
    }

    html body .legal a {
        font-size: 0.7em;
    }
}

@media only screen and (max-width:550px){
    html body .footerContainer {
        padding: 2em 9%;
    }
    html body .legal{
        gap: 0.5em;
    }
    html body .legal a {
        font-size: 0.6em;
    }
}