/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #111;
	--error: #e6004c;

	--grey-soft: #B1B5CE;
	--grey-lt: #f3f3f3;
	--grey-md: #888;
	--grey-dk: #555;
	
	--red: #EE5253;
	--navy: #1F2251;
	--green :#10AC84;

	--header-height: 77px;
	--header-height-scroll: 72px;
	--section-p: 4rem;
	--section-p-sm: 3rem;

	--swiper-theme-color:#fff;
	--swiper-navigation-size: 2rem;
}

@media (min-width: 1400px) {
	:root {
		--section-p: 7rem;
		--section-p-sm: 4rem;

		--swiper-navigation-size: 2.5rem;
	}
}


/* ------------------------------------------------------------------------ Page Styles & Resets */

body {
	font: 400 100%/1.6 'DM Sans', Arial, Helvetica, sans-serif; 
	color: var(--black);
	font-family: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
	background-color: var(--white);
	text-wrap: pretty;
} 

@media (min-width: 992px) {
	body {
		/*padding-top: var(--header-height);*/
	} 
}

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--grey-dk);
	color: var(--white);
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1050;
	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: var(--white);
	background-color: var(--grey-md);
}

a:focus, .btn: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: 700;	
	margin-bottom: 1rem;
}	

h1, .h1 {	
	font-size: 2rem;
	text-transform: uppercase;	
	line-height:1.2;	
}
	
h2, .h2 {
	font-size: 1.5rem;
	line-height:1.2; 
}
		
h3, .h3 { 
	font-size: 1.375rem; 
	line-height:1.4;
}	

h2, h3  { 
	margin-top: 3rem;
}

h3.heading {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 0em;
	padding: 1em 0;
}

hr + h2, 
hr + h3, 
section h2:first-child,
section h3:first-child {
	margin-top: 0;
}

h2 + h3 {
	margin-top: 3rem;
}
	

@media (min-width: 992px) {	
	h1, .h1 {
		font-size: 2.5rem;
	}

	h2, .h2 {
		font-size: 2rem;
	}

	h3, .h3, h3.heading { 
		font-size: 1.5rem; 
	}
}	

@media (min-width: 1400px) {	
	h1, .h1 {
		font-size: 4rem;
	}

	h2, .h2 {
		font-size: 3rem;
	}

	h3, .h3 { 
		font-size: 2rem; 
	}		
}	


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    	padding: 0 0 0.25rem 1.125em;
	background: url(/images/arrow-grey.svg) no-repeat left 0.375em;
	background-size: 0.75em 0.75em;
}

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: var(--grey-md)!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: 1400px) {	
	p,
	li,
	label,
	table,
	.btn {
		font-size: 1.125rem;
	}

	.intro-text {
		font-size:1.375rem;
	}

	.note {
		font-size: 1rem;
	}	
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--grey-md); 
	font-weight: 700;
	transition: all .25s ease;
	text-decoration: underline;
}	

a:hover {
	color: var(--grey-dk);
	text-decoration: none;
	transition: all .25s ease;
}

.a--no-underline {
	text-decoration: none;
}

.a--no-underline:hover {
	text-decoration: underline;
}

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 .25s ease;
}				

a img:hover { 
	opacity: .5;
}	


@media (min-width: 992px) {	
	/*Change value to header height*/
	.a--anchor {
	    border-top: var(--header-height-scroll) solid transparent;
	    margin-top: calc(var(--header-height-scroll) * -1)!important;
	    -webkit-background-clip: padding-box;
	    -moz-background-clip: padding;
	    background-clip: padding-box;
	}
}	


/* ------------------------------------------------------------------------ Button Styles */

.btn {
	margin-top: 1rem; 
	padding: .625rem 1.5rem;
	border-radius: 10px;
	text-transform: uppercase;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--navy);
	border-color: var(--navy); 
}

.btn-primary:hover,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle { 
	background-color: var(--grey-soft);
	border-color: var(--grey-soft);
	box-shadow: none;
	color: var(--black);
}

