﻿:root {
    --dark-blue: rgba(2, 30, 45, 1);
    --footer-text-gray: rgba(255, 255, 255, 0.7);
    --white: rgba(255, 255, 255, 1);
    --card-background-color: #FFFFFF;
    --text-color: #777777;
    --header-color: #333333;
}

body {
    padding-top: 85px;
    padding-bottom: 65px;
}

#selectLanguage select {
    float: right;
    width: 120px;
    margin-top: 0px;
}

#logo {
    padding: 10px;
}

.employee-body {
    background-image: linear-gradient(to bottom, rgba(0, 109, 183, 0.44), rgba(0, 109, 183, 0.44)), url(../images/landingspage_background_weight.png);
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn’t tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn’t move when
the content’s height is greater than the image’s height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based
on the container’s size */
    background-size: cover;
    /* Set a background color that will be displayed
while the background image is loading */
    background-color: #FCFCFC;
}

.family-body {
    background-image: linear-gradient(to bottom, rgba(0, 109, 183, 0.44), rgba(0, 109, 183, 0.44)), url(../images/landingpage_background_running.png);
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn’t tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn’t move when
the content’s height is greater than the image’s height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based
on the container’s size */
    background-size: cover;
    /* Set a background color that will be displayed
while the background image is loading */
    background-color: #FCFCFC;
}

.navbar-landing-filter-acceptance {
    background: #3CB017 !important;
    background: -moz-linear-gradient(left, #3CB017 0%, #68B250 50%) !important;
    background: -webkit-linear-gradient(left, #3CB017 0%,#68B250 50%) !important;
    background: linear-gradient(to right, #3CB017 0%,#68B250 50%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3CB017', endColorstr='#68B250',GradientType=1 ) !important;
}

.navbar-landing-filter-staging {
    background: #B01717 !important;
    background: -moz-linear-gradient(left, #B01717 0%, #DC5353 50%) !important;
    background: -webkit-linear-gradient(left, #B01717 0%,#DC5353 50%) !important;
    background: linear-gradient(to right, #B01717 0%,#DC5353 50%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B01717', endColorstr='#B25050',GradientType=1 ) !important;
}

.navbar-landing {
    background: #053154;
    background: -moz-linear-gradient(left, #063254 0%, #2b4f5d 100%);
    background: -webkit-linear-gradient(left, #063254 0%,#2b4f5d 100%);
    background: linear-gradient(to right, #063254 0%,#2b4f5d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#063254', endColorstr='#2B4F5D',GradientType=1 );
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: var(--white);
    box-shadow: 0px 0px 6px -1px #000;
    height: 85px;
}

    .navbar-landing #collapseNavbar ul {
        margin-top: -50px;
    }

    .navbar-landing select {
        font-weight: 400;
    }

.collapseNavbarMarginRight ul {
    margin-right: -325px;
}

.landing-navbar-text {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

    .landing-navbar-text .landing-title {
        margin-top: 24px;
    }

    .landing-navbar-text span {
        color: var(--white);
    }

.landing-logo-container {
    margin-top: 0px;
    margin-right: 15px;
    float: right;
}

    .landing-logo-container img {
        background-color: var(--white);
    }

.footer-landing {
    background: var(--dark-blue);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: var(--white);
    box-shadow: 0px 0px 6px -1px #000;
    height: 65px;
}

.footer {
    z-index: 3;
    position: fixed;
    bottom: 0px;
    width: 100%;
    min-height: 40px;
    text-align: left;
}

.footer-wrapper {
    margin-top: 10px;
    margin-left: 37px;
}

.footer-container-address {
    font-size: 0.90em;
    width: 200px;
    height: 54px;
    float: left;
    color: var(--footer-text-gray);
}

.footer-container-contact {
    font-size: 0.90em;
    margin-left: 97px;
    width: 196px;
    height: 36px;
    float: left;
    color: var(--footer-text-gray);
}

.footer-container-socials {
    margin-left: 94px;
    width: 83px;
    height: 46px;
    float: left;
    color: var(--footer-text-gray);
}

.btn-landing {
    color: var(--white);
    background: #545c64;
    border-color: #545c64;
    border-radius: 5px;
}

.choices {
    padding-top: 3%;
}

.choice-container {
    background: var(--card-background-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 500px;
    max-width: 100%;
    border-radius: 0px;
    box-sizing: border-box;
    text-align: center;
    padding: 40px 30px 40px 30px;
    margin-left: auto;
    margin-right: auto;
}

    .choice-container a, .choice-container button {
        border-radius: 3px;
        width: 325px;
        max-width: 100%;
        min-height: 50px;
        font-weight: 700 !important;
        font-size: 16px;
        line-height: 22px;
        padding: 12px;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        word-wrap: break-word;
    }

    .choice-container .choice-text .question {
        font-weight: 900;
        font-size: 2.25em;
        color: var(--header-color);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .choice-container .choice-text .answer {
        font-weight: 800;
        font-size: 1.5em;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .choice-container .choice-text .information {
        font-weight: 400;
        font-size: 1.15em;
        color: var(--text-color);
        text-align: left;
    }

    .choice-container .choice-content h1 {
        font-weight: 900;
        font-size: 40px;
        color: var(--header-color);
    }

.or-div {
    color: var(--white);
    font-weight: 900;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.choice-content {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.choice-footer {
    flex: 0 1 auto;
    width: 100%;
    margin-top: 25px;
}

@media (min-width: 992px) {
    .equal {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }
}

.fill {
    display: flex;
    flex-flow: column;
    height: 100%;
}

form#selectLanguage select {
    margin-top: 24px;
}


#navbar-logo #logo {
    max-height: 100px;
}

#navbar{
    display: flex;
    flex-direction: row-reverse;
}

.landing-title {
    flex-grow: 1;
    padding-left: 16vw;
}

#navbar-logo {
    display: flex;
    flex-direction: row;
}

    #navbar-logo .landing-logo-container{
        flex-grow: 1;
    }
