/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--black: #231f20;
	--error: #e6004c;

	--blue-lt: #666DB1;
	--blue-md: #4E548C;	
	--blue-dk: #0B176E;
	--blue-gradient: linear-gradient(0deg, rgba(6,11,52,0.9) 0%, rgba(6,11,52,0) 100%);

	--grey-lt: #E9EAF1;
	--grey-md: #D3D5E3;
	--grey-gradient: linear-gradient(0deg, rgba(233,234,241,1) 0%, rgba(211,213,227,1) 100%);

	--header-height: 109px;
	--header-height-scroll: 80px;
	--section-p: 5rem;
	--section-p-sm: 3.25rem;
	--card-p: 2rem;
	--card-p-sm: 1.5rem;
	--card-p-md: 2rem;
	--card-p-lg: 2rem;

	--font-family: 'Roboto', Arial, Helvetica, sans-serif; 
	--font-family-alt: 'Oxanium', Arial, Helvetica, sans-serif; 

	--standard-transition: all .25s ease;
}

@media (min-width: 1400px) {
	:root {
		--header-height: 144px;

		--section-p: 6rem;
		--section-p-sm: 4rem;
		--card-p: 3rem;
		--card-p-sm: 2rem;
		--card-p-md: 4rem;
		--card-p-lg: 4rem;
	}
}

@media (min-width: 1680px) {
	:root {
		--section-p: 8rem;
		--card-p-lg: 7rem;
	}
}


/* ------------------------------------------------------------------------ Page Styles & Resets */

body {
	font: 400 100%/1.6 var(--font-family); 
	color: var(--black);
	background-color: var(--white);
	text-wrap: pretty;
} 


/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--blue-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: 500;
	margin-bottom: 1rem;
	position: relative;
}	

h1, .h1 { 		
	font: 700 2.75rem/1.1 var(--font-family-alt);	
	text-transform: uppercase;
	letter-spacing: -2px;
}

.h1--sm {	
	font-family: var(--font-family);	
	font-weight: 400;
	text-transform: initial;
	letter-spacing: normal;
	font-size: 2rem;
	display: block;	
	margin-bottom: .5rem;
}

h1:after,
.h1:after {
    content: "";
	position: absolute;
    width: 7.25rem;
    height: .5rem;
    bottom: -1rem;
    left: calc(50% - 3.625rem);
    background: url(../images/heading-underline-lt.svg) no-repeat center;
    background-size: 100% .5rem;
}

.h1--stats:after {
	content: "";
    position: absolute;
    width: 7.25rem;
    height: .5rem;
    bottom: -.75rem;
    left: calc(50% - 3.625rem);
    background: url(../images/heading-underline-md.svg) no-repeat center;
    background-size: 100% .5rem;
}
	

h2, .h2 {
	font-size: 1.75rem;
	line-height: 1.2; 
	margin-bottom: 3rem;
}

h1.h2 {
    font-weight: 500;
    font-family: var(--font-family);	
	text-transform: initial;
	letter-spacing: 0;
}

h2:after,
.h2:after {
    content: "";
	position: absolute;
    width: 7.25rem;
    height: .5rem;
    bottom: -1rem;
    left: 0;
    background: url(../images/heading-underline-dk.svg) no-repeat center;
    background-size: 100% .5rem;
}

h2.text-center:after,
.h2.text-center:after,
h3.text-center:after,
.h3.text-center:after {
	left: calc(50% - 3.625rem);
}

		
h3, .h3 { 
	font-size: 1.5rem; 
	line-height: 1.2;
}	


.h3--underline {
	margin-bottom: 2.5rem;
}

.h3--underline:after {
    content: "";
	position: absolute;
    width: 7.25rem;
    height: .5rem;
    bottom: -1.25rem;
    left: 0;
    background: url(../images/heading-underline-dk.svg) no-repeat center;
    background-size: 100% .5rem;
}

