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

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #161517;
	--error: #e6004c;
	--grey-lt: #eee;
	--grey-md: #89848f;
	--grey-dk: #57545b;
	--grey-xdk: #3b393e;
	--blue: #1472B0;
	--blue-lt: #89b8d7;
	--red: #C63939;

	--header-height: 77px;
	--header-height-scroll: 72px;
	--section-p: 4rem;
	--section-p-sm: 3rem;
	--card-p: 2rem;
	--card-p-sm: 2rem;

	--font-family: 'DM Sans', Arial, Helvetica, sans-serif;
	--headings-font-family: 'DM Serif Display', Arial, Helvetica, sans-serif;
	--fw-400: 400;
	--fw-500: 500;
	--fw-700: 700;
	--lh-16: 1.6;
	--lh-13: 1.3;
	--lh-11: 1.1;

	--standard-transition: all .25s ease;
}

@media (min-width: 1400px) {
	:root {
		--section-p: 7rem;
		--section-p-sm: 4rem;
		--card-p: 3rem;
		--card-p-sm: 2rem;
	}
}


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

html {
  scroll-padding-top: calc(var(--header-height-scroll) + var(--section-p-sm));
}

body {
	font: var(--fw-400) 100%/var(--lh-16) var(--font-family); 
	color: var(--black);
	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) */

.clearfix {clear:both;}
/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3  { 		
	font-weight: var(--fw-400);	
	margin-bottom: 1rem;
	line-height: var(--lh-11);
	font-family: var(--headings-font-family);
	color:var(--blue);
}	

h1, .h1 {	
	font-size: 2.25rem;
}
	
h2, .h2 {
	font-size: 1.75rem;
}
		
h3, .h3 { 
	font-size: 1.5rem; 
}	

h2, h3  { 
	margin-top: 3rem;
}

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: 3rem;
	}

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

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

