body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}


body.styles-loaded {
    padding-top: 96px;
}

.material-symbols-outlined {
    font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
}

iframe {
    flex: 1; /* Takes up remaining space */
    width: 100%;
    border: none;
}

a {
    transition: 400ms all;
    cursor: pointer;
}

a:hover {
    color: #2365d0;
    border-bottom: 1px solid;
}

/** Header **/
nav {
    padding: 12px;
    padding-left: 0px;
    position: absolute;
    top: 0;
    background: white;
    width: 99%;
    z-index: 999;
    padding-top: 32px;
    transition: 400ms all;
}

nav.fixed img {
    width: 220px;
    margin-top: 2px;
}

nav.fixed {
    padding: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 40px;
    top: 0;
    position: fixed;
    width: 100%;
}

nav.shadow {
    padding-top: 12px;
}

nav button.primary {
    font-size: 0.9em;
    border-radius: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0px;
}

nav .wrapper {
    max-width: 1200px;
    margin: auto;
}

nav img {
    width: 400px;
    margin-top: -4px;
    transition: 400ms all;
}

nav ul {
    float: right;
    margin-top: 4px;
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
}

#nav-bar #menu,
#nav-bar #close {
    display: none;
}

nav ul li {
    list-style: none;
    margin-right: 32px;
}


button.primary {
    background: #235099;
    border: none;
    padding: 20px;
    padding-top: 10px;
    color: white;
    padding-bottom: 10px;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
}

button.primary:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

button.primary:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 999;
}

button.primary:hover {
    background: #016cbe !important;
}

button.primary:hover:after {
    left: 120%;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

#nav-bar ul img,
#nav-bar ul li span {
    display: none;
}

iframe {
    position: relative;
    top: 40px;
}

ol {
    margin-left: -20px;
    font-size: 0.8em;
    color: #65666b;
}

.key-wrapper {
    text-align: center;
}

/** Select Box **/
.select-container {
    position: relative;
    width: 120px;
}

.custom-select {
    appearance: none;
    width: 100%;
    padding: 10px 40px 10px 20px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" stroke="%23999" stroke-width="2" d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
    padding-right: 12px;
}

.custom-select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.custom-select option {
    padding: 10px;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #757575;
    transform: translateY(-50%);
}

#nav-bar.fixed .custom-select {
    margin-top: -4px;
}

/** Footer **/
.footer .wrapper {
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

.footer {
    background: #00447c;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.footer .text {
    float: left;
    width: calc(100% - 200px);
    padding: 32px;
    padding-left: 0px !important;
    box-sizing: border-box;
}

.footer p {
    color: #2b2b2b !important;
}

.footer .hero {
    color: white;
}

.footer .section-description {
    opacity: 0.8;
    width: 92%;
}

.footer .hero-wrapper {
    width: 70%;
    display: inline-block;
    box-sizing: border-box;
}

.footer .item .material-symbols-outlined {
    background: white;
    padding: 12px;
    color: #00447c;
    border-radius: 8px;
    float: left;
    width: 24px;
}

.footer .logo-wrapper {
    width: 29%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    padding-top: 115px;
    text-align: center;
}

.footer .item-content {
    float: left;
    width: calc(100% - 56px);
    padding-left: 12px;
    box-sizing: border-box;
}

.footer .item {
    display: inline-block;
    width: 30%;
}

.footer .link.wrapper {
    border-top: 1px solid #2f5676;
    margin-top: 100px;
    padding-top: 64px;
}

.footer .item h2 {
    margin: 0px;
    font-size: 1.2em;
    font-weight: 600;
}

.footer h4 {
    margin: 0px;
}

.footer label {
    opacity: 0.6;
}

.footer .item:nth-child(2) {
    width: 40%;
}

.footer .item:last-child {
    text-align: center;
    width: 29%;
    vertical-align: top;
}

.footer button.primary {
    border: 1px solid white;
    background: transparent;
    border-radius: 28px;
    line-height: 32px;
}

.footer a {
    text-decoration: none;
    color: #FFFFFF;
}

.footer button.primary .material-symbols-outlined {
    top: 4px;
    position: relative;
    margin-right: 12px;
    float: left;
}

.footer .legal.wrapper {
    margin-top: 50px;
    font-size: 0.8em;
    padding-top: 20px;
    border-top: 1px solid #2f5676;
    opacity: 0.5;
}

.footer .legal.wrapper p {
    color: white !important;
}

/** Small Laptop **/
@media screen and (min-width: 900px) and (max-height: 1250px) {

    nav img {
        width: 200px !important;
        margin-top: 8px;

    }
}

/** Small Laptop **/
@media screen and (min-width: 900px) and (max-width: 1250px) {

    nav img {
        margin-left: 32px;
    }

}