.btn-secondary {
	background-color: var(--grey-soft);
	border-color: var(--grey-soft);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-check:active+.secondary,
.btn-check:checked+.secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle { 
	background-color: var(--green);
	border-color: var(--green);
	box-shadow: none;
	color: var(--white);
}

.btn-signout {
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
	color: var(--white);
	font-style: italic;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 0.25em 0.5em;
	border-radius: 10px;
}

	.btn-signout:hover {
		color: var(--navy);
		background-color: var(--white);
	}

.btn-add {
	background-image: url("/images/add_icon.svg");
	background-size: 1em;
	background-position: center center;
	background-repeat: no-repeat;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	background-color: var(--navy);
	display: block;
}

.btn-add:hover {
	background-color: var(--red);
}


.btn-list:hover {
	background-color: var(--green);
	color: var(--white);
}

.btn-icon {
	display: block;
}

.btn-icon:before {
	content: '';
    background-image: url(/images/list-icon.svg);
    background-size: 1em;
    background-position: center center;
    background-repeat: no-repeat;
    width: 1.5em;
    height: 1em;
    display: inline-block;
    position: relative;
    top: 0.15em;
    line-height: 1;
}

@media (min-width: 1400px) {	
	.btn {
		padding: .75rem 2rem;
	}
}


/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}


@media (min-width: 768px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem .375rem 0;
		max-width:33%;
	}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 .375rem 1.5rem;
		max-width:33%;
	}
}	

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
}	

@media (min-width: 1400px) {
	hr, .hr {
		margin: 3rem auto;
	}
}	


/* ------------------------------------------------------------------------ Additional Utility Classes/Bootstrap Overrides */

.p-section {
	padding: var(--section-p) 0;
}

.pt-section {
	padding-top: var(--section-p);
}

.pb-section {
	padding-bottom: var(--section-p);
}


.pt-section-sm {
	padding-top: var(--section-p-sm);
}

.pb-section-sm {
	padding-bottom: var(--section-p-sm);
}

.pe-section-sm {
	padding-right: var(--section-p-sm);
}

.ps-section-sm {
	padding-left: var(--section-p-sm);
}


.mt-section {
	margin-top: var(--section-p);
}

.mb-section {
	margin-bottom: var(--section-p);
}

.me-section {
	margin-right: var(--section-p);
}

.ms-section {
	margin-left: var(--section-p);
}


.mt-section-sm {
	margin-top: var(--section-p-sm);
}

.mb-section-sm {
	margin-bottom: var(--section-p-sm);
}

.me-section-sm {
	margin-right: var(--section-p-sm);
}

.ms-section-sm {
	margin-left: var(--section-p-sm);
}


.mt-4b,
.my-4b {
	margin-top: 2rem;
}

.mb-4b,
.my-4b {
	margin-bottom: 2rem;
}

.me-4b,
.mx-4b {
	margin-right: 2rem;
}

.ms-4b,
.mx-4b {
	margin-left: 2rem;
}

.sticky-top {
    top: calc(var(--header-height-scroll) + var(--section-p-sm));
}

/*For videos embedded through rte*/
.embeditem {
    position: relative;
    width: 100%;
    --bs-aspect-ratio: calc(9 / 16* 100%);
}

.embeditem::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.embeditem>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 3.875em; 
	width: 100%;
	transition: all .25s ease;
}

.header--scroll .logo__img {
	
}

.header { 
	z-index: 1040;
	background-color: var(--navy);
	position: relative;
}

.contact-local {
	color: var(--white);
	font-weight: normal;
	text-decoration: none;
	font-size: 15px;
}

.contact-local span {
	margin-top: 0.5em;
	line-height: 1;
	display: block;
}

.navbar--fixed-top {
	padding: 1rem;
	transition: all .25s ease;
}

@media (min-width: 768px) {			
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}
}

@media (min-width: 992px) {

	.header--scroll .navbar--fixed-top {
	    padding: .5rem;
	    background-color: rgba(255,255,255,.75) !important;
		backdrop-filter: blur(8px);
	}

}

/* ------------------------------------------------------------------------ Arrow */

.arrow__container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: -1;
}

.arrow__down {
    width: 45px;
    height: 45px;
    transform: rotate(45deg);
    background: var(--navy);
    border-radius: 5px;
    position: relative;
    top: -0.5em;
}

/* ------------------------------------------------------------------------ Navbar Nav */

.navbar {
	border-bottom: 1px solid var(--grey-soft);
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .nav-link {
	color: var(--black);
	text-transform: uppercase;
	padding: .375rem 1.5rem .375rem 0;
	font-size: 1.125rem;
	position: relative;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--grey-dk);
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: var(--white);
	margin:0 0 .5rem 0;
	padding:0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.navbar-nav .dropdown-menu li > .dropdown-item.active {
	color: var(--grey-dk);
	font-weight: 700;
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--grey-dk);
	background-color: transparent;
}