@media (min-width: 1400px) {	
	h1, .h1 {
		font-size: 3.5rem;
	}

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

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

@media (min-width: 1680px) {	
	h1, .h1 {
		font-size: 4rem;
	}

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

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



/* ------------------------------------------------------------------------ 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;
}
	
.ol--steps {
    margin-top: 2rem;
    padding-left: 3.25rem !important;
}
    
.ol--steps li {
    list-style-type: none !important;
    position: relative;
    margin-bottom: 1.5rem;
}

.ol--steps li:before {		
    content: "1";
    color: var(--black);
    background-color: var(--white);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    font-weight: 700;
    position: absolute;
    left: -3.25rem;
    z-index: 1;
    top: -0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ol--steps li:nth-child(2):before {		
    content: "2";
}

.ol--steps li:nth-child(3):before {		
    content: "3";
}

.ol--steps li:nth-child(4):before {		
    content: "4";
}

.ol--steps li:nth-child(5):before {		
    content: "5";
}

.ol--steps li:nth-child(6):before {		
    content: "6";
}

.ol--steps li:nth-child(7):before {		
    content: "7";
}


					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-pale {
	color:var(--blue-lt)
}

.text-pale:hover {
    color: var(--white);
}

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

.btn {
	font-size: 1.125rem;
}

.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; 
}

.nav-link,
.dropdown-item,
label,
table,
.btn,
.cta__heading,
.accordion-button {
	line-height: var(--lh-13);
}


@media (min-width: 1400px) {	
	p,
	.p,
	li,
	label,
	table {
		font-size: 1.125rem;
	}

	.intro-text,
	.btn {
		font-size: 1.375rem;
	}

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

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

a { 
	color: var(--red); 
	font-weight: var(--fw-700);
	transition: var(--standard-transition);
	text-decoration: underline;
}	

a:hover {
	text-decoration: none;
}

.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: var(--standard-transition);
}				

a img:hover { 
	opacity: .9;
}	



/* ------------------------------------------------------------------------ Button Styles */

.btn {
	margin-top: 1rem; 
	padding: .625rem 1.5rem;
	border-radius:0;
	/*text-transform: uppercase;*/
	cursor: pointer;
	font-family: var(--headings-font-family);
	text-decoration: none;
}

.btn-primary {
	color: var(--white);
	background-color: var(--red);
    border-radius: 2rem;
    border: 2px solid var(--red);
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.btn-primary:first-child:active,
.show>.btn-primary.dropdown-toggle { 
	background-color: var(--blue) !important;
	border-color: var(--blue) !important;
	box-shadow: none;
}

@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 3rem 0;	
	border-radius: 1rem;
	display:block;
}
.img--float-left img, .img--float-right img { 
    border-radius: 1rem;
}

.img--radius {
    border-radius: 2rem; 
}

.img--ar--wrapper {
	overflow: hidden;
	position: relative;
	border-radius: 2rem;
}

.img--ar__img {	
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: var(--standard-transition);
}

.img--ar__img--1x1 {
	aspect-ratio: 1 / 1;
}

.img--ar__img--1x175 {
	aspect-ratio: 1 / 1.75;
}

.img--ar__img--4x3 {
	aspect-ratio: 4 / 3;
}

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

@media (min-width: 992px) {	
    .img--ar__img--lg-3x4 {
    	aspect-ratio: 3 / 4;
    }
}

@media (min-width: 1200px) {	
    .img--ar__img--xl-1x1 {
    	aspect-ratio: 1 / 1;
    }
    
    .img--ar__img--xl-1x175 {
    	aspect-ratio: 1 / 1.75;
    }
}

@media (min-width: 1400px) {	
    .img--ar__img--xxl-1x1 {
    	aspect-ratio: 1 / 1;
    }
}
	
/* ------------------------------------------------------------------------ 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 */

.pt-section,
.py-section {
	padding-top: var(--section-p);
}

.pb-section,
.py-section {
	padding-bottom: var(--section-p);
}

.pe-section,
.px-section {
	padding-right: var(--section-p);
}

.ps-section,
.px-section {
	padding-left: var(--section-p);
}


.pt-section-sm,
.py-section-sm {
	padding-top: var(--section-p-sm);
}

.pb-section-sm,
.py-section-sm {
	padding-bottom: var(--section-p-sm);
}

.pe-section-sm,
.px-section-sm {
	padding-right: var(--section-p-sm);
}

.ps-section-sm,
.px-section-sm {
	padding-left: var(--section-p-sm);
}


.mt-section,
.my-section {
	margin-top: var(--section-p);
}

.mb-section,
.my-section {
	margin-bottom: var(--section-p);
}

.me-section,
.mx-section {
	margin-right: var(--section-p);
}

.ms-section,
.mx-section {
	margin-left: var(--section-p);
}


.mt-section-sm,
.my-section-sm {
	margin-top: var(--section-p-sm);
}

.mb-section-sm,
.my-section-sm {
	margin-bottom: var(--section-p-sm);
}

.me-section-sm,
.mx-section-sm {
	margin-right: var(--section-p-sm);
}

.ms-section-sm,
.mx-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%;
}


@media (min-width: 1400px) {
    .g-xxl-4b,.gx-xxl-4b {
	    --bs-gutter-x: 2rem
	}

	.g-xxl-4b,.gy-xxl-4b {
	    --bs-gutter-y: 2rem
	}
    
    .g-xxl-6,.gx-xxl-6 {
	    --bs-gutter-x: 5rem
	}

	.g-xxl-6,.gy-xxl-6 {
	    --bs-gutter-y: 5rem
	}

	.g-xxl-7,.gx-xxl-7 {
	    --bs-gutter-x: 7rem
	}

	.g-xxl-7,.gy-xxl-7 {
	    --bs-gutter-y: 7rem
	}
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header, .missing-library { 
	display:none; 
}
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 18rem; 
	width: 100%;
	transition: var(--standard-transition);
}

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

.header { 
	z-index: 1040;
	background-color: var(--grey-xdk);
}

.navbar--fixed-top {
	padding: 1rem;
	transition: var(--standard-transition);
}


@media (min-width: 992px) {
    .logo__img {
    	max-width: 16rem; 
    }
    
	.header--scroll .navbar--fixed-top {
	    padding: .5rem;
	    background-color: rgb(30 29 32 / 75%) !important;
		backdrop-filter: blur(8px);
	}
}


@media (min-width: 1400px) {
    .logo__img {
    	max-width: 18rem; 
    }
}


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

.search-trigger {
	cursor: pointer;
	padding-top: .5rem;
	width: 14rem;
	background-color: var(--grey-md);
    border-color: var(--grey-md);
    padding: .625rem 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: var(--fw-700);
}

.search-trigger__icon {
	width: 2.5rem;
	height: 2rem;
    align-self: center;
    justify-self: end;
    border-radius: 50%;
  	background: url(../images/search-icon-reverse.svg) no-repeat center;
  	background-size: 1.375rem;
  	transition: var(--standard-transition);
}


@media (min-width: 992px) {	
	.search-trigger {
		cursor: pointer;
		border-top: none;
		padding: 0;
		background-color: transparent;
    	border:0;
    	width: auto;
	}

	.search-trigger__icon {
		height: 2.5rem;
		background-image: url(../images/search-icon.svg);
		background-size: 1.375rem;
	}

	.search-trigger:hover .search-trigger__icon {
		background-color: var(--black);
		background-image: url(../images/search-icon-reverse.svg);
		background-size: 1.375rem;
	}
}


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

.modal--search .modal-content {
	background-color: var(--black);
}

.modal--search .modal-header {
	border-bottom: 0;
}

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

.modal--search input[type="search"] {	
	color: var(--black);
    background-color: var(--white);
    border-color: var(--white);
    border:0;
    font-weight: var(--fw-500);
	font-size: 1.5rem;	
	padding-left: 2rem;
	padding-right: 2rem;
	text-align: center;
}

.modal--search input[type="search"]:placeholder { 
  	color: var(--grey-lt);
}

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


@media (min-width: 992px) {	
	.modal--search .container {
		width: 75%;
	}

	.modal--search  .logo__img {
		max-width: 24rem;
	}
}

@media (min-width: 1200px) {	
	.modal--search .container {
		width: 50%;
	}
}

@media (min-width: 1400px) {	
	.modal--search .container {
		width: 50%;
	}

	.modal--search input[type="search"] {		
		font-size: 2.5rem;
	}
}


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

/*.navbar {
	border-bottom: 1px solid var(--grey-lt);
}*/

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

.navbar-nav .nav-link {
	color: var(--white);
	padding: .375rem 1.5rem .375rem 0;
	font-size: 1.25rem;
	position: relative;
	font-family: var(--font-family);
    font-weight: var(--fw-500);
    text-decoration:none;
}

.navbar-nav .nav-link.feature {
    color: var(--blue-lt);
    text-transform: uppercase;
}

/*.navbar-nav .nav-link.feature {*/
/*    background-color: var(--blue);*/
/*    padding-left: 1rem !important;*/
/*    padding-right: 1rem !important;*/
/*    border-radius: 500px;*/
/*}*/

.navbar-nav .nav-link:hover {
    text-decoration:underline
}

.navbar-nav .nav-link.show {
    color: var(--white);
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .dropdown-menu li > .dropdown-item.active,
.navbar-nav .nav-link.active.show {
    color: var(--blue-lt);
    font-weight: var(--fw-700);
}


.navbar-contact {
    border-left: 4px solid var(--red);
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}

.navbar-contact .nav-link {
    font-family: var(--headings-font-family);
    font-weight: var(--fw-400);
    font-size: 1.5rem;
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: transparent;
	margin:0 0 .5rem 0;
	padding:0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}

.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
}

.navbar-nav .dropdown-item {
	padding: .5rem 0 .5rem 1rem;
	white-space: wrap;
	color: var(--white);
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	color: var(--white);
}

.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;
	}

	.navbar-nav .nav-link {
	    padding: .375rem .125rem !important;
		margin-right: 1.5rem;
		border-bottom: 0;
	    font-size: 1.125rem;
	}

	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}
	
	.navbar-nav .nav-link:hover {
        text-decoration: none;
    }
    
	.navbar-nav .nav-item:hover .nav-link:before, 
	.navbar-nav .nav-link:hover:before,
	.navbar-nav .nav-link.active:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        border-bottom: 4px solid var(--blue);
        transition: border-color 0.25s;
    }
    
    .navbar-nav .nav-item:hover .nav-link:before, 
	.navbar-nav .nav-link:hover:before {
	    border-bottom: 4px solid var(--blue-lt); 
	}
	
	.navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-link.active.show {
        color: var(--white);
    }
    
    .navbar-nav .dropdown-menu {	
	    background-color: var(--white);
    }

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

	.navbar-nav .dropdown-item {
		color: var(--black);
		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(--black);
		text-decoration: underline;
	}
	
	.navbar-nav .dropdown-menu li > .dropdown-item.active {
        color: var(--red);
    }

	.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 {
		font-size: 1.25rem;
		margin-right: 2rem;
	}
	
	.navbar-contact {
        margin-left: 2rem;
        padding-left: 2rem;
    }
    
    
    .navbar-contact .nav-link {
        font-size: 1.5rem;
    }
}


