/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ Page Styles & Resets */

html {
	position: relative; /*for sticky footer*/
  	min-height: 100%;
}

body {
	font: normal 100%/1.6 'Montserrat', Arial, Helvetica, sans-serif; 
	color: #444;	
	background-color: #FFF;
} 

.preload * { /* Transitions fire only after page load http://css-tricks.com/transitions-only-after-page-load/ */
	-webkit-transition: none !important;
		transition: none !important;
	}

@media (min-width: 992px) {

	/*offset sticky footer*/
	.body--sticky-footer {
		padding-bottom: 440px; /*This will change depending on the height of the footer*/
	}

	/*if the header is fixed, add this class to the body*/
	.body--fixed-header {
		padding-top: 112px; /*This will change depending on the height of the header*/
	}
	
}

@media (min-width: 1200px) {

	.body--fixed-header {
	 /* padding-top: 144px; */
	  padding-top: 120px;
	}
	
}

@media (min-width: 1440px) {

	.body--fixed-header {
	/*	padding-top: 182px;*/
		 padding-top: 134px;
	}

}

	

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: #666;
	color: #fff;
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1100;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: #fff;
	background-color: #777;
}

a:focus, .carousel-control-next:focus,.carousel-control-prev:focus, .btn:focus, .carousel__link:focus .carousel__btn, .form-control-file:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {outline: solid thin rgba(255, 255, 255, 0.5);}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3  { 		
	font-weight: 600;
	line-height:1.3;
}	

h1, .h1 {	
	font: 400 2.5rem/1.1 'Anton', Arial, Helvetica, sans-serif;
	color: #fff;
	margin-bottom: 0;
}
	
h2, .h2 {
	font-size: 1.625rem; 
	color: #004C68;
}

.h2--thin {
	color: #F26329;
	font-weight: 400;
}
		
h3, .h3 { 
	font-size: 1.375rem; 
	color: #004C68;
	margin-top: 1.5rem;
}	

h2 + h3, .card-body>h3 {
	margin-top: 0;
}
	
		
@media (min-width: 992px) {	

	h1, .h1 {
		font-size: 4rem;
	}

	h2, .h2 {
		font-size: 2.25rem;
	}

	h3, .h3 { 
		font-size: 1.5rem; 
	}

}	

@media (min-width: 1440px) {	

	h1, .h1 {
		font-size: 5.25rem;
	}

	h2, .h2 {
		font-size: 2.375rem;
	}

	h3, .h3 { 
		font-size: 1.75rem; 
	}
	
}	

	
/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1rem;
	background: url(../../images/arrow-right-gray.svg) no-repeat left 0.625rem;
	background-size: 0.625rem 0.625rem;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-muted {
	color: #888!important;
}

.text-blue {
	color: #004C68;
}

.text-orange {
	color: #F26329;
}

.text-black {
	color: #444;
}

.font-weight-bold {
	font-weight: 600!important;
}

.intro-text {
	font-size:1.25rem;
}

.note {
	font-size: .875rem;
}

sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}

@media (min-width: 1440px) {	

	.intro-text {
		font-size:1.5rem;
		line-height: 1.5;
	}	

	.note {
		font-size: 1rem;
	}

}

@media (min-width: 1680px) {	

	.note {
		font-size: 1.125rem;
	}

}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: #F26329; 
	font-weight: 600;
	transition: all 0.25s;
}	

a:hover {
	text-decoration: underline;
	color: #004C68;
}

.a--anchor {
    border-top: 160px solid transparent;
    margin-top: -160px !important;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
	transition: opacity 0.25s;
}				

a img:hover { 
	opacity: .9;
}		

.a--more {
	line-height: 1.3;
	color: #F26329; 
	padding-right: 1em;
	display:inline-block;
	margin-bottom:.5rem;
	text-decoration:none;
	background: url(../../images/arrow-right-orange.svg) no-repeat right .4em;
	background-size: .625em;
	transition: all .25s;
}

.a--more:hover {
	text-decoration: none;
	color: #F26329; 
	padding-right:1.25em;
}

.a--more--phone {
	padding-left: 1.75em;
	background: url(../../images/contact-icon.svg) no-repeat left center;
	background-size: 1em 1em;
}

.a--more--email {
	padding-left: 1.75em;
	background: url(../../images/email-icon.svg) no-repeat left center;
	background-size: 1em 1em;
}

.a--more--phone:hover, .a--more--email:hover {
	padding: 0 0 0 2em;
}


.btn {
	padding: .75rem 1.5rem;
	font-weight: 600;
	border-radius:0;
	cursor: pointer;
}

.btn-lg, .btn-xl {
	padding: .75rem 1.5rem;
	font-size:1rem;
}

