@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	--aquamarine: #569BB4;
	--orange: #F65A2A;
	--white: #FFFFFF;
	--smokey-blue: #3593A0;
	--forest-green: #2B4F3E;
	--light-blue: #9BD3DD;
	--pgl-green: #4C9B2F;
	--black: #000000;
	--warning-yellow: #FFFF8F;
}

.container-fluid {
	padding:0;
}
	body{
		background-color: white !important;
		font-family: "Raleway", sans-serif;
		font-weight: 400;
	}


	
	/***** DEFAULT HEADERS *****/
	h1,h2,h3,h4,h5,h6{
		
	}

h1 {
	font-size: 52px;
	font-weight: 700;
	line-height: 60px;
	color: var(--light-blue);
	margin-bottom: 0;
}
	h2{
		font-size: 42px;
		line-height: 56px;
		margin-bottom: 0;
	}
	
	h3{
		font-size: 30px;
		line-height: 36px;
		margin-bottom: 0;
	}
	
	
	
	h4{
		font-size: 25px;
		line-height: 30px;
		margin-bottom: 0;
	}
	h5{
		font-family: Inter, sans-serif;
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 0;
	}

h6 {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 0;
}

p {
	font-family: Inter, sans-serif;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 0;
}

small {
	font-family: Inter, sans-serif;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
}
	ol{}
	ol li{}

	.vr {
		color: black;
		opacity: 100%;
	}
	
	a{color:#00539b; text-decoration:underline;}
	/*a:hover{color:#0a58ca;; text-decoration:underline;}*/
	a, a:focus, a:link, a:visited, a:hover{outline:none;}
	
/***** COMMON GLOBAL STYLES *****/
	em{font-style:italic;}

	.no-gutters{padding:0px; margin:0px;}
	.no-padding{padding:0;}
	
	
        .left{float:left;}
        .right{float:right;}
		.text-left{text-align:left;}
		.text-center{text-align:center;}
		.text-right{ text-align:right;}
		.emphasize{color:#599e2f; font-weight:bold;}
		.underline{text-decoration:underline !important;}
		.numeral{text-transform:uppercase;font-size:1.1em;}
		.currency{font-size:.9em;}
		
		.regular {
			font-weight: 400;
		}
		
		.medium {
			font-weight: 500;
		}
		
		.semi-bold {
			font-weight: 600;
		}
		
		.bold {
			font-weight: 700;
		}
		.no-underline { 
			text-decoration: none; 
			display: inline-block; 
			color: inherit; 
		}
        /*****************  BUTTONS  (Start))******************/
        
        .button,.button:active, .button:link, .button:visited, .button:hover{
			font-family: Inter, sans-serif;
			height: 51px !important;
			font-weight: 600;
			font-size: 18px;
			line-height: 38px;
			width: 134px;
			max-width: 343px;
			text-align:center;
			text-decoration:none;
			margin:0;
			-webkit-border-radius: 4px;
			-moz-border-radius: 4px;
			border-radius: 10px;

		}
		
.button-long , .button-long:active, .button-long:visited, .button-long:hover {
	width: 343px;
}

.input-long {
	width: 343px;
}

.orange-button, .orange-button:hover, .orange-button:active, .orange-button:focus-visible, .orange-button:visited {
	background-color: var(--orange) !important;
	border-color:  var(--orange) !important;
	color: white !important;
}

.green-button, .green-button:hover, .green-button:active, .green-button:focus-visible, .green-button:visited {
	background-color: var(--pgl-green) !important;
	border-color:  var(--pgl-green) !important;
	color: white !important;
}

.white-button, .white-button:hover, .white-button:active, .white-button:focus-visible, .white-button:visited {
	background-color: white !important;
	border-color:  white !important;
	color: black !important;
}

.blue-button, .blue-button:hover, .blue-button:active, .blue-button:focus-visible, .blue-button:visited {
	background-color: var(--light-blue) !important;
	border-color:  var(--light-blue) !important;
	color: black !important;
}

.transparent-button, .transparent-button:hover, .transparent-button:active, .transparent-button:focus-visible , .transparent-button:visited{
	background-color: transparent;
	border-color: white;	
	color: white !important;
	
}


.btn-link, .btn-link:active, .btn-link:hover, .btn-link:focus-visible {
	padding: 0;
	width: unset;
	text-align: start;
	height: unset !important;
}
.text-exsm{
	font-size:11px;
}
.text-sm{
	font-size:15px; line-height:22px;
}
.text-md{
	font-size:20px;
	line-height:28px;
}
.text-lg{
	font-size:27px;
	line-height:35px;
}

.text-italic {
	font-style: italic;
}

.text-danger {
	color: var(--orange) !important;
}

iframe{
	border:none;
}


.page_header {
}

.page_title {
}

.page_body {
}


.hide {
	display: none;
}

.pull-right {
	float: right !important;
}

/**** Colors ******/
.aquamarine {
	color: var(--aquamarine);
}

.smokey-blue {
	color: var(--smokey-blue);
}

.forest-green {
	color: var(--forest-green);
}

.pgl-green {
	color: var(--pgl-green);
}

.black {
	color: black;
}

.white {
	color: white;
}

.light-blue {
	color: var(--light-blue);
}

.orange {
	color: var(--orange);
}


.light-grey {
	color: #8C8C8C;
}

.warning-yellow {
	color: var(--warning-yellow);
}
/******* Backgrounds ***********/

.background-aquamarine {
	background-color: var(--aquamarine);
}

.background-light-blue {
	background-color: var(--light-blue);
}

.background-smokey-blue {
	background-color: var(--smokey-blue);
}

.background-forest-green {
	background-color: var(--forest-green);
}

.background-pgl-green {
	background-color: var(--pgl-green);
}

.background-black {
	background-color: black;
}
.background-orange {
	background-color: var(--orange);
}

.background-sand {
	background-color: #F4F4F4;
}

.background-white {
	background-color: white;
}

.background-vip-blue {
	background-color: #ebf7f9;
}

.background-green-to-black {
	background-image: linear-gradient(var(--pgl-green), #162A13);
}

.section-break {
	height: 13px;
	width: 100%;
	opacity: 100%;
	margin: 0;
	border-color: var(--orange);
}

.overlay::before {
	content: '';
	z-index: 10;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background: linear-gradient(to right, var(--forest-green), white);
}

.hidden {
	display:none;
}

.required:after {
	color: #ff9c00;
	content: "*";
	font-size: 24.82px;
	/* Approximation due to font substitution */
	font-weight: 600;
	text-align: left;
	transform: scaleY(1.0015);
	/* width and height properties ommitted due to transform */
}

.bullet-points {
	font-weight: 600;
}

hr {
	opacity: 1;
}

.text-link {
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: var(--light-blue);
	text-decoration: underline;
}

.no-wrap {
	white-space: nowrap;
}

@media (min-width: 1440px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1164px !important;
	}
	
	
}

@media (max-width: 1440px) {
}

@media (max-width: 1399px) {
	
}

@media (max-width: 820px) {
	h1 {
		font-size: 45px;
		line-height: 52px;
	}

	h2 {
		font-size: 40px;
		line-height: 56px;
		font-weight: 700;
	}

	h3 {
		font-size: 30px;
		font-weight: 600;
	}
}

@media (min-width: 768px) {
	.col-md-2 {
		width: 20.666667%;
	}
	}


	@media (max-width:575px) {

		
		
		.col-2 {
			width: 18.66667%;
		}
		.container {
			padding-left: 25px !important;
			padding-right: 25px !important;
		}

		h1 {
			font-size: 45px;
			line-height: 52px;
		}

		h2 {
			font-size: 40px;
			line-height: 48px;
			font-weight: 700;
		}

		h3 {
			font-family: Raleway, sans-serif;
			font-size: 30px;
			line-height: 36px;
		}

		h4 {
			font-size: 26px;
			line-height: 36px;
		}
		h5 {
			
			font-size: 24px;
			line-height: 28px;
		}

		h6 {
			font-size: 20px;
			line-height: 20px;
		}

		p {
			font-size: 16px;
			line-height: 20px;
		}
		
		small {
			
			line-height: 18px;
		}

		.btn {
			width: 100% !important;
		}

		.button-long {
			width: unset;
		}
	}

