/* normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ /* html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0;-webkit-font-smoothing: antialiased}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none} */

	/* 
	@font-face {font-family: 'Tartine';src: url('/fonts/Tartine-script-regular.eot');src: url('/fonts/Tartine-script-regular.eot?#iefix') format('embedded-opentype'),url('/fonts/Tartine-script-regular.woff2') format('woff2'),url('/fonts/TartineScriptRegular.woff') format('woff'),url('/fonts/TartineScriptRegular.ttf') format('truetype');} */
	
	/* 
		COLORS
		
			White: #ffffff

		FONTS
		
			font-family: "futura-pt",sans-serif;

		ANIMATION
		
			-webkit-
			-moz-
			animation: example 5s linear 2s infinite alternate;
			
			-webkit-
			-moz-
			animation-name: example;
			animation-duration: 5s;
			animation-timing-function: linear;
			animation-delay: 2s;
			animation-iteration-count: infinite;
			animation-direction: alternate;
		
			@-webkit-keyframes sticky {
				0%   {opacity: 1;}
				50%  {opacity: 0.2;}
				100%   {opacity: 1;}
			}

			@keyframes sticky {
				from {top: -80px}
				to {top: 0;}
			}

			-webkit-
			-moz-
			transition: *property* *duration* *timing-function* *delay*;
			
			-webkit-
			-moz-
			-ms-
			-o-
			transform: translate(x,y) scale(x,y) rotate(angle);
			
			-webkit-
			-moz-
			-ms-
			-o-
			transform-origin: 50% 50%;
		
		FlexBox
			display:-webkit-box;
			display:-ms-flexbox;
			display:flex;
			
			-webkit-box-pack:flex-start;
			-ms-flex-pack:flex-start;
			justify-content:flex-start;
			
			-webkit-box-align:center;
			-ms-flex-align:center;
			align-items:center;
			
		SVG	
			start SVG images with data:image/svg+xml;charset=utf-8,
			replace all " with  '
			http://meyerweb.com/eric/tools/dencoder/ to encode the svg below
			<svg xmlns='http://www.w3.org/2000/svg'><polygon fill='#ffffff' points='11.7,0 0,0 16.8,25.5 0,51 11.7,51 30,25.5 '/></svg>
			ex: background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpolygon%20fill%3D%27%23ffffff%27%20points%3D%2711.7%2C0%200%2C0%2016.8%2C25.5%200%2C51%2011.7%2C51%2030%2C25.5%20%27%2F%3E%3C%2Fsvg%3E");
			
	*/










/********************************************

GENERAL 

********************************************/
@import "//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css";
	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		border: 0;
		font-size: 100%;
		line-height: 1.6rem;
		letter-spacing: 0;
		vertical-align: baseline;
	}
	body, html, input {
		overflow-x:hidden;
		font-family: "proxima-nova",sans-serif;
		font-style: normal;
		font-weight: 100;
		color: #707070;
		-moz-osx-font-smoothing: grayscale;
	}
	a {
		text-decoration: none;
		color: inherit;
		cursor: pointer;
	}
	img {
		max-width: 100%;
	}
	.clearfix:after {
		display: block;
		content: '';
		clear:both;
	}
	li {
		list-style: none;
	}
	.wrapper {
		width: 100%;
	}
	.container {
		width: 90%;
		margin: auto;
		max-width: 1100px;
	}
	.flex_container {
		display: flex;
	}
	
	.arrow_up {
		position: relative;
		bottom: -5px;
		left: 35%;
		width: 0; 
		height: 0; 
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid #fff;
		visibility: hidden;
		opacity: 0;
		transition: .25s;
	}
	.hidden {
		visibility: hidden;
		opacity: 0;
		transition: visibility 0s, opacity .25s ease;
	}
	.phone {
		color: #49a6d4;
	}
	.bg_light_grey {
		background-color: #ebebeb; /* todo: correct color */
	}
	.bold_600{
		font-weight: 600;
	}
	.text_blue{
		color: #49a6d4;
	}
	.center {
		text-align: center;
	}

	.recaptcha_notice {
		font-size: .9rem;
	}
	.grecaptcha-badge {
		display: none !important;
	}
	.display_none {
		display: none;
	}