.dropdown-item.active {
	font-weight: 700;
}

.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
	color: var(--grey-md);
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--white);
	color: inherit;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: var(--white);
	padding-left: 1rem;
}

.icon-arrow:after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}

.g-2b {
    --bs-gutter-y: 0.75rem;
}

.dropdown-toggle::after{
    display:none;
}

.dropdown-toggle .icon-arrow {
    position: absolute;
    right: 0;
}


@media (min-width: 992px) {	
	.navbar {
		margin-top: 0; 
	}

	.navbar--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
		display: none;
	}

	.navbar-nav .nav-link {
		padding: .5rem 0!important;
		margin-right: 1.5rem;
		border-bottom: 0;
	}

	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

	.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
	    color: var(--grey-md);
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 15rem !important;
	}

	.navbar-nav .dropdown-item {
		padding: .25rem 1.5rem;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.navbar-nav .dropdown-menu li.active:hover .dropdown-item, .navbar-nav .dropdown-item:hover {
		color: var(--grey-md);
	}

	.dropdown-menu>li:hover {
	    background-color: transparent;
	}

	.navbar-nav .megamenu {   
	    padding: 1rem 0;
	    margin-top: -1rem !important;
	} 

	.dropdown-toggle:after {
	 	display: none;
	}
}

@media (min-width: 1400px) {
	.navbar-nav .nav-link {
		margin-right: 2rem;
	}
}


/* ------------------------------------------------------------------------ Side Nav */

.sidenav li {
	padding: 0;
	background-image: none;
}

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: 400;
	color: var(--black);
}

.sidenav .nav-link:hover {
    text-decoration: underline;
    color: var(--grey-md);
}

.sidenav .nav-link.active {
	color: var(--grey-dk);
	font-weight: 700;
}

.sidenav .submenu {
	margin: 0 0 .5rem 0;
    padding: 0 0 0 1rem;
}

.sidenav .icon-arrow.show::after {
    content: '-';
    font-size: 1.125rem;
}

.sidenav .icon-arrow::after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}


@media all and (max-width: 991px) and (min-width: 0px) {	
	.sidenav {
		border: 1px solid var(--grey-md);
		padding: 1.5rem 2rem;
	}
}



/* ------------------------------------------------------------------------ Bootstrap Menu Off Canvas Mobile */

body.offcanvas-active {
	overflow:hidden;
}

.offcanvas-header { 
	display:none;
}

.offcanvas-header .btn-close {
	width: 1.75em;
    height: 1.5em;
    background-position: center .5rem;
}

.screen-darken {
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(0, 0, 0, 0.5);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index:10; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}



	.offcanvas-header { 
		padding: 0;	
		display:block;
	}

	.mobile-offcanvas {
		visibility: hidden;
		transform:translateX(-100%);
	    border-radius:0; 
		display:block;
	    position: fixed;
	    top: 0; left:0;
	    height: 100%;
	    z-index: 1200;
	    width:100%;
	    overflow-y: scroll;
	    overflow-x: hidden;
	    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	}

	.mobile-offcanvas.show {
		visibility: visible;
    	transform: translateX(0);
	}

	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}



/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0;
	border: none;
	cursor: pointer;
	border-radius: 0;
    font-size: 2em;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
    background-image: url("/images/menu-icon-reverse.svg");
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url("/images/menu-icon-open-reverse.svg");
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
	
	.navbar-nav {
        align-items: unset;
    }
}

/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

@media (min-width: 1680px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	    max-width: 1600px;
	}
}


/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
}

.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt);
}

.header { 
	height: 27.5vh;
}

@media(min-width:360px){
	.welcome-section {
		height: 12.5vh;
	}

	.quick-access-section {
		height: 35vh;
	}

	.more-information-section {
		height: 20vh;
	}
}


.footer {
	height: 5vh;
}

@media (min-width: 992px) {
	.header, .welcome-section, .quick-access-section, .more-information-section {
		height: unset;
	}

	body{
		padding-bottom:32px;
	}
}

@media (max-height: 800px) and (max-width: 992px) {
	.header, .welcome-section, .quick-access-section, .more-information-section {
		height: unset;
	}

	body{
		padding-bottom:32px;
	}
}

