body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #122c35;
    margin: 0;
    background-color: #1a3b9c;
}

* {
    box-sizing: border-box;
}

.container {
	max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.clear {
    clear: both;
}

.hidden {
    display: none !important;
}

form {
	margin-bottom: 25px;
}

textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
}

a {
    color: #122c35;
}

h5 {
	text-transform: uppercase;
	font-size: 1em;
	letter-spacing: 1px;
	opacity: 0.9;
	margin-bottom: 10px;
}

.mr-xs {
    margin-right: 5px;
}

.with-cols {
	margin-left: -10px;
	width: calc(100% + 20px);
}

.col {
	position: relative;
}

.col-full {
	width: 100%;
	padding: 0 10px;
}

.col-half {
	width: 50%;
	float: left;
	padding: 0 10px;
}

.col-four {
	width: 25%;
	float: left;
	padding: 0 10px;
}

@media only screen and (max-width: 768px) {
    .col-half {
    	width: 100%;
    }
}

@media only screen and (max-width: 850px) {
    .col-four {
    	width: 50%;
    }
}

@media only screen and (max-width: 450px) {
    .col-four {
    	width: 100%;
    }
}

.text-right {
    text-align: right;
}

.with-dropdown {
    z-index: 2;
}

.with-dropdown > label > [data-icon="caret-down"] {
	position: absolute;
	z-index: 1;
	top: 50%;
	pointer-events: none;
	right: 15px;
	transform: translateY(-50%);
	opacity: 0.5;
}

.with-dropdown > label > input {
	padding-right: 35px;
}

.dropdown-select {
	background-color: #fff;
	position: absolute;
	top: 15px;
	left: 20px;
	z-index: 2;
	border-radius: 9px;
	box-shadow: 7px 7px 20px -4px rgba(0, 0, 0, 0.5);
	border: 1px solid #f2f2f2;
	padding: 5px 0;
    transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
    transform: translateY(-10px);
    pointer-events: none;
    opacity: 0;
}

.dropdown-select.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.dropdown-select > .item {
	display: block;
	font-size: 1.1em;
	text-decoration: none;
	padding: 7.5px 15px;
}

.dropdown-select > .item:hover {
	color: #518ef8;
}

.alert {
	background-color: #223c45;
	color: #fff;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 15px;
	box-shadow: 2px 2px 0 2px #122c35;
}

.alert.success {
	background-color: #4caf50;
	box-shadow: 2px 2px 0 2px #3c9f40;
}

.alert.error {
	background-color: #cf4040;
	box-shadow: 2px 2px 0 2px #bf3030;
}


/* header */
#header {
    box-shadow: 0 0 6px rgba(18,44,53,.1);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

#header .logo {
	padding: 10px 0;
	display: inline-block;
}

#header .logo > img {
    height: 40px;
}

#header .menu {
	float: right;
	position: relative;
}

#header .menu > .item {
	display: inline-block;
	margin-left: 25px;
	padding: 22.5px 0;
}

#header .menu > .item > a {
	font-size: 1.1em;
	color: #122c35;
	text-decoration: none;
	font-weight: 600;
}

#header .toggle-menu {
	float: right;
	padding: 20px 0;
	font-size: 1.3em;
    display: none;
}

@media only screen and (max-width: 768px) {
    #header .menu {
    	float: none;
    	position: fixed;
    	top: 95px;
    	background-color: #fff;
    	left: 0;
    	right: 0;
    	z-index: 1000;
    	box-shadow: 0 0 6px rgba(18,44,53,.1);
    	transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
    	transform: translateY(-10px);
        pointer-events: none;
    	opacity: 0;
    }

    #header .menu.active {
    	transform: translateY(0);
    	opacity: 1;
        pointer-events: all;
    }

    #header .menu > .item {
    	display: block;
    	margin-left: 0;
        border-top: 1px solid #f2f2f2;
        padding: 0;
    }

    #header .menu > .item:hover {
    	background-color: #f2f2f2;
    }

    #header .menu > .item > a {
    	padding: 15px 20px;
        display: block;
    }

    #header .toggle-menu {
        display: inline-block;
    }
}

#sub-header {
	background-color: #577ce8;
	color: #fff;
	text-align: right;
	padding: 5px 0;
    position: relative;
}

@media only screen and (max-width: 600px) {
    #sub-header {
    	text-align: center;
    }

    #sub-header .nav-link:first-child {
        margin-left: 0;
    }
}