.btn-primary {
	background-color: #F26329;
	border-color: #F26329;
	color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #004c68;
	border-color: #004c68;
	box-shadow: none;
}

.btn-secondary {
	background-color: #004C68;
	border-color: #004C68;
	color: #fff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:not([disabled]):not(.disabled).active, .btn-secondary:not([disabled]):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
	background-color: #F26329;
	border-color: #F26329;
	box-shadow: none;
}

.btn + .btn {
    margin-left: 1em;
}


@media (min-width: 992px) {	

	.btn-xl {
		font-size:1.25rem;
	}

}


@media (min-width: 1440px) {	

	.btn {
		font-size: 1.125rem;
	}

	.btn-lg {
		padding: 1.25rem 2rem;
	}

	.btn-xl {
		padding: 1.25rem 2rem;
		font-size:1.5rem;
	}

}



/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}

.img--affinity-logos {
	width: 16em;
}

@media (min-width: 576px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem .375rem 0;
		max-width:50%;
		}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 .375rem 1.5rem;
		max-width:50%;
		}
}

@media (min-width: 992px) {	
	.img--float-left, 
	.img--float-right { max-width:33%; }
}	

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
	border-top: 2px dashed rgba(0,0,0,.1);
}

hr.hr-lg {
    margin: 3rem auto;
}

@media (min-width: 1440px) {

	hr, .hr {
		margin: 2rem 0;
	}
	
	hr.hr-lg {
        margin: 4rem auto;
    }

}


/* ------------------------------------------------------------------------ Misc */

.mb-4b {
	margin-bottom: 2rem!important;
}

.my-neg3 {
    margin-top: -1rem!important;
    margin-bottom: -1rem!important;
}

@media (min-width: 992px) {
	.col-lg-2b {
	    -ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}	
}

@media (min-width: 1440px) {
    
    .row {
	    margin-right: -24px;
	    margin-left: -24px;
	}

	.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .col-xxl-8 {
	    padding-right: 24px;
	    padding-left: 24px;
	}

	.col-xxl-8 {
	    -ms-flex: 0 0 66.666667%;
	    flex: 0 0 66.666667%;
	    max-width: 66.666667%;
	}
	
}
	
@media (min-width: 1680px) {

	.col-xxxl-4 {
	    -ms-flex: 0 0 33.333333%;
	    flex: 0 0 33.333333%;
	    max-width: 33.333333%;
	}

	.col-xxxl-2 {
	    -ms-flex: 0 0 16.666667%;
	    flex: 0 0 16.666667%;
	    max-width: 16.666667%;
	}

}


/* =============================================================================================
	HEADER
============================================================================================= */
	
/* ------------------------------------------------------------------------ Header Grid Structure */

.header .container {
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
        "l l l l l l l l l l nt nt"
        "l l l l l l l l l l nt nt"
        "n n n n n n n n n n n n"
        "t t t t t t t t t t t st";
}

.logo {
    grid-area: l;
}

.top-links {
    grid-area: t;
}

.navbar {
    grid-area: n;
}

.nav-toggle {
    grid-area: nt;
}

.search-trigger {
    grid-area: st;
}



@media (min-width: 768px) {	

	.header .container {
	    display: grid;
	    grid-gap: 0;
	    grid-template-columns: repeat(12, 1fr);
	    grid-template-rows: 1fr 1fr;
	    grid-template-areas: 
	        "l l l t t t t t t t st nt"
	        "l l l t t t t t t t st nt"
	        "n n n n n n n n n n n n";
	}

}

@media (min-width: 992px) {	

	.header .container {
	    display: grid;
	    grid-gap: 0;
	    grid-template-columns: repeat(24, 1fr);
	    grid-template-rows: 1fr 1fr;
	    grid-template-areas: 
	        "l l l l t t t t t t t t t t t t t t t t t t t t"
	        "l l l l n n n n n n n n n n n n n n n n n n n st";
	}

}

@media (min-width: 1440px) {	

	.header .container {
	    display: grid;
	    grid-gap: 0;
	    grid-template-columns: repeat(24, 1fr);
	    grid-template-rows: 1fr 1fr;
	    grid-template-areas: 
	        "l l l l l l t t t t t t t t t t t t t t t t t t"
	        "l l l l l l n n n n n n n n n n n n n n n n n st";
	}
	
}


/* ------------------------------------------------------------------------ Header / Logo */

.print-header { display:none; }

.header {
	padding: 1rem 0 1.25rem 0;
	border-bottom:2px solid #eee;
	transition: padding .25s;
}

.header--fixed-top {
	transition: background-color .5s;
}

.logo { 
	display: block;
}

