/*COLORS
Darker Blue -#005b9a
Lighter Blue - #0191c8
Yellow - #f1c40f
Light Grey - #ccc
Dark Grey#333
*/

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	  box-sizing: border-box;
	  font-family: "Open Sans";
}

*, *:before, *:after {
  box-sizing: inherit;
}
html,body{
    margin: 0;
    padding:  0;
}
body{
	font-size: 16px; /*Base font here*/ 
	font-family: "Open Sans";
	background-attachment: fixed;
    background-size: cover;
}
img{
    border: none;
    display:  block;
	max-width: 100%;
}
.dashed{list-style: square;}
.vh{  
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/*LAYOUT CLASSES*/
iframe{
    margin: -14px 0;
    display: inline-block;
}
.cf{
    clear: both;
}
.cf:after{
    content: "";
    display: table;
    clear: both;
}
.contain{
    width: 85%;/*Container width here*/
    margin-right: auto;
    margin-left: auto;
	
}
.contain:after{
    content: "";
    display: table;
    clear: both;
}
ul.navList{
     padding: 0;
     margin: 0;
     list-style: none;
}
     ul.navList li a{
             text-decoration:  none;
        }
.inside{
	padding: 1em;
	margin: 0 auto;
}
a{
	color: #005B9A;
	text-decoration: none;
	transition: background-color 0.5s, color 0.5s;
}
a:hover{
	color: #0053A0;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
}
/*CONTENT CLASSES*/
.section_links{
	display: flex;
}
.section_links a{
	border: 3px solid #005B9A; 
	background-color: #005B9A;
	border-radius: 5px;
	color:#FFFFFF; 
	text-decoration: none;	
	padding: .5em;
	margin: .25em;
}
.section_links a:hover{
	border: 3px solid #002855; 
	background-color: #002855;
	border-radius: 5px;
	color:#FFFFFF; 
	text-decoration: none;	
	padding: .5em;
	margin: .25em;
}
a.borderBtn{
	border: 3px solid #FDCB41; 
	border-radius: 5px;
	color:#FDCB41; 
	text-decoration: none;	
	padding: .5em;
	margin: .25em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.50);
}
a.borderBtn:hover{
	background-color:#FDCB41;
	color: #000000;
	transition: border 0.5s, color 0.25s;
    text-shadow: none;
}
.circleImg {
    float: right;
    width: 30%;
    border: solid 20px #FDCB41;
    border-radius: 50%;
    margin-left: 1em;
}
.circleImg::after{
	clear: both;
}

/*LAYOUT STYLES*/
header{
  position: relative;
  z-index: 100;
  width: 100%;
  display: flex;
}
	#topLink{
		display: none;
	}
	/*OVERLAY MENU*/
	.menuBtn{
		color: #FFF;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
	}
	.menuBtn i{
		font-size: 2em;
		padding: 0 0 0 20px;
		display:  inline-block;

	}
	.overlay {
		width: 100%;
		height: 100%;
		position: fixed; 
		z-index: 500; 
		left: 0;
		top: 0;
		background-color: rgba(0,91,154,.9);
		transition: 0.5s;
		display:none;
	}
	.overlay-content {
		position: relative;
		/*top: 18%; */
		width: 100%; 
		text-align: center; 
		margin-top: 30px; 
	}

	.overlay a {
		padding: 8px;
		text-decoration: none;
		font-size: calc(16px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
		color: #FFF;
		display: block; 
		transition: 0.3s;
	}

	.overlay a:hover, .overlay a:focus {
		color: #FFFFFF;
		text-decoration: underline;

	}


	.overlay .closebtn {
		position: relative;
		font-size:3em;
		color: #FFF;
	}

	@media screen and (max-height: 450px) {
		.overlay a {font-size: 20px}
		.overlay .closebtn {
			font-size: 40px;
			top: 15px;
			right: 35px;
		}
	} 

	#logo {

		padding: 1em 0 0 0;
		text-align: center;
		font-family: "Open Sans";
		width: 100%;
	}
	#logo img, #logo2 img {
		width: 100%;
	}
	#logo a {
		color: #FFF;
		font-size: 2.5em;
		font-weight: bold;
		letter-spacing: 3px;
		text-shadow: 2px 2px 2px #000;
	}
	#logo a span {
		font-size: .8em;
		color: #FFFFFF;
	}
	#menuBtn{
		cursor:pointer;
		filter: drop-shadow( 2px 2px 3px rgba(0,0,0,0.5) );
		float: right;
		width:  40px;
		margin-top: -0.70em;
	}
	#topNav {
	  float: right;
	  text-align: right;
		margin: 2em 2em 0 0; 
		min-width: 375px;

	}
	#topNav .fa{
		font-size: 1.5em;
		color: #f1c40f;
	}

	aside{
			margin: 1em;
			max-width: 285px;
			min-width: 225px;
			position: absolute;
			z-index: 2;
		}
			#olb{
			   /* background-color: #0053A0;*/
				background-color: rgba(67, 138, 216, 0.75);
				border: 1px solid rgba(255,255,255,0.50);
				padding: 0.5em;
				margin: 0 0 1em 0;
				border-radius: 10px;
				color: #FFF;
			}
	#olb h2{
		margin: .25em 0 ;
		text-align: center;
	}
				#olb iframe{
					width: 180px;
					height: 60px;	

				}
				#olb a, .btn{
					display: block;
					text-align: center;
					padding: .5em;
					border: 1px solid rgba(255,255,255,0.50);
					color: #FFF;
					background-color: #0053A0;
					border-radius: 5px;
					margin: .25em 0;
					text-transform: uppercase;
					font-size: 12px;
					font-weight: 600;
				}
				#olb a:hover, .btn:hover{
				background-color:  #FDCB41;
				color: #000000;
				}

