@charset "utf-8";

p{
	margin: 0;
}
.text{
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	color: dimgray;
}
.centered_text{
	font-family: 'Lato', sans-serif;
	line-height: 20px;
	text-align: center;
	color: dimgray;
}
.footer_text{
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: white;
}
.footer_text a{
	font-family: 'Lato', sans-serif;
	line-height: 20px;
	color: #fcb567;
	font-weight: bold;
	text-decoration: none;
}
.spaced_text{
	font-family: 'Lato', sans-serif;
	line-height: 25px;
}
.text_header{
	font-family: 'Lato', sans-serif;
	line-height: 20px;
	font-size: 15px;
	text-align: right;
}
.text_span{
	font-family: 'Lato', sans-serif;
	line-height: 20px;
	font-weight: bold;
	color: #014976;
}
.text_span a{
	font-family: 'Lato', sans-serif;
	line-height: 20px;
	font-weight: bold;
	color: #014976;
	text-decoration: none;
}
.heading{
	font-family: 'Lato', sans-serif;
	color: #014976;
	margin-bottom: 10px;
	margin-top: 0px;
}
.heading2{
	font-family: 'Lato', sans-serif;
	text-align: center;
	color: #014976;
	margin-bottom: 10px;
}
.footer_heading{
	font-family: 'Lato', sans-serif;
	color: #fff;
	margin-top: 0px;
	margin-bottom: 10px;
}
.list{
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	list-style-type: none;
	padding: 0px;
}
.list2{
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	list-style-type: none;
	margin-top: 15px;
	margin-bottom: 15px;
}
.list3{
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	color: #4f719a;
	list-style-type: disc;
}
.list3 li{
	padding-bottom: 10px;
}
.list4{
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	color: #014976;
	list-style-type: disc;
	text-align: left;
	margin-top: 1em;
	margin-bottom: 1em;
}
.list_span{
	color:dimgray;
}
.cta_list_left{
	font-family: 'Lato', sans-serif;
	margin: 0px 0px 0px 30px;
	padding: 0px;
	float: left;
}
.cta_list_left li{
	display: inline-block;
	margin-right: 30px;
	color: #014976;
	line-height: 35px;
	height: 35px;
	font-family: 'Lato', sans-serif;
	list-style: none;
	font-size: 14px;
}
.cta_list_right{
	font-family: 'Lato', sans-serif;
	margin: 0px 30px 0px 0px;
	padding: 0px;
	float: right;
}
.cta_list_right li{
	display: inline-block;
	margin-left: 15px;
	color: #014976;
	line-height: 35px;
	height: 35px;
	font-family: 'Lato', sans-serif;
	list-style: none;
	font-size: 22px;
}
.cta_list_right li a{
	text-decoration: none;
	color: #014976;
}
.fa-check-circle{
	color: #82C156;
}
.fa-chevron-circle-right{
	color: #82C156;
	font-size: 10px;
}
.fa-check-circle-o{
	color: #82C156;
}
/*-----------------------------------------------------KEY FRAMES--------------------------------------*/

@keyframes fadeinright {
    from { opacity: 0; transform: translateX(20px);}
    to   { opacity: 1; transform: translateX(0);}
}

@keyframes fadeinleft {
    from { opacity: 0; transform: translateX(-20px);}
    to   { opacity: 1; transform: translateX(0);}
}

@keyframes fadeindown {
    from { opacity: 0; transform: translateY(-20px);}
    to   { opacity: 1; transform: translateY(0);}
}

@keyframes fadeinup {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}