/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #111;
	--error: #e6004c;

	--cannon-pink: #984f70;
	--charm :#d57fa7;
	--magenta-lavender: #ed5adb;
	--bluewood: #2c4357;
	--teal-blue: #074f6c;
	--pale-blue: #89cff0;/*add0ef*/
	--grey-lt: #d9dcdc;
	--grey-md: #afa4b6;
	--muted-green: #5FA052;
	

	--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;
	font-family: "Poppins", sans-serif;
	color: var(--black);
	background-color: var(--white);
}

body.login {
	background-image: url('/images/login-background-mobile.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	background-position: fixed;
}

@media (min-width: 992px) {
	/*body {
		padding-top: var(--header-height);
	}*/
	
	body.login {
		background-image: url('/images/login-background.jpg');
		background-position: center center;
		position: relative;
	}
}

/* ------------------------------------------------------------------------ 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: 1.25rem;
	text-transform: uppercase;	
	line-height:1.2;	
}

h1 span, .h1 span {
	font-style: italic;
	font-weight: 500;
}
	
h2, .h2 {
	font-size: 1.125rem;
	line-height:1.2; 
}
		
h3, .h3 { 
	font-size: 1.375rem; 
	line-height:1.4;
}

.body-header {
	font-size: 1.25em;
	font-weight: bold;
}

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;
}

.inside-page-header h1 {
	color: #fff;
	text-align: center;
}

@media (min-width: 992px) {	
	/*h1, .h1 {
		font-size: 2.5rem;
	}

	h2, .h2 {
		font-size: 2rem;
	}

	h3, .h3 { 
		font-size: 1.5rem; 
	}*/	
	
	.inside-page-header h1 {
		text-align: left;
	}
}	

@media (min-width: 1400px) {	
	h1, .h1 {
		font-size: 3.125em;
	}

	h2, .h2 {
		font-size: 2.735;
	}

	h3, .h3 { 
		font-size: 2rem; 
	}
	
	.body-header {
		font-size: 1.75em;
	}
}	