#sub-header .nav-link {
	color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

#sub-header .nav-link > [data-icon] {
	margin-right: 5px;
}


/* main content */
#main-content {
	background-color: #fff;
	position: relative;
	padding: 20px 0;
}

.contact-information > .item {
	display: inline-block;
	margin-right: 20px;
}

@media only screen and (max-width: 450px) {
    .contact-information > .item {
    	display: block;
    }
}

.contact-information > .item > a {
	text-decoration: none;
	color: #577ce8;
	margin-bottom: 15px;
	display: block;
}


/* footer */
#footer {
	background-color: #3a5bbc;
	color: #fff;
	position: relative;
	padding: 60px 0;
}

#footer .quick-links ul {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 3em;
	padding-left: 13px;
    list-style-type: none;
}

#footer .quick-links ul li {
	position: relative;
}

#footer .quick-links ul li a::before {
	content: "•";
	position: absolute;
	left: -13px;
	top: 0;
	opacity: .5;
	line-height: 44px;
	font-size: 9px;
}

#footer .quick-links a {
	color: #fff;
	text-decoration: none;
}

#footer .social-links {
	margin-top: 20px;
}

#footer .social-links > a {
	font-size: 1.2em;
	background-color: #fff;
	width: 40px;
	display: inline-block;
	height: 40px;
    position: relative;
	border-radius: 100%;
    margin-right: 5px;
}

#footer .social-links > a:last-child {
    margin-right: 0;
}

#footer .social-links > a > [data-icon] {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #3a5bbc;
}

#footer .contact-info {
	padding-left: 25px;
}

#footer .contact-info > div {
	position: relative;
	margin-top: 20px;
}

#footer .contact-info > div > [data-icon] {
	position: absolute;
	left: -25px;
	top: 4px;
}

#sub-footer {
	background-color: #2a4bac;
	color: #fff;
	padding: 20px 0;
    position: relative;
}

#sub-footer .powered-by {
	float: right;
	position: relative;
	top: -4px;
}

#sub-footer .powered-by img {
	height: 17.5px;
	position: relative;
	top: 4px;
	margin-left: 2.5px;
}

@media only screen and (max-width: 768px) {
    #sub-footer > .container > span {
    	float: none;
    	display: block;
        text-align: center;
    }

    #sub-footer .powered-by {
    	margin-top: 15px;
    }

    #sub-footer .copyright-text {
    	max-width: 370px;
    	margin: 0 auto;
    }
}


/* material input field */
.pure-material-textfield-outlined {
    --pure-material-safari-helper1: #518ef8;
    position: relative;
    display: inline-block;
    padding-top: 6px;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

/* Input, Textarea */
.pure-material-textfield-outlined > input,
.pure-material-textfield-outlined > textarea {
    box-sizing: border-box;
    margin: 0;
    border: solid 1px; /* Safari */
    border-color: #cccccc;
    border-top-color: transparent;
    border-radius: 4px;
    padding: 15px 13px 15px;
    width: 100%;
    height: inherit;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    background-color: transparent;
    box-shadow: none; /* Firefox */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: #518ef8;
    transition: border 0.2s, box-shadow 0.2s;
}

/* Span */
.pure-material-textfield-outlined > input + span,
.pure-material-textfield-outlined > textarea + span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    border-color: #cccccc;
    width: 100%;
    max-height: 100%;
    color: #627c85;
    font-size: 75%;
    line-height: 15px;
    cursor: text;
    transition: color 0.2s, font-size 0.2s, line-height 0.2s;
}

