
* {
    box-sizing: border-box;
}
.navbar-dropdown li a 
{
 background: #fff2cc;
}

/* Create two equal columns that floats next to each other */
.column_one {
    float: left;
    width: 50%;
    padding: 35px;
    /* Should be removed. Only for demonstration */
}

.column_two {
    float: left;
    width: 47%;
    padding: 35px;
    margin-left: 10px;
    /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row_custom:after {
    content: "";
    padding: 50px 50px 50px 50px;
    display: table;
    clear: both;
}


.heading_custom h3 {
    font: 16px sans-serif;
    color: #000;
    margin: 0;
    text-align: left;
}

.heading_custom p {
    font: 14px/20px sans-serif;
    color: #000;
    text-align: left;
}

.heading_custom h2 {
    font: 18px sans-serif;
    color: #0a58ca;
    margin: 0;
    text-align: left;
}


.sane_custom h2 {
    font: 18px sans-serif;
    color: #0a58ca;
    margin: 0;
    text-align: left;
}


.sane_custom h3 {
    font: 18px sans-serif;
    color: #000;
    margin: 0;
    text-align: left;
    font-weight: bold;
}

.sane_custom p {
    font: 12px sans-serif;
    color: #000;
}

.heading-text-index {
    text-align: left;
    padding-top: 0;
    position: relative;
}

.heading-text-index h1 {
    font: 22px sans-serif;
    color: #F7B500;
    margin: 0 auto 20px auto;
    font-weight: 600;
}

.index_button_custom {
    background: #F7B500;
    padding: 10px 20px;
    border-radius: 25px;
}

.container_custom {
    padding: 50px;
    margin: 10px;
}

#fig {
    height: 250px;
    margin: auto 7px;
}

.mobile_qr {
    height: 370px;
    position: absolute;
    right: 90px;
}

.logo {
    width: 180px;
    /* width: 252px; */
    margin-left: -100px;
    z-index: 1000;
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1018px) {
    .column_one {
        width: 100%;
        margin-top: 5px;
    }

    .column_two {
        width: 100%;
        margin-top: 5px;
    }

    .container_custom {
        padding: 10px;
        margin: 5px;
    }

    .mobile_qr {
        position: relative;
        height: 370px;
        margin-left: 150px;
    }

    .logo {
        width: 180px;
        margin-left: -100px;
        z-index: 1000;
    }

}

@media screen and (max-width: 600px) {
    .column_one {
        width: 100%;
    }

    .mobile_qr {
        position: relative;
        height: 370px;
        margin-left: 60px;
    }

    .column_two {
        width: 100%;
    }

    .container_custom {
        padding: 10px;
        margin: 5px;
    }

    .logo {
        margin-left: 0;
    }
}

a:link {
    color: #202020 !important;
    text-decoration: none;
}


a:visited {
    color: #202020;
    text-decoration: none;
}

a:hover {
    color: #202020;
    text-decoration: underline;
}

a:active {
    color: #202020;
    text-decoration: underline;
}

/*NAV BAR*/

@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.navigation {
    top: 0;
    height: 55px;
    background: linear-gradient(45deg, #fff2cc, #fff2cc);
    width: 100%;
    z-index: 100;
    position: fixed;
}

.brand {
    position: absolute;
    padding-left: 20px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 1.4em;
}

.brand a, .brand a:visited {
    color: #0a0b0d;
    text-decoration: none;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a, nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 55px;
    color: #0a0b0d;
    background: #fff2cc;
    text-decoration: none;
}

nav ul li a {
    background: transparent;
    color: #0a0b0d;
}

nav ul li a:hover, nav ul li a:visited:hover {
    background: #2581DC;
    color: #0a0b0d;
}

/* .navbar-dropdown li a {
    background: #2581DC;
} */

nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

@media only screen and (max-width: 800px) {
    .nav-mobile {
        display: block;
    }

    nav {
        width: 100%;
        padding: 55px 0 15px;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a {
        padding: 15px;
        line-height: 20px;
        background: #fff2cc;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    .navbar-dropdown {
        position: static;
    }

    .logo {
        margin-left: 0;
    }
}

@media screen and (min-width: 800px) {
    .nav-list {
        display: block !important;
    }
}

#navbar-toggle {
    position: absolute;
    left: 18px;
    top: 15px;
    cursor: pointer;
    padding: 10px 35px 16px 0;
}

#navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: #ffffff;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
    top: -10px;
}

#navbar-toggle span:after {
    bottom: -10px;
}

#navbar-toggle.active span {
    background-color: transparent;
}

#navbar-toggle.active span:before, #navbar-toggle.active span:after {
    top: 0;
}

#navbar-toggle.active span:before {
    transform: rotate(45deg);
}

#navbar-toggle.active span:after {
    transform: rotate(-45deg);
}


.active {
    border-bottom: 3px solid #053e83;
}