/* ------------------------------------------------------------------------ Side Nav */

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

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: var(--fw-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: var(--fw-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;
    opacity: 1;
}

.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;
}


@media all and (max-width: 991px) {
	.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);
    	background-color: var(--grey-xdk);
	}
    
	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}
}

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

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

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
    background-image: url(../images/menu-icon-reverse.svg);
    width: 1.5em;
    height: 1.5em;
}

.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: 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);
}
.section--black {
    background: var(--grey-xdk) url("../images/section-black-bg.jpg") no-repeat center;
	background-size: cover;
	position: relative;
}

.section--black .container {
    z-index: 2;
    position: relative;
}

.section--black:before {
    content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 1;
}

/* ------------------------------------------------------------------------ Banner */

.section--banner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	min-height:15rem;
	background-color: var(--grey-dk);
	position: relative;
	color: var(--white);
}

.section--banner:before {
	content: "";
	position: absolute;
    width: 100%;
    height: 25%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%);
}

.section--banner:after {
	content: "";
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.6);
}


.section--banner .container {
    z-index: 2;
    position: relative;
}


@media (min-width: 768px) {		
	.section--banner {
		min-height: 20rem;
	}

	.section--banner--home {
		min-height: 24rem;
	}
}

@media (min-width: 992px) {	
   .section--banner {
		min-height: 24rem;
	}
	.section--banner--home {
		min-height: 36rem;
	}
}