/* ------------------------------------------------------------------------ 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: 2rem !important;
}	

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;
}

.text-cannon-pink {
	color: var(--cannon-pink);
}

.text-bluewood {
	color: var(--bluewood);
}

.intro-text {
	font-size: 1.25rem;
}

.note {
	font-size: .75rem;
}


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: 0.85rem;
	}	
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--charm); 
	font-weight: 700;
	transition: all .25s ease;
	text-decoration: underline;
}	

a:hover {
	color: var(--cannon-pink);
	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: opacity .25s ease;
}				

a img:hover { 
	opacity: .9;
}	


@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:0;
	text-transform: uppercase;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--bluewood);
	border-color: var(--bluewood);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

.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(--cannon-pink);
	border-color: var(--cannon-pink);
	box-shadow: none;
}

.btn-secondary {
	background-color: var(--cannon-pink);
	border-color: var(--cannon-pink);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle { 
	background-color: var(--bluewood);
	border-color: var(--bluewood);
	box-shadow: none;
}

.btn-grey-md {
	background-color: var(--grey-md);
	border-color: var(--grey-md);
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

.btn-grey-md:hover,
.btn-grey-md:focus,
.btn-check:active+.btn-grey-md,
.btn-check:checked+.btn-grey-md,
.btn-grey-md.active,
.btn-grey-md:active,
.show>.btn-grey-md.dropdown-toggle { 
	background-color: var(--cannon-pink);
	border-color: var(--cannon-pink);
	color: var(--white);
	box-shadow: none;
}

.btn-lavendar {
	background-color: var(--white);
	border: solid 2px var(--magenta-lavender);
	color: var(--magenta-lavender);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

.btn-lavendar:hover,
.btn-lavendar:focus,
.btn-check:active+.btn-lavendar,
.btn-check:checked+.btn-lavendar,
.btn-lavendar.active,
.btn-lavendar:active,
.show>.btn-lavendar.dropdown-toggle { 
	background-color: var(--magenta-lavender);
	border-color: var(--magenta-lavender);
	color: var(--white);
	box-shadow: none;
}

.btn-muted-green {
	background-color: var(--muted-green);
	border: solid 2px var(--muted-green);
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

.btn-muted-green:hover,
.btn-muted-green:focus,
.btn-check:active+.btn-muted-green,
.btn-check:checked+.btn-muted-green,
.btn-muted-green.active,
.btn-muted-green:active,
.show>.btn-muted-green.dropdown-toggle { 
	background-color: var(--white);
	border-color: var(--muted-green);
	color: var(--muted-green);
	box-shadow: none;
}

.btn-pale-blue {
	background-color: var(--pale-blue);
	border: solid 2px var(--pale-blue);
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}

	.btn-pale-blue:hover,
	.btn-pale-blue:focus,
	.btn-check:active + .btn-pale-blue,
	.btn-check:checked + .btn-pale-blue,
	.btn-pale-blue.active,
	.btn-pale-blue:active,
	.show > .btn-pale-blue.dropdown-toggle {
		background-color: var(--white);
		border-color: var(--pale-blue);
		color: var(--pale-blue);
		box-shadow: none;
	}


.btn-logout {
	background-color: var(--cannon-pink);
	border-color: var(--cannon-pink);
	text-transform: uppercase;
	display: block;
	align-items: center;
	margin-top: 0;
	color: var(--white);
	font-weight: bold;
	width: 100%;
	font-size: 0.85em;
}

.btn-logout::before {
    background-image: url(/images/logout-icon.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    content: ' ';
    height: 40px;
    background-color: var(--cannon-pink);
    padding-left: 3em;
    margin-right: 0em;
}

.btn-language a {
	background-color: var(--grey-lt);
	border-color: var(--grey-lt);
	text-transform: uppercase;
	border-radius:  0;
	box-shadow: none;
	margin-top: 0;
	font-weight: 700;
	width: 100%;
	font-size: 0.85em;
}

.btn-language a.active {
	background-color: var(--bluewood);
	border-color: var(--bluewood);
	color: var(--white);
}

.btn-language a:hover {
	background-color: var(--bluewood);
	border-color: var(--bluewood);
	color: var(--white);
}


@media (min-width: 992px) {	
	
	.btn-logout {
		border-radius: 0 0 10px 10px;
		box-shadow: 0 5px 10px rgba(0,0,0,0.2);
		background-color: var(--charm);
    	border-color: var(--charm);
		width: auto;
		padding: 0 20px 0 0 !important;
		font-size: unset;
		display: inline-flex;
	}
	
	.btn-logout::before {
		border-radius: 0 0 0 10px;
		margin-right: 1em;
		height: 44px;
	}
	
	.btn-language a {
		border-radius:  0 0 10px 10px;
		box-shadow: 0 5px 10px rgba(0,0,0,0.2);
		font-size: unset;
	}
}

@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));
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
	background: rgba(255,255,255,0.6);
    padding: 1em;
    border-radius: 20px;
    border: solid 2px #fff;
    border-top: solid 2px #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    margin-bottom: 1em;
	text-align: center;
}

.logo__img {
	max-width: 20rem; 
	width: 100%;
	transition: all .25s ease;
}

/*.header--scroll .logo__img {
	max-width: 10rem; 
}*/

.header { 
	z-index: 1040;
}

.header__mobile {
	margin-top: 10em;
}

.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) {

	.logo { 
    	padding: 2em;
		margin-bottom: 2em;
	}
	
	.header--scroll .navbar--fixed-top {
	    padding: .5rem;
	    background-color: rgba(255,255,255,.75) !important;
		backdrop-filter: blur(8px);
	}
	
	.logo { 
		border-radius: 0 0 20px 20px;
		border-top: 0;
	}

}


/* ------------------------------------------------------------------------ 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: 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: all .25s ease;
}


@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;
	}
}

/* ------------------------------------------------------------------------ Notification Modal */

