/* html { 
  background: url(images/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
} */

* {
    box-sizing: border-box;
}

.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	vertical-align: top;
}

.row::after {
    content: "";
    clear: both;
    display: block;
}

/* This is for mobile phones */
[class*="col-"] {
	float: left;
    width: 100%;
	display: flex;
	flex-direction: column;

}

/* Tablets */
@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}

/* Desktop */
@media only screen and (min-width: 768px) {
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;
	}
}

.header {
    background-color: #5695A4;
    color: #E1F4F9;
    padding: 10px;
    font-family: 'Oswald', sans-serif;
}

.nav {
	background-color: #b6dde7;
}

.body {
    background-color: gray;
}

.footer1 {
	background-color: #5695A4;
}

.footer2 {
	background-color: #b6dde7;
}

.borderbox {
    border-bottom: 10px solid;
     border-top: 10px solid;
    background: url(/images/concrete_seamless.png) repeat 0 0;
    border-color: #b6dde7;
    margin: 5px;
    box-shadow: 3px 3px 5px black;
}

/*Login Form CSS */

.login_form {
    font-family: 'Ubuntu', 'Lato', sans-serif;
    font-weight: 400;
    /* Size and position */
    width: 100%;
	position: relative; 
    padding: 5px; 
    overflow: hidden;

    /* Styles */
    background: #111; 
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 
        inset 0 0 2px 1px rgba(255,255,255,0.08), 
        0 16px 10px -8px rgba(0, 0, 0, 0.6);
}

.login_form label {
    /* Size and position */
    width: 50%;
    float: left;
    padding-top: 9px;

    /* Styles */
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 #000;
    text-indent: 10px;
    font-weight: 700;
    cursor: pointer;
}

.login_form input[type=text],
.login_form input[type=password] {
    /* Size and position */
    width: 50%;
    float: left;
    padding: 8px 5px;
    margin-bottom: 10px;
    font-size: 12px;

    /* Styles */
    background: linear-gradient(#1f2124, #27292c);    
    border: 1px solid #000;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1);
    border-radius: 3px;

    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: #fff;

}

.login_form input[type=text]:hover,
.login_form input[type=password]:hover,
.login_form label:hover ~ input[type=text],
.login_form label:hover ~ input[type=password] {
    background: #27292c;
}

.login_form input[type=text]:focus, 
.login_form input[type=password]:focus {
    box-shadow: inset 0 0 2px #000;
    background: #494d54;
    border-color: #51cbee;
    outline: none; /* Remove Chrome outline */
}

.login_form p:nth-child(3),
.login_form p:nth-child(4) {
    float: left;
    width: 50%;
}

.login_form label[for=user_rememberme] {
    width: auto;
    float: none;
    display: inline-block;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    text-indent: 2px;
}

.login_form input[type=checkbox] {
    margin-left: 10px;
    vertical-align: middle;
}

.login_form input[type=submit] {
    /* Width and position */
    width: 100%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #38a6f0;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.login_form input[type=submit]:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.login_form input[type=submit]:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}

.no-boxshadow .login_form input[type=submit]:hover {
    background: #2a92d8;
}

/* Gradient line */
.login_form:after {
    /* Size and position */
    content: "";
    height: 1px;
    width: 33%;
    position: absolute;
    left: 20%;
    top: 0;

    /* Styles */
    background: linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
}

/* Small flash */
.login_form:before {
    /* Size and position */
    content: "";
    width: 8px;
    height: 5px;
    position: absolute;
    left: 34%;
    top: -7px;
    
    /* Styles */
    border-radius: 50%;
    box-shadow: 0 0 6px 4px #fff;
}

.login_form p:nth-child(1):before{
    /* Size and position */
    content: "";
    width: 250px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 45px;

    /* Styles */
    transform: rotate(75deg);
    background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    pointer-events: none;
}

.no-pointerevents .login_form p:nth-child(1):before {
    display: none;
}

/* End Login Form CSS */

.loginlink {
    /* Width and position */
    width: 100%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #38a6f0;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
	text-decoration: none;
}

.loginlink:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.loginlink:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}

.center {
	text-align: center;
}

.right {
	clear: both;
	float: center;
}

.centerbox {
	display: flex;
	align-items: center;
    justify-content: center;
	text-align: center;
}

.home:hover {
	background: red; /* For browsers that do not support gradients */
	background: -webkit-linear-gradient(red, yellow, green); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(red, yellow, green); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(red, yellow, green); /* For Firefox 3.6 to 15 */
	background: linear-gradient(red, yellow, green); /* Standard syntax */
}

.submit:hover {
	background-color: gray;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.5) 35px, rgba(255,255,255,.5) 70px);
}

h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 65px;
	font-style: normal;
	font-variant: normal;
	font-weight: 800;
	line-height: 52px;
}
h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	margin: 0px;
	padding: 0px;	
}
h4 {
	font-family: 'Pacifico', cursive;
	font-size: 24px;
	padding: 0px;
    	margin: 0px;
    	color: #3c6772;
}
h5 {
	font-family: 'Merriweather', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 15.4px;
}
p {
	font-family: 'Merriweather', serif;
	font-size: 14px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;
}

.small {
	font-size: 12px;
}

ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #b6dde7;
	text-align: center;
	display: flex;
	align-items: center;
    justify-content: center;
}

ul.topnav li {float: left;}

ul.topnav li a {
    display: block;
    color: #5695A4;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
background-color: #3c6772;
color: white;
}

ul.topnav li a.active {
	background-color: #447783;
	color: white;
}

ul.topnav li.right {float: right;}

@media screen and (max-width: 600px){
    ul.topnav li.right,
    ul.topnav li {float: none;}
}


button {
    background-color: #3c6772; 
    border: 1px solid #FFFFFF;
    color: #E1F4F9;
    padding: 3px;
    text-align: center;
    text-decoration: none;

    font-size: 16px;
    font-family: 'Merriweather', sans-serif;
	cursor: pointer;
	float: left;
}

.button {
    background-color: #3c6772; 
    border: 1px solid #FFFFFF;
    color: #E1F4F9;
    padding: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: 'Merriweather', sans-serif;
	cursor: pointer;
}

.button:hover {
	transition-duration: 0.5s;
	background-color: #b6dde7;
	color: #5695A4;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.groupleft {
	float: left;
}

/* Light blue glow when input is selected */
input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}
 
input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(81, 203, 238, 1);
}
/*end*/

.login {
	color: #E1F4F9;
}

.nochange:visited {
	color: #E1F4F9;
}

.nochange:link {
	color: #E1F4F9;
}

.nochange {
	color: #E1F4F9;
}

.header.link: {
	color: #E1F4F9;
}