.logo__img {
	max-width: 12rem; 
	width: 100%;
	transition: max-width .25s;
}

.nav-toggle {
    align-self: center;
}


@media (min-width: 768px) {	

	.nav-toggle {
	    justify-self: end;
	}

}


@media (min-width: 992px) {	

	.header--scroll {
		padding: .75rem 0 1rem 0 !important;
	}

	.header--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1040;    
	}

	.logo { 
		align-self: center;
	}

	.logo__img {
		max-width: 15rem; 
	}

	.header--scroll .logo__img {
		max-width: 12rem; 
	}

	/*.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}*/

}


@media (min-width: 1200px) {	

	.header {
	/*	padding: 2rem 0 2.25rem 0;*/
	padding: 1rem 0 1.25rem 0;
	}

}

		
/* ------------------------------------------------------------------------ TopLinks */

.top-links {
	margin: 1.5rem 0 0 0;
}

.top-links__link { 
	text-decoration:none;
	font-weight: 600;
	padding-left:1.5rem;
	color: #004c68;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0.75rem 0.75rem;
    margin: 0.5rem;
	font-size: 0.75em;
}

.top-links__link:first-child { 
	background-image: url(../../images/cursor-icon.svg);
}

.top-links__link:nth-child(2){ 
	background-image: url(../../images/member-login-icon.svg);
}

.top-links__link:last-child { 
	background-image: url(../../images/contact-icon.svg);
}

.top-links__link:hover {
	text-decoration:underline;
	color: #87AAB8;
}	

@media (min-width: 768px) {

	.top-links {
		margin-top: 0;
		align-self:center;
	}

	.top-links__link { 
		margin: 0 0 0 1.25rem;
	}

}

@media (min-width: 992px) {

	.top-links {
		margin-bottom: .75rem; 
	}
	
	.top-links__link {
	    font-size: 1.125em;
	    background-size: 1rem 1rem;
	    margin: 0 .75rem;
	}

}


/* ------------------------------------------------------------------------ Seach Area */

.search-trigger {
	width: 1.5rem;
	height: 1.5rem;
	margin: 1.375rem 0 0 1rem;
}

@media (min-width: 768px) {
	.search-trigger {
		margin: 0 0 0 1.5rem;
		align-self: center;
	}
}

@media (min-width: 992px) {
	.search-trigger {
		margin: 0 0 .25rem 1rem;
		justify-self: end;
		align-self: end;
	}
	
	.header--scroll .search-trigger {
	    align-self: center;
	}
}

@media (min-width: 1200px) {
	.search-trigger {
		margin: 0 0 0 1.75rem;
	}
}

@media (min-width: 1440px) {
	.search-trigger {
		width: 1.875rem;
		height: 1.875rem;
		margin: 0 0 -.25rem 2rem;
	}
}


/* ------------------------------------------------------------------------ Search Full Screen */

#search {
	z-index: 2000;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	transition: all 0.5s ease-in-out;
	transform: translate(0px, -100%) scale(0, 0);
	opacity: 0;
}

#search .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display:inline-block;
	text-align:center;
}

#search input[type="search"] {	
	color: #fff;
	border: 2px solid #fff;
	border-radius: 500px;
	background: rgba(0, 0, 0, .5);
	font-size: 2rem;	
	padding-left: 2rem;
	padding-right: 2rem;
	text-align: center;
	outline: none;	
}

#search .btn {
	text-align: center;
	margin-top: 2rem;
}

#search .close {
	position: fixed;
	top: 15px;
	right: 15px;
	color: #fff;
	background-color: #F26329;
	border-color: #F26329;
	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}

#search.open {
	transform: translate(0px, 0px) scale(1, 1);
	opacity: 1;
}

@media (min-width: 768px) {	

	#search input[type="search"] {		
		font-size: 3rem;
	}

}

@media (min-width: 992px) {	

	#search .container {
		width: 75%;
	}

}

@media (min-width: 1200px) {	

	#search .container {
		width: 62%;
	}

	#search input[type="search"] {
		border: 4px solid #fff;
	}

}

@media (min-width: 1440px) {	

	#search .container {
		width: 50%;
	}

	#search input[type="search"] {
		font-size: 4rem;
	}

}



/* ------------------------------------------------------------------------ Navbar Nav */

.navbar-nav .nav-link {
	border-bottom: 1px solid #e7eef1;
	color: #444;
	padding:  .625rem 0;
	font-size: 1rem;
	font-family: 'Anton', Arial, Helvetica, sans-serif; 
	letter-spacing: .2px;
	font-weight: 400;
	display:block;
	cursor:pointer;
}

.navbar-nav .nav-item {
	background-image: none;
	padding: 0;
}

.navbar-nav .nav-item.active .nav-link {
    color: #111;
}