/* ------------------------------------------------------------------------ Dashboard Welcome Section */

.welcome-section h2 {
	font-size: 15px;
}

.welcome-section p {
	font-size: 12px;
}

@media (min-width: 992px) {
	.welcome-section h2 {
		font-size: 2.25em;
	}
	.welcome-section p {
		font-size: 18px;
	}
}

/* ------------------------------------------------------------------------ Cards */

main .cards-group {
	margin-top: 2.5rem;	
}

main .cards-group:first-child {
	margin-top: 0;	
}

main .cards-group .card {
	margin-bottom: 3rem;	
}

main .cards-group .card:first-child {
	margin-top: .5rem;
}

main .cards-group:last-child .card:last-child {
	margin-bottom: .5rem;
}

.card {
	border-radius: 0;
	border: 0;
}

.card--border {
	border:  2px solid var(--grey-lt);
}

.card-body {
	padding: 2rem;
}

.card a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in-out;
}


/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
}

.list-group-item {
    padding: .75rem 1rem;
    color: var(--black);
    background-image: none;
}

.list-group-item:last-child {
    padding-bottom: .75rem;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion-button {
	border: 1px solid transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--grey-soft);
	box-shadow: 0;
}

.accordion-button::after {
	background-image: url("/images/arrow-down-lt.svg");
	height: 0.5rem;
	background-size: contain;
}


.accordion-button:not(.collapsed)::after { 
	background-image: url("/images/arrow-down-lt.svg");
}