@media (min-width: 1400px) {	
	.section--banner {
		min-height: 30rem;
	}

	.section--banner--home {
		min-height: 48rem;
	}
}


/* ------------------------------------------------------------------------ Banner With Background Video */

.section--banner--video video {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.section--banner--video {
    overflow: hidden;
    background: url(../images/banner-home-mobile.jpg) no-repeat top center;
    background-size: cover;
    position: relative;
}


@media (min-width: 992px) {	
	.section--banner--video {
		overflow: hidden;
        background: url(../images/banner-home.jpg) no-repeat top center;
        background-size: cover;
        position: relative;
	}

	.section--banner--video video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* ------------------------------------------------------------------------ Callouts (Calls to Action) */

.cta {
	display: block;
	font-weight: var(--fw-400);
	position: relative;
	cursor:pointer;
	text-decoration: none;
	color: inherit;
}

.cta:hover {
	color: inherit;
}

.cta:hover .img--ar__img {
	transform: scale(1.05);
}


.cta__heading {
	margin: 1rem 0 .5rem 0;
	font-weight: var(--fw-700);
	text-align: center;
	transition: var(--standard-transition);
}

.cta:hover .cta__heading {
	color: var(--grey-md);
}

.cta__text {
	text-align: center;
}

@media (min-width: 992px) {	
    .cta__heading {
        font-size: 1.5rem;
    }
}


@media (min-width: 1680px) {	
    .cta__heading {
        font-size: 1.75rem;
    }
}


/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked span {
    display: block; 
}

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	transition: var(--standard-transition);
	border-radius: 2rem;
}

.cta--stacked:hover:before {
	background: rgba(0,0,0,0.7);
}

.cta--stacked .cta__heading {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: var(--white);
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.cta--stacked:hover .cta__heading {
	color: var(--white);
	transform: translate(-50%,-60%);
}


/* ------------------------------------------------------------------------ Callouts with Icons */

.cta__icon {
	height: 5rem;
	width: 5rem;
	margin: 0 auto;
	transition: var(--standard-transition);
}

.cta:hover .cta__icon {
	transform: translateY(-.5rem);
}

.cta:hover .img--ar__img {
	transform: scale(1);
}


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

.card {
	border-radius: 1.25rem;
	border: 0;
}

.card--blue {
    background: var(--blue);
    color: var(--white);
}

.card--border {
	border:  2px solid var(--grey-lt);
}

.card-body {
	padding: var(--card-p);
}

.card a {
	text-decoration: underline;
	color: inherit;
	transition: var(--standard-transition);
}
.card a:hover {
	text-decoration: none;
}


@media (min-width: 1400px) {
    .card {
    	border-radius: 2rem;
    }
}

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

.list-group {
    border-radius: 0;
    border: 0;
}

.list-group-item {
    padding: 0 0 0 1.5rem;
    color: var(--black);
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid var(--grey-lt);
	background: url(../images/arrow-grey.svg) no-repeat left center;
	background-size: .75rem;
}

.card--blue .list-group-item {
    color: var(--white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
	background-image: url(../images/arrow-white.svg);
}

.list-group-item:last-child {
    padding-bottom: 0;
}


.list-group-item--no-links {
	padding: .75rem .25rem .75rem 1.5rem;
	font-weight: var(--fw-500);
}

.list-group-item a {
    color: inherit;
    font-weight: var(--fw-500);
    transition: var(--standard-transition);
    padding: .75rem 0;
    display:block;
    text-decoration: none;
}

.list-group__link:hover, .list-group-item a:hover {
	transform: translateX(1rem);
    text-decoration: underline;
}

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

.accordion-flush {
	border-top: 2px solid var(--grey-lt);
	border-bottom: 2px solid var(--grey-lt);
}

.accordion-button {
    font-weight: var(--fw-500);
    column-gap: 1rem;
	border: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--blue);
    font-weight: var(--fw-700);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button::after { 
	background-color: var(--red);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-position: center;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}

.accordion-button:not(.collapsed)::after { 
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

.accordion-flush .accordion-item {
	border-bottom: 2px solid var(--grey-lt);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.accordion-flush .accordion-body {
    padding: .5rem .5rem 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 td, .table th {
    border-bottom: 1px solid var(--grey-lt);
    padding: 1rem .5rem;
    vertical-align: middle;
}

.table th {
    font-weight: var(--fw-500);
}

.table thead th {
    font-weight: var(--fw-700);
    text-transform: uppercase;
}


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

.pagination {
	flex-wrap: wrap;
	align-items: center;
}

.page-item {
	background-image: none;
	padding: 0;
	margin: 0 0.5rem 0 0;
}

.page-link {
	width: 3rem;
    height: 3rem;
    border-radius: 50% !important;
    background: var(--grey-dk) url(../images/arrow-white.svg) no-repeat center;
    background-size: .875rem;
    transition: var(--standard-transition);
}

#prevPage {
	transform: rotate(180deg);
	margin-right:.25rem;
	background-position: 1.125rem center;
}

#nextPage {
	margin-left:.25rem;
	background-position: 1.125rem center;
}

.page-link:hover {
    z-index: 2;
    background-color: transparent;
    background-color: var(--grey-dk);
}

#prevPage:hover {
	transform: translateX(-.5rem) rotate(180deg);
}

#nextPage:hover {
	transform: translateX(.5rem);
}

.page-item .form-select {
    padding: 0.25rem 2.25rem 0.25rem 0.75rem;
    height: 2.75rem;
    width: 5rem;
}

	
/* ------------------------------------------------------------------------ Forms */
	
.required-input, .field-validation-error {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight: var(--fw-700);
}

legend {
	font-size: 1rem;
}

.form-control, .form-select {
	border: 2px solid var(--grey-lt);
	border-radius: 2rem;
	padding: .625rem .75rem;
	color: var(--black);
	font-size: 1rem;
}

textarea.form-control {
	border-radius: 1.5rem;
}

.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-lt);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check-input {
    border: 2px solid var(--grey-lt);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--red);
    border-color: var(--red);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2rem;
}