.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
    color: #F26329;
}

.navbar-nav .nav-item:not([href]):not([tabindex]):focus, .navbar-nav .nav-item:not([href]):not([tabindex]):hover {
    color: #F26329;
    text-decoration: none;
}

.navbar-nav .dropdown-menu {
	border: 0;
	padding-top: 0;
	background-color: #e7eef1;
	border-radius: 0;
	margin:0;
	padding:0;
}

.navbar-nav .dropdown-item {
	border-bottom: 1px solid #fff;
	padding: .625rem 1.5rem;
}

.dropdown-item.active, .dropdown-item:active { 
    color: #F26329; 
    font-weight: 600;
    text-decoration: none; 
    background-color: transparent;
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .dropdown-item:hover {
    color: #F26329;
	background-color: rgba(135,170,184,.1);
}

.navbar-nav .dropdown-item:active {
	color: rgba(135,170,184,.2);
}

.navbar-nav .dropdown-item:focus {
	background-color: rgba(135,170,184,0);
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #dbe5ea;
	box-shadow: inset 0px 2px 1px 0px rgba(0,0,0,0.1);
}

.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin:0;
}

.navbar-nav .dropdown-menu .dropdown-menu .dropdown-item {
	padding-left:2rem;
}

.navbar-nav .dropdown-item .dropdown-item {
	background-color: inherit;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
	display: none;
	border:0;
}

.navbar-nav.sm-collapsible .sub-arrow {
	border: none;
	width: 2rem;
	margin-right: 0;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
	font-weight: 600;
}

.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
    border: none;
    width: .625rem;
    height: .625rem;
    background-image: url(../../images/arrow-right-gray.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: .625rem .625rem;
}

.dropdown-toggle::after {
   display:none
}

@media (min-width: 992px) {	

	.navbar {
		align-self: end;
	}
	
	.header--scroll .navbar {
	    align-self: center;
	}

	.navbar-nav .nav-item.active .nav-link {
		color: #F26329;
	}

	.navbar-nav .nav-link {
		padding: .25rem 0!important;
		margin:  0 1rem 0 0;
		
		line-height: 1;
		border-bottom: 0;
	}
	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

	.navbar-nav .dropdown-menu {
		padding: 0;
		min-width: 18rem !important;
	}

	.navbar-nav .dropdown-menu .dropdown-menu {
		box-shadow: none;
	}

}

@media (min-width: 1200px) {

	.navbar {
		margin-bottom: -.25rem;
	}

	.navbar-nav .nav-link {
		font-size: 1.175rem;
		margin-right: 1.75rem;
	}

}

@media (min-width: 1440px) {

	.navbar-nav .nav-link {
		font-size: 1.25rem;
		margin-right: 2rem;
	}

}

@media (min-width: 1680px) {

	.navbar-nav .nav-link {
		font-size: 1.5rem;
		margin-right: 2rem;
	}

}


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0 0 0 1rem;
	border: none;
	cursor: pointer;
}

.navbar-toggler-icon {
    background-image: url(../../images/menu-icon.svg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../../images/menu-icon-open.svg);
}

@media (min-width: 992px) {

	.navbar-toggler {
		display: none;
	}

}



/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

@media (min-width: 992px) {		
	
	/*.aside {
		padding-left: 1rem
	}*/
	
	.main--full-width {
		width: 100%;
		padding-left: 0;
	}
					
}

@media (min-width: 1440px) {
	.container {
	    max-width: 1360px;
	}

	p,
	main li,
	label,
	table,
	.MembeeEventLink,
	.MembeeEventDateBegin {
		font-size: 1.125rem;
	}	
}

@media (min-width: 1680px){ 
	.container {
	    max-width: 1600px;
	}

	p,
	main li,
	.MembeeEventLink,
	.MembeeEventDateBegin {
		font-size: 1.25rem;
	}
}



/* ------------------------------------------------------------------------ Sidenav */

.sidenav {
	background-color: #eee;
}

.sidenav.sticky-top {
	top: 102px; /*This will change depending on the height of the header*/
}

.sidenav__header {
	padding: .75rem 1.25rem;
	background-color: #111;
}

.sidenav__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.sidenav__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.sidenav__list {
	list-style: none;
}

.sidenav__item {
	line-height: 1.4;
	padding: 0;
	border-top: 1px solid #fff;
	background-image: none;
}

.sidenav__item.active > .sidenav__link {
    color: #666;
    font-weight: 600;
}

.sidenav__link {
	display: block;
	font-size: 1rem;
	padding: .75rem 1.5rem;
	color: #444;
	font-weight: 400;
}

.sidenav__link:hover { 
	background-color: rgba(0,0,0,.1);
	color: #444;
	text-decoration: none;
}

