/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #000;
	--error: #e6004c;
	--grey-lt: #a5a5a5;
	--grey-lt2: #f5f5f5;
	--grey-md: #666;
	--grey-dk: #555;
	--grey-heading: #363636;
	--yellow: #ffcc32;

	--header-height: 77px;
	--header-height-scroll: 72px;
	--section-p: 2rem;
	--section-p-sm: 2rem;
	--card-p: 2rem;

	--font-family: 'Libre Franklin', sans-serif;
	--font-family-heading: 'Fira Sans', sans-serif;
	--fw-400: 400;
	--fw-500: 500;
	--fw-700: 700;
	--lh-16: 1.6;
	--lh-13: 1.3;

	--standard-transition: all .25s ease;
}

@media (min-width: 1400px) {
	:root {
		--section-p: 4rem;
		--section-p-sm: 3rem;
		--card-p: 3rem;
	}
}


/* ------------------------------------------------------------------------ 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;
	font-weight: 300;
} 

/* ------------------------------------------------------------------------ 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, h4,
.h1, .h2, .h3, .h4  { 		
	font-weight: var(--fw-700);	
	margin-bottom: 1rem;
	line-height: var(--lh-13);
	font-family: var(--font-family-heading);
	color: var(--grey-heading);
}	

h1.page-title {
    font-size: 2.5em;
    margin-bottom: .5em;
    font-weight: 400;
}

h1, .h1 {	
	font-size: 2rem;
	text-transform: uppercase;	
}

h2.heading {
	font-size: 2.25rem;
	text-transform: uppercase;
}
	
h2, .h2 {
	font-size: 1.5rem;
	font-weight: 400;
}

h2.footer__heading, .h2.footer__heading {
	font-size: 1.5em;
	color: var(--grey-md);
	font-weight: bold;
	text-transform: uppercase;
}
		
h3, .h3 { 
	font-size: 1.375rem; 
}	

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;
}

h4 {
    font-weight: bold;
}

.overview h4 {
    margin-bottom: 2em;
}	

@media (min-width: 992px) {	
    h1.page-title {
        font-size: 3.125em;
    }
    
	h1, .h1 {
		font-size: 2.5rem;
	}
	
	h2.heading {
		font-size: 2.25rem;
	}

	h2, .h2 {
		font-size: 1.75em;
	}
	
	h2.footer__heading, .h2.footer__heading {
		font-size: 1.5em;
	}
	
	h3, .h3 { 
		font-size: 1.375em; 
	}
	
	h4, .h4 { 
		font-size: 1.25em; 
	}
	
	h5, .h5 { 
		font-size: 1.125em; 
	}
	
	
}	


/* ------------------------------------------------------------------------ Lists */

 ul.navbar-nav li, ul.nav-tabs li, .contact-info ul li {
    list-style: none;
    margin-left: 0;
    padding: 0;
}

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 0.5em;
    list-style: disc;
    margin-left: 2em;
}

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;
}	

.intro-text {
	font-size: 1.15rem;
}

.note {
	font-size: .875rem;
}

.light-text {
	color: var(--white);
}


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 {
	line-height: var(--lh-13);
}


@media (min-width: 1400px) {	
	p,
	.p,
	li,
	label,
	table,
	.btn {
		font-size: 1em;
	}

	.intro-text {
		font-size:1.25rem;
	}
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--grey-md); 
	font-weight: var(--fw-700);
	transition: var(--standard-transition);
	text-decoration: none;
}	

a:hover {
	color: var(--grey-dk);
	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;
}

.btn-primary {
	color: var(--black);
	box-shadow: none;
	font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 23px;
    text-decoration: none;
    line-height: 1;
    border: solid 1px rgba(0, 0, 0, .5);
    border-radius: 4px;
    transition: all .2s ease-in-out;
    margin: 1em 0;
    text-align: center;
    background-color: transparent;
}

.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, 
.btn-primary:first-child:active, :not(.btn-check)+.btn:active { 
	background-color: var(--black);
    border: solid 1px var(--black);
    color: var(--white);
    
}

.btn-primary.white {
	color: var(--white);
	border: solid 1px var(--white);
}

.btn-primary.white:hover,
.btn-primary.white:focus,
.btn-check:active+.btn-primary.white,
.btn-check:checked+.btn-primary.white,
.btn-primary.white.active,
.btn-primary.white:active,
.show>.btn-primary.white.dropdown-toggle, 
.btn-primary.white:first-child:active, :not(.btn-check)+.btn:active { 
	background-color: var(--white);
    border: solid 1px var(--white);
	color: var(--black);
}


