﻿/*--------------------
TABLE OF CONTENTS
01. Base Styles
02. Typography/Link Styles
03. Header Styles
04. Navigation Styles
05. Content Styles
06. Footer Styles
/*======================
01. BASE STYLES
========================*/
* {margin:0;}
body {
    font-family: 'Nunito', sans-serif;
    color:#393939;
    background:#fff;
    background-size: cover;
    font-size: 17px;
}
img {max-width:100%;}
.wrapper {
    width:100%;
    z-index:1;
    position:relative;
}
.container {
    width:100%;
    margin:0 auto;
    max-width:1200px;
}
.container:after{
    content: '';
    display: block;
    clear: both;
}
.containerfull{
    width: 85%;
    margin: auto;
    min-width: 1176px;
}
.column {
    float:left;
    margin:0 1%;
}
.grid12 {width:98%;}
.grid11 {width:89.6667%;}
.grid10 {width:81.3333%;}
.grid9 {width:73%;}
.grid8 {width:65%;}
.grid7 {width:56.3333%;}
.grid6 {width:48%;}
.grid5 {width:39.6667%;}
.grid4 {width:31%;}
.grid3 {width:23%;}
.grid2 {width:14.6667%;}
.grid1 {width:6.3333%;}
.clear {clear:both;}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
.border {
    border:2px solid #000000;
}
.alignleft {
    float:left;
    margin-right:15px;
}
.alignright {
    float:right;
    margin-left:15px;
}
.alignmid {
    display:block;
    margin:0 auto;
}
.center {text-align:center;}
blockquote {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 300;
}
hr {
    border:0;
    height:2px;
    background:#3A842B;
    padding:0;
    margin-top:10px;
    margin-bottom:25px;
}
.rounded{
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.half-rounded{
    -webkit-border-radius: 0px 0px 15px 15px;
    -moz-border-radius: 0px 0px 15px 15px;
    border-radius: 0px 0px 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.flex{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.mobile{
    display: none !important;
}
/* ====================================== 
Back to Top
====================================== */
.back-to-top{
    background-image: url(../img/back-to-top.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #30C4C9;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 50px;
    width: 50px;
    text-indent: -9999px; /* Hides text from human view */
    position:fixed;
    bottom:30px;
    right:30px;
    display:none;
    z-index: 999;
    transition: none;
}
/*======================
02. TYPOGRAPHY/LINK STYLES
========================*/
h1, h2, h3{
    font-weight: 300;
    text-shadow:2px 2px 0px #333;
}
h1{
    font-family: 'Pacifico', cursive;
    color: #fff;
}
h1 {font-size:2.8em;}
h2 {font-size:2em;}
h3 {font-size:1.8em;}
h4 {font-size:1.5em; color:#000;}
h5 {font-size:1.0em; color:#000;}
h6 {font-size:0.8em; color:#000;}
#home h2{
    font-family: 'Pacifico', cursive;
    font-size: 2.8em;
	line-height:1.2em;
}
a {color:#144b9a;transition:0.5s all ease;}
a:hover {color:#159ADC;}
a.button {
    background:#90BD2F;
    color:#222222;
    text-align:center;
    display:inline-block;
    padding:7px 20px;
    text-decoration:none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow:1px 1px 2px #333;
}
a.button:hover {
    background:#fff;
}
/*======================
03. HEADER STYLES
========================*/
#menu-logo{
    background: #41c6b3;
    position: relative;
    margin: 0 10px 20px 10px;
}
#menu-logo ul.main-navigation li{
    display: inline-block;
    margin: 0;
}
#menu-logo ul.main-navigation li:first-child{
    margin: 0;
}
#logo{
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px #000000;
    -moz-box-shadow: 0px 0px 10px #000000;
    box-shadow: 0px 0px 10px #000000;
    position: relative;
    left: 27px;
    right: 0;
    bottom: 0;
    margin: 0 auto -75px auto;
}
#logo img{
    display: block;
    margin: auto;
    padding: 40px 0 30px 0;
    width: 90%;
    max-height: 210px; /* This forces tall logos to calm down */
    max-width: 230px; /* This forces wide logos to calm down */
}
#top-set{
    margin-top: 30px;
}
#menu-logo .social a{
    color: #41c6b3;
}
#menu-logo .social a:hover{
    color: #046d8b;
}
#locations{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
#locations li{
    margin: 0 0 0 10px;
}
#locations a{
    line-height: normal;
}
#locations a:hover{
    background-color: #b9cc01;
}
#locations .button{
    background-color: #046d8b;
    color: #fff;
}
.welcome {
    position:relative;
}
.overlay {
    background:rgba(54,188,188,0.8);
    position:absolute;
    top:0;
    z-index:998;
    width:40%;
    height:100%;
    border-top-right-radius:50%;
    border-bottom-right-radius:50%;
}
.support .overlay {
    width:40%;
    border-top-right-radius:30%200px;
    border-bottom-right-radius:30%200px;
}
.container strong {font-weight:700;}
/*======================
WELCOME HEADER STYLES
========================*/
.overlay h1, .overlay p, .teal h2,.teal h2 strong {
    color:#333;
}
.headerimg img {display:block;}
.textblock {
    margin:25% 15% 0 10%;
}
.support .textblock {
    margin:15% 15% 0 10%;
}
.headerimg {margin:0;padding:0;}
#slideshow li {margin-left:0;}
.number{
    display: none;
}
/*======================
04. NAVIGATION STYLES
========================*/
.navwrap {
    position:relative;
    z-index:999;
}
.social {
    float:left;
    line-height:normal;
    margin-right:40px;
    margin-top: 10px;
}
#address{
    font-size: 17px;
    margin: 5px 0 0 0;
}
.number {display:none;}
.navwrap > .social a .fa-circle {
    color:#90bd2f;
    transition:0.5s all ease;
}
.navwrap > .social a:hover .fa-circle {
    color:#36bcbc;
}
nav {float:right;}
ul.navigation {
    list-style-type:none;
    padding-bottom:0;
}
ul.navigation:after {
    display:block;
    content:"";
    clear:both;
}
ul.navigation li {
    float:left;
    margin:0;
    padding:0;
    position:relative;
}
ul.navigation li a {
    display:block;
    text-decoration:none;
    color:#4b4b4b;
    font-size:1.1em;
    line-height:5em;
    padding:0 18px;
    font-family:'Dosis',sans-serif;
    transition:0.5s all ease;
	font-weight:600;
}
ul.navigation li:hover a {
    color:#fff;
    background:#36BCBC;
}
ul.navigation li:last-child a {
    background:#36BCBC;
    color:#fff;
}
ul.navigation li:last-child:hover a {
    background:#046D8B;
}
ul.navigation li:last-child:hover li:hover a {background:#3EBFBF;}
/* DROPDOWN */
ul.navigation li ul {
    display: none;
}
ul.navigation li:hover ul {
    display: block;
    margin-left: 0;
    position: absolute;
    top: 93px;
    z-index: 9999;
    list-style-type:none;
}
ul.navigation li:hover li {
    float: none;
    white-space: nowrap;
    width: 100%;
    background:none;
}
ul.navigation li:hover li a {
    background: #36bcbc;
    display: block;
    margin:0;
    height: auto;
    text-align: left;
    font-size:1em;
    line-height:2.7em;
    padding:0 20px 0 15px;
    border:0;
}
ul.navigation li:hover li a:hover {
    background: #046D8B;
}
/*======================
QUICK LINK STYLES
========================*/
#quicklinks{
    margin:0 auto;
    position:relative;
    width:100%;
    text-align:center;
}
#quicklinks img{
    padding-top:10px;
    padding-bottom:10px;
}
a.trans {
    width:24%;
    display:inline-block;
}
a.trans img {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: transform 0.2s ease-in 0s;
    -webkit-transition: transform 0.2s ease-in 0s;
	max-width:198px;
}
a.trans:hover img {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
}
/*======================
05. CONTENT STYLES
========================*/
section, .section{
    margin: 20px 0;
}
section p, .section p{
    font-weight: 300;
}
a.title {
    color:#fff;
    font-family:'Passion One',sans-serif;
    text-decoration:none;
    font-size:3.8em;
    line-height:0.9em;
    text-shadow:2px 2px 1px #333;
}
#main-content{
    color: #222222;
}
.slideshow {
    position:relative;
    margin-left:10px;
    width:940px;
    height:320px;
}
.slideshow img {
    left:0;
    position:absolute;
    top:0;
    z-index:9;
}
#content-block-1{
    background-color: #90bd2f;
    padding: 30px 40px;
}
#sub #content-block-1{
    background-color: #90bd2f;
    color: #222222;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sub #content-block-1 h1, #sub #content-block-1 h2, #sub #content-block-1 h3 {
    color: #fff;
}
#content-block-2{
    background-color: #046d8b;
    padding: 30px 40px;
}
#content-block-2 .location{
    border-top: 2px solid #b9cc01;
    padding-top: 15px;
    margin-top: 15px;
    color: #fff;
}
#content-block-2 .location:first-child{
    border: none;
    padding-top: 0;
    margin-top: 0;
}
#content-block-2 .location h2{
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    font-size: 1.8em;
    padding-bottom: 0;
    font-weight: 400;
}
#content-block-2 .location span{
    font-weight: 300;
}
#content-block-3{
    background-color: #EDC300;
    padding: 30px 40px;
    color: #222222;
}
#content-block-3:after{
    content: '';
    display: block;
    clear: both;
}
#content-block-3 h2{
    color: #fff;
}
#content-block-3 img.alignleft + p, #content-block-3 img.alignright + p{
    overflow: hidden;
}
#content-block-4{
    background-color: #f1396d;
    padding: 30px 40px;
    color: #222222;
}
#content-block-4 h2{
    color: #fff;
}
.quick-link-set{
    padding: 25px;
    background: #41c6b3;
    text-align: center;
}
#sub #content-block-1 .quick-link-set h3{
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 2em;
    display: block;
    padding: 0;
}
.quick-link-set a{
    color: #000;
    text-decoration: none;
}
.activitycontainer {
	text-align:center;
}
.activity {
	width:23%;
	padding:0 1% 15px 1%;
	text-align:center;
	display:inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.activity img {max-width:100%;}
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/* FORM STYLES */
#form .clear {clear:both;}
#form .center {text-align:center;}
#form h3 {margin:0 1%;}
#form small {font-style:italic;}
#form hr {width:98%;margin:10px 1% 15px 1%;}
/*GRID */
#form .column {
    float:left;
    margin:0 1%;
}
#form .full {width:98%;margin:0 1%;}
#form .half {width:48%;}
#form .twothird {width:65%;}
#form .onethird {width:31%;}
#form input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
    width:96%;
    padding:10px 2%;
}
#form input[type=radio] {
    margin-bottom:5px;
}
#form textarea {
    width:96%;
    resize:none;
    padding:10px 2%;
    font:95%/1.4 'Tahoma',sans-serif;
}
#form select {
    width:101%;
    padding:10px 2%;
}
/*======================
06. FOOTER STYLES
========================*/
footer{
    color: #222222;
    font-family: 'Nunito', sans-serif;
    font-size: .8em;
}
footer .section{
    margin-left: 10px;
    margin-right: 10px;
    background-color: #d1d1d1;
    padding: 20px 30px;
}
footer .section p{
    font-weight: 400;
}
footer .container:after, footer .section:after{
    content: '';
    display: block;
    clear: both;
}
footer a {color:#046D8B;}
footer a:hover {color:#024356;}
footer li{
    display: inline-block;
    margin: 0 10px 0 0;
}
footer .main-navigation li{
    display: block;
}
footer #social-footer a{
    font-size: 12px;
}
footer h3{
    font-size: 1.4em;
    padding: 0 0 10px 0;
    font-weight: bold;
	text-shadow:none;
}
.windowtop {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 30px;
    overflow: hidden;
    text-indent: 100%;
    background: #36BCBC url('../img/top-arrow.png') no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    border-radius:50%;
    z-index:9999;
    transition:0.5s all ease;
    cursor:pointer;
}
.windowtop.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.no-touch .windowtop:hover {
    background-color: #4B62C0;
    opacity: 1;
}
/*======================
MEDIA QUERIES
========================*/
@media (max-width:1600px) {
    ul.navigation li a{
        padding: 10px 0;
        font-size: 1em;
    }
    ul.navigation li:hover ul {top:85px;}
    ul.quick li a {
        font-size:1em;
    }
    nav ul.navigation li a {
        font-size: 1em;
        padding: 0 12px;
    }
    .textblock {margin: 20% 15% 0 10%;}
    a.title {
        font-size:3em;
    }
}
@media (max-width: 1200px) {
    .containerfull{
        max-width: 1200px;
        width: 100%;
        min-width: 0;
    }
    header{
        margin: 0 20px 0 20px;
    }
    .welcome{
        margin: 0 20px 0 20px;
    }
    #content-block-1{
        margin-bottom: 0;
    }
	#content-block-1, #content-block-2, #content-block-3, #content-block-4 {
		padding:30px 5%;
	}
    #menu-toggle{
        display: block;
        line-height: 4.5em;
        cursor: pointer;
        background: #36bcbc;
        text-align: center;
        color: #fff;
        float: right;
        font-family: 'Dosis',sans-serif;
        text-decoration: none;
        width: 100px;
		font-weight:600;
		font-size:1.2em;
    }
    #menu-toggle.desktop{
        display: none !important;
    }
    #menu-toggle.mobile{
        display: block !important;
    }
    .desktopmenu{
        display: none !important;
    }
    #menu .inner {
        padding:4em 0;
        /*Adjust Padding to reposition Close Button */
    }
    #menu .close {
        background-image: url("../img/close.svg");
        background-position: 75% 25%;
        background-repeat: no-repeat;
        background-size: 4em 4em;
        border: 0;
        content: '';
        display: block;
        height: 4em;
        overflow: hidden;
        position: absolute;
        right: 1em;
        text-align: center;
        text-indent: 8em;
        top: 1em;
        width: 4em;
    }
    #menu ul {
        list-style: none;
        padding: 0;
    }
    #menu li {
        padding: 0;
    }
    #menu li ul{
        display: none;
    }
    /*ADJUST FONT SIZE AND PADDING BELOW FOR MOBILE MENUS WITH MORE ITEMS */
    #menu li a {
        font-family: 'Dosis',sans-serif;
        border: 0;
        display: block;
        font-size: 1.7em; /* Reg: 1.8em*/
        padding: 0.4em 0; /* Reg: 0.5em 0 */
        font-weight:700;
        text-decoration: none;
        color:#fff;
    }
    #menu li a:hover {background:none;}
    .overlay, .support .overlay {
        background: #36BCBC;
        position: relative;
        width: 100%;
        height: auto;
        border-top-right-radius: 0;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        display: block;
        height: 100%;
        margin-top: 5px;
    }
    .number {
        display: block;
        background: #046d8b;
        color: #fff;
        padding: 10px;
        text-align: right;
    }
	#address span{
        display: none;
    }
    #address{
        display: none;
    }
	.number a {color:#fff;}
    .textblock, .support .textblock {
        margin: 0 5%;
        padding: 20px 0;
    }
    #sub .textblock{
        margin-top: 0;
    }
}
@media screen and (max-width:1020px){
    .desktop{
        display: none !important;
    }
    .mobile{
        display: block !important;
    }
    .mobile-button{
        display: block;
        position: absolute;
        margin-top: 10px;
        z-index: 9999;
        width:40px;
        height:40px;
        cursor: pointer;
        background:#008DA9 url('../img/hamburger-menu.png') no-repeat center;
        border-radius:10px;
    }
    .flex{
        display: block;
    }
    .content .column{
        float: none;
        margin: auto;
    }
    .grid1,.grid2,.grid3,.grid4,.grid5,.grid6,.grid7,.grid8,.grid9,.grid10,.grid11,.grid12 {
        width:100%;
        margin-right:0;
    }
	
	header, .welcome {margin-left:2%;margin-right:2%;}
    section, .section{
        margin: 20px 2%;
    }
/*    #content-block-1{
        margin-bottom: 20px;
    }*/
    #content-block-3{
        margin-bottom: 20px;
    }
    #form .column {
        float:none;
        margin:0;
    }
    #form .full, #form .half, #form .twothird, #form .onethird {
        width:98%;margin:0;
    }
    #menu-logo{
        margin: 0 20px 30px 20px;
    }
    #menu-logo .right, #menu-logo .left{
        text-align: center;
    }
    #logo{
        left: 0;
        right: 0;
        width: 60%;
        margin: auto;
        float: none;
        overflow: hidden;
    }
    nav #menu-toggle{
        text-align: center;
    }
    #social{
        display: block;
    }
    #locations{
        display: block;
        position: relative;
        top: 15px;
        margin: 0;
    }
    #locations li{
        margin: 0 5px;
    }
    #quick-links{
        margin: 0;
    }
    #quick-links a{
        line-height: 3em;
    }
    #quick-links li a::after {
        display: none;
    }
    footer{
        text-align: center;
        margin: 20px;
    }
    footer .section{
        margin: 0;
        padding: 30px;
    }
    
    .sy-box{
        display: none;
    }
    .social{
        margin-top: 25px;
    }
}
@media screen and (max-width:767px) {
    #menu-toggle{
        width: 70px;
        line-height: 3.5em;
    }
    #quicklinks a.trans {
        width: 45%;
        display: inline-block;
        margin-bottom: 0px;
    }
	#quicklinks a.trans img {width:100%;}
    .social .fa-lg {
        font-size: 1.1em;
    }
    .social .fa-stack {
        width: 1.7em;
    }
    .social{
        margin-top: 15px;
        margin-right: 0;
    }
    #address{
        font-size: 10px;
    }
}
@media (max-width:650px) {
	.activity {
		width:46%;
		padding:0 2% 15px 2%;
	}
}
@media screen and (max-width:640px) {
    .alignleft, .alignright {
        float:none;
        display:block;
        margin:0 auto 20px auto;
    }
    #header{
        display: none;
    }
    #logo{
        width: 85%;
    }
    #logo img{
        width: 85%;
    }
    a.title {
        font-size:2.5em;
    }
    #menu li a {
        font-family: 'Dosis',sans-serif;
        border: 0;
        display: block;
        font-size: 1.4em; /* Reg: 1.8em*/
        padding: 0.2em 0; /* Reg: 0.5em 0 */
        font-weight:700;
        text-transform: uppercase;
        text-decoration: none;
        color:#fff;
    }
}