.sidenav__sub-list {
	background-color: #ddd;
	margin:0;
}

.sidenav__sub-list .sidenav__item { 
	background: url(../../images/arrow-right-gray.svg) no-repeat 2rem 1.125rem;
	background-size: 0.625rem 0.625rem;
}

.sidenav__sub-list .sidenav__link {
	padding-left: 3rem ;
}


@media (max-width: 992px) {

	.sidenav.sticky-top {
		position: static; /*disable on smaller screens*/
	}

}


/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: 2.5rem 0;
}

.section--grey {
	background-color: #eee;
}

.section--darkgrey {
	background-color: #ddd;
}

.section--business-directory iframe[width] {
    width:100% !important;
}

@media (min-width: 992px) {	

	.section { 
		padding: 3rem 0; 
	}

}

@media (min-width: 1440px) {	

	.section { 
		padding: 4rem 0; 
	}

}



/* ------------------------------------------------------------------------ Jumbotron/banner */

.jumbotron {
	margin: 0;
	min-height: 18rem;
	background-color: #222;
	position: relative;
	padding: 2.5rem 0;
	overflow: hidden;
}

.jumbotron--home {
	/*min-height: 24rem;*/
	min-height: 39rem;
}

.jumbotron__image,
.jumbotron__overlay {
	position: absolute;
	width:100%;
	height: 100%;
	top:0;
	left:0;
}

.jumbotron__image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.jumbotron__overlay {
	/*height: 75%;*/
		height: 100%;
	bottom:0;
	top:auto;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,.75) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
	
}

.jumbotron--home .jumbotron__overlay {
	background: -moz-linear-gradient(top, rgba(0,0,0,.25) 0%, rgba(0,0,0,.75) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,.25) 0%,rgba(0,0,0,.75) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%,rgba(0,0,0,.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
	
}

.jumbotron__caption {
	color: #fff;
}

.jumbotron__link {
	display: block;
	width: 100%;
	height: 100%;
}

.jumbotron__link:hover {
	text-decoration: none;
}

@media (min-width: 992px) {	
	
	.jumbotron {
		padding: 3.5rem 0;
		min-height: 22rem;
	}

	.jumbotron--home {
		/*min-height: 30rem;*/
			min-height: 32rem;
	}

}

@media (min-width: 1440px) {

	.jumbotron {
		padding: 4.5rem 0;
		min-height: 28rem;
	}

	.jumbotron--home {
	/*	min-height: 36rem;*/
		min-height: 38rem;
	}

}

@media (min-width: 1680px) {	

	.jumbotron--home {
		/*min-height: 48rem;*/
		        min-height: 43rem;
	}

	.jumbotron--home h1, .jumbotron--home .h1 {
		font-size: 6rem;
	}

	.jumbotron--home .intro-text {
		font-size:2rem;
	}	

}

/* ------------------------------------------------------------------------ Home Swiper */
.swiper-container .swiper-pagination-bullet-active {
        background: #f26329 !important;
            opacity: 1;

}
.swiper-container .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width:15px;
    height:15px;
}

/* ------------------------------------------------------------------------ Swiper */
.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding-bottom: 20%;
}

a.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: unset;
    
}