.h3--icon {
	padding-left: 2.25rem;
}

.h3--icon:before {
    content: "";
	position: absolute;
    width: 1.5rem;
    height: 3.25rem;
    bottom: 0;
    left: 0;
    background: url(../images/logo-icon.png) no-repeat center;
    background-size: contain;
    opacity: .25;
}


.h3--icon--vertical {
	padding-left: 0;
	padding-top: 4.75rem;
}

.h3--icon--vertical:before {
    bottom: 0;
    top: 0;
    left: calc(50% - .9375rem);
    opacity: .25;
}


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: 576px) {	
	h1, .h1 {
		font-size: 4rem;
		line-height: 1;
	}

	.h1--stats {
		margin-bottom: .25rem;
	}
	.h1--stats:after {
	    bottom: -.25rem;
	}
}

@media (min-width: 992px) {	
	h1, .h1 {
		font-size: 6rem;
		line-height: .95;
	}

	h1:after,
	.h1:after,
	h2.h1:after {
	    width: 17rem;
	    height: .75rem;
	    bottom: -1.125rem;
	    left: calc(50% - 8.5rem);
	    background-size: 100% .75rem;
	}
	
	h2.h1 {
	    margin-top: var(--section-p) !important;
	}
	

	.h1--sm {
		font-size: 3rem;
		margin-bottom: .75rem;
	}

	.h1--stats:after {
	    width: 13rem;
	    height: .625rem;
	    bottom: -.125rem;
	    left: calc(50% - 6.5rem);
	    background: url(../images/heading-underline-md.svg) no-repeat center;
	    background-size: 100% .625rem;
	}


	h2, .h2 {
		font-size: 2.375rem;
	}

	h3, .h3 { 
		font-size: 2rem; 
	}	

	.h3--sm { 
		font-size: 1.5rem; 
	}

	.h3--icon:not(.h3--icon--vertical) {
		padding-left: 2.75rem;
	}

	.h3--icon:before {
	    width: 1.875rem;
	    height: 3.75rem;
	    bottom: .5rem;
	}
}	

@media (min-width: 1400px) {	
	h1, .h1 {
		font-size: 8rem;
	}

	.h1--stats:after {
	    width: 17rem;
	    height: .75rem;
	    bottom: 0;
	    left: calc(50% - 8.5rem);
	    background-size: 100% .75rem;
	}

	.h1--sm {
		font-size: 4rem;
	}

	h2, .h2 {
		font-size: 3rem;
	}

	h3, .h3 { 
		font-size: 2.5rem; 
	}	

	.h3--sm { 
		font-size: 1.875rem; 
	}		
}	


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1.125em;
	background: url(../images/arrow-grey.svg) no-repeat left 0.375em;
	background-size: 0.75em 0.75em;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-blue {
	color: var(--blue-dk);
}

.intro-text,
.intro-text--lg {
	font-size: 1.25rem;
}


.note {
	font-size: .875rem;
}

.p--heading {
	font-weight: 700;
	text-transform: uppercase;
}

label,
table,
.btn,
.cta__heading {
	line-height: 1.3;
}

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,
	.p,
	li,
	label,
	table,
	.btn {
		font-size: 1.25rem;
	}

	.intro-text {
		font-size: 1.5rem;
	}

	.intro-text--lg {
		font-size: 1.75rem;
	}

	.note {
		font-size: 1rem;
	}	
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--blue-dk); 
	font-weight: 700;
	transition: var(--standard-transition);
	text-decoration: underline;
}	