.modal-content {
	border-radius: 30px;
	padding: 2em;
    border: solid 4px var(--magenta-lavender);
	color: #333;
}

.modal-content .btn-close {
	background-image: url(/images/close-light.svg);
    background-color: var(--magenta-lavender);
    opacity: 1;
    border-radius: 50%;
    padding: 0.75em;
    position: absolute;
    right: 3%;
    top: 5%;
    width: 0.5em;
    height: 0.5em;
    background-size: 80%;
}

/* ------------------------------------------------------------------------ Navbar Nav */

.navbar {
	border-bottom: 1px solid var(--grey-lt);
}

.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;
	}

	.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;
}


@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);
	}

	.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.svg);
    width: 1.25em;
    height: 1.25em;
}

.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-in {
	padding: var(--section-p);
}

.section--grey {
	background-color: var(--grey-lt);
}

.section--bluewood {
	background-color: var(--bluewood);
}

.section--pale-blue {
	background-color: var(--pale-blue);
}

.content-area {
    padding: 2em 1em;
    margin: 0 auto;
}

.content-area-section {
	padding: 2em;
	margin: 1em 0;
}

.body-content {
	background-color: var(--white);
    padding: 2em;
	border-radius: 20px;
}

@media (min-width: 992px) {	
	.content-area {
		padding: 2em;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------------------ Banner */

.section--banner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	min-height: 20rem;
	background-color: var(--grey-dk);
	position: relative;
	color: var(--white);
}

.section--banner:after {
	content: "";
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}

.section--banner .container {
    z-index: 2;
    position: relative;
}

.banner-inside {
	background-image: url("/images/banner-inside-mobile.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: var(--pale-blue);
}

@media (min-width: 768px) {		
	.section--banner {
		min-height: 20rem;
	}

	.section--banner--home {
		min-height: 24rem;
	}
}

@media (min-width: 992px) {	
	.section--banner--home {
		min-height: 36rem;
	}
	
	.banner-inside {
		background-image: url("/images/banner-inside.jpg");
	}
}

@media (min-width: 1400px) {	
	.section--banner {
		min-height: 24rem;
	}

	.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: 400;
	position: relative;
	cursor:pointer;
	text-decoration: none;
	color: inherit;
}

.cta:hover {
	color: inherit;
}

.cta__image-wrapper {
	overflow: hidden;
}

.cta__image {
	height: 0;
	padding-bottom: 63%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .25s ease;
}

.cta:hover .cta__image {
	transform: scale(1.1);
}

.cta__heading {
	margin: 1rem 0 .5rem 0;
	font-weight: 700;
	text-align: center;
	transition: all .25s ease;
}

.cta:hover .cta__heading {
	color: var(--grey-md);
}

.cta__text {
	text-align: center;
}

/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	z-index: 1;
	transition: all .25s ease;
}

.cta--stacked:hover:before {
	background: rgba(0,0,0,0.5);
}

.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: 0;
	width: 5em;
	padding-bottom: 5em;
	margin:0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .25s ease;
}

.cta:hover .cta__icon {
	opacity: 0.9;
	transform: translateY(-.5em);
}


/* ------------------------------------------------------------------------ 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;
}

/* ------------------------------------------------------------------------ Gallery */

.review-slides .slide {
	margin-bottom: 2em;
}

.slide__img__block {
    display: block;
    position: relative;
    color: inherit;
    cursor: pointer;
    height: 100%;
}

.slide__img {
    height: 0;
    width: 100%;
    padding-bottom: 12em;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.25s ease-in-out;
    background-position: center center;
}

.slide__img__full {
    height: 0;
    width: 100%;
    padding-bottom: 14em;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.25s ease-in-out;
    background-position: center center;
}

@media (min-width: 992px) {
	.slide__img__full {
    	padding-bottom: 22em;
	}
}

@media (min-width: 1400px) {
	.slide__img {
    	padding-bottom: 15em;
	}
	
	.slide__img__full {
    	padding-bottom: 30em;
	}
}