.swiper-button-prev {
    background: url('../../images/carousel-left.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center center;
    font-family: unset;
}

.swiper-button-next {
    background: url('../../images/carousel-right.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center center;
    font-family: unset;
}

@media (min-width: 480px) {
    a.swiper-slide {
        padding-bottom: 20%;    
    }
}

@media (min-width: 768px) {
    a.swiper-slide {
        padding-bottom: 15%;    
    }
}

@media (min-width: 992px) {
    a.swiper-slide {
        padding-bottom: 10%;    
    }
}

@media (min-width: 1440px) {
    .swiper-button-prev, .swiper-button-next {
        background-size: 20px;
    }
}

/* ------------------------------------------------------------------------ Image Callouts */

.callout--image {
	display:flex;
}

.callout--image__link {
	display:block;
	color: inherit;
	font-weight: 400;
	padding-bottom: 4.75rem;
	position:relative;
	width:100%;
}

.callout--image__link:hover {
	text-decoration: none;
}

.callout--news__link {
	border-top: 4px solid #87AAB8;
	background-color: #eee;
    padding: .75rem 2rem 6.75rem 2rem;
}

.callout--news__link:hover {
	background-color: #f8f8f8;
}

.callout--advertise__link {
	border-top: 4px solid #87AAB8;
	background-color: #eee;
    padding: .75rem 2rem 1.25rem 2rem;
}


.callout--image__img {
	height: 0;
	padding-bottom: 57%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.25s ease-in-out;
	margin-bottom:1.5rem;
}

.callout--image__link:hover .callout--image__img {
	transform: translateY(-5px);
}

.callout--news__img {
    margin-top: 1.75rem;
	background-size: 90%;
	background-color: #fff;
	background-position: center;
}

.callout--image__link:hover .btn-primary,
.callout--image__link .btn-primary:active,
.callout--image__link .btn-primary:not([disabled]):not(.disabled).active, .callout--image__link .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #004c68;
	border-color: #004c68;
	box-shadow: none;
}

.callout--image__btn {
	position:absolute;
	bottom:0;
}



/* ------------------------------------------------------------------------ Icon Callouts */	

.callout--icon:hover {
	filter: brightness(120%);
}

.callout--icon--benefits { 
	background-color: #000;
}

.callout--icon--directory { 
	background-color: #355e6d;
}

.callout--icon--events {  
	background-color: #013b50;
}

.callout--icon--news { 
	background-color: #00151d;
}

.callout--icon--profile {  
	background-color: #013b50;
}

.callout--icon--invoices { 
	background-color: #00151d;
}

.callout--icon__link {
	display:block;
	padding:4rem 2rem 2rem 2rem;
}

.callout--icon__link:hover {
	text-decoration: none;
}

.callout--icon__heading, .callout__heading__sm, .callout__heading__lg {
	color: #fff;
}

.callout--icon__heading {
	line-height:1.3;
}

.callout__heading__sm {
	font-size: 1.5rem;
}

.callout__heading__lg {
	font-size: 1.75rem;
}

.callout--icon__icon {
	font-size: .5rem;
	width: 5.5em;
	height: 4.5em;
	margin:0 0 1rem 0;
	background-repeat: no-repeat;
	transition: all 0.25s ease-in-out;
}

.callout--icon--benefits .callout--icon__icon { 
	width: 5.5em;
}

.callout--icon--directory .callout--icon__icon { 
	width: 4.188em;
}

.callout--icon--events .callout--icon__icon {  
	width: 4.188em
}

.callout--icon--news  .callout--icon__icon{ 
	width: 5em;
}

.callout--icon--profile .callout--icon__icon { 
	width:4.188em;
}

.callout--icon--invoices .callout--icon__icon { 
	width: 4.188em;
}

.callout--icon:hover .callout--icon__icon {
	transform: translateY(-.5em);
}


@media (min-width: 1200px) {

	.callout--icon__link {
		padding:6rem 3rem 3rem 3rem;
	}

	.callout__heading__sm {
		font-size: 1.75rem;
	}

	.callout__heading__lg {
		font-size: 2rem;
	}

	.callout--icon__icon {
		font-size: .625rem;		
	}

}

@media (min-width: 1680px) {

	.callout--icon__link {
		padding:8rem 4rem 4rem 4rem;
	}

	.callout__heading__sm {
		font-size: 1.75rem;
	}

	.callout__heading__lg {
		font-size: 2.625rem;
	}

	.callout--icon__icon {
		font-size: .875rem;
		margin-bottom: 1.5rem;
	}


}



/* ------------------------------------------------------------------------ Callout Join Now */	

.callout--join {
	background: url(../../images/logo-join.svg) no-repeat 50% center;
	background-size: 10rem 13.25rem; 
	padding:4rem 0 5rem 0;
}

.callout--join__link {
	display:block;
}

.callout--join__link:hover {
	text-decoration: none;
}

.callout--join h2 {
	text-shadow:
    3px 3px 0 #fff,
    /* Simulated effect for Firefox and Opera
       and nice enhancement for WebKit */
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
   -1px  1px 0 #fff,
    1px  1px 0 #fff;

    transition: color .25s;
}

.callout--join__link:hover h2 {
	color: #004C68;
}

.callout--join__link:hover .btn-secondary,
.callout--join__link .btn-secondary:active,
.callout--join__link .btn-secondary:not([disabled]):not(.disabled).active, .callout--join__link .btn-secondary:not([disabled]):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
	background-color: #F26329;
	border-color: #F26329;
	box-shadow: none;
}


@media (min-width: 768px) {

	.callout--join {
		background-position: 63% center;
		background-size: 8rem 10.625rem; 
	}

}


@media (min-width: 1200px) {

	.callout--join {
		background-position: 59% center;
		background-size: 10rem 13.25rem;
	}

}

@media (min-width: 1680px) {

	.callout--join {
		background: url(../../images/logo-join.svg) no-repeat 60% center;
		background-size: 11rem 14.625rem; 
		padding:4rem 0;
	}

}

/* ------------------------------------------------------------------------ Callout gallery */