a:hover {
	color: var(--blue-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;
}	


@media (min-width: 992px) {	
	/*Change value to header height*/
	.a--anchor {
	    border-top: calc(var(--header-height-scroll) + var(--section-p-sm)) solid transparent;
	    margin-top: calc((var(--header-height-scroll) * -1) + var(--section-p-sm))!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: 500px;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
}


.btn-primary,
.btn--blog--selected {
	background-color: var(--blue-dk) !important;
	border-color: var(--blue-dk) !important;
	color: var(--white) !important;
	border-width: 2px;
}

.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--blog--selected:hover,
.btn--blog--selected:focus,
.btn--blog--selected:active { 
	background-color: var(--black) !important;
	border-color: var(--black) !important;
	box-shadow: none;
}


.btn-filter,
.btn--blog {
	color: var(--black);
	background-color: var(--white);
	border-color: var(--blue-dk);
	border-width: 2px;
	position: relative;
}

.btn-filter {
	padding-right: 3rem !important; 
}

.btn-filter:after {
	content: "";
	position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    top: calc(50% - .7rem);
    right: 1.5rem;
    background: url(../images/menu-icon-open.svg) no-repeat center;
    background-size: 1.25rem;
}


.btn-filter:hover,
.btn-filter:focus,
.btn-filter:active,
.btn--blog:hover,
.btn--blog:focus,
.btn--blog:active { 
	background-color: var(--grey-lt);
	border-color: var(--black);
	box-shadow: none;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-.75rem);}
	60% {transform: translateY(-.375rem);}
}

.btn--scroll {
    position: absolute;
    left: calc(50% - 1.125rem);
    bottom: var(--section-p-sm);
    width: 2.25rem;
    border-radius: 50%;
    padding: 0 !important;
    transition: var(--standard-transition);
    z-index: 2;
}

.btn--scroll:hover {
    transform: translateY(1rem) !important;
}

.btn--scroll img {
    animation: bounce 2s ease infinite;
    transition: var(--standard-transition)
}

.btn--scroll:hover img {
    opacity: 1;
    animation-play-state: paused;
}



@media all and (max-width: 991px) and (min-width:0px) {
    .btn--blog {
        border-color: transparent;
        padding: .25rem 1.5rem;
        display: inline-block;
        background-color: transparent;
        color: var(--black);
    }
}


@media (min-width: 1400px) {	
	.btn {
		padding: 1rem 3.5rem;
	}

	.btn--sm {
		font-size: 1rem;
		padding: .625rem 1.5rem;
	}

	.btn--scroll {
	    left: calc(50% - 1.5rem);
	    width: 3rem;
	}
}


/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}


.img--icon {
	height: 4rem !important;
}

.img--team {
	width: 16rem;
}


.img--ar--wrapper {
	overflow: hidden;
	position: relative;
	border-radius: 1.5rem;
}

.productSwiperThumbs .img--ar--wrapper {
	border-radius: .5rem;
}

.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--1x25 {
	aspect-ratio: 1 / 1.25;
}

.img--ar__img--1x875 {
	aspect-ratio: 1 / .875;
}

.img--ar--wrapper--full-height {
	border-radius: 3rem 0 0 3rem;
	height: 100%;
} 

.img--ar__img--full-height {
	height: calc(100% - var(--section-p) - 3rem) !important;
	border-radius: 3rem 0 0 3rem;
}


.img--certifications--wrapper {
	overflow: hidden;
	position: relative;
	background-color: var(--white);
	padding: .25rem;
	border-radius: .5rem;
}

.img--certifications__img {	 
	object-fit: contain;
	object-position: center;
	transition: var(--standard-transition);
}

.footer .img--certifications__img--asq,
.footer .img--certifications__img--iso {	 
	height: 5rem !important;
}

.footer .img--certifications__img--made-canada {	 
	height: 8rem !important;
}


.header .certifications {
	display: inline-block;
}

.header .img--certifications__img--asq,
.header .img--certifications__img--iso {	 
	height: 3.5rem !important;
	width: auto;
}

@media all and (max-width: 767px) and (min-width: 0px) {
	.cta--stacked--overlay .img--ar__img--1x1 {
		aspect-ratio: 1 / .75;
	}
}

