/* Minimal CSS Reset */
html {box-sizing: border-box; font-size: 16px;}
*, *:before, *:after { box-sizing: inherit;}
body {font-family: arial, helvetica, sans-serif;}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {list-style: none;}
p { margin: 0; line-height: 1.75em; font-size: 1em; /* padding-bottom: 1.5em; */}
img {max-width: 100%; height: auto;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;
}
/* End reset */

a {
	color: #1D68AB;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

.topnav {
  overflow: hidden;
  background-color: #2374b5;
  border-radius: 10px;
  background: url(../img/nav-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.25em;
  margin-right: 1.5em;
  border-radius: 5px;
  text-shadow: 0 1px 1px #0E3E68;
  text-transform: lowercase;
}

.topnav a:hover {
  background-color: #bbc9a3;
  color: #fff;
  background-color: #59b2da; /* For browsers that do not support gradients */
  background-image: linear-gradient(190deg, #8de0f2, #59b2da, #8de0f2);
}

.topnav a.active {
  background-color: #bbc9a3;
  color: white;
  background-color: #59b2da; /* For browsers that do not support gradients */
  background-image: linear-gradient(190deg, #8de0f2, #59b2da, #8de0f2);
}

.topnav .icon {
  display: none;
}

/* 4 column grid
================ */

.row {width: 100%; height: 100%; margin-bottom: 1em;}
.row:after {content: ""; display: table; clear: both;}
.col {
  float: left;
  margin: 0 0 0 1.6%;
  display: inline;
}

.col:first-child { margin-left: 0; }
.col:last-child { float: right;}
.col.full { width: 100%; }
.col.half { width: 49.2%; }
.col.one-third { width: 32.26%; }
.col.two-thirds { width: 66.1%; }
.col.one-fourth { width: 23.79%; }
.col.three-fourths { width: 74.6%;}
.mbzero { margin-bottom: 0%;}

@media screen and (max-width: 768px) {
  .col.full,
  .col.half,
  .col.one-third,
  .col.two-thirds,
  .col.one-fourth,
  .col.three-fourths {
    margin-left: 0;
    margin-bottom: 1em;
    width: 100%;
  }
  .col:last-child { margin-bottom: 0; }

  .topnav a {
    margin-right: 0;
  }

  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* End 4 column grid
==================== */


/* Begin page styles
==================== */

 body {
   background-color: #cfd5de;
   font-family: arial, helvetica, sans-serif;
   color: #6B7C93;
}

.header {
    border-radius: 10px;
    min-height: 250px;
    background-color: #175ba2;
    background: url(../img/img05.jpg) no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    margin-bottom: 0.5em;
    border-top: solid 1px #96D0F7;
	  border-bottom: solid 1px #0C3459;
}
h1 {
  margin: 80px 0 0 60px;
	font-size: 3.8em;
	text-shadow: 0 2px 2px #0E3E68;
}

h2,h3,h4 {
	text-transform: lowercase;
	text-shadow: 0 2px 0 #FFFFFF;
}
h2 {
	font-size: 2.25em;
}

h2,h3,h4 {
	color: #001739;
	margin: 0 0 1em 0 ;
}

h2,h3,h4 {
	color: #001739;
	margin-bottom: 1em;
}

h2 {
	font-size: 2.25em;
}
h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}
.main {
  padding: 2em 2em 6em 2em;
  border: 2px solid #fff;
  border-radius: 10px;
  background: #eaeef2;
}

.wrap {
    margin: 6em auto;
    width: 96%;
    max-width: 1200px;
    min-width: 320px;
    height: auto;
    background-color: #cfd5de;
    background-size: 100%;
    /* padding: 1em; */
    }

.footer {
  background: #cfd5de;
  margin: 50px 0 120px 0;
	text-align: center;
	color: #626E7F;
	text-shadow: 0 1px 0 #FFFFFF;
}

ul {
	list-style: none;
}

ul li {
	padding: 25px 0 25px 0;
	border-top: dotted 1px #C5CDD8;
}

ul li.first {
	border-top: 0;
	padding-top: 0;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
p { padding: 0 0 1em 0;}


