html {
    height: 100%;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    background: white;
}

/* sticky logo height + paddings + blue-line */
body {
    padding-top: 124px;
}

.main-content p > a {
    color: #00909f;
}

.no-margin {
    margin: 0;
} 

.selection-modal {
    display: block;
    border: none;
}

.modal-content {
    border: none;
}

.modal-header {
    border-bottom: 2px solid #afe3e4;
}
.modal-backdrop {
    opacity: 0.5;
}

p {
    font-size: 16px;
    font-family: "din-2014", sans-serif;
    line-height: 24px;
    color: #51575D;
}

.body-text {
    font-size: 16px;
    font-family: "din-2014", sans-serif;
    line-height: 24px;
    color: #51575D;
}

.body-title {
    font-size: 36px;
    font-family: "din-condensed", sans-serif;
    font-weight: 500;
    line-height: 40px;
}

.body-padding {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.blue-line {
    border: 0;
    height: 2px;
    background: #afe3e4;
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.logo {
    overflow: hidden;
    width: 100%;
}

.logo-img  {
    display: block;
    height: 72px;
    background-repeat: no-repeat;
    background-size: contain;
}

.logo-img-en-us, .logo-img-other {
    background-image: url('../images/logos/logo-en-us.png');
}

.logo-img-es-us {
    background-image: url('../images/logos/logo-es-us.png');
}

.logo-img-de-de, .logo-img-de-at {
    background-image: url('../images/logos/logo-de-de.png');
}

.logo-img-cs-cz {
    background-image: url('../images/logos/logo-cs-cz.png');
}

.logo-img-hu-hu {
    background-image: url('../images/logos/logo-hu-hu.png');
}

.nav-tabs {
    margin-top: 0;
    border: none;
}

.nav-item-es-us, .nav-item-cs-cz, .nav-item-hu-hu {
    font-size: 13.5px;
}

.nav-item {
    font-weight: bold;
    font-family: "din-2014", sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    margin-right: 32px;
}

.nav-item:last-child {
    margin-left: auto;
    margin-right: 0;
}

.nav-tabs .nav-link {
    color: black;
    border: none;
    padding: 0;
}

.nav-tabs .nav-link.active, .nav-link:hover, .nav-link:focus {
    border: none;
    color: #db3527;
    background-color: transparent;
}

.tab-header {
    color: white;
}

.top-context-title {
    color: white;
    background-color: #ac2641;
    font-size: 37px;
    font-weight: 350;
    font-family: "din-condensed", sans-serif;
    padding: 5px 0;
}

.red-button {
    background-color: #AC2641;
    color: white;
    border: none;
    margin: 20px 0;
    font-family: "din-2014", sans-serif;
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: 1px;
    padding: 10px 60px;
    border-radius: 6px;
}

.footer-links-wrapper {
    background-color: #F5F5F5;
}

.footer-links {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.footer-left, .footer-right {
    display: inline-block;
}

.footer-item {
    display: inline-block;
    margin-right: 24px;
    font-weight: lighter;
    font-family: "din-2014", sans-serif;
    font-size: 14px;
}

.footer-item a {
    color: #00909f;
    text-decoration: none;
}

.footer-item:last-child {
    margin-right: 0;
}

@media screen and (max-width: 850px) {
    body {
        padding-top: 90px;
    }

    .body-padding {
        margin-left: 25px;
        margin-right: 25px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .logo-img  {
        width: 90%;
        height: 40px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .top-context-title {
        font-size: 18px;
    }
    
    .hamburger-img {
        background-image: url('../images/buttons/hamburger.png');
    }

    .nav-icon {
        background-repeat: no-repeat;
        background-size: contain;
        height: 28px;
        width: 28px;
    }

    .in .close-menu-img {
        background-image: url('../images/buttons/close.png');
        margin: 25px;
    }

    .red-button {
        padding: 10px 30px;
    }

    .get-started {
        position: fixed;
        bottom: 0px;
        width: 100%;
        height: 80px;
        background-color: white;
        display: flex;
        align-items: center;
        box-shadow: 0 -3px 6px #00000029;
    }
    
    .footer-links {
        padding-bottom: 80px;
    }

    .footer-item {
        padding: 14px 0;
        display: block;
    }
    
    .get-started-button {
        width: 100%;
        margin: 14px 24px;
    }    
}

@media screen and (max-width: 850px) {
    .sidenav {
        height: 100%;
        margin: 0;
        position: fixed;
        width: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: white;
    }

    .sidenav-close {
        display: flex; 
        justify-content: flex-end;
    }

    .sidenav.in {
        width: 300px;
        text-align: left;
        box-shadow: -3px 0px 6px #00000029;
        background-color: #F5F5F5;
    }

    .sidenav .nav-tabs {
        display: block;
    }
}