@media all and (max-width: 1679px) and (min-width: 1400px) {
	.cta--stacked--overlay .img--ar__img--1x1 {
		aspect-ratio: 1 / 1.25;
	}

	.cta--stacked--frequency-chart--aside .img--ar__img--1x25 {
		aspect-ratio: 1 / 1.75;
	}

	.cta--stacked--frequency-chart--aside .caption {
	    padding: var(--card-p-sm) var(--card-p-sm) !important;
	}
}

@media (min-width: 768px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem 3rem 0;
		max-width: 38%;
	}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 1.5rem 3rem;
		max-width: 38%;
	}

	.img--ar__img--lg-full {
		aspect-ratio: unset;
	}
}

@media (min-width: 1400px) {
	.footer .img--certifications__img--asq,
	.footer .img--certifications__img--iso {	 
		height: 7rem !important;
	}

	.footer .img--certifications__img--made-canada {	 
		height: 10rem !important;
	}
}

	
/* ------------------------------------------------------------------------ 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));
}

.side-img {
    border-radius: 3rem;
    position: absolute;
    top: var(--section-p);
    right: 0;
    width: 100%;
    height: 100%;
}

.section--overlap .side-img {
    height: calc(100% - (var(--section-p) * 2));
}


/*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 all and (max-width: 991px) and (min-width: 0px) {
	.side-img {
		display:none;
	}
}

@media (min-width: 992px) {
	.pt-lg-section {
		padding-top: var(--section-p) !important;
	}
}

@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
	}
}

@media (min-width: 1680px) {
    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

	.col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
   }


/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { 
	display:none; 
}
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 10rem; 
	width: 100%;
	transition: var(--standard-transition);
}

.header { 
	z-index: 1040;
	position: absolute;
	width: 100%;
}

.header--scroll .logo__img {
	max-width: 8rem; 
}

.navbar--fixed-top {
	padding: 1rem;
	transition: var(--standard-transition);
}

@media (min-width: 768px) {			
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}
}

@media (min-width: 992px) {
	.header { 
		position: fixed;
	}

	.header--scroll .navbar--fixed-top {
	    padding: .5rem;
	    background-color: rgba(11,23,110,.75) !important;
		backdrop-filter: blur(8px);
	}

}

@media (min-width: 1400px) {
	.logo__img {
		max-width: 14.5rem; 
	}
}


/* ------------------------------------------------------------------------ Navbar Nav */

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .nav-link {
	color: var(--white);
	text-transform: uppercase;
	padding: .375rem 1.5rem .375rem 0;
	font-size: 1.25rem;
	position: relative;
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: var(--grey-md);
	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(--blue-dk);
	font-weight: 700;
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--blue-dk);
	background-color: transparent;
}

.dropdown-item {
    line-height: 1.3;
    white-space: wrap;
}

.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(--black);
}


.navbar-nav .dropdown-item {
	padding: .375rem 0 .375rem 1rem;
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--grey-md);
	color: inherit;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: var(--grey-md);
	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 all and (max-width: 991px) and (min-width: 0px) {
	.navbar-nav .dropdown-menu,
	.navbar-nav .dropdown-menu .dropdown-menu,
	.navbar-nav .dropdown-item:focus {
	    background-color: var(--blue-dk);
	}

    .dropdown-item,
    .navbar-nav .dropdown-menu li > .dropdown-item.active,
    .navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
		color: var(--white);
	}
}

@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 .nav-link.active:before,
	.navbar-nav .nav-item:hover .nav-link:before {
	    content: "";
		position: absolute;
	    width: 100%;
	    height: .375rem;
	    bottom: 0;
	    left: 0;
	    background: url(../images/heading-underline-lt.svg) no-repeat center;
	    background-size: 100% .375rem;
	}

	.navbar-nav .nav-link.show:before {
	    background-color: var(--blue-lt) !important;
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 20rem !important;
	}

	.navbar-nav .dropdown-item {
		padding: .5rem 1.5rem;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.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: 2.5rem;
	}
}