main, #main{
	background-color: #FFFFFF;
	padding-bottom: 2.5em;
}

/*SECONDARY PAGE CLASSES*/
.pageTop  {
    background-image: url("../images/water2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 33%;
	background-attachment: fixed;
    padding: 5em 0;
}
.titleSection  {
background-color: rgba(255, 255, 255, .8);
padding: 1em;
margin-top: 8em;
}

 .title {
	text-align: center;
	font-size: 3em;
	font-family: "Open Sans";
	font-weight: lighter;
	margin: 0 auto -.25em auto;
	color: #333;
}
.pageSum {
    color: #333;
    text-align: justify;
    font-size: 1em;
    margin: 2em auto .5em auto;
    font-family: "Open Sans";
    font-weight: normal;
}
.secondaryPg {
  font-family:"Open Sans";
  margin-bottom: 2em;
}
.secondaryPg h2 {
  	font-size: 2em;
	color: #005b9a;
	margin: 2em 0 0 0;
}
.secondaryPg h2 + p{
	 margin-top: 0;
}
.secondaryPg h3 {
  color: #0191c8;
	margin-bottom: 0;
}
.secondaryPg h3 + p{
   margin-top: 0;
}

.pageSum {
    color: #333;
    text-align: justify;
    font-size: 1em;
    margin: 2em auto .5em auto;
    font-family: "Open Sans";
    font-weight: normal;
}

.row{
	margin: 1.7em auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.row::after{
	clear: both;
}


.home_quicklinks{
	display:  flex;
	padding: 0.80em 0;
}
.home_quicklinks a{
	text-align: center;
	background-color: #FDCB41;
	background-color:  rgba(67, 138, 216,1);
	color: #FFF;
	border-radius: 10px;
	padding: 10px;
	transition: background-color 0.5s, color 0.5s, font-size 0.5s ;
	flex-grow: 1;
	margin: 0 5px;
}
.home_quicklinks a:hover{
	background-color: #FDCB41;
	color: #000;
	text-decoration: none;
	font-size: 1.1em;
}
.home_quicklinks a:after{
	content: " \00bb";
}
	

#card1 {
	background-image:url("../images/2019_07_mortgage.jpg")
}
#card2 {
	background-image:url("../images/2019_07_debitcard.jpg")
}
#card3 {
	background-image:url("../images/motorcycle.jpg")
}
#card4{
	background-image:url("../images/2019_03_cardValet.jpg")
}
.card {
  margin: 0 auto;
  max-width: 100%;
  box-shadow: 
	 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background-size: cover;
	cursor: pointer;
}
.info {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: rgba(230, 230, 230, .9);
	background: -webkit-linear-gradient(top, rgba(240,240,240,0.85) 0%,rgba(210, 240, 240,0.85) 100%);
  transform: translateY(100%)
    translateY(-60px)
    translateZ(0);
  transition: transform 0.5s ease-out;
}

.info:before {
  z-index: -1;
  display: block;
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  opacity: 0.25;
  transform: translateY(-100%)
    translateY(88px)
    translateZ(0);
  transition: transform 0.5s ease-out;
}

.card:hover .info,
.card:hover .info:before {
  transform: translateY(0) translateZ(0);
}

.cardTitle {
  margin: 0;
  padding: 20px;
  font-size: 1.5em;
   line-height: 1;
  color: rgba(0, 0, 0, 0.87);
	text-align: center;
}