/* ------------------------------------------------------------------------ Accordions */

.accordion-button {
	border: 1px solid transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--grey-lt);
}

.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='%23212529'%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;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item:last-child {
	border-bottom: 1px solid rgba(0,0,0,.125);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.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 td, .table th {
    border-bottom: 1px solid var(--grey-lt);
    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-lt);
}

.page-link:hover {
	background-color: var(--grey-lt);
	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;
	}
}

	
/* ------------------------------------------------------------------------ Forms */
	
.required-input {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight:700;
}

legend {
	font-size: 1rem;
}

label {
    font-weight: bold;
    margin-bottom: 0.5em;
    margin-top: 1em;
	color: var(--cannon-pink);
}

input[type="date"]::-webkit-calendar-picker-indicator {
	background-image: url('/images/calendar-icon.svg');
	background-position: 97%;
	background-size: 20px;
	background-repeat: no-repeat;
}

input[type="time"]::-webkit-calendar-picker-indicator {
	background-image: url('/images/time-icon.svg');
	background-position: 97%;
	background-size: 20px;
	background-repeat: no-repeat;
}

.form-control, .form-select {
	border-radius:0;
	border-color: var(--grey-lt);
	padding: .625rem .75rem;
	color: var(--black);
	font-size: 1rem;
	border-radius: 10px;
}

.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: 1px solid var(--grey-lt);
}

.form-check-input:checked[type=radio] {
	background-image: url('/images/radio-check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 56%;
}

.form-check-input:checked[type=checkbox] {
	background-image: url('/images/checkbox-check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80%;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--grey-dk);
    border-color: var(--teal-blue);
}

.form-check label {
	margin-top: 0;
	font-weight: normal;
	color: unset;
}

.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);
	}	
}

/* ------------------------------------------------------------------------ Section Tab */

.tab-section {
	max-width: unset;
}

.sub-tab {
	background-color: var(--grey-lt);
	position: relative;
	color: var(--bluewood);
	text-decoration: none;
	padding: 0.5em 1.5em;
	position: relative;
	top: 0px;
	text-transform: uppercase;
	font-style: italic;
	text-align: center;
}

.sub-tab::before, .sub-tab::after {
	display: none;
}

.sub-tab.active {
	background-color: var(--teal-blue);
	color: var(--white);
	text-decoration: underline;
}

@media (min-width: 992px) {
	.tab-section {
		max-width: 90%;
		margin: 0 auto;
	}
	
	.sub-tab {
		background-color: var(--grey-lt);
		color: var(--bluewood);
		top: 1px;
	}
	
	.sub-tab::before {
		height: 100%;
		width: 20px;
		border-radius: 10px 10px 0px 0px;
		background-color: var(--grey-lt);
		content: "";
		position: absolute;
		left: -10px;
		top: 0px;
		-webkit-transform: skewX(-10deg);
		transform: skewX(-10deg);
		display: block;
	}

	.sub-tab::after {
		height: 100%;
		width: 20px;
		border-radius: 10px 10px 0px 0px;
		background-color: var(--grey-lt);
		content: "";
		position: absolute;
		right: -10px;
		top: 0px;
		-webkit-transform: skewX(10deg);
		transform: skewX(10deg);
		display: block;
	}
	
	.sub-tab.active, .sub-tab.active::before, .sub-tab.active::after {
		background-color: var(--bluewood);
		z-index: 1;
	}
}


/* ------------------------------------------------------------------------ Login Folder */

.folder-center {
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}

.folder-top {
	background-color: var(--cannon-pink);
	width: 45%;
	height: 2.5em;
	clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
	border-radius: 20px 0 0 0;
}

.folder-top.inside {
	width: 50%;
}

.folder-middle {
	overflow: hidden;
	position: relative;
	top: -1px;
}

.folder-middle .leftbar {
	background-color: var(--cannon-pink);
	width: 5%;
	flex: auto;
}