/* ------------------------------------------------------------------------ Side Nav */

@media screen and (max-width: 991px) and (min-width: 0) {
    .sidenav {
        background-color: var(--grey-light);
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

@media (min-width: 992px) {
	.sidenav-toggler {
        display: none;
    }
}



/* ------------------------------------------------------------------------ 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;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.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 {
		background-color: var(--blue-dk);
		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-reverse.svg);
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../images/menu-icon-open-reverse.svg);
}


@media (min-width: 992px) {
	.navbar-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;
	}
}

@media (min-width: 1920px){ 
	.container-xxxxl {
	    max-width: 1830px;
	}
}

/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
	position: relative;
}

.section:not(.section--under-overlap, .footer) { 
	overflow: hidden;
}

.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt);
}

.section--overlap {
	padding-bottom: calc(var(--section-p) * 3);
}


.section--blue {
	background-color: var(--blue-dk);
	color: var(--white);
}

.section--blue--bg {
	background-repeat: no-repeat;
	background-position: center top;
    background-size: cover;
    position: relative;
}

.section--blue--bg:before {
	content: "";
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(11,23,110,.9);
}

.section--blue--shipboard {
	background-image: url(../images/section-shipboard.jpg);
}

.section--blue--vehicular {
	background-image: url(../images/section-vehicular.jpg);
}

.section--blue--land-tactical {
	background-image: url(../images/section-land-tactical.jpg);
}

.section--blue--footer:before {
	background: transparent url(../images/logo-icon.png) no-repeat center bottom;
	background-size: 12rem;
	opacity: .1;
}


.section--blue h2:after,
.section--blue .h2:after,
.section--blue h3:after,
.section--blue .h3:after {
    background: url(../images/heading-underline-md.svg) no-repeat center;
    background-size: 100% .5rem;
}

.section--blue a {
	color: var(--white);
}

.section--blue a:hover {
	color: var(--white);
}

.section--blue .btn-primary {
	background-color: transparent !important;
	border-color: var(--grey-md) !important;
}

.section--blue .btn-primary:hover,
.section--blue .btn-primary:focus,
.section--blue .btn-primary:active { 
	background-color: var(--black) !important;
	border-color: var(--grey-md) !important;
	box-shadow: none;
}

.section--intro .container {
	background: url(../images/intro-bg.png) no-repeat center;
	background-size: 100%;
}

@media (min-width: 1400px){ 
	.section--blue--footer:before {
		background-size: 16rem;
	}

	.section--intro .container {
		background-size: 70%;
	}
}


/* ------------------------------------------------------------------------ Banner */

@keyframes banner {
    0% {
    	width: 120%;
    	left: -10%;
    }
    100% {
    	width: 100%;
    	left: 0;
    }
}

.section--banner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	min-height: 24rem;
	background-color: var(--blue-dk);
	position: relative;
	color: var(--white);
}

.section--banner .img--banner {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.section--banner--home {
	min-height: 30rem;
}

.section--banner:after {
	content: "";
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(11,23,110,.6);
}

.section--banner:before {
	content: "";
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(11,23,110,0) 0%, rgba(11,23,110,1) 100%);
    z-index: 1;
}

.section--banner--home:before {
    height: 50%;
}

.section--banner .container {
    z-index: 2;
    position: relative;
}


@media (min-width: 576px) {	
	.section--banner--home {
		min-height: 36rem;
	}
}

@media (min-width: 992px) {	
	.section--banner {
		min-height: 28rem;
	}

	.section--banner--home {
		min-height: 36rem;
		height: 100vh;
	}
	
	
}

@media (min-width: 1200px) {	
    .section--banner .img--banner {
    	animation: banner 9s ease-out forwards;
    }
}

@media (min-width: 1400px) {	
	.section--banner {
		min-height: 36rem;
	}

	.section--banner--home {
		min-height: 48rem;		
	}
}


/* ------------------------------------------------------------------------ Callouts (Calls to Action) */

.cta {
	display: block;
	font-weight: 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: 700;
	text-transform: uppercase;
}


/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked {
	border-radius: 1.5rem;
}

.cta-group .col-md-6.col-lg-4:nth-child(odd) .cta--stacked {
	background-color: var(--blue-lt);
}

.cta-group .col-md-6.col-lg-4:nth-child(even) .cta--stacked {
	background-color: var(--blue-md);
}

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: var(--blue-gradient);
	border-radius: 1.5rem;
	z-index: 1;
}

