/* RESET
----------------------------------------------------------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video  { 
	font-family: 'Futura PT', 'Gill Sans', 'Segoe UI', Arial, sans-serif;
	font-size: 100%; 
	font-weight: inherit; 
	font-style: inherit; 
	vertical-align: baseline; 
	white-space: normal;
	margin: 0; 
	padding: 0; 
	border: 0; 
	outline: 0;
	background: transparent; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
	display: block; }
								  
ol, ul { list-style: none; }

blockquote, q { quotes: none; }

:focus { outline: 0; }

table { 
	border-collapse: collapse; 
	border-spacing: 0; }

:root {
	--body-font-family: 'Futura PT', 'Gill Sans', 'Segoe UI', Arial, sans-serif;
	--headings-font-family: 'Futura PT', 'Gill Sans', 'Segoe UI', Arial, sans-serif;
	--card-cap-color: #033956;
	--heading-color: #033956;
	--link-color: #000;
}
	
*, :before, :after {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #22262a;
  background-color: #033956;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #0000;
  margin: 0;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 30px;
}

.mceContentBody em,
.com-content-article em {
	font-style: italic;
}

.mceContentBody ol,
.com-content-article ol {
    margin-top: 0;
    margin-bottom: 1rem;
	list-style-type: decimal; 
	list-style-position: inside;
    padding-left: 2rem;
}

.mceContentBody ul,
.com-content-article ul {
    margin-top: 0;
    margin-bottom: 1rem;
	list-style-type: disc; 
	list-style-position: inside;
    padding-left: 2rem;
}

.mceContentBody dl,
.com-content-article dl {
    margin-top: 0;
    margin-bottom: 1rem;
	list-style-type: decimal; 
	list-style-position: inside;
}

@media (width >= 1200px) {
  h1, .h1 {
    font-size: 72px;
  }
}

h2, .h2 {
  font-size: 24px;
}

@media (width >= 1200px) {
  h2, .h2 {
    font-size: 48px;
  }
}

h3, .h3 {
  font-size: 20px;
}

@media (width >= 1200px) {
  h3, .h3 {
    font-size: 36px;
  }
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  vertical-align: baseline;
  font-size: .75em;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

img, svg {
  vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

input, button, select, optgroup, textarea {
  font-family: 'Futura PT', 'Gill Sans', 'Segoe UI', Arial, sans-serif;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.btn {
	display: inline-block;
	font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 24px;
    position: relative;
    text-transform: uppercase;
}

.fade {
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  transition: height .35s;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width .35s;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top-color: currentColor;
  border-bottom: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropdown-toggle:empty:after {
  margin-left: 0;
}

.container-section {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (width >= 1920px) {
	.container-section {
		padding-left: 0;
		padding-right: 0;
	}
}

.grid-child {
  width: 100%;
  display: flex;
}

.footer .grid-child {
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.footer a:not(.btn), .footer .btn-link {
    color: currentColor;
}

.container-component {
	flex-direction: column;
}

.container-component > :first-child:not(:empty), .container-sidebar-left > :first-child, .container-sidebar-right > :first-child, .container-component > * + * {
  margin-top: 64px;
}

.blog-items {
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
  display: flex;
}

@media (width >= 768px) {
  .blog-items.columns-4 > div {
    width: 50%;
  }
}

@media (width >= 992px) {
  .blog-items.columns-2 > div {
    width: 50%;
  }

  .blog-items.columns-3 > div {
    width: 33.3333%;
  }

  .blog-items.columns-4 > div {
    width: 25%;
  }
}

.blog-item {
  flex-direction: column;
  padding: 0 15px 30px;
  display: flex;
  overflow: hidden;
}

.blog-item h2 {
	font-size: 24px;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
}

.page-item {
	padding-right: 8px;
	padding-bottom: 8px;
}

.page-link {
	background: linear-gradient(90deg, #145DA3 -12.29%, #1284C1 103.8%);
	border-radius: 4px;
	color: #fff;
	display: flex;
	font-size: 12px;
	font-weight: bold;
	height: 48px;
	width: 48px;
	justify-content: center;
	align-items: center;
	line-height: 48px;
	position: relative;
}

.page-link:after {
	content: "";
	background: 0 0;
	border-radius: 0 0 2px 2px;
	height: 2px;
	margin: auto;
	transition: all .2s, background-color .2s;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.page-link:hover, .active .page-link {
	background: #033956;
	color: white;
}

.page-link:hover:after, .active .page-link:after {
	background: #FAE00E;
}

.disabled .page-link {
	background: #BFBFBF;
}