/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #606d6e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PT Sans Caption', sans-serif;
    color: #454B4D;
}

a {
    color: #606A70;
    text-decoration: none;
}

a:hover {
    color: rgb(66, 74, 78);
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

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

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

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

/* Content Styling */
.header .padding {
    padding: 1rem 0;
}

.header {
    background-color: #A9FCE2;
    color: #270D2F;
}

.header a {
    color: #270D2F;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
}
.header .logo img {
    height: 50px;
}

.footer {
    background-color: #CFCFCF;
    color: #000;
}

/* Menu Settings */
.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #270D2F;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #175E91;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #fff;
    color: #175E91;
}

/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #b1dad0;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

.a-hover {
    position: relative;
}
.a-hover > .a-hover-overlay {
    position: absolute;
    display: inline-flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    transition: opacity 0.1s linear;
    opacity: 0;
}
.a-hover:hover > .a-hover-overlay {
    opacity: 1;
}

.big-icon {
    font-size: 3em;
    padding-bottom: 1rem;
}
.caption {
    line-height: 1.15;
}

.jumbotron {
    background-color: #FFFFFF;
    color: #3C3C3B;
    margin-bottom: 0;
    text-align: center;
}
.jumbotron img {
    max-width: 40%;
}

.body-alternate {
    overflow: auto;
}
.body-alternate:nth-child(odd) {
    background-color: #FFFFFF;
    color: #3C3C3B;

}
.body-alternate:nth-child(even) {
    background-color: #b1dad0;
    color: #270D2F;
}