.cta--stacked--no-img:before {
	display: none;
}

.cta--stacked .caption {
	position: absolute;
    left: 0;
    bottom: 0;
    padding: var(--card-p-sm) var(--card-p);
    color: var(--white);
    text-align: left;
    width: 100%;
    margin: 0;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.cta--stacked:hover .cta__heading {
	color: var(--white);
}


.cta--stacked--overlay:before {
	width: 100%;
	height: 100%;
	background: var(--blue-dk);
	opacity: .9;
}

.cta--stacked--overlay .caption {
	height: 100%;
}

.cta--stacked--overlay:hover h3 {
	text-decoration: underline;
}

@media all and (max-width: 991px) and (min-width: 768px) {
	.cta--stacked--frequency-chart .img--ar__img--1x1 {
    	aspect-ratio: 1 / .5;
	}
}



/* ------------------------------------------------------------------------ Callouts Featured Product (Homepage)  */

.cta .img--product {
	transition: var(--standard-transition);
}

.card--featured .cta .img--product {
	max-height: 25rem;
}

.cta:hover .img--product {
	opacity: 1;
	transform: translateY(-.5em);
}

@media (min-width: 992px) {
	.cta .img--product {
		max-height: 40.75rem;
	}
}

@media (min-width: 1400px) {
	.cta .img--product {
		max-height: 45.75rem;
	}

	.card--featured .cta .img--product {
		max-height: 100%;
	}
}


/* ------------------------------------------------------------------------ Callouts Product (Listing/Detail Page)  */

.cta--product {
	text-align: center;	
}

.cta--product .img--product--wrapper {
	width: 100%;
	background: var(--grey-gradient);
	border-radius: 1.5rem;
	aspect-ratio: 1 / 1.5;
	padding: var(--card-p-sm);
}

.cta--product .img--product {
	height: 100% !important;
}

@media all and (max-width: 575px) and (min-width: 0px) {
	.cta--product .img--product--wrapper {
		aspect-ratio: 1 / 1.25;
	}
}


/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: 1.5rem;
	border: 0;
	background: var(--grey-gradient);
}

.card--border {
	border:  2px solid var(--grey-md);
}


.card--blue {
	background: var(--blue-dk);
	color: var(--white);
}

.card--blue h2:after,
.card--blue .h2:after,
.card--blue h3:after,
.card--blue .h3:after {
    background: url(../images/heading-underline-md.svg) no-repeat center;
    background-size: 100% .5rem;
}

.card--blue .btn-primary {
	background-color: transparent !important;
	border-color: var(--grey-md) !important;
}

.card--blue .btn-primary:hover,
.card--blue .btn-primary:focus,
.card--blue .btn-primary:active { 
	background-color: var(--black) !important;
	border-color: var(--grey-md) !important;
	box-shadow: none;
}

.card--overlap {
 	border-radius: 1.5rem;
 	margin-top: calc((var(--section-p) * 1.5) * -1);
}


.card--featured {
	background-image: url(../images/card-featured-bg.png), var(--grey-gradient);
	background-repeat: no-repeat, repeat;
	background-position: center top var(--section-p), center;
	background-size: 90%, cover;
}

.card--featured .cta-group {
	margin-top: -5rem;
}