/* Corners */
.pure-material-textfield-outlined > input + span::before,
.pure-material-textfield-outlined > input + span::after,
.pure-material-textfield-outlined > textarea + span::before,
.pure-material-textfield-outlined > textarea + span::after {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-top: 6px;
    border-top: solid 1px;
    border-top-color: #cccccc;
    min-width: 10px;
    height: 8px;
    pointer-events: none;
    box-shadow: inset 0 1px transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pure-material-textfield-outlined > input + span::before,
.pure-material-textfield-outlined > textarea + span::before {
    margin-right: 4px;
    border-left: solid 1px transparent;
    border-radius: 4px 0;
}

.pure-material-textfield-outlined > input + span::after,
.pure-material-textfield-outlined > textarea + span::after {
    flex-grow: 1;
    margin-left: 4px;
    border-right: solid 1px transparent;
    border-radius: 0 4px;
}

/* Hover */
.pure-material-textfield-outlined:hover > input,
.pure-material-textfield-outlined:hover > textarea {
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    border-top-color: transparent;
}

.pure-material-textfield-outlined:hover > input + span::before,
.pure-material-textfield-outlined:hover > textarea + span::before,
.pure-material-textfield-outlined:hover > input + span::after,
.pure-material-textfield-outlined:hover > textarea + span::after {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
}

.pure-material-textfield-outlined:hover > input:not(:focus):placeholder-shown,
.pure-material-textfield-outlined:hover > textarea:not(:focus):placeholder-shown {
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
}

/* Placeholder-shown */
.pure-material-textfield-outlined > input:not(:focus):placeholder-shown,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown {
    border-top-color: #cccccc;
}

.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span {
    font-size: inherit;
    line-height: 68px;
}

.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span::before,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span::before,
.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span::after,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span::after {
    border-top-color: transparent;
}

/* Focus */
.pure-material-textfield-outlined > input:focus,
.pure-material-textfield-outlined > textarea:focus {
    border-color: #518ef8;
    border-top-color: transparent;
    box-shadow: inset 1px 0 var(--pure-material-safari-helper1), inset -1px 0 var(--pure-material-safari-helper1), inset 0 -1px var(--pure-material-safari-helper1);
    outline: none;
}

.pure-material-textfield-outlined > input:focus + span,
.pure-material-textfield-outlined > textarea:focus + span {
    color: #518ef8;
}

.pure-material-textfield-outlined > input:focus + span::before,
.pure-material-textfield-outlined > input:focus + span::after,
.pure-material-textfield-outlined > textarea:focus + span::before,
.pure-material-textfield-outlined > textarea:focus + span::after {
    border-top-color: var(--pure-material-safari-helper1) !important;
    box-shadow: inset 0 1px var(--pure-material-safari-helper1);
}

/* Disabled */
.pure-material-textfield-outlined > input:disabled,
.pure-material-textfield-outlined > input:disabled + span,
.pure-material-textfield-outlined > textarea:disabled,
.pure-material-textfield-outlined > textarea:disabled + span {
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
    border-top-color: transparent !important;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    pointer-events: none;
}

.pure-material-textfield-outlined > input:disabled + span::before,
.pure-material-textfield-outlined > input:disabled + span::after,
.pure-material-textfield-outlined > textarea:disabled + span::before,
.pure-material-textfield-outlined > textarea:disabled + span::after {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
}

.pure-material-textfield-outlined > input:disabled:placeholder-shown,
.pure-material-textfield-outlined > input:disabled:placeholder-shown + span,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
}

.pure-material-textfield-outlined > input:disabled:placeholder-shown + span::before,
.pure-material-textfield-outlined > input:disabled:placeholder-shown + span::after,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span::before,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span::after {
    border-top-color: transparent !important;
}

/* Faster transition in Safari for less noticable fractional font-size issue */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .pure-material-textfield-outlined > input,
        .pure-material-textfield-outlined > input + span,
        .pure-material-textfield-outlined > textarea,
        .pure-material-textfield-outlined > textarea + span,
        .pure-material-textfield-outlined > input + span::before,
        .pure-material-textfield-outlined > input + span::after,
        .pure-material-textfield-outlined > textarea + span::before,
        .pure-material-textfield-outlined > textarea + span::after {
            transition-duration: 0.1s;
        }
    }
}

.pure-material-button-contained {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
	padding: 0 25px;
	min-width: 64px;
	height: 45px;
	vertical-align: middle;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #518ef8;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	font-size: 1.1em;
	font-weight: 500;
	line-height: 45px;
	overflow: hidden;
	outline: none;
	cursor: pointer;
	transition: box-shadow 0.2s;
    margin-top: 5px;
}

.pure-material-button-contained::-moz-focus-inner {
    border: none;
}

/* Overlay */
.pure-material-button-contained::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.pure-material-button-contained::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:hover::before {
    opacity: 0.08;
}

.pure-material-button-contained:focus::before {
    opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.pure-material-button-contained:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.pure-material-button-contained:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.pure-material-button-contained:disabled::before {
    opacity: 0;
}

.pure-material-button-contained:disabled::after {
    opacity: 0;
}