.callout--gallery {
    flex-direction: column;
    align-items: center;
    justify-content: center;
      text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.25rem;
        margin: 0 auto;
            overflow: hidden;
    position: relative;
}
.gallery a {overflow: hidden;position: relative; transition: all 0.25s;}
.callout--gallery p {
    position: absolute;
    color: #fff;
    z-index: 2;
}
.callout--gallery:after {
   content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,76,104,.7);
    z-index: 1;
    transition: all .25s ease;
}
.callout--gallery:hover:after, .gallery a:hover:after {
   background: rgba(0,76,104,.85);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all .25s ease;
}
 .gallery a:hover:after {
     background: rgba(0,76,104,.50); 
 }
.callout--gallery .callout__image {
    transition: all 0.25s;
    display: block;
    width: auto;
       min-height: 387px;
    max-height: 494px;
    object-fit: cover;
}
a.callout--gallery:hover {
    text-decoration: none;
    transition: all .25s ease;
}
img.mfp-img {max-height:600px !important;}
.card-columns .card {
    margin-bottom: 2rem;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: pointer;
}
.mfp-zoom-out-cur {
        cursor: default;
}
  /*.gallery .card-img {
            height: 100% !important;
            border-radius:0;
    }*/
    .gallery .card-img {
    height: 0;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.25s ease-in-out;
    background-position: center;
    margin: 0 auto;
   border-radius:0;
}
    @media (min-width: 576px) {
    .card-columns {
        column-gap: 2rem;
    }
}
      @media (min-width: 1290px) {
        .gallery .card-img {
            padding-bottom: 90%;
        }
    }
     @media (min-width: 1440px) {
    .gallery .card-img {
         padding-bottom: 80%;
        }
    }
 
/* ------------------------------------------------------------------------ Cards */

/*.card-group .row {*/
/*	width: 100%;*/
/*}*/

.card, .card-header:first-child  {
	border-radius: 0;
}

.card {
	background-color: #eee;
	border:none;
}

.card:hover {
	text-decoration: none;
}

.card-body {
	padding: 1.75rem 2rem 1.5rem 2rem;
}

.card-header {
	background-color: #111;
    border-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.card__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.card__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.card__header-no-link {
	transition: all 0.25s;
}

.card:hover .card__header-no-link {
	color: #777;
}

.card-text {
	font-size: 1rem;
	font-weight: 400;
	color: #444;
}

.card__date, .card:hover .card__date {
	color: #888;
}

.card-text small {
	font-size: 90%;
}


@media (min-width: 1680px) {

	.card-body {
		padding: 2.75rem 3rem 2.5rem 3rem;
	}

}



/* ------------------------------------------------------------------------ Staff Cards */

.card--image {
	background-color: #fff;
}

.card--image--staff {
	padding-bottom: 5.5rem;
	position: relative;
}

.card--image__img {
	height: 0;
	padding-bottom: 79%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.25s ease-in-out;
	margin-bottom:1.5rem;
}

.card--image--board .card--image__img {
	padding-bottom: 100%;
}

.card--image__contact {
	position:absolute;
	bottom:0;
}


/* ------------------------------------------------------------------------ List Group */

.list-group__link {
	display: block;
	font-weight: 400;
	transition: all 0.25s;
	padding: 1.0rem 1.25rem;
}

.list-group__link:hover {
	text-decoration: none;
	background-color: #f8f8f8;
}

.list-group__link:hover .list-group__heading {
	text-decoration: underline;
}

.list-group-item, .list-group-item:last-child {
	padding: 0;
	background-image: none;
}


.list-group-item.active {
	background-color: #666;
    border-color: #666;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion {
	background-color :#fff;
}

.accordion__card-header {
	background-color: transparent;
    border-bottom: 0;
    color: #fff;
    font-weight: 700;
    padding:0;
}

.accordion__card-link {
	padding: 1.25rem 2rem;
	display:block;
	text-decoration:none;
}

.accordion__card-link:hover {
	text-decoration: none;
}

.accordion__card-text {
	width: calc(100% - 1.5rem);
}

.accordion__icon {
	float:right;
	width:1rem;
	height:.75rem;
	background: url(../../images/accordion-plus-icon.svg) no-repeat center; 
	background-size: .75rem;
}

.active .accordion__icon {
	background: url(../../images/accordion-minus-icon.svg) no-repeat center; 
}

.accordion__card-body {
	border-top: 1px solid #ddd;
}


@media (min-width: 1680px) {

	.accordion__card-body {
	    padding: 1.75rem 2rem;
	}

}



/* ------------------------------------------------------------------------ Events List */

.events-item__link {
	color:inherit;
	font-weight: 400;
	display: block;
}

.events-item__link:hover {
	text-decoration: none;
}

.events-item__link .a--more {
	font-weight: 600;
}

.events-item__link:hover .a--more {
	padding-right:1.25em;
}



/* ------------------------------------------------------------------------ Membee Events List */

.MembeeEvent {
    padding: 1.5rem 0;
	border-bottom: 2px dashed rgba(0,0,0,.1);
}

.MembeeEvent:first-child {
    padding-top: .75rem;
}

.MembeeEvent:last-child {
    padding-bottom: .75rem;
    border-bottom: 0;
}

@media (min-width: 1440px) {
	
	.MembeeEvent {
        padding: 2rem 0;
    }

}



/* ------------------------------------------------------------------------ Adspeed */

.adspeed__img {
	margin:0 auto 3rem auto;
	display:block;
}

.adspeed__img:last-child {
	margin-bottom:1rem;
}



/* ------------------------------------------------------------------------ Pagination */

.pagination {
	flex-wrap: wrap;
}

.page-item {
	background-image: none;
	padding: 0;
	font-size: 1.125rem;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
	border-radius:0;
}

.page-link {
	font-weight: 400;
	color: #222;
	background-color: #fff;
	border-color: #fff;
}

.pagination--alpha-anchors .page-link {
	font-weight: 700;
	color: #004c68;
	}

.pagination--alpha-anchors .page-no-link {
	font-weight: 400;
	color: #222;
	padding: .55rem .75rem .45rem .75rem;
	line-height: 1.25;
}


.page-link img {
	width:.625rem;
	height: .625rem;
}

.page-link:hover {
	background-color: #eee;
	border-color: #fff;
	color: #004c68;
}

.page-item.active .page-link {
	background-color: #004c68;
	border-color: #fff;
	font-weight: bold;
}



/* ------------------------------------------------------------------------ Tables */

.table {
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.125);
}

