/* --------------------------------
PRIMARY STYLES
-------------------------------- */
*, *::after, *::before { box-sizing: border-box; }
body {
	font-family: sans-serif;
	font-weight: normal;
	line-height: 1;
	color: black;
}

h1, h2, h3, h4 {
	font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
	margin-bottom: 1em;
	color: #003980;
}
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 16px; }

table { width: 100%; }
th, td { font-size: 14px; line-height: 1; }

ul, ol, p { 
	font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 2em;
}

a { 
	transition: all .5s ease;
	text-decoration: none;
}
a:hover {  }

b, strong { font-weight: 600; }
i, em { font-style: italic; }

/* --------------------------------
EFFECTS
-------------------------------- */
.txt-shadow { text-shadow: 1px 1px 40px black; }
.bx-shadow,
.bx-shadow-hover:hover {
	-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
	box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2);
}
.opacity-hover:hover { opacity: .5; }

/* --------------------------------
BUTTONS
-------------------------------- */
.btns { cursor: pointer; }

.btn-more {
	display: inline-block;
	background: #FFCC00;
	padding: 1em 2em;
	color: #003980;
	font-weight: 700;
	border-radius: .5em;
}
.btn-more:hover {
	background: #003980;
	color: white;
}

/* -------------------------------- 
VIDEO
-------------------------------- */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------
ARTICLE & SECTIONS
-------------------------------- */
article { overflow: hidden; }
section { 
	position: relative;
	width: 100%;
	line-height: 0;
	padding: 2em 0;
}
section ul,
section ol { margin: 2em; }
section ul { list-style: disc; }
section ol { list-style: numeric; }

.container { margin: 0 auto; position: relative; }
.inner { padding: 0 2em; }

.desktop-hide {}
.desktop-show { display: none; }

.table-align { display: table; width: 100%; height: 100%; }
.table-cell-align { display: table-cell; vertical-align: middle; }
.table-cell-align.bottom { vertical-align: bottom; }

.last { margin-bottom: 0 !important; }
.align-h { height: 100%; }
.center { text-align: center; }
.right { text-align: right; }

/* --------------------------------
MEDIA QUERIES
-------------------------------- */
@media screen and (min-width: 35.5em) {
	.container { width: 568px; }
}
@media screen and (min-width: 48em) {
	.container { width: 768px; }
}
@media screen and (min-width: 64em) {
	.container { width: 1024px; }

	.desktop-hide { display: none; }
	.desktop-show { display: block; }

	h1 { font-size: 70px; }
	h2 { font-size: 50px; }
	h3 { font-size: 32px; }
	h4 { font-size: 24px; }

	th, td,
	ul, ol, p { font-size: 16px; }

	section { padding: 4em 0; }
}
@media screen and (min-width: 80em) {
	.container { width: 1200px; }
}

/* IE11
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop,
	[data-aos^=fade][data-aos^=fade],
	[data-aos^=zoom][data-aos^=zoom] { opacity: 1; }
}*/