/*COLORS
#007299
rgb(0, 114, 153)

#8DB8C9
rgb(141, 184, 201)

#54565B
rgb(84, 86, 91)

#54565B
rgb(159, 103, 44)


d1d0cer
rgb(209, 208, 206)


a8a8aa
rgb(168, 168, 170)

*/

/*RESETS*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html,body{
    margin: 0;
    padding:  0;

}
body{
   font-size: 16px; /*Base font here*/ 
	/* font-family: "Open Sans"; */
	font-family: "Open Sans";
	color: rgb(0, 114, 153);
}
img{
    border: none;
    display:  block;
	max-width: 100%;
}
.inside{
	padding: 1em;
}
h1,h2,h3{
	font-weight: 300;
}
/*LAYOUT CLASSES*/
.cf{
    clear: both;
}
.cf:after{
    content: "";
    display: table;
    clear: both;
}
.contain{
    max-width: 1700px;/*Container width here*/
	width: 100%;
    margin: auto;
}
.contain:after{
    content: "";
    display: table;
    clear: both;
}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex_col{
	display: flex;
	flex-direction: column;
}
.flex_even > *{
	flex-grow: 1;
	flex-basis: 0;
}

.vh{  
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
}

H2{
	font-size: 2.25rem;
}
.secondary_main h1,
.secondary_main h2,
.secondary_main h3,
.secondary_main h4{
	margin-bottom:  0;
	font-weight: 500;
	
}
.secondary_main h1 + p,
.secondary_main h2 + p,
.secondary_main h3 + p,
.secondary_main h4 + p{
	margin-top:  0.5em;
	
}

.secondary_main H1{
	font-size: 2.75rem;
	
}
.secondary_main H2{
	font-size: 2.25rem;
	color: #5F9DB4;
}
.alert{
	background: #007299;
	color: #FFF !important;
	padding: 0.25em;
	text-align: center;
	box-shadow: 0 0 2em rgba(0, 0, 0,0.3) inset;
	font-size: 1.25em;
}
/*MAIN LAYOUT*/

.padded_table td{
	padding: 0.5em;
}
.padded_table tr:nth-child(even){
	background-color: #eeeeee;
}
#wrapper{
	position: relative;
}

header{
	z-index: 5;
	/*background: linear-gradient(180deg,  rgba(255, 255, 255, 1.0) 20%, rgba(255, 255, 255,0.8) 70%, rgba(255, 255, 255, 0) 100% );*/
    position: relative;
	background: #FFF;
/*
	position: sticky;
	position: absolute;
*/
	width: 100%;
    top: 0;
	transition: background 0.25s;
}
header.shrinky{
	position: fixed;
	background: #FFF;
}

header #logo, header #top_nav{
	
}
    #logo{
		width: 400px; 
		float: left;
		padding: 0.5em 0;
    }  
        #logo img{
            margin: auto;
			max-width: 100%;
			
        }
	#menu_btn, #login_btn{
        display: none;
        float: right;
   
        text-align: center;
        padding: 0.5em 0.5em;
        font-size: 1.25em;
		cursor: pointer;
    }
    #menuBtn{
       
    }
    #loginBtn{
      
    }
    nav{
        z-index: 2;
        right: 0;
        bottom: 0; 
		width: calc(100% - 400px);
		float: right;
		align-self: center;
    }
#nav_contain{
	display: flex;
    height: 100%;
    position: relative;
    clear: both;
}
       
#main{
    position: relative;
}
.content_btn{
	
	background-color: #007299;
	color: #FFF;
	padding: 0.75em;
	display: inline-block;
	border-radius: 10px;
	text-decoration: none;
	border: 4px solid #007299;
	transition: background 1s, color 1s, border 1s;
	margin: 0.25em 0;
}
.content_btn:hover,.content_btn:focus{
	color: #54565B;
	border: 4px solid #54565B;
	background: #FFF;

}
.secondary_main{
	background-color: #FFF;
	padding: 2em;
	min-height: 80vh;
}
    aside{
        position: absolute;
        z-index: 3;
        color: #FFF;
        background-color: rgba(141, 184, 201, 0.8);
        width: 300px;
        top: calc(50% - 250px);
        left: 2em;
   		
		padding: 1em 2em;
}
	aside a{
		color: #FFF;
	}
	aside input{
		padding: 0.5em;
		border-radius: 5px;
		border: none;
	}
    #banner{
        background-color: #54565B;
    }
#banner .slides > li > *::before, .page_header::before {    
      content: "";