/*************************


		Navigation 


*************************/	

		
	/* =========================== */
	/* =======  Navigation - Desktop =======*/
	/* ========================== */

	.navigation_desktop {
		position: absolute;
		width: 100%;
		z-index: 999;
	}
	/* Nav - Upper */

	.navigation_desktop .nav_upper .nav li{
		display: inline-block;
		padding: 0px 8px;
		font-size: 0.8rem;
		line-height: 2rem;
	}
	.navigation_desktop .nav_upper .nav{
		justify-content: flex-end;
	}
	.navigation_desktop .nav_upper .nav li a {
		color: #fff; 
		font-size: .9rem;
		text-decoration: underline;
    background-color: transparent;
	}

	/* Nav - Lower */

	.navigation_desktop .nav_lower {
		background-color: #49a6d4;
	}
	.navigation_desktop .nav_lower .container {
		position: relative;
		height: 51px;
	}

	/* Left Component */

	.navigation_desktop .nav_lower .left{
		width: 40%;
		height: 69px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.navigation_desktop .nav_lower .logo img {
		width: 100%;
		max-width: 180px;
	}

	/* right Component */
	.navigation_desktop .nav_lower .right{
		width: 60%;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		justify-content: flex-end;
		align-items: center;
	}
	.navigation_desktop .nav_lower .nav>li {
		display: inline-block;
		cursor: pointer;
		transition: .25s;
		height: 60px;
		padding: 20px 10px;
	}
	.navigation_desktop .nav_lower .nav li a {
		display:inline-block;
		color: #fff;
		transition: text-shadow .25s;
	}

	/* DropDown */
	.navigation_desktop .nav_lower .nav > li:hover > a{
		transition: .25s;
		text-decoration: underline;
	}
	.navigation_desktop .nav_lower .nav > li .dropdown {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		transition: all 0.25s ease;
		margin-top: 0.8rem;
		background-color: #fff;
		width: 83%;
		justify-content: center;
		top: 38px;
		border: 1px solid #49a6d4;
		border-top: none;
	}
	.navigation_desktop .nav_lower .nav > li .personal {
		left: 13%;
	}
	.navigation_desktop .nav_lower .nav > li .business {
		left: 47%;
		width: 54%;
	}
	.navigation_desktop .nav_lower .nav > li .loans {
		left: 60%;
		width: 42%;
	}
	.navigation_desktop .nav_lower .nav > li .about {
		right: -12%;
		width: 43%;
	}
	.navigation_desktop .nav_lower .nav > li:hover > .dropdown,
	.navigation_desktop .nav_lower .nav > li .dropdown:hover,
	.navigation_desktop .nav_lower .nav > li:hover > .arrow_up
	{
	visibility: visible;
	opacity: 1;
	}
	.navigation_desktop .nav_lower .nav li .dropdown ul {
		margin: 25px;
	}
	.navigation_desktop .nav_lower .nav li .dropdown .border_both_sides {
		border-left: 1px solid #707070;
		border-right: 1px solid #707070;
		padding: 0 25px;
		margin: 25px 0;
	}
	.navigation_desktop .nav_lower .nav li .dropdown .border_left {
		border-left: 1px solid #707070;
		padding: 0 25px;
		margin: 25px 0;
	}
	.navigation_desktop .nav_lower .nav li ul a {
		color: #707070;
		transition: .25s;
		padding: 5px 0;
	}
	.navigation_desktop .nav_lower .nav li ul a:hover {
		text-decoration: underline;
		color: #000;
	}
	.navigation_desktop .hamburger{
		cursor: pointer;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.navigation_desktop .hamburger {
		display: none;
	}
	.navigation_desktop .nav_lower .hamburger i{
		font-size: 1.7rem;
		text-align: center;
		color: #fff;
	}






	/* =========================== */
	/* =======  Navigation - Mobile =======*/
	/* ========================== */
	.navigation_mobile {
		display: none;
		position: absolute;
		top: 0;
		z-index: 1000;
		width: 100%;
	}
	.navigation_mobile .wrapper {
		display: flex;
		flex-direction: column;
		height: 100vh;
	}
	.navigation_mobile .nav_upper {
		background-color: #49a6d4;
	}
	.navigation_mobile .nav_lower {
		background-color: rgb(57, 57, 57);
	}
	.navigation_mobile .nav_lower .dropdown {
		background-color: rgb(97, 97, 97);
	}
	.navigation_mobile a {
		text-decoration: none;
		color: #fff;
		letter-spacing: 1px;
	}
	.navigation_mobile li {
		border-bottom: 2px solid rgba(255, 255, 255, 0.473);
		padding: 13px 30px;
		font-weight: bold;
		color: #fff;
	}
	.navigation_mobile .arrow_down {
		color: #fff;
		display:inline-block;
		float: right;
	}
	.navigation_mobile .search_box::-webkit-input-placeholder { 
		font-family: FontAwesome;
		padding: 5px 10px; 
		vertical-align: middle;
	}
	.navigation_mobile .search_box { 
		font-family: FontAwesome;
		padding: 5px 10px; 
		margin: 25px;
		border-radius: 50px; 
		background-color: rgba(255, 255, 255, .6);
		width: 73%;
		color: #fff;
		display: none; /* Todo: hidden at the moment */
	}
	.navigation_mobile .btn_close{
		color: #fff;
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		right: 28px;
		/* top: 25px; */ /* value if search box is displayed */
		top: 10px;
	}
	.navigation_mobile .dropdown {
		display: none;
	}
	

/*************************


		FOOTER


*************************/	




		
	footer .wrapper {
		background-color: #393939;
		height: 333px;
		width: 100%;
	}
	footer .content {
		flex-direction: row;
		color: #fff;
	}
	footer .content .left {
		width: 70%;
		display: flex;
		margin: 22px 10px;
		justify-content: space-between;
		padding-right: 25px;
	}
	footer .content .right {
		width: 27%;
		display: flex;
		margin: 22px 0;
	}
	footer .content .right .logo img {
		padding: 0 5px 35px 5px;
	}
	footer .content .copy {
		padding: 0 0 0 10px;
	}
	footer .content .left .copy, footer .content .left .copy a {
		color: #fff;
		line-height: 2.3;
	}
	footer .content .copy .headline{
		font-size: 1.1rem;
	}
	footer .content .copy ul li a{
		font-size: 0.68rem;
		text-transform: uppercase;
		transition: text-decoration .25s;
	}
	footer .content .copy ul li a:hover{
		text-decoration: underline;

	}
	footer .content .copy p{
		font-size: 0.7rem;
		line-height: 1.5;
	}
	footer .border_right {
		border-right: 1px solid #fff;
	}
	footer .form {
		padding-left: 25px;
	}
	footer .form h4 {
		font-weight: bold;
		font-size: 0.8rem;
	}
	footer form div {
		width: 100%;
	}
	footer form input {
		width: 60%;
		background-color: transparent;
		border: 1.5px solid #fff;
		height: 35px;
		color: #fff;
	}
	footer form input::placeholder {
		color: #fff;
		padding: 0 10px;
		font-size: 0.8rem;
	}
	footer form button {
		width: 45%;
		height: 35px;
		background-color: #fff;
		font-size: 0.8rem;
		font-weight: bold;
		border:1.5px solid #fff;
		cursor: pointer;
	}
	footer .line_space{
		height: 5px;
	}
	footer .address {
		width: 89%;
	}
	footer .address>p:first-child {
		margin-bottom: 5px;
	}
	/*  Margin Bottom */
	footer .margin_bottom{
		background-color: #49a6d4;
	}
	footer .margin_bottom .left{
		width: 30%;
		margin-left: 15px;
	}
	footer .logo img {
		padding: 5px;
		height: 90%;
		margin-top: 3px;
	}
	footer .NMLS{
		justify-content: center;
		align-items: center;
		color: #000;
		font-weight: bold;
		font-size: .7rem;
		padding: 0 10px
	}
	footer .NMLS span {
		margin-top: 5px;
	}
	footer .margin_bottom .right{
		width: 70%;
		justify-content: flex-end;
		align-items: center;
	}
	footer .nav>li {
		display: inline-block;
		margin: 15px;
		transition: .25s;
		height: 26px;
	}footer .nav>li:not(:first-child) {
		cursor: pointer;
	}
	footer .nav li a, footer .nav li p {
		display:inline-block;
		color: #fff;
	}
	footer .nav li a:hover {
		text-decoration: underline;
	}
	footer .footer_sub_nav {
		display: none;
	}
	footer .break_point{
        display: none;
    }

/*************************


		SUBSCRIBE  FORM 


*************************/
 .subscribe_form .container {
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 color: #49a6d4;
	 text-align: center;
 }
 .subscribe_form input{
	 padding: 8px 5px;
	 width: 160px;
	 border: 1px solid #000;
 }
 .subscribe_form input::placeholder{
	color: #49a6d4;
}
 .subscribe_form .btn_subscribe {
	 width: 180px;
	 background: #49a6d4;
	 color: #fff;
	 font-size: 1rem;
	 font-weight: 600;
	 cursor: pointer;
 }
 .subscribe_form .btn_subscribe:hover {
	background: #3299cb;
}
 .subscribe_form .input_field {
	 margin: 20px auto;
 }
 .subscribe_form h4 {
	 font-size: 1.2rem;
 }



/*************************


		TABLE 


*************************/
	.table-responsive{
		overflow-x: auto;
	}

	table {
		border-collapse: collapse;
		width: 90%;
		border: none;
		margin: 25px auto;
	}
	th, td {
		text-align: left;
		color: #707070;
		border: 1px solid #49a6d4;
		text-align: center; 
		vertical-align: middle;
		width: 150px;
		height: 115px;
		word-wrap: normal;
		padding: 30px;
		font-weight: 600;
	}
	th{
		color: #49a6d4;
		text-transform: uppercase;
	}
	th:last-child, td:last-child {
		border-right: none;
	}
	tr:first-child th {
		border-top: none;
	}
	tr:last-child td {
		border-bottom: none;
	}
	.table-head {
		color: white;
		text-align: center;
		background-color: #49a6d4;
		height: 35px;
		padding: 10px
	}


  
/*************************


		MODAL 


*************************/

	/***** Normal Form *****/
	
	.modal {
		display: none;
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 100%;
		color: white;
		background-color: rgba(146, 146, 146, 0.384);
		z-index: 100;
		box-sizing: border-box;
		padding: 15px 0;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.modal.flex_container {
		justify-content: center;
		align-items: center;
	}
	.modal .modal-content {
		background-color: #fff;
		padding: 5em;
		color: #49a6d4;
		position: relative;
		text-align: center;
		font-size: 1.2rem;
	}
	.modal .modal-content h2 {
		font-size: 1.7rem;
		padding-bottom: .5em;
	}
	.modal .modal-content h4{
		font-size: 1.2rem;
	}
	.modal .btn_modal_close {
		position: absolute;
		top: 5px;
		right: 12px;
		font-size: 1.5rem;
		font-weight: 600;
		color: #49a6d4;
		cursor: pointer;
	}



	/* 
	
			Calculator modal

	*/



	#calculator_modal {
		left: 0;
	}
		

	/* =========================== */
	/* =======  Login Modal =======*/
	/* ========================== */

	.login-container {
		position: relative;
	}
	.login_modal {
		width: 325px;
		height: 185px;
		position: absolute;
		top: 25px;
		right: 0;
		background: #fff;
		transition: .25s ease;
		/* z-index: 999; */
	}
	.login_modal .form_group {
		display: flex;
		flex-direction: column;
		margin: 5px;
	}

	.login_modal, .login_modal input, .login_modal select, .login_modal input::placeholder {
		color: #49a6d4;
	}
	.login_modal input::placeholder, .login_modal select {
		font-size: .8rem;
	}
	.login_modal div.center {
		margin-left: 3px;
		font-weight: bold;
	}
	.login_modal .row_1{
		justify-content: center;
	}
	.login_modal .row_1 a{
		padding: 0 10px;
	}
	.login_modal .row_1 a:hover{
		text-decoration: underline;
	}
	.login_modal .row_1 select {
		border: 2px solid #49a6d4;
		width: 239px;
		height: 25px;
		margin: 3px;
		-webkit-appearance: none;
		-moz-appearance:none;
	}
	.login_modal .row_1 input[type="checkbox"] {
		padding: 10px;
		margin-top: 11px;
		margin-left: 3px;
	}
	.login_modal .row_1 label {
		font-size: 0.8rem;
		padding: 5px 3px 3px;
	}

	.login_modal .row_2 input {
		border: 2px solid #49a6d4;
		/* width: 125px; */
		height: 30px;
		/* margin: 3px; */
		width: 233px;
		margin: 5px 3px;
		padding: 2px;
	}
	.login_modal .row_2 button {
		border: 2px solid #49a6d4;
		width: 125px;
		height: 30px;
		background: #49a6d4;
		color: #fff;
		/* margin: 3px; */
		margin: 5px 3px;
		font-size: .6rem;
	}
	.login_modal .row_2 button:hover{
		background: #3299cb;
		border: 2px solid #3299cb;
	}
	.login_modal .login_close {
		position: absolute;
		right: 15px;
		top: 5px;
		cursor: pointer;
	}
	.login_modal_footer {
		display: none;
	}

	.overlay_login_modal {
		position: relative;
		top: -82px;
		background-color: rgba(0, 0, 0, .4);
		transition: .25s ease;
		z-index: 999;
	}






/*************************


	ADDITIONAL RESOURCES 


*************************/
	.additional_resources {
		display: flex;
	}
	.additional_resources ul {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.additional_resources ul li {
		padding: 10px 20px;
	}
	.additional_resources ul li a {
		color: #49a6d4;
		font-size: .9rem;
	}
	/* .additional_resources ul li:first-child a {
		font-weight: bold;
	} */



/*************************


		BUTTONS 


*************************/
	
	/*Same size buttons*/
	.btn {
		border: none;
		font-size: 1.6em;
		line-height: 1em;
		cursor: pointer;
		text-decoration: none; 
		border-radius: 0px;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 30px;
		width: 140px;
		padding: 0;
	}
	
	/*Dynamic size buttons*/
	.btn {
		border: none;
		font-size: 1.6em;
		cursor: pointer;
		text-decoration: none; 
		border-radius: 0px;
		-webkit-appearance: none;
		-moz-appearance: none;
		padding: 8px 15px 7px;
	}	
	.btn:hover {
		background: #3299cb;
		border: 1px solid #3299cb;
	}	
	
	/* Back to top */
	.back_to_top {
		color: #fff;
		background-color: #49a6d4;
		padding: 10px 15px;
		border-radius: 50%;
		box-shadow: 2px 2px 10px #3f3f3f81;
		position: fixed;
		bottom: 6px;
		right: 15px;
		transition: 1s;
	}
	.back_to_top:hover{
		background: #3299cb;
		border: 1px solid #3299cb;
	}



/********************************************

				HERO STYLE

********************************************/

	/* =========================== */
	/* ======= Hero style 1=======*/
	/* ========================== */

	.hero_style_1 .hero_image {
		height: 500px;
		width: 100%;
		z-index: -1;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center -110px;
	}


	.hero_style_1 .overlay {
		background-color: rgba(0, 0, 0, 0.5);
		height: 100%;
	}
	.hero_style_1 .container {
		position: relative;
		display: flex;
		justify-content: center;
		height: 90%;
		z-index: 10;
		color: #fff;
	}
	.hero_style_1 .container .copy {
		align-self: flex-end;
		color: #fff;
		text-align: center;
		margin-left: 15px;
		font-family: proxima-nova-condensed, sans-serif;
		font-style: normal;
	}
	.hero_style_1 .container .copy .title {
		font-size: 3rem;
		font-weight: 600;
		padding: 10px;
		letter-spacing: 3px;
		line-height: 1;
	}
	.hero_style_1 .container .copy .subtitle {
		font-size: 2.1rem;
		padding: 10px;
		line-height: 1;
	}
	.hero_style_1 .break_point{
        display: none;
    }







	/* =========================== */
	/* ======= Hero style 2=======*/
	/* ========================== */
	.hero_style_2 .hero_image {
		height: 100vh;
		width: 100%;
		z-index: -1;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center -50px;
	}


	.hero_style_2 .overlay {
		background-color: rgba(0, 0, 0, 0.5);
		height: 100%;
		position: relative;
	}
	.hero_style_2 .content {
		position: relative;
		display: flex;
		justify-content: center;
		height: 80%;
		width: 750px;
		z-index: 10;
		color: #fff;
	}
	.hero_style_2 .container .copy {
		align-self: flex-end;
		color: #fff;
		text-align: center;
		margin-left: 15px;
		font-family: proxima-nova-condensed, sans-serif;
		font-style: normal;
	}
	.hero_style_2 .container .copy .title {
		font-size: 3rem;
		font-weight: 600;
		padding: 10px;
		letter-spacing: 3px;
		color: #fff;
		line-height: 1;
	}
	.hero_style_2 .container .copy .subtitle {
		font-size: 1.65rem;
		padding: 10px;
		line-height: 1.3;
	}



	
	/* =========================== */
	/* =======  Anchor menu =======*/
	/* ========================== */


	.anchor-menu {
		background-color: #49a6d4;
		height: 100px;
		width: 100%;
		position: absolute;
		bottom: 0px;
	}
	.anchor-menu .container {
		height: 100px;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	.anchor-menu ul li {
		display: inline-block;
		padding: 1.2rem;
		font-size: 1rem;
	}
	.anchor-menu ul li:not(:last-child) {
		border-right: 1px solid #fff;
	}
	.anchor-menu ul li a {
		color: #fff;
	}
	.anchor-menu ul li i {
		padding: 0 5px;
		color: #fff;
	}
	.anchor-menu ul li a:hover {
		text-decoration: underline;
		transition: .25s;
	}
	.sub_anchor {
		margin: 1.5em;
	}

	.personal_banking_3 .sub_anchor {
		font-size: 1.3rem;
		text-align: center;
	}
	.personal_banking_3 .copy .sub_anchor li{
		list-style: none;
	}



/********************************************

				COMMON CONTENT

********************************************/

	.common_content {
		height: 100%;
	}
	.common_content .container {
		width: 70%;
		max-width: 790px;
		padding-top: 2em;
		padding-bottom: 2em;
	}
	.common_content .headline {
		color: #49a6d4;
		font-size: 2rem;
		padding: 25px 0 0;
	}
	.common_content .sub_headline {
		padding: 15px 0;
	}
	.common_content .copy {
		margin: 25px 0;
	}
	.common_content .copy p{
		line-height: 1.5em;
		font-size: 1rem;
		margin: .5em auto;
	}
	
	
	


/********************************************

				HOME PAGE

********************************************/


	/* =========================== */
	/* =======  Hero - Slide =======*/
	/* ========================== */

	.swiper-slide {
		background-size: cover;
		background-repeat: no-repeat;
		height: 620px;
		width: 100%;
		background-position: center -60px;
	}
	.slide .slide2 {
		background-position: center -120px;
	}
	.slide .slide3 {
		background-position: center -120px;
	}

	.swiper-container {
		height: 620px;
		width: 100%;
		z-index: -1;
	}
	.swiper-button-prev{
		left: 20% !important;
		top: 82% !important;
		background-image: url("/img/prev-arrow.png") !important;
	}
	.swiper-button-prev:hover{
		left: 19.8% !important;
		transition: .25s !important;
	}
	.swiper-button-next{
		right: 20% !important;
		top: 82% !important;
		background-image: url("/img/next-arrow.png") !important;
	}
	.swiper-button-next:hover{
		right: 19.8% !important;
		transition: .25s !important;
	}
	.swiper-pagination-bullet {
		background: #fff !important;
	}
	.swiper-pagination-bullet-active {
		background: #007aff !important;
		
	}
	.swiper-container .overlay {
		/* background-color: rgba(0, 0, 0, 0.4); */
    background-color: rgba(0, 0, 0, 0.5);
		height: 100%;
	}/* 
	.swiper-slide:hover .overlay {
		background-color: rgba(0, 0, 0, 0.1);
		transition: .25s ease;
	} */
	.swiper-container .container {
		position: relative;
		display: flex;
		justify-content: center;
		height: 90%;
	}
	.swiper-container .container .copy {
		align-self: flex-end;
		color: #fff;
		text-align: center;
		margin-left: 15px;
		font-family: proxima-nova-condensed, sans-serif;
		font-style: normal;
	}
	.swiper-container .container .copy .title {
		font-size: 3rem;
		font-weight: 600;
		padding: 10px;
		letter-spacing: 3px;
	}
	.swiper-container .container .copy .subtitle {
		font-size: 2.1rem;
		padding: 10px;
	}




	/* =========================== */
	/* =======  Home 1 =======*/
	/* ========================== */
	/* .home_1 {
		height: 100%;
	} */
	.home_1 .headline {
		color: #49a6d4;
		font-size: 2rem;
		padding: 25px 0 0;
	}
	.home_1 .copy {
		margin: 25px 0;
	}
	.home_1 .copy p{
		line-height: 1.5em;
		font-size: 1rem;
		margin-top: 15px;
	}
	.home_1 .container {
		width: 70%;
		max-width: 790px;
		padding-top: 3em;
		padding-bottom: 3em;
	}



	/* =========================== */
	/* =======  Home 2 =======*/
	/* ========================== */

	.home_2 {
		height: 370px;
		background-color: #49a6d4;
	}
	.home_2 .container {
		width: 70%;
		max-width: 790px;
	}
	.home_2 .container > div {
		margin: auto;
	}
	.home_2 .flex_container{
		justify-content: space-evenly;
	}

	.home_2 .circle_container {
		height: 207px;
		width: 207px;
		background-size: cover;
		margin: auto;
		border-radius: 50%;
		margin-top: 50px;
		cursor: pointer;
		background-position: center;
	}
	.home_2 .overlay{
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.4);
		display: flex;
		align-items: center;
		border-radius: 50%;
		transition: .25s;
	}

	.home_2 .circle_container:hover > .overlay {
		background-color: transparent;
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-o-transition: all .25s ease;
		-ms-transition: all .25s ease;
		transition: all .25s ease;
	}
	.home_2 .circle_inner {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 180px;
		width: 180px;
		margin: auto;
		border-radius: 50%;
		border: 1px solid #fff;
		z-index: 20;
	}
	.home_2 .circle_inner a{
		padding: 5em 0;
		text-align: center;
	}

	.home_2 .circle_container span{
		color: #fff;
		text-align: center;
		width: 140px;
		font-weight: 600;
	}
	.home_2 .copy {
		width: 80%;
		margin: 20px auto;
		text-align: center;
		color: #fff;
	}
	.home_2 h3 {
		width: 95%;
		margin: auto;
	}






/********************************************

				HOURS & LOCATIONS PAGE

********************************************/



	/* =========================== */
	/* =======  Hour Location 1 =======*/
	/* ========================== */
	.hour_location_1 .flex_container{
		justify-content: center;
	}

	.hour_location_1 .fairview_office .copy {
		border-left: 1px solid #49a6d4;
	}
	.hour_location_1 .copy {
		padding: 0px 50px;
		margin: 70px auto;
	}
	.hour_location_1 .copy a {
		color: #707070;
	}
	.hour_location_1 .copy p {
		line-height: 1.8;
	}
	.hour_location_1 .copy .headline {
		color: #49a6d4;
		font-size: 1.4rem;
	}
	.hour_location_1 .copy .sub_headline {
		font-weight: bold;
		margin-top: 25px;
		font-size: 1.1rem;
	}



/********************************************

			CONTACT

********************************************/





	/* =========================== */
	/* =======  Contact 1 =======*/
	/* ========================== */
	.contact .hero_image {
		background-position: center;
	}
	
	.contact_1 .flex_container{
		justify-content: center;
	}
	.contact_1 .main_office,
	.contact_1 .fairview_office {
		width: 100%;
		max-width: 550px;
	}

	.contact_1 .fairview_office .copy {
		/* border-left: 1px solid #49a6d4; */
	}
	.contact_1 .copy {
		padding: 0px 50px;
		margin: 70px auto;
		margin-bottom: 40px;
	}
	.contact_1 .copy a {
		color: #707070;
	}
	.contact_1 .copy p {
		line-height: 1.8;
	}
	.contact_1 .copy .headline {
		color: #49a6d4;
		font-size: 1.4rem;
	}
	.contact_1 .copy .sub_headline {
		font-weight: bold;
		margin-top: 25px;
		font-size: 1.1rem;
	}
	.contact_1 .location_image {
		background-size: cover;
		height: 300px;
		margin: 25px auto;
	}




/********************************************

			ABOUT

********************************************/
	.about_1, .about_2 {
		height: 100%;
	}





/********************************************

			PERSONAL BANKING

********************************************/

	.personal_banking_1 {
		text-align: center;
		flex-direction: column;
		justify-content: center;
		margin: 25px auto;
	}
	.personal_banking_1 .headline {
		color: #49a6d4;
		font-size: 2rem;
		/* font-family: proxima-nova-condensed, sans-serif; */
		padding: 5px 0;
	}
	.personal_banking_1 td:first-child {
		color: #49a6d4;
	}
	.personal_banking_1 th:first-child, .personal_banking_1 td:first-child {
		border-left: none;
	}
	.personal_banking_1 th:last-child, .personal_banking_1 td:last-child {
		border-right: none;
	}




	.personal_banking_2 .headline {
		text-align: center;
	}
	.personal_banking_2 .sub_headline {
		text-align: center;
		color: #49a6d4;
		font-size: 1.2rem;
		line-height: 1.5;
		width: 79%;
		margin: 25px auto;
	}
	.personal_banking_2 .copy ul li {
		list-style-type: initial;
	}

	.personal_banking_2 .headline {
		text-align: center;
	}
	.personal_banking_2 .sub_headline {
		text-align: center;
		color: #49a6d4;
		font-size: 1.2rem;
		line-height: 1.5;
		width: 79%;
		margin: 25px auto;
	}
	.personal_banking_2 .copy ul li {
		list-style-type: initial;
	}

	



	.personal_banking_3 .headline {
		text-align: center;
	}
	.personal_banking_3 .sub_headline {
		text-align: center;
		color: #49a6d4;
		font-size: 1.2rem;
		line-height: 1.5;
		width: 90%;
		margin: 25px auto;
	}
	.personal_banking_3 .copy ul li {
		list-style-type: initial;
	}




	.personal_banking_4 .headline {
		text-align: center;
	}
	.personal_banking_4 .sub_headline {
		text-align: center;
		color: #49a6d4;
		font-size: 1.2rem;
		line-height: 1.5;
		width: 95%;
		margin: 25px auto;
	}
	.personal_banking_4 .copy ul li {
		list-style-type: initial;
	}




	.personal_banking_5 .headline {
		text-align: center;
	}
	.personal_banking_5 .sub_headline {
		text-align: center;
		color: #49a6d4;
		font-size: 1.2rem;
		line-height: 1.5;
		width: 90%;
		margin: 25px auto;
	}
	.personal_banking_5 .copy ul li {
		list-style-type: initial;
	}








	

/********************************************

				LOANS

********************************************/

.loans_1 .container{
	max-width: 800px;
}


.loans_2 .container{
	max-width: 800px;
}

.loans_3 .container{
	max-width: 800px;
}







/********************************************

				CALCULATOR

********************************************/
.calculator {
	padding: 1em 0;
}
.calculator .flex_container {
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.calculator h2 {
	font-size: 1.5rem;
	margin-bottom: 1em;
}
.calculator input, .calculator select {
	color: #49a6d4;
	font-size: .8rem;
	background: #fff;
	width: 100%;
	height: 35px;
	padding-left: 5px;
}
.calculator input::placeholder {
	color: #49a6d4;
	padding-left: 3px;
}
.calculator .col {
	width: 70%;
	margin-bottom: 15px;
	text-align: left;
}
.calculator .btn_calculate {
	width: 35%;
	margin: auto;
}
.calculator button {
	border: 2px solid #49a6d4;
	background: #49a6d4;
	color: #fff;
	padding: 0;
	font-size: 1rem;
	width: 100%;
	height: 35px;
}



/* 

		RESULTS

*/


.calculator_result .container{
	width: 98%;
	max-width: 1100px;
	padding-top: 1em;
    padding-bottom: 1em;
}
.calculator_result #Result {
	width: 100%;
}
.calculator_result td {
	height: 100%;
	width: 100px;
	padding: 5px 0;
	font-weight: 400;
}
.calculator_result td:first-child,
.calculator_result th:first-child {
	border-left: none;
}
.calculator_result .loan_details td:first-child {
	text-align: left;
	color: #49a6d4;
	font-weight: bold;
}

.calculator_result .result_loan_details .header_details th {
	padding-top: 5px;
	padding-bottom: 5px;
	height: 65px;
}
.calculator_result .result_loan_details tbody tr:hover {
	background-color: rgb(73, 166, 212,.2);
}
.calculator_result .copy {
	width: 75%;
    margin: auto;
}
.calculator_result .copy ul {
	margin-left: 3em;
}





/********************************************

			RATES

********************************************/
.rate {
	text-align: center;
	flex-direction: column;
	justify-content: center;
	margin: 25px auto;
}
.rate p {
	max-width: 1000px;
    margin: auto;
}
.rate .headline {
	color: #49a6d4;
	font-size: 2rem;
	/* font-family: proxima-nova-condensed, sans-serif; */
	padding: 5px 0;
}
.rate .sub_headline {
	color: #49a6d4;
	font-size: 1.2rem;
	line-height: 1.5;
}
.rate th:nth-child(2n), .rate td:nth-child(2n) {
	border-left: none;
}
.rate th:last-child, .rate td:last-child {
	border-right: none;
}
.rate table a{
	color: #707070;
}
.rate table caption {
	font-size: 2rem;
	color: #49a6d4;
	font-weight: bold;
	margin: 25px;
}
.rate .table-head {
	color: white;
	text-align: center;
	background-color: #49a6d4;
	height: 35px;
	padding: 10px
}




	

/********************************************

				SERVICE FESS

********************************************/

.service_fees_1 .container{
	max-width: 800px;
}
.service_fees_1 table {
	width: 100%;
}
.service_fees_1 table tr {
	width: 100%;
}
.service_fees_1 table tr:first-child td {
	border-top: none;
}
.service_fees_1 table td, 
.service_fees_1 table th {
	padding: 0;
	margin: 0;
	height: 36px;
	border-left: none;
	border-right: none;
	border-bottom: none;
}
.service_fees_1 table td:first-child,
.service_fees_1 table th:first-child {
	text-align: left;
	color: #49a6d4;
	padding-left: 65px;
}
.service_fees_1 table td:last-child,
.service_fees_1 table th:last-child {
	text-align: right;
	padding-right: 65px;
}
.service_fees_1 .indented {
	padding-left: 105px !important;
}
.service_fees_1 .border_bottom_none td {
	border-bottom: none !important;
}
.service_fees_1 .special_cell {
	border-top: none;
	font-weight: 400;
	font-style: italic;
	text-align: center !important;
	font-size: .8rem;
}




/********************************************

			PRIVACY

********************************************/

.privacy .container {
	max-width: 1100px;
}
.privacy table td,
.privacy table th {
	font-weight: 400;
	height: 100%;
	padding: 7px 0;
	width: 10%;
}
.privacy table th {
	font-size:  .7rem;
	font-weight: 600;
}
.privacy table td:first-child{
	color: #707070;
}






/********************************************

			EVENTS DIRECTORY

********************************************/
.events_1 .container {
	width: 80%;
	max-width: 1100px;
}

.events_1 .image {
	height: 190px;
	width: 400px;
	background-position: center;
	background-size: cover;
	margin: 1em 5em 1em 0;
}
.events_1 .image:hover {
	opacity: .9;
}
.events_1 .copy {
	margin: auto 1em;
}
.events_1 .breadcrumb{
	color: #49a6d4;
}

.events_1 .breadcrumb .container {
	margin: 0;
}
.events_1 .read_more:hover {
	text-decoration: underline;
}



/********************************************

			EVENT

********************************************/


.event .container {
	width: 80%;
	max-width: 1100px;
}

.event .image {
	height: 250px;
	width: 400px;
	background-position: center;
	background-size: cover;
	margin: 2em 0;

}
.event .breadcrumb{
	color: #49a6d4;
}

.event .breadcrumb .container {
	margin: 0;
}


/*****

Notice

*****/

.header_notice { position: relative; width: 100%; /* background-color: #d42822; */ background-color: #0047ab; color: #FFFFFF; }
.header_notice > div:first-child { max-width: 1000px; margin: 0 auto; text-align: center; padding: 30px; }
.header_notice > div:nth-child(2) { position: absolute; right: 15px; top: 15px; }
.header_notice > div:nth-child(2) a { color: #FFFFFF; }
.header_notice > div > ul { list-style-type: none; padding-left: 0; }
.header_notice ul.slick-slider a.slick-arrow { position: absolute; top: 0; }
.header_notice ul.slick-slider a.prev-arrow { left: 20px; }
.header_notice ul.slick-slider a.next-arrow { right: 20px; }
.header_notice ul.slick-slider a.slick-arrow img { width: 20px; }

/* Flag Icon */
li.flag-icon { display: none !important; } /* hide for now */
li.flag-icon.show { display: inline-block !important; }
ul.nav li.flag-icon img { width: 20px; }
ul.nav li.flag-icon a { display: block; margin-top: 5px; opacity: 0.7; transition: all .5s ease; }
ul.nav li.flag-icon.selected a, ul.nav li.flag-icon a:hover { opacity: 1; }


/* ADA compliance */
.swiper-slide { background-color: #666666; }