.btn-search {
	color: var(--white);
	background-color: var(--black) !important;
	box-shadow: none;
	font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 23px;
    text-decoration: none;
    line-height: 1;
    border-radius: 4px;
    transition: all .2s ease-in-out;
    margin: 1em 0;
    text-align: center;
    background-color: transparent;
}

.btn-search:hover,
.btn-search:focus,
.btn-check:active+.btn-search,
.btn-check:checked+.btn-search,
.btn-search.active,
.btn-search:active,
.show>.btn-search.dropdown-toggle, 
.btn-search:first-child:active, :not(.btn-check)+.btn:active { 
	background-color: var(--grey-md) !important;
    color: var(--white);
    
}

a.more-link {
	text-decoration: none;
    font-size: .8em;
	font-weight: 300;
	text-transform: uppercase;
}

a.more-link:after {
    content: "\f101";
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    margin-left: 5px;
    display: inline-block;
    line-height: 1;
}

.btn-filter {
	color: var(--black);
	box-shadow: none;
	font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 16px;
    text-decoration: none;
    line-height: 1;
    border: solid 1px rgba(0, 0, 0, .5);
    border-radius: 4px;
    transition: all .2s ease-in-out;
    margin: 1em 0;
    text-align: center;
    background-color: transparent;
}

.btn-filter:hover,
.btn-filter:focus,
.btn-check:active+.btn-filter,
.btn-check:checked+.btn-filter,
.btn-filter.active,
.btn-filter:active,
.show>.btn-filter.dropdown-toggle, 
.btn-filter:first-child:active, :not(.btn-check)+.btn:active { 
	background-color: var(--black);
    border: solid 1px var(--black);
    color: var(--white);
    
}

@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;	
}


.img--ar--wrapper {
	overflow: hidden;
	position: relative;
}

.img--ar__img {	
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: var(--standard-transition);
}

.img--ar__img--1x1 {
	aspect-ratio: 1 / 1;
}


@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%;
	}
}	

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
}	

@media (min-width: 1400px) {
	hr, .hr {
		margin: 3rem auto;
	}
}


/* ------------------------------------------------------------------------ Elements */

.border-left {
    border-width: 0;
    border-color: unset;
    border-style: unset;
}

.separator--gray {
    background-color: #e4e8ed;
}

.separator {
    width: 60px;
    height: 5px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .border-left {
    	padding-left: 70px;
        border-width: 0 0 0 3px;
        border-color: #efefef;
        border-style: solid;
    }
}

/* ------------------------------------------------------------------------ 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;
}

/*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-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 { 
	display:none; 
}
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 14em; 
	width: 100%;
	transition: var(--standard-transition);
}

.badge__img {
	max-width: 5em;
	width: 100%;
	transition: var(--standard-transition);
}

.header__bar {
    padding-bottom: 1em;
	border-bottom: 1px solid #cdcdcd;
}

body.home .header__bar {
  border-bottom: 1px solid rgba(255, 255, 255, .2);  
}

.header__top {
	padding: 0.9em 0;
	font-size: 0.8125em;
}

.header__top p {
	margin-bottom: 0;
}

.header { 
	z-index: 1040;
}

body.home .header {
	position: absolute;
	width: 100%;
}

body.home .social__icon, .mobile-offcanvas .social__icon {
	color: var(--white);
}

.social__icon {
	display: inline-block;
    color: var(--black);
    padding: 1rem 1rem 0 1rem;
    transition: var(--standard-transition);
    font-size: 1.25em;
    font-weight: normal;
}

.social .social__icon:last-child {
    padding-right: 0;
}

.social__icon:hover {
	transform: translateY(-.15em);
}

@media (min-width: 992px) {	
    .logo__img {
    	max-width: 18.75em; 
    }
    
    .badge__img {
    	max-width: 10em;
    }
}

/* ------------------------------------------------------------------------ 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>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
	display: block;
}

.navbar-nav {
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.mobile-offcanvas.show .navbar-nav .nav-link {
	color: var(--white);
}

.mobile-offcanvas.show .navbar-nav .nav-link.active {
    color: var(--yellow);
}

.navbar-nav .nav-link {
	color: var(--grey-md);
	text-transform: uppercase;
	padding: .375rem 1.5rem .375rem 0;
	font-size: 0.875em;
	position: relative;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--black);
}

.navbar-nav .nav-item:hover .nav-link {
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--yellow);
}

body.home .navbar-nav .nav-link, body.home .navbar-nav .nav-item.active .nav-link {
	color: var(--white);
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: rgba(0, 0, 0, 0.85);
	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(--yellow);
	font-weight: var(--fw-700);
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--grey-dk);
	background-color: transparent;
}

.dropdown-item.active {
	font-weight: var(--fw-700);
}

.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
	color: var(--yellow);
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
	white-space: wrap;
	color: var(--white);
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--black);
	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 {
	    padding-left: 0;
	}

	.navbar-nav .nav-link {
		padding: 15px 10px;
		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: 0.75em 1em;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.navbar-nav .dropdown-menu li.active:hover .dropdown-item, .navbar-nav .dropdown-item:hover {
		color: var(--yellow);
		text-decoration: none;
	}

	.dropdown-menu>li:hover {
	    background-color: transparent;
	}

	.navbar-nav .megamenu {   
	    padding: 1rem 0;
	    margin-top: -1rem !important;
	} 

	.dropdown-toggle:after {
	 	display: none;
	}
	
	.dropdown-menu li {
        padding: 0 1em !important;
    }
}

@media (min-width: 1400px) {
	.navbar-nav .nav-link {
		margin-right: 1rem;
	}
}

/* ------------------------------------------------------------------------ Tabs */