.description {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.25;
}
.row{ 
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-top: 1em;
}
.row::after{
	clear: both;
}

.box {
    flex-basis: 24%;
    margin-right: 1%;
}



#join{
	background-color: #ccc ;
	color: #000;
	text-align: center;
	margin: 1.5em 0 3em 0;
	min-height: 150px;
}
#join h1 {
    font-size: 1.8em;
    font-weight: bolder;
	color: #000;
    margin-top: .3em;
}
#join article{
	padding: 1em;
}

footer{
	background-color:  #005b9a;
	min-height: 150px;
}
	.contactInfo1{
		color:  #FFF;
		float: left;
		width: 40%;
		font-size: 1.3em;
		margin-bottom: 2em;
		/*! text-align: center; */
	}
	.contactInfo1 h1{
		margin-bottom: 0;
		color: #FFFFFF;
	}
	.contactInfo1 h2{
		margin: 0 auto 1.5em auto;
		font-weight: lighter;
		color: #FFFFFF;
	}
	.contactInfo1 a{
		color: #FDCB41;
	}
	.contactInfo{
		float: left;
		width: 50%;
		font-size: 1.3em;
		margin-bottom: 2em;
		text-align: center;
	}
	.contactInfo h2, .contactInfo h3, .contactInfo1 h2, .contactInfo1 h3{
		margin-bottom: 0;
	}

	.contactInfo1 h2{
		margin-bottom: 0;
		color: #FFFFFF;
	}

	.mail h3:nth-child(1) {
	 background-color:#002855;
	color: #FFF;
		padding: .25em;
		margin-top: 0;
		margin-bottom: 0;
	}

	.contactInfo p, .contactInfo1 p{
		font-weight: normal;
	}
	.hours{
		font-size: .75em;
	}
	#email {
		font-size: .8em;
	}
	.googleMap{
		float: right;
		width: 60%;
		margin-top: 2em;
	}
	.googleMap iframe{
		width: 100%;
	}




#regInfo p:first-child, #regInfo p:last-child{
	width: 15%;
}
#NCUA{width: 100%}
#EHL{width: 50%;}
#regInfo p{
	float: left;
	width: 33%;
	margin-right: 1%;
	color: #FFF;
}
#footerInfo{
	text-align: center;
	position: relative;
	z-index: 50;
}
#btmLinks, #btmLinks a{
	color:#FDCB41;
	font-size: 1.3em;
	font-weight: bold;
	margin-top: 0;
}
#privPol a{
	color: #FFFFFF;
}

/********************************/
/************BACK TO TOP********/
/********************************/
#btt{
    background-color:#FDCB41;
    border-radius: 5px;
    bottom: 2em;
    color: #000000;
    display: none;
    font-size: .75em;
	font-weight: bold;
    opacity: 0.9;
    padding: 0.5em;
    position: fixed;
    right: 2em;
    text-align: center;
	cursor: pointer;
	z-index: 50;
}
#btt span{color: #000000;}



/*****CALCULATORS*****/
	#calculators a{
		display: block;
		background-color: rgba(67, 138, 216,1);
		font-weight: bold;
		color: #fff;
		margin:2px;
		padding:1%;
		float: left;
		width: 30.5%;
		border-radius: 4px;
		font-size: 1.1em;
		text-decoration: none;
	}
	#calculators a:hover{
		background-color: #0066B0;
	}
	#calculators strong{
		display: block;
		clear: both;
		padding:5px;
		font-size: 1.25em;
		margin-top: 16px;
	}
	.calculatorSection{
		width: 100%;
		float: left;
		margin: 5px;
	}
	#prsnfi a{ width: 47%;}
	#retire a{ width: 47%;}
	#home a{ width: 47%;}

/********************************/
/*******Rates page********/
/********************************/
#rates_container {
	
}
.rates_effective {
	clear: both;
}
.rates_nav {
	padding: 20px;
	text-align: center;
	clear: both;
}
.rates_nav a{
	color: #FFFFFF;
}
 .rates_button {
	margin-right: 10px;
	background-color:#005b9a;
	border: 3px solid #666666;
	border-radius: 5px;
	text-decoration: none;
	padding: .5em;
	margin: .25em;
	display: inline-block;
}
.rates_button:hover {
background-color:  #0191c8;
text-decoration: underline;
	color:  #FFF;
	
}
.rates_button:visited {

}
.rates_table {
	width: 100%;
	border-collapse: collapse;
}
.rates_header {
	font-size: 1.5em;
	font-weight: 800;
	text-transform: capitalize;
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #005b9a;
	color: #FFFFFF;
	
}
.rates_title {
	font-size: 1em;
	padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
	font-weight: bold;
	font-family: "Open Sans";
}
.rates_bold {
	background-color: #002855; 
	font-size: 14px;
	color: #fff;
}
.rates_notes {
	font-size: 0.75em;
	font-style: italic;
}
.rates_subheader {
	color: #0053A0;
	font-size: 1.3em;
	font-weight: bold;
	padding: 2em 0 .5em 0.3em;
	border-bottom: #666 3px solid;
}
.rates_linespace {
}
.rates_aRow {
	background-color: #ccc;
}
.rates_standard {
	padding: 0.25em;
}