/*
    background: linear-gradient(
180deg
, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255,0.75) 20%, rgba(255, 255, 255, 0) 60% );
*/
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
}
	@keyframes fadein {
	from { opacity: 0.2;}
    to   { opacity: 1;}
}
@keyframes popin{
	from {  opacity: 0;
			transform: scale(0.75);}
    to   { opacity: 1;}
}

	.content_img{
		max-width: 450px; 
		border-radius: 50%;
		animation: popin 1s;
		padding: 2em;
		width: 100%;
	}
	.flex_vcenter_text{
		display: flex;
		align-items: center;
		text-align: center;
	}
	.flex_vcenter{
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
.flex_rreverse{
	flex-direction: row-reverse
}


.page_header{
	position: relative;
	padding-top: 0em;
	animation: fadein 4s;
}
.page_header img{
	width: 100%;	
}
.icon_banner > li a{
	text-align: center;
	display: block;
	padding: 2em 0.5em;
	font-size: 1.25em;
	color: #007299;
	text-decoration: none;
	transition: color 0.5s, box-shadow 0.5s;
}
.icon_banner > li a:hover{
	color: #54565B;
	box-shadow: 0 0 2em rgba(209, 208, 206,0.7) inset;
}
.icon_banner > li a:focus{
	border: 2px solid #666;
}
.icon_banner .fa, .icon_banner .fas, .icon_banner .fab, .icon_banner .far{
	font-size: 5rem;
}
.news_title a{
	color: #007299;
	font-size: 1em;
	text-decoration: none; 
	padding: 0.5em;
	display: block;
}
/*		.our_people{
			display: grid;
			grid-template-columns: auto auto auto;
			  grid-template-rows: auto; 
			  column-gap: 1em;
			  row-gap: 1em;
			 justify-items: center;
			width: 100%;
		}
		*/
.our_people{
	align-content: center;
    justify-content: space-evenly;

	text-align: center;
}
.our_people img{
	margin: auto;
}
.our_people > *{
	flex-basis: 30%;
}
.our_people p strong{
			display: block;
			font-size: 1.5em;
			font-weight: 500;
		}
.our_people_table{
	table-layout: fixed;
}
.our_people_table td, .our_people_table th{
	padding: 0.5em;
	display: block;
	float: left;
	font-size: 1.1em;
}
.our_people_table th{
}
.promo_boxes .box{
	margin: 1em; 
	display: block;
	padding: 1em;
}

.promo_boxes{
	margin: 1em auto;
	display: flex;
}
.promo_text{
	margin: 0 1em 1em 0;
    position: absolute;
    background: rgba(0, 114, 153,0.8);
    padding: 1em;
    color: #FFF;
    left: 0;
	bottom: 1em;
	transition: all 1s;
	max-width: 300px;
	display: block;

	width: 100%;

	
}
.promo_text p{
	margin: 0;
}
.promo_boxes .box:hover .promo_text{
	background-color: rgba(168, 168, 170,0.9);
	color: #FFF;
}




a.box{
	text-decoration: none;
}
    .box{
  		flex-grow: 1;
		flex-basis: 0;
		margin: 0.5em;
        overflow: hidden;
		position: relative;
    }

.box img{
	max-width: none;
	display: block;
	margin: auto;
	width: 100%;
}	
        #box1{
			
        }
        #box2{
        
        }
        #box3{
         	
        }
		#box4{
			color: #54565B;
			background-color: #FFF;
			
		}
		/*#box4 a{
			color: #FFF;
		}*/
#box5{
	background: #54565B;
}
#box5 a{
	display: inline-block;
	padding: 0.5em 0;
	text-decoration: none;
}
#box5 a:hover{
	text-decoration: underline;
}

.info_boxes{
	display: flex;
	background: linear-gradient(90deg,  rgba(255, 255, 255, 1.0) 0%, rgba(255, 255, 255, 1.0) 50%, rgba(84, 86, 91, 1.0) 50%,  rgba(84, 86, 91, 1.0) 100% );
}

.info_boxes .box{
	margin: 0;
	padding: 1.25em;
	min-height: 400px;
}
		#box5{
			color: #FFF;
		}
		#box5 a{ 
			color: #FFF;
		}
.blurb {
	min-height: 200px;
	color: #FFF;
	
	background: linear-gradient(90deg,  rgba(0, 114, 153, 0),  rgba(0, 114, 153, 1.0)  ), url(../images/blurb_mobile_02.jpg);
	background-attachment: fixed;
	background-size: cover;
	font-size: 1.25em;
	position: relative;
	background-position: left;
	text-align: right;
}
.blurb_text{
	width: 55%; 
	text-align: left; 
	float: right;
	padding: 3em 1em;
	
}
.blurb a{
	color: #FFF;
}
.blurb a.button{
	display: inline-block;
	padding: 0.5em;
	border: 2px #FFF solid;
	text-decoration:  none;
	border-radius: 10px;
}

#mortgageFrates{
	
	
	
}

footer{
	    color: #54565B;
    background: linear-gradient(180deg, rgba(209, 208, 206, 0.4) 20%, rgba(255, 255, 255, 0) 100% ), url(../images/footer_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
		#logos{
			display: flex;
			padding: 2em 0;
		}
		#logos > *{
				padding: 0 1em;
				flex-grow: 1;
			}
		#logos img{
			max-height:100px;
			padding: 0 10px;
		}
.sitemap{
	
}
.sitemap a{
	color: #54565B;
	
}
.sitemap h2,.sitemap h3{
	margin-bottom: 0;
}
.sitemap h3{
	font-size: 1.5em;
}
.borderBottom{
border-bottom: 1px solid #007299;
padding-bottom: 22px;
}

.ulRemoveStyle{
	list-style: none;
	padding: 0;
}
	.special-h{
	margin-bottom:7px;
}
.special-para{
	margin-top:0px;
}
.flex_vcenter-dir{
	display: flex;
    justify-content: flex-start;
}
.flex_rreverse_top{
	padding-top:34px;
}
.special-rec{
	font-size:15px;
	margin-bottom:7px;
	    margin-top: 43px;
}
.flex_rreverse_top-p{
	padding-top:0px;
}