ul.nav.nav-tabs li {
    padding: 0;
}

ul.nav.nav-tabs li .nav-link {
    border:0;
    border-bottom: solid 1px #dee2e6;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--black);
}

ul.nav.nav-tabs li .nav-link.active {
    border-bottom: solid 1px var(--black);
}

/* ------------------------------------------------------------------------ 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: 2.25em;
    height: 2.25em;
    background-position: center .5rem;
    background-image: url(../images/menu-icon-open-reverse.svg);
    background-size: cover;
}

.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;
	    background: #222;
	}

	.mobile-offcanvas.show {
		visibility: visible;
    	transform: translateX(0);
	}

	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}
	
	.mobile-offcanvas .logo__img {
        max-width: 12em;
    }
}


/* ------------------------------------------------------------------------ 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;
    background-color: var(--yellow);
    padding: 1.5em;
    background-size: 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
============================================================================================= */

/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
}

.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt2);
}

.section--black {
	background-color: var(--black);
}

.section--shadow {
	-webkit-box-shadow: inset 0 8px 13px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 8px 13px rgba(0, 0, 0, 0.08);
}


/* ------------------------------------------------------------------------ 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;
}


@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;
	}
}

@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: 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);
	text-transform: uppercase;
}

.cta:hover .cta__heading {
	text-decoration: underline;
}

.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: var(--standard-transition);
}

.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: 10rem;
	width: 10rem;
	margin: 0 auto 30px;
	transition: var(--standard-transition);
	font-size: 60px;
    line-height: 160px;
	text-align: center;
	border: solid 2px #e1e1e1;
	border-radius: 9999px;
	color: var(--black);
}

.cta:hover .cta__icon {
	transform: translateY(-.5rem);
	background-color: var(--black);
	border: solid 2px var(--black);
	color: var(--white);
}

.cta:hover .img--ar__img {
	transform: scale(1);
}


/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: 0;
	border: 0;
}

.card--border {
	border:  2px solid var(--grey-lt);
}

.card-body {
	padding: var(--card-p);
}

.card a {
	text-decoration: none;
	color: inherit;
	transition: var(--standard-transition);
}


/* ------------------------------------------------------------------------ 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: 1px solid var(--grey-lt);
	background: url(../images/arrow-grey.svg) no-repeat left center;
	background-size: .75rem;
}

.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-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: 2px solid var(--grey-lt);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.accordion-flush .accordion-body {
    padding: var(--card-p);
}


/* ------------------------------------------------------------------------ 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 {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight: var(--fw-700);
}

legend {
	font-size: 1rem;
}

.form-control, .form-select {
	border-radius:4px;
	border-color: var(--grey-lt);
	padding: 14px 15px;;
	color: var(--black);
	font-size: 1rem;
}

.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[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);
}

.input-group .btn {
    margin: 0;
}

.input-group input.form-control {
    border-color: #dee2e6;
}

@media (min-width: 1400px) {
	legend,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file,
	.form-check-label {
		font-size: 1rem;
	}

	.form-check-input {
	    margin-top: .313rem;
	}

	.form-text {
	    margin-top: .5rem;
	    font-size: 1rem;
	    color: var(--grey-md);
	}	
}


/* ------------------------------------------------------------------------ Swiper */

