/*
wite: #ebeced
lite: #a2aab0
dark: #4c586f
blak: #3e3e3b
acnt: #CFCEC9
*/
*:focus {
    outline: 1px dotted #4c586f
}

a, .link {
    color: #4c586f;
    text-decoration: none;
}

a:hover, .link:hover {
    color: #a2aab0
}

body {
    font-family: Helvetica, Arial, Sans-Serif;
    font-size: 15px;
    line-height: 25px;
    color: #3e3e3b;
    margin: 0px auto;
}

div {
	display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    padding-top: 4px;
    padding-bottom: 4px;
}

h1 { font-size: 200%; }
h2 { font-size: 150%; }
h3 { font-size: 117%; }
h4 { font-size: 112%; }
h5 { font-size:  83%; }
h6 { font-size:  75%; }

input, textarea, select, button {
    font-size: 15px;
}

@media (min-width: 1000px) {
    input, textarea, select, button {
        font-size: 20px;
    }
}

ol, ul {
    padding: 0;
    list-style: none;
    margin: 0px;
}

p {
    margin: auto;
	padding: 4px;
}

.dark {
    color: #ebeced;
    background-color: #4c586f;
    border-top: 1px solid #3e3e3b;
    border-bottom: 1px solid #3e3e3b;
}

.light {
    color: #4c586f;
    background-color: #ebeced;
}

.header {
    color: #4c586f;
    background-color: #ebeced;
    text-align: center;
    border-bottom: 1px solid #3e3e3b;
}

@media (min-width: 1001px) {
    .header {
        background-repeat: no-repeat;
        background-position: top, center;
        background-image: url('/img/ho-bg.gif');
    }
}

.nav-bar {
    color: #ebeced;
    background-color: #4c586f;
    border-bottom: 1px solid #3e3e3b;
    margin: auto;
    display: flex;
    text-align: center;
}

.nav-item {
    margin: auto;
}

.nav-item a {
    color: #a2aab0
}

.content {
	padding: 30px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

.sticky + .content {
	padding-top: 60px;
}

.mainbody {
	background-color: #ffffff;
}

.footer {
    color: #4c586f;
    background-color: #ebeced;
    padding: 2vw;
    border-top: 1px solid #3e3e3b;
    border-bottom: 1px solid #3e3e3b;
    display: flex;
    justify-content: center;
}

.nav-group {
    padding-left: 3vw;
    padding-right: 3vw;
}

.legal {
    color: #ebeced;
    background-color: #4c586f;
    text-align: center;
}

* {
    box-sizing: border-box
}

.banner {
    display: block;
    clear: both;
    text-align: center;
}

.banner p {
    font-size: 125%;
    color: #4c586f;
}

.content-50-50 {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 700px) {
    .reverse {
        flex-direction: row-reverse;
    }
}

.content-50-50 div {
    flex: 0 0 100%;
    margin: auto;
}

@media (min-width: 700px) {
    .content-50-50 div {
        flex: 0 0 50%;
    }
}

.content-50-50 h2 {
    padding: 30px 30px 10px 30px;
    color: #4c586f;
}

@media (min-width: 700px) {
    .content-50-50 h2 {
        padding-top: 0px;
    }
}

.content-50-50 p {
    padding: 0px 30px 0px 30px;
    font-size: 125%;
}

.content-50-50 img {
    width: 100%;
}

a.getStartedButton {
    color: #ebeced;
    background-color: #4c586f;
    padding: 1vw 2vw;
    margin: auto;
    border: 1px solid #3e3e3b;
    cursor: pointer;
    white-space: nowrap;
}

a.getStartedButton:hover {
    color: #4c586f;
    background-color: #ebeced;
}

.max {
    max-width: 1000px;
    margin: auto; 
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #ebeced;
    margin: 30% auto;
    padding: 2vw;
    border: 1px solid #3e3e3b;
    width: 400px;
    border-radius: 4px;
}

.close {
    color: #3e3e3b;
    float: right;
    font-size: 150%;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: #3e3e3b;
    text-decoration: none;
    cursor: pointer;
}