body {
	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #58595B;
}
* {
	box-sizing: border-box;
}
p {
  color: #58595B;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 20px;
  padding: 0;
  text-transform: none;
}
a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  color: #050033;
}
a:hover {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .uk-h1, .uk-h2, .uk-h3, .uk-h4 {
  color: #1D3E6E;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 130%;
  margin: 30px 0 20px;
  padding: 0;
}
h1, .uk-h1 {
  font-size: 45px;
}
h2, .uk-h2 {
  font-size: 40px;
}
h3, .uk-h3 {
  font-size: 27px;
}
h4, .uk-h4 {
  font-size: 24px;
}
.wrapper {
	max-width: 1200px;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
}
.wrapper-small {
	max-width: 1060px;
}
.txt-white {
	color: #fff;
}
.txt-white * {
	color: #fff;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.banner a,
.nav-bar .mod-menu a.menu-last {
  background-color: #EB2426;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  outline: 0 !important;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  opacity: 1;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.banner a:hover,
.nav-bar .mod-menu a.menu-last:hover {
	opacity: 0.9;
	color: #fff;
}
.button.btn-blue {
	background: #1D3E6E;
	font-size: 14px;
	padding: 15px 25px;
}

/* Banner */
.banner .mod-custom {
	min-height: 830px;
	background-size: cover;
	display: flex;
	align-items: end;
	overflow: hidden;
}
.itemid-104 .banner .mod-custom, .itemid-110 .banner .mod-custom, .itemid-111 .banner .mod-custom, .itemid-105 .banner .mod-custom {
    min-height: 530px;
    background-size: cover;
    display: flex;
    align-items: end;
    overflow: hidden;
}
.banner-inner {
	position: relative;
	z-index: 1;
	max-width: 850px;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-right: 170px;
}
.banner-inner p {
	max-width: 440px;
}
.banner-inner::after {
	background: #1D3E6E;
	width: 1000%;
	height: 100%;
	position: absolute;
	content: " ";
	z-index: -1;
	bottom: 0;
	right: 0;	
	transform: translateX(-300px);
}
.banner-inner:before {
	background: #1D3E6E;
	position: absolute;
	content: " ";
	z-index: -1;
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
}

/* Header */
.logo a {
	display: block;
	padding: 12px 0;
}
.top-bar {
	background: #CFC49E;
}
.top-bar .mod-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
	justify-content: end;
}
.top-bar .mod-menu a {
	color: #1D3E6E;
	font-size: 15px;
	padding: 10px 0;
  display: block;
}
.top-bar .mod-menu a:hover {
	color: #EB2426;
}
.nav-bar .mod-menu {
	list-style: none;
	padding: 15px 0 0 0;
	margin: 0;
	display: flex;
	gap: 0;
	justify-content: end;
}
.nav-bar .mod-menu li {
	position: relative;
}
.nav-bar .mod-menu a, .separator {
	display: block;
	color: #1D3E6E;
	font-size: 18px;
	padding: 30px 15px;
}
.nav-bar .mod-menu a:hover {
	color: #EB2426;
}
.nav-bar .mod-menu .current a {
	font-weight: 700;
	color: #EB2426;
}
.nav-bar .mod-menu .nav-item.item-109.current a{
	color:#ffffff;
}
.nav-bar .mod-menu a.menu-last {
	margin-top: 20px;
	margin-left: 20px;
}
.mod-menu__sub {
	position: absolute;
	background: #fff;
	list-style: none;
	padding: 10px 20px;
	width: max-content;
	transition: 0.2s all;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
}
.nav-bar .mod-menu__sub a {
	padding: 10px 15px;
}
.nav-bar .mod-menu li:hover .mod-menu__sub {
	max-height: 500px;
	opacity: 1;
}
.nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 22px;
  width: 30px;
  float: right;
  margin-top: 30px;
}
.nav-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: black;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.nav-toggle:hover {
  cursor: pointer;
}
.uk-offcanvas .mod-menu {
	list-style: none;
	padding: 0;
}
.uk-offcanvas .mod-menu a {
	font-size: 20px;
	padding: 10px;
	display: block;
}
.uk-offcanvas .mod-menu .mod-menu__sub {
	position: relative;
	opacity: 1;
	max-height: unset;
	background: none;
	padding-top: 0;
}
.uk-offcanvas .mod-menu .mod-menu__sub a {
	font-size: 18px;
}
.uk-offcanvas-bar {
	background: #1D3E6E;
}

/* Homepage intro */

/*.itemid-101 .main {
	background-image: url('../images/home-intro-bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-top: 20px;
	margin-bottom: 20px;
}*/
.main {
	background-image: url('../images/home-intro-bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-top: 20px;
	margin-bottom: 20px;
}
.itemid-101 .main .com-content-article {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	background: #CFC49E;
	padding-top: 40px;
	padding-bottom: 50px;
}
.footer-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}
.footer.card {
	flex-basis: calc(16.666% - 30px);
}
.footer.card:nth-child(1) {
	flex-basis: calc(50% - 30px);
}
.footer.card .card-header {
	font-size: 16px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 5px;
}
footer .mod-menu {
	list-style: none;
	padding: 0;
}
footer .mod-menu a {
	font-size: 16px;
	color: #fff;
}
footer .mod-menu a:hover {
	color: #1D3E6E;
}
.cright {
	font-size: 14px;
	color: #1D3E6E;
	text-align: center;
	margin-bottom: 0;
	border-top: 1px solid #1D3E6E;
	padding-top: 30px;
}
.cright a {
	color: #1D3E6E;
}

/* CTA */
.bottom-f-block, .bottom-c-block {
	background: #EB2426;
	padding: 50px 0;
}
.itemid-104 .bottom-c-block {
	background: #17376b;
	padding: 50px 0;
}

.itemid-104 .bottom-f-block p, .itemid-104 .bottom-c-block p, .itemid-104 .bottom-f-block h2, .itemid-104 .bottom-c-block h2,{
  color:#ffffff!important;
}
.itemid-104 .bottom-f-block {
    padding: 100px 0;
    position: relative;
    background:initial;
}
.itemid-104 .bottom-f-block::before, .itemid-110 .bottom-d-block::before, .itemid-111 .bottom-d-block::before,.itemid-105 .bottom-d-block::before {
    background: #1D3E6E;
    position: absolute;
    content: " ";
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    width: 67%;
    height: 100%;
    right: 0;
    bottom: 0;
}
.sia-cta p{
    padding-left: 135px;
    max-width: 100%!important;
    padding-top: 50px;
}

.cta h3 {
	margin-top: 0;
	margin-bottom: 10px;
}

/* Bottom A cards */

.bottom-a-block {
	padding: 80px 0;
	position: relative;
}

.bottom-a-block:before {
	background: #1D3E6E;
	position: absolute;
	content: " ";
	z-index: -1;
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
	width: 55%;
	height: 100%;
	left: 0;
	bottom: 0;
}
.bottom-a .card-body {
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}

/* Testimonial */
.bottom-b-block {
	background: #CFC49E;
	padding: 100px 0;
	text-align: center;
}
.testi em, .testi p {
	color: #1D3E6E;
	max-width: 730px;
	margin-left: auto;
	margin-right: auto;
}
.testi img {
	margin-top: 80px;
}
.testi img.mx-auto {
	margin-top: 0;
}

/* Assitance section */
.bottom-d-block {
	padding: 100px 0;
	position: relative;
}
.bottom-d-block::before {
	background: #1D3E6E;
	position: absolute;
	content: " ";
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
	width: 60%;
	height: 100%;
	right: 0;
	bottom: 0;
}
.nass p {
	max-width: 340px;
}
.na-cta {
	text-align: center;
}
.na-cta h3 {
	font-weight: 400;
	margin: 0;
}

/* FAQs */
.bottom-e-block {
	padding-top: 50px;
	padding-bottom: 120px;
}
.bottom-e-block .uk-grid > div:first-child {
	width: 100%;
}
.faq .card-body {
	max-width: 470px;
}
.uk-accordion-title {
	color: #1D3E6E;
	font-weight: 600;
	font-size: 25px;
	border-top: 1px solid #C0D0DE;
	padding-top: 20px;
	margin-top: 0;
}
.uk-open .uk-accordion-title {
	color: #EB2426;
}
/* Events section */
.rs_events_container li {
    padding: 20px !important;
    overflow: hidden;
}
.rs_event_detail {
    background: none repeat scroll 0 0 #fcfaf6 !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none!important;
    margin: 0 0 15px !important;
    padding: 5px 10px !important;
}
.rs_event_detail:hover {
    background: #fcfaf6 none repeat scroll 0 0 !important;
}
.rsepro-title-block {
    font-size: 27px;
    font-weight: bold;
	line-height:1.4;
}
.rsepro-title-block a, .rsepro-event-location-block a{
		color:#1D3E6E;
}
.rsepro-title-block a:hover, .rsepro-event-location-block a:hover{
		color:#EB2426;
}
#rs_event_show{
    background: rgba(255,255,255, 0.8);
    padding: 20px;
}
#rs_event_show .dropdown-menu {
   
    list-style-type: none;
}
#rsepro-event-date, #rsepro-event-location{
    padding: 15px 0;
}
#rsepro-event-sharing{
	padding-bottom:15px;
}
.rsepro-event-sharing-button{
	border-radius:3px!important;
}
.rsepro-map-directions {
    text-align: left;
}
.rsepro-map-directions h3{
	margin-top:0px;
}
.rs_subscribe input, .rs_subscribe select, .com-users-login input, .com-users-registration input, .com-users-profile__edit input, .com-users-profile__edit select{
    font-size: 20px;
    padding: 10px;
}
fieldset{
	border:0px;
}
.rsepro-category .card{
    min-height: 200px;
    text-align: center;
    background: #fcfaf6;
    padding: 60px 20px;
    border-radius: 5px;
	border:2px solid #1D3E6E;
}
.rsepro-category .card a:hover{
	color:#ea2328;
}
.uk-input, .uk-select:not([multiple]):not([size]) {
    height: 50px!important;
    vertical-align: middle;
    display: inline-block;
}
/* RESPONSIVE */
@media (max-width: 960px) {
	h1, .uk-h1 {
		font-size: 34px;
	}
	h2, .uk-h2 {
		font-size: 30px;
	}
	h3, .uk-h3 {
		font-size: 24px;
	}
	.rsepro-category-row3 {
    float: left;
    width: 100%;
}
	.bottom-a-block:before, .bottom-d-block:before, .itemid-104 .bottom-f-block::before, .itemid-110 .bottom-d-block::before, .itemid-111 .bottom-d-block::before,.itemid-105 .bottom-d-block::before {
		display: none;
	}
	.mobile-blue {
		background: #1D3E6E;
		margin-left: 30px;
		padding-left: 15px;
    padding-right: 15px;
	}
	.nass p {
		max-width: 100%;
	}
	.sia-cta{
		padding:30px;
	}
	.sia-cta p{
		padding:0;
	}
	.na-cta {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.nass .uk-grid > div:first-child {
		margin-bottom: 30px;
	}
	.itemid-104 .bottom-f-block {
		padding:50px 0;
	}
	.banner .mod-custom {
		min-height: 600px;
      background-position: center top;
	}
	.banner-inner {
		padding-right: 100px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.bottom-a-block, .bottom-b-block, .bottom-d-block, .bottom-e-block {
		padding: 50px 0;
	}
	.testi img {
		margin-top: 40px;
	}
	.cta .button {
		margin-top: 30px;
	}
	.footer.card {
		flex-basis: calc(33% - 30px);
	}
	.footer.card:nth-child(1) {
		flex-basis: 100%;
	}
	#rsepro-event-controls ul{
		padding-left:0;
		padding-top:30px;
	}
}
@media (max-width: 640px) {
	h1, .uk-h1 {
		font-size: 30px;
	}
	h2, .uk-h2 {
		font-size: 26px;
	}
	h3, .uk-h3 {
		font-size: 22px;
	}
	.uk-accordion-title {
		font-size: 20px;
	}
	.logo-img {
		max-width: 200px;
	}
	.banner-inner {
		padding-right: 70px;
	}
	.footer.card {
		flex-basis: 100%;
		text-align: center;
	}
}