.accordion-item:last-of-type .accordion-button.collapsed, .accordion-flush .accordion-item .accordion-button {
	border-radius: 10px;
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item:last-child {
}

.accordion-flush .accordion-button {
	padding: 1rem;
	border-radius: 10px;
	background: var(--navy);
	color: var(--white);
}

.accordion-flush .accordion-body {
    padding: 1rem .5rem;
}


/* ------------------------------------------------------------------------ Tables */

/*Override table inline styles*/

.table[style] {
	width:100% !important;
	height:auto !important;
}

.table td[style],
.table th[style] {
	height:auto !important;
}


.table {
	margin-bottom: 0;
}

.table thead {
	background-color: var(--navy);
	color: var(--white);
}

.table td, .table th {
    border-bottom: 1px solid var(--grey-soft);
    padding: 1rem .5rem;
    vertical-align: middle;
}

.table th {
    font-weight: 500;
}

.table thead th {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}


/* ------------------------------------------------------------------------ Pagination */

.pagination {
	flex-wrap: wrap;
	margin-top: 3rem;
}

.page-item {
	background-image: none;
	padding: 0;
	margin: 0 0 .5rem 0;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
	border-radius: 0;
}

.page-item--prev .page-link,
.page-item--next .page-link {
	background: var(--grey-md) url(/images/arrow-white.svg) no-repeat center;
	background-size: .5rem;
}

.page-item--prev .page-link {
	transform: rotate(180deg);
}

.page-item--prev .page-link:hover,
.page-item--next .page-link:hover {
	background-color: var(--grey-dk);
	color: var(--white);
}


.page-link {
	min-width:2.5rem;
	height: 2.5rem;
	padding: .375rem .625rem 0 .625rem;
	color: var(--grey-dark);
	background-color: var(--white);
	border-color: var(--white);
	text-align: center;
	border-left:  1px solid var(--grey-soft);
}

.page-link:hover {
	background-color: var(--grey-soft);
	border-color: var(--white);
	color: var(--grey-dk);
}

.page-item.active .page-link {
	background-color: var(--grey-dk);
	border-color: var(--white);
	font-weight: bold;
}


@media (min-width: 1400px) {
	.page-link {
		min-width:2.75rem;
		height: 2.75rem;
		padding: .5rem .75rem 0 .75rem;
	}

	.page-item--prev .page-link,
	.page-item--next .page-link {
		background-size: .75rem;
	}
}

/* ------------------------------------------------------------------------ Bio */

.bio {
	width: 100%;
	position: relative;
	text-align: center;
}

.bio .image {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 100%;
    border: solid 1px #fff;
	width: 5em;
	height: 5em;
	margin: 0 auto;
	position: relative;
}

.bio .status {
	position: relative;
    background: var(--green);
    color: var(--white);
    border-radius: 10px;
    padding: 0.15em 1em;
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: bold;
    top: -1em;
}

.bio .name {
	font-size: 1.5em;
	color: var(--white);
}

.bio .region {
	font-size: 0.9375em;
	font-weight: bold;
	color: var(--white);
}


/* ------------------------------------------------------------------------ Job Listing */

section.jobs .job-listing {
	margin-bottom: 2em;
}

section.jobs .job-listing:last-child {
	margin-bottom: 0;
}

.job-listing {
    padding: 2em;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.job-listing.qualified {
	position: relative;
	border: solid 2px var(--green);
}

.job-listing.qualified .tag {
	position: absolute;
    background-color: var(--green);
    bottom: 0;
    right: 0;
    color: var(--white);
    padding: 0.5em 1em;
    border-radius: 8px 0 8px 0;
    font-size: 0.85em;
	font-weight: bold;
}

.pill-skill {
	background: var(--navy);
	color: var(--white);
}

.map-link {
	color: var(--navy);
	text-decoration: underline;
	font-weight: normal;
	font-style: italic;
	font-size: 0.85em;
}

/* ------------------------------------------------------------------------ Filter */

.filter-function {
	flex-wrap: wrap;
}

/* ------------------------------------------------------------------------ Language */

.language {
	color: var(--navy);
    text-transform: uppercase;
    background-color: var(--grey-soft);
    padding: 0.5em;
    border-radius: 6px;
    line-height: 1;
    font-weight: bold;
    font-size: 1em;
	cursor: poiner;
	text-decoration: none;
	border: 0;
	transition: all .25s ease;
}

.language:hover {
	background-color: var(--grey-soft);
	transition: all .25s ease;
}

/* ------------------------------------------------------------------------ App */

.app_block {
	text-align: center;
	max-width: unset;
	flex: 0 0 auto;
    width: 100%;
}

a .app {
	background-color: var(--navy);
	border-radius: 10px;
	height: 8vh;
	width: 100%;
	position: relative;
	display: block;
	transition: all .25s ease;
	border: solid 2px var(--navy);
}

.app-notification {
	position: absolute;
    background-color: var(--red);
    color: var(--white);
    border-radius: 14px;
    right: -0.75em;
    top: -0.75em;
    padding: 0.25em 1em;
	font-size: 12px;
}

.app_block a {
	color: var(--black);
	text-decoration: none;
}

.app_block span.title {
	line-height: 1;
    margin: 0.5em 0 1em 0;
    text-align: center;
    font-size: 12px;
    display: block;
}

.app svg {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 1em;
}

a .app:hover {background-color: var(--white); transition: all .25s ease;}

a.report svg:hover,
a.listings svg:hover,
a.bids svg:hover,
a.training svg:hover,
a.dues svg:hover,
a.history svg:hover,
a.hours svg:hover,
a.skills svg:hover,
a.messages svg:hover,
a.profile svg:hover,
a.document svg:hover,
a.faq svg:hover
	{fill: var(--navy); transition: all .25s ease;}

a.report svg { fill:#FFFFFF; }
a.listings svg { fill:#A29BFE; }
a.bids svg { fill:#55EFC4; }
a.training svg { fill:#FDCB6E; }
a.dues svg { fill:#00CEC9; }
a.history svg { fill:#FF9F43; }
a.hours svg { fill:#6C5CE7; }
a.skills svg { fill:#CCCCCC; }
a.messages svg { fill:#00B894; }
a.profile svg { fill:#FF7675; }
a.document svg { fill:#B2BEC3; }
a.faq svg { fill:#74B9FF; }


.app_block {
	text-align: center;
	max-width: unset;
	flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 230px) {
	.app_block {
		width: 50%;
	}
}

@media (min-width: 360px) {
	.app_block {
		width: 25%;
	}
}

@media (min-width: 992px) {
	.app_block {
		text-align: center;
		max-width: 9em;
		width: 100%;
	}
	
	a .app {
		border-radius: 10px;
		height: 8em;
		width: 8em;
		margin: 0 auto;
	}
	
	.app_block span.title {
		font-size: 1em;
	}
	
	a .app svg {
		padding: 2em;
	}
	
	.app-notification {
		font-size: 1em;
	}
}

@media (min-height: 600px) and (min-width: 541px) {
	a .app svg {
		width: 100%;
		height: 100%;
		padding: 2em;
	}
	
	a .app {
		background-color: var(--navy);
		border-radius: 10px;
		height: 7em;
		width: 100%;
		margin: 0 auto;
	}
	
	.app-notification {
		font-size: 1em;
	}
}

@media (max-height: 740px) and (max-width: 540px) {
	a .app {
		background-color: var(--navy);
		border-radius: 10px;
		width: 100%;
		margin: 0 auto;
	}
	
	.app-notification {
		font-size: 12px;
	}
	
	
}

@media (max-height: 360px) and (max-width: 992px) {
	a .app svg {
		width: 100%;
		height: 100%;
		padding: 2em;
	}
	
	a .app {
		background-color: var(--navy);
		border-radius: 10px;
		height: 7em;
		width: 100%;
		margin: 0 auto;
	}
}
	
/* ------------------------------------------------------------------------ Forms */
	
.required-input {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight:700;
}

legend {
	font-size: 1rem;
}

label {
	font-weight: bold;
}

.form-control, .form-select {
	border-radius:0;
	border-color: var(--grey-soft);
	padding: .625rem .75rem;
	color: var(--black);
	font-size: 1rem;
	min-height: 50px;
}

.form-control-lg.form-control--file {
	font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    color: var(--black);
    border-color: var(--grey-soft);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check-input {
    border: 1px solid var(--grey-soft);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--grey-dk);
    border-color: var(--grey-dk);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2em;
}

.form-switch .form-check-input:focus {
	background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
}

.form-text {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--grey-md);
}


@media (min-width: 1400px) {
	legend,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file,
	.form-check-label {
		font-size: 1.125rem;
	}

	.form-check-input {
	    margin-top: .313rem;
	}

	.form-text {
	    margin-top: .5rem;
	    font-size: 1rem;
	    color: var(--grey-md);
	}	
}


/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--grey-dk) url(/images/arrow-white.svg) no-repeat center;
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: all .25s ease;
}

.to-top:hover {
	background-color: var(--grey-md)
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	margin-top: auto!important;
	background-color: #555;
	bottom: 0;
	width: 100%;
	padding: 0.5em;
	color: var(--white);
	font-size: 12px;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__links {
	line-height: 1;
}

.footer__link {
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	color: var(--white);
	padding: 0 0.5em;
}

.footer__link a:first-child {
	padding-left: 0;
}

.footer__link a:last-child {
	padding-right: 0;
}

.footer__link:hover {
	text-decoration: underline;
	color: var(--grey-soft);
}	
		
.social__icon {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0 .5rem 0 0;
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid var(--grey-soft);
	border-radius:50%;
	background-size: 2rem 2rem;
}

.social__icon:hover { 
	background-color: var(--grey-soft);

}
.social__icon--twitter { 
	background-image: url(/images/social-x.svg); 
}
	
.social__icon--facebook { 
	background-image: url(/images/social-facebook.svg); 
}
	
.social__icon--youtube { 
	background-image: url(/images/social-youtube.svg); 
}		
			
.social__icon--instagram { 
	background-image: url(/images/social-instagram.svg); 
}		

.social__icon--linkedin { 
	background-image: url(/images/social-linkedin.svg); 
}

@media (min-width: 992px) {
	.footer {
		/*position: relative;*/
		font-size: 1em;
		position: fixed;
		left:0;
		right:0;
		bottom:0;
	}
	
	.footer__link {
		font-size: 1em;
}
}


/*password requirements displayed in popover that attach to input.validate-password-rules*/
ul.password-rules {
	list-style: none;
	margin-bottom: 0;
}

	ul.password-rules,
	ul.password-rules li {
		margin-left: 0;
		padding-left: 0;
	}


/* Choices.js overrides */
.choices__list--multiple .choices__item {
	border-radius: 10px;
	padding: 0.25em 0.75em;
	width: auto;
	display: inline-block;
	font-style: italic;
	font-size: 0.85em;
	color: var(--white);
	background: var(--navy);
}

.choices__list--multiple .choices__item[data-deletable]{
	padding-right:20px;
	position: relative;
}

.choices[data-type*="select-multiple"] .choices__button, 
.choices[data-type*="text"] .choices__button{
	position: absolute;
	top:0;
	right:0;
	height:100%;
	width:17px;
	margin:0;
	padding:0;
	color:#000;
	border-color:#666;
}

.choices__inner{
	border-radius: 0;
}
