@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    background-color: #ffffff;
    /*display: flex;*/
    /*flex-direction: column;*/
    font-family: 'Poppins', sans-serif;
}

body.ie11 #homeLogo #brandImageHeader {
    display: flex;
    height: 12vw;
}

body.ie11 #brandImageHeader #IEImage {
    height: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #efefef;
}

#homeLogo {
    cursor: pointer;
    line-height: 0;
}

#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #921539;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: white;
    cursor: pointer;
}

.brandLogo {
    width: 100%;
}
.brandLogo.mobile {
    display: none;
}

section#main-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    align-items: center;
    justify-content: space-evenly;
    background: #f0f0e6;
}

#ctaHeader {
    box-sizing: border-box;
    font-size: 38px;
    color: #ffffff;
    padding: 10px 0;
    background: #396441;
    text-align: center;
    width: 100%;
    font-weight: 500;
}

#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}

.importantInfo {
    color: #000000;
    font-size: 12px;
    box-sizing: border-box;
    width: 70%;
    margin: 0 auto 30px;
    text-align: center;
}

footer {
    height: 60px;
    width: 100%;
    color: #FFFFFF;
    background-color: #396441;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}

.footerText {
    font-size: 12px;
}

.footerText a, .footerText a:link, .footerText a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.footerText a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    #ctaHeader {
        font-size: 24px;
        padding: 10px 5px;
    }

    .brandLogo {
        /*margin-top: 44px;*/
    }
    .brandLogo.mobile {
        display: block;
    }
    .brandLogo.desktop {
        display: none;
    }

    #app-wrapper {
        width: 100%;
    }

    /*footer {*/
    /*    !*display: block;*!*/
    /*    !*height: 100px;*!*/
    /*}*/
}