/********************************/
/******* Sitemap  ********/
/********************************/

.sitemap{
	border-collapse: collapse;
	width: 100%;
	margin: auto;
	
}
.sitemap td, .sitemap th {
    border: 1px solid #ddd;
	padding: 8px;
}
.sitemap tr:nth-child(even){background-color: #f2f2f2;}

.sitemap th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #002855;
    color: #FFFFFF;
}

        	/********************************/
            /*******3rd PARTY LEAVING********/
            /********************************/
            
                #extDis {
                    display: none;
                    position: fixed;
                    width: 100%;
                    height: 100%;
                    top: 0px;
                    left: 0px;
                    z-index: 1000;
                }
                #extDis h2{
                    text-align: center;
                }
                
                #extDis .extDisMsg {
                    background-color: #002855;
                    border: 5px solid #FFF;
                    border-radius: 10px;
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
                    color: #FFF;
                    margin: 3em auto;
                    padding: 2em;
                    position: relative;
                    text-align: left;
                    width: 80%;
                    font-size: 0.80em;
                }
                #extDis .extDisMsg p{
                    padding: 0 0 20px 0;
                }
                #extDis .extDisBg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
                }
            
                #extDis a.continueBtn:hover,#extDis a.continueBtn:focus,#extDis a.closeBtn:focus {
                    background-color:#f1c40f;
                    color:#000;
                    
                }
                #extDis a.closeBtn, #extDis a.continueBtn {
                    background-color: #FFF;
                    color: #381404;
                    display: inline;
                    font-weight: bold;
                    margin: 10px 20px 0px 0px;
                    padding: 10px 20px;
                    border-radius: 10px;
                    cursor: pointer;
                    text-decoration: none;
                }


/*********************************************************************/
/********************WAVE ANIMATION KEY FRAMES************************/
/*********************************************************************/
@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 5000px;
  }
}

@keyframes wave-reverse {
  0% {
    background-position-x: 5000px;
  }
  100% {
    background-position-x: 0;
  }
}


.wave-container{
position: relative;
	margin-top: 1em;
}
.wave {
  background: url("../images/greyWave.svg") repeat-x; 
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  animation: wave-reverse 80s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave-w {
  background: url("../images/whiteWave.svg") repeat-x; 
	position: absolute;
    opacity: 0.6;
    left: 0;
	right: 0;
  width: 100%;
    bottom: -3px;
	  height: 70px;
  animation: wave 70s cubic-bezier( 0.40, 0.55, 0.70, 0.60) infinite;
  }
  .wave-dg {
  background: url("../images/darkGreyWave.svg") repeat-x; 
	position: absolute;
    opacity: 0.4;
    left: 0;
	  right: 0;
  width: 100%;
    bottom: -13px;
	    height: 70px;
  animation: wave-reverse 80s cubic-bezier( 0.20, 0.40, 0.20, 0.45) infinite;
  }
 .wave-w2 {
  background: url("../images/whiteWave.svg") repeat-x; 
	position: absolute;
    opacity: 1;
    left: 0;
	 right: 0;
  width: 100%;
/*    bottom: -13px;*/
	   height: 60px;
  animation: wave 70s cubic-bezier( 0.40, 0.55, 0.70, 0.60) infinite;
  }
.wave-blue {
  background: url("../images/blueWave.svg") repeat-x; 
	position: absolute;
    opacity: 1;
    left: 0;
	right: 0;
  width: 100%;
    bottom: -13px;
	  height: 50px;
  animation: wave 80s cubic-bezier( 0.40, 0.55, 0.70, 0.60) infinite;
  }
/*********************************************************************************/
/*********************************************************************************/
/*********************************************************************************/

  .apply-button{
	 background-color: #005b9a;
     border: none;
    color: white;
    padding: 13px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 18px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  } 

  .apply-button:hover{
	  color:#ffffff;
  }      
  