.folder-middle .rightbar {
	background-color: var(--cannon-pink);
	width: 5%;
	flex: auto;
	position: relative;
	top: 1em;
	border-radius: 0 20px 0 0;
}

.folder-middle .content {
	width: 90%;
	background-color: var(--cannon-pink);
	border-radius: 0 20px 0 0
}

	.folder-middle .content.inside {
		width: 85%;
	}

.folder-middle .content .page {
	padding: 2em 3em 7em 3em;
	flex: auto;
	background: var(--white);
	border-radius: 20px 20px 0 0;
}

	.folder-middle .content .page.inside {
		padding: 2em 2em 2em 2em;
	}

.folder-middle .content .slogan, .folder-middle .content .slogan-header {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.5em;
	line-height: 1.25;
	color: var(--bluewood);
}

.folder-middle .content .slogan span, .folder-middle .content .slogan-header span {
	font-size: 0.5em !important;
    font-style: italic;
    position: relative;
    bottom: 0.25em;
}

.folder-middle .content .slogan::before {
	content: ' ';
    display: block;
    width: 5px;
    height: 100%;
    background-color: var(--bluewood);
    position: absolute;
    left: -0.5em;
}

.folder-middle .content .slogan-header::before {
	display: none;
}

.folder-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
}

.folder-bottom .tab {
	background-color: var(--charm);
	height: 2.5em;
	clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
	width: 35%;
	position: absolute;
    top: -2.5em;
	right: 0;
}

.folder-bottom .full {
	background-color: var(--charm);
	height: auto;
	border-radius: 20px 0 0 0;
	text-align: center;
	padding: 2em;
}

	.folder-bottom .full.inside {
		border-radius: 20px 20px 0 0;
	}

.folder-bottom .full p {
	margin-bottom: 0;
}

.silhouette {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
}

.hard-light-blend {
	background-blend-mode: hard-light;
}

.folder-silhouette {
	background-image: none;
}

@media (min-width: 992px) {
	.folder-center {
		max-width: 80%;
	}
	
	.folder-top.inside {
		width: 30%;
	}
	
	.folder-middle .leftbar {
		width: 5%;
		flex: unset;
	}
	
	.folder-middle .rightbar {
		width: 5%;
		flex: unset;
	}

	.folder-middle .content .page {
		padding: 2em 4em 7em 4em;
	}
	
	.folder-middle .content .page.inside {
		padding: 2em 2em 5em 4em;
	}
	
	.folder-middle .content .slogan, .folder-middle .content .slogan-header {
		font-size: 2em;
	}

	.folder-middle .content .slogan span {
		font-size: 0.6em !important;
	}
	
	.folder-middle .content .slogan-header::before {
		content: ' ';
		background-image: url('/images/ADC Solid.svg');
		background-repeat: no-repeat;
		background-position: top;
		background-size: 20px;
		width: 20px;
		height: 100%;
		position: absolute;
		left: -1em;
		top: 0.25em;
		display: block;
	}
	
	.folder-bottom .full {
		height: 5em;
		border-radius: 20px 0 0 0;
		padding: 0;
	}
	
	.folder-bottom .full.inside {
		height: 4em;
	}
	
	.folder-silhouette {
		background-image: url('/images/bottom-right-silhouette.png');
	}
}

/* ------------------------------------------------------------------------ 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;
}
.footer-interior {
	color: var(--white);
	font-style: italic;
	text-align: center;
}
	.footer-interior p {
		font-size: 1rem;
	}

.footer-content-area {
	background-color: var(--charm);
	padding: 2em;
}

.footer__logo {
    width: 100%;
    max-width: 200px;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__link {
	margin-right: 1rem;
	text-transform: uppercase;
	text-decoration: none;
}	

.footer__link:hover {
	text-decoration: underline;
}	
		
.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-lt);
	border-radius:50%;
	background-size: 2rem 2rem;
}

.social__icon:hover { 
	background-color: var(--grey-lt);

}
.social__icon--twitter { 
	background-image: url(/images/social-twitter.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); 
}