.table th {
    background-color: #eee;
}

.table .thead-dark th {
	background-color: #233574;
    border: none;
}

.table td, .table th {
    border-top: 1px solid rgba(0,0,0,.125);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.table td {vertical-align: middle;}

.table-md td, .table-md th {padding: .5rem;}



/* ------------------------------------------------------------------------ Forms */
	
legend { font-size: 1.25rem;}

.required-input, .field-validation-error {
	color: #F26329 !important;
	font-size: 0.875rem;
	font-weight:bold;
}

.form-text {
	font-style: italic;
	font-size: 80%;
    font-weight: 400;
    }

.form-control {
	border-radius:0;
	border-color: #ddd;
	height: calc(2em + .75rem + 2px);
}

.form-control:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.5);
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
}

.form-control-file {cursor: pointer;}

/*custom radio and checkbox*/
.custom-control {
	padding-left: 1.75rem;
	margin-bottom: 0;
	cursor: pointer;
}

.custom-control-description {
	font-weight: 400;
}

.custom-control-indicator {
	top: .375rem;
	width: 1.125rem;
    height: 1.125rem;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.custom-control-input:checked~.custom-control-indicator {
	background-color: #666;
	border-color: #666;
}

.custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none;
    border-color: #000;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}		


			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	padding: 2.5rem 0 0 0;
	background-color: #535353;
	color: #fff;
}

.footer a, .footer a:hover { 
	color: #fff;
}

.footer__link {
	margin-right: 1rem;
	}	
		
.footer__icon {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	margin: 0 1rem 0 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 2.5rem 2.5rem;
	transition: all .25s;
}

.footer__icon:hover { 
	transform: translateY(-5px);
}

.footer__icon--twitter { 
	background-image: url(../../images/twitter.svg); 
}

.footer__icon--youtube { 
	background-image: url(../../images/youtube.svg); 
}		
			
.footer__icon--instagram { 
	background-image: url(../../images/instagram.svg); 
}		

.footer__icon--linkedin { 
	background-image: url(../../images/linkedin.svg); 
}

.footer__sub {
	background-color: #fff;
	padding:1.5rem 0;
	margin-top: 2.5rem;
}

.footer__rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__rkd-image {
    vertical-align: baseline;
    height: 1rem !important;
}


.footer__copyright {
	margin-bottom: 0;
	color: #444;
	font-size: 1rem;
}	

.footer__copyright a {
	color: #444;
}

@media (min-width: 992px) {	

	.footer { 
		height: 440px;
		overflow: hidden;
		width: 100%;
		position: absolute;
	    bottom: 0;
	    right: 0;
	    padding-top: 3rem; 
	}

	.footer__sub {
		margin-top: 3rem;
	}

}

@media (min-width: 1440px) {	

	.footer { 
	    padding-top: 4rem; 
	}

	.footer__sub {
		margin-top: 4rem;
	}

}