.homeSwiper .swiper-slide {
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper--overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
    top: 0;
    z-index: 1;
}

.swiper-slide {
  height: 100%;
/*     background: #fd5; */
}
.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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 center;
	transition: var(--standard-transition);
	background-color: rgba(0, 0, 0, 0.5);
    background-size: 1em;
}

.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;
}

/* ------------------------------------------------------------------------ News Swiper Block */


.newsSwiper .swiper-pagination-bullet {
	border: solid 2px var(--black);
}

.newsSwiper .swiper-pagination-bullet-active {
	background-color: var(--black);
	border: solid 2px var(--black);
}

.news__block {
	text-decoration: none;
}

.news__block .content {
	position: absolute;
	bottom: 55px;
    background-color: #f4f4f4;
    color: #2d2d2d;
    padding: 40px 10px;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    position: relative;
    margin-bottom: 30px;
    z-index: 10;
	transition: var(--standard-transition);
}

.news__block:hover .content{
	box-shadow: 0 5px 10px rgba(0,0,0,0.5);
	transition: var(--standard-transition);
}

.news__block .image {
	height: 20em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.news__block .content p {
	margin-bottom: 0;
	font-weight: normal;
	font-size: 0.8125em;
	font-style: italic;
}

.news__block .content .heading {
	font-weight: bold;
	text-transform: uppercase;
}

.news--landing .footer__news__block {
    margin-bottom: 2em;
}

.news--landing .footer__news__block::last-child {
    margin-bottom: 0em;
}


/* ------------------------------------------------------------------------ Product Swiper Block */

.product__block {
	position: relative;
	overflow: hidden;
}

.product__block .image {
	height: 12.7em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.product__block .content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	opacity: 0;
	height: auto;
	transform: translateY(100%);
	transition: all 0.3s ease;
	pointer-events: none;
	background-color: rgba(225, 225, 225, .85);
	padding: 20px 10px;
}

.product__block:hover .content {
	opacity: 1;
	color: var(--black);
	transform: translateY(0);
	pointer-events: auto;
}

.product__block p.title {
	color: var(--black);
	margin-bottom: 0.5em;
	font-weight: bold;
	text-align: center;
}

.product__block  p {
	color: var(--black);
	margin-bottom: 0;
	font-weight: normal;
	font-size: 0.875em;
	text-align: center
}

.product-card img {
    height: 300px !important;
}

.product-card p.h3 {
    color: var(--black);
    font-weight: bold;
}

.product-card p {
    font-weight: 300;
}

@media (min-width: 992px) {
    .product-card img {
        height: 200px !important;
    }
}

/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: rgba(121,114,93,.4);
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transition: var(--standard-transition);
	font-size: 20px;
    line-height: 50px;
	color: var(--white);
}

.to-top:hover {
	background-color: rgba(121,114,93,.6);
	color: var(--white);
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


/* ------------------------------------------------------------------------ Parts & Services */

.parts-services-menu {
    background-color: var(--yellow);
    padding: 1em;
}

.parts-services-menu a {
    color: var(--black);
}

.parts-services-menu ul li {
    overflow-wrap: break-word;
    padding: 0 0 0 45px;
    margin: 0 0 30px 0;
    position: relative;
    background-image: none;
}

.parts-services-menu ul li i {
color: #a3a3a3;
    position: absolute;
    left: 10px;
    top: 2px;
    font-size: 20px;
    width: 22px;
    text-align: center;
}

.parts-services-menu ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	margin-top: auto!important;
}

.footer p {
	font-size: 0.9375em;
}

.footer .copyright {
	font-size: 0.6875em;
	color: var(--grey-lt);
}

.footer__bottom {
	border-top: 1px solid #e5e5e5;
	margin-top: 2em;
	padding: 2em 0;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__link {
	margin-right: 1rem;
	text-transform: uppercase;
	text-decoration: none;
}	

.footer__link:hover {
	text-decoration: underline;
}

.logo__footer__img {
	width: 100%;
	max-width: 8.125em;
}

.footer__news__block {
	padding-left: 50px;
    position: relative;
    padding-bottom: 20px;
}

.footer__news__block a h4 {
	color: var(--black);
	font-size: 0.9375em;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}

.footer__news__block a h4:hover {
	text-decoration: underline;
}

.footer__news__block:after {
    font-family: 'Font Awesome 6 Free';
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
    content: "\f044";
}

.footer__news__block .date {
	font-size: 0.6875em;
}
	