.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);
	}	
}


/* ------------------------------------------------------------------------ Swiper */

.swiper-pagination-bullet {
	background: var(--white);
	width: 1rem;
	height: 1rem;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--grey-md);
}

.swiper-button-next, .swiper-button-prev {
	width: 3rem;
	height: 3rem;
	background: url(../images/arrow-white.svg) no-repeat left center;
	transition: var(--standard-transition);
}

.swiper-button-next {
	right: 1rem;
}

.swiper-button-prev {
	transform: rotate(180deg);
	left: 1rem;
}

.swiper-button-next:hover {
	transform: translateX(.5rem);
}

.swiper-button-prev:hover {
	transform: translateX(-.5rem) rotate(180deg);
}

.swiper-button-next:after, .swiper-button-prev:after {
	display: none;
}


/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--red) url(../images/arrow-white.svg) no-repeat center;
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: var(--standard-transition);
}

.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: var(--grey-dk);
	    color: var(--white);
		padding-bottom: var(--section-p-sm);
}
footer a, footer a:hover {
	color:var(--white);
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}
.footer__bottom {
	    border-top: 1px solid var(--grey-md);
    padding-top: 2rem;
}
.footer__link {
	margin-right: 1rem;
	text-transform: uppercase;
	text-decoration: none;
		    color: var(--white);

}	

.footer__link:hover {
	text-decoration: underline;
		    color: var(--white);

}	
		
.social__icon {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	padding: .5rem;
	margin: 0 .5rem 0 0;
	background-color: var(--grey-lt);
	border-radius: 50%;
	background-size: 2rem 2rem;
	transition: var(--standard-transition);
}

.social__icon:hover {
	transform: translateY(-.5em);
}
@media (max-width: 980px) {
.footer .logo__img {
        max-width: 6rem;
}
}