.card--history {
	background-image: url(../images/card-history-bg.png), var(--grey-gradient);
	background-repeat: no-repeat, repeat;
	background-position: center top calc(var(--section-p-sm) + .5rem), center;
	background-size: 90%, cover;
}


.card-body {
	padding: var(--card-p);
}

.card-body--md {
	padding: var(--card-p-md);
}


.card-body--lg {
	padding: calc(var(--card-p-lg) + var(--card-p)) var(--card-p-lg);
}

.card--history .card-body--lg {
	padding: calc(var(--card-p-lg) + var(--card-p)) var(--card-p-lg) calc(var(--card-p-lg) + var(--card-p-sm)) var(--card-p-lg);
}

.card a {
	text-decoration: none;
	color: inherit;
	transition: var(--standard-transition);
}

@media (min-width: 992px) {
	.card--featured {
		background-position: center;
		background-size: 77%, cover;
	}

	.card--history {
		background-position: center top calc(var(--section-p-sm) + .5rem), center;
		background-size: 59%, cover;
	}
}

@media (min-width: 1400px) {
	.card--overlap {
	 	border-radius: 3rem;
	}

	.card--history {
		background-position: center top calc(var(--section-p-sm) + 2.5rem), center;
	}
}

/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
}

.list-group-item {
    padding: 0 0 0 2rem;
    color: var(--black);
    background-color: transparent;
    border-bottom: 2px solid var(--grey-md);
	background: url(../images/arrow-grey-list-group.svg) no-repeat left center;
	background-size: 1.5rem !important;
}

.card .list-group-item {
    border-bottom: 2px solid var(--white);
}

.card .list-group-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.card--blue .list-group-item {
    border-bottom: 2px solid var(--blue-md);
    color: var(--white);
    background: url(../images/arrow-white-list-group.svg) no-repeat left center;
}


.list-group-item--no-links {
	padding: .75rem .25rem;
	font-weight: 500;
}


.list-group-item a {
    color: inherit;
    font-weight: 500;
    transition: var(--standard-transition);
    padding: .75rem .25rem;
    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(--white);
    box-shadow: none;
}

.accordion-button::after {
	background-image: url(../images/icon-accordion-open.svg);
	background-size: 1rem;
}

.accordion-button:not(.collapsed)::after { 
	background-image: url(../images/icon-accordion-close.svg);
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item,
.accordion-flush .accordion-item:last-child {
	border-bottom: 2px solid var(--grey-md);
}

.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-md);
    padding: 1rem .5rem;
    vertical-align: middle;
}

.table th {
    font-weight: 500;
}

.table thead th {
    font-weight: 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(--blue-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(--blue-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:700;
}

legend {
	font-size: 1rem;
}

.form-control, .form-select {
	border-radius:0;
	border-color: var(--grey-md);
	border-width: 2px;
	padding: .7rem 1rem;
	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-md);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check {
	margin-bottom: .375rem;
}

.form-check-input {
    border: 2px solid var(--grey-md);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--blue-dk);
    border-color: var(--blue-dk);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2em;
}

.form-switch .form-check-input:focus {
	background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
}

.form-text {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--grey-md);
}


@media (min-width: 1400px) {
	legend,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file,
	.form-check-label {
		font-size: 1.25rem;
	}

	.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(--blue-md);
}

.swiper-button-next, .swiper-button-prev {
	width: 3rem;
	height: 3rem;
	background: url(../images/arrow-blue-list-group.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(--blue-md) 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 {
	transform: translateY(-.5rem) rotate(-90deg);
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	margin-top: auto!important;
}

.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: 3rem;
	height: 3rem;
	padding: .5rem;
	margin: 0 .5rem 0 0;
	background-color: var(--blue-md);
	border-radius:50%;
	background-size: 2rem 2rem;
	transition: var(--standard-transition);
}

.social__icon:hover {
	transform: translateY(-.5em);
}
