@import url("https://use.typekit.net/djp2qtg.css");
/* 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;
    justify-content: space-between;
    font-family: sofia-pro, sans-serif;
}
header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}
#homeLogo {
    cursor: pointer;
    line-height: 0;
}
#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0067a7;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: white;
    cursor: pointer;
}
.brandLogo {
    width: 100%;
}
section#main-content {
    display: flex;
    flex-direction: column-reverse;
}
#ctaHeader {
    box-sizing: border-box;
    font-size: 30px;
    color: #ffffff;
    padding: 20px 0;
    background: #0067a7;
    text-align: center;
    width: 100%;
    font-family: 'TCCC-UnityHeadline-Regular', sans-serif;
}
#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}
.importantInfo {
    color: #000000;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
footer {
    height: 80px;
    width: 100%;
    color: #FFFFFF;
    background-color: #0067a7;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
.footerText {
    font-size: 12px;
    line-height: 1.5em;
}
.footerText a:link, .footerText a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
.footerText a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    #homeLogo {
        margin-top: 25px;
    }
    #langSwitch {
        top: 2px;
        right: 2px;
        padding: 2px 6px;
    }
    #ctaHeader {
        font-size: 18px;
        padding: 10px 5px;
    }
    #app-wrapper {
        width: 100%;
    }
    footer {
        display: block;
        height: 100px;
    }
}
