/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--blue: #004A7E;
	--blue-dk: #00406C;
	--red: #BB342A;
	--teal: #3D9F9E;
	--yellow: #F1BC2A;
	--green: #719749;

	--black: #000;
	--white: #fff;
	--grey-lt: #ECECED;
	--grey-md: #AEAEAF;
	--grey-dk: #717477;
	
	--error: #BB342A;
	--error-lt: #eeccc9;
	
	--bs-form-invalid-border-color: #BB342A;
	--bs-form-valid-border-color: #719749;

	--border-gradient: linear-gradient(90deg,rgba(187, 52, 42, 1) 0%, rgba(113, 151, 73, 1) 50%, rgba(61, 159, 158, 1) 100%);
	--border-gradient-180deg: linear-gradient(180deg,rgba(187, 52, 42, 1) 0%, rgba(113, 151, 73, 1) 50%, rgba(61, 159, 158, 1) 100%);
	--border-gradient-flip: linear-gradient(270deg,rgba(187, 52, 42, 1) 0%, rgba(113, 151, 73, 1) 50%, rgba(61, 159, 158, 1) 100%);
	--border-gradient-btn: linear-gradient(90deg,rgba(187, 52, 42, 1) 0%, rgba(113, 151, 73, 1) 25%, rgba(61, 159, 158, 1) 50%, rgba(113, 151, 73, 1) 75%, rgba(187, 52, 42, 1) 100%);
	--border-gradient-fill-white: linear-gradient(var(--white), var(--white));
	--border-gradient-fill-grey: linear-gradient(var(--grey-lt), var(--grey-lt));
	--border-gradient-fill-blue: linear-gradient(var(--blue-dk), var(--blue-dk));
	
	--blue-gradient: linear-gradient(90deg,rgba(0, 74, 126, 1) 0%, rgba(0, 74, 126, .8) 50%, rgba(0, 74, 126, 1) 100%);

	--white-grey-hardstop-gradient: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(236, 236, 237, 1) 50%, rgba(236, 236, 237, 1) 100%);
	--grey-white-hardstop-gradient: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(236, 236, 237, 1) 50%, rgba(236, 236, 237, 1) 100%);

	--white-black-hardstop-gradient: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
	--grey-black-hardstop-gradient: linear-gradient(90deg,rgba(236, 236, 237, 1) 0%, rgba(236, 236, 237, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
    --grey-black-hardstop-gradient-vertical: linear-gradient(180deg,rgba(236, 236, 237, 1) 0%, rgba(236, 236, 237, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);	
     
    --grey-md-white-hardstop-gradient: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 227, 227, 1) 50%, rgba(229, 227, 227, 1) 100%);
    --grey-md-white-hardstop-gradient-vertical: linear-gradient(90deg,
    	rgba(229, 227, 227, 1) 0%,
    	rgba(229, 227, 227, 1) 50%,
    	rgba(255, 255, 255, 1) 50%,
    	rgba(255, 255, 255, 1) 100%
    );

	--header-height: 80px;
	--header-height-scroll: 60px;

	--section-p: 5rem;	
	--section-p-sm: 3rem;
	--section-p-xs: 2rem;
	--card-p: 2rem;
	--card-p-lg: 2rem;

	--font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
	--fw-400: 400;
	--fw-700: 700;
	--lh-16: 1.6;
	--lh-13: 1.3;
	--lh-12: 1.2;
	
	--br-sm: 1rem;
	--br-md: 1.5rem;
	--br-lg: 1.5rem;
	--br-pill-filters: 1.5rem;
	--br-50: 50%;
	--br-pill: 20rem;
	

	--standard-transition: all .25s ease;
}

@media (min-width: 576px) {
	:root {
		--card-p-lg: 3rem;
	}
}


@media (min-width: 992px) {
	:root {
		--br-pill-filters: 20rem;
	}
}


@media (min-width: 1400px) {
	:root {
		--section-p: 7rem;
		--section-p-sm: 5rem;
		--section-p-xs: 3rem;
		--card-p: 2rem;
		--card-p-lg: 5rem;
		
    	--br-md: 2rem;
    	--br-lg: 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;
} 

@media (min-width: 1400px) {
	body {
		padding-top: var(--header-height);
	} 
}

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--red);
	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 {
	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) */

.zindex-1 { z-index:1;}

/* ------------------------------------------------------------------------ Headers */

h1, h2, h3, h4,
.h1, .h2, .h3, .h4, .h2--sm  { 		
	font-weight: var(--fw-700);	
	margin-bottom: 1.5rem;
	line-height: var(--lh-12);
}	
.h1--xl {
    font-size: clamp(5rem, 3.045rem + 2vw, 8rem);
    line-height: 1.05;
}
.h1--lg {
    font-size: clamp(3.5rem, 3.045rem + 1.875vw, 3.75rem);
    line-height: 1.05;
}

h1, .h1 {	
	font-size: clamp(2.5rem, 2.2451rem + 1.0458vw, 3.5rem);
	line-height: 1.1;
}
	
h2, .h2 {
	font-size: clamp(1.75rem, 1.8725rem + 0.5229vw, 2.375rem);
}
		
h3, .h3 { 
	font-size: clamp(1.5rem, 1.3725rem + 0.5229vw, 2rem);
	margin-bottom: 1rem;
}
		
h4, .h4, .h2--sm  { 
	font-size: clamp(1.375rem, 1.3725rem + 0.5229vw, 1.625rem);
}

h4, .h4  { 
	margin-bottom: .5rem;
}

.h2--sm {
    margin-bottom: 1rem;
}


h2, h3, h4  { 
	margin-top: 3rem !important;
}

.h2--sm {
    margin-top: 2rem !important;
}


hr + h2, 
hr + h3, 
section h2:first-child,
section h3:first-child {
	margin-top: 0 !important;
}

h2 + h3 {
	margin-top: 3rem !important;
}


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul:not(.ul--dividers):not(.ul--checkmark):not(.navbar-nav):not(.dropdown-menu):not(.list-group):not(.list-group ul):not(.pagination) {
    padding-left: 2rem;
    list-style-type: disc;

}

ul:not(.ul--dividers):not(.ul--checkmark):not(.navbar-nav):not(.dropdown-menu):not(.ul--circle) li{
   line-height: var(--lh-13);
}

ul li, .list__item {	
    padding: 0 0 0.5rem 0;
	/*background: url(../images/arrow-grey.svg) no-repeat left 0.375em;*/
	background-size: 0.75em;
}

.ul--checkmark li {
	padding: 0 0 1rem 2em;
	background: url(../images/li-checkmark.svg) no-repeat left 0.125em;
	background-size: 1.375em;
}

/*.ul--checkmark-lg li  {
	padding: 7rem 0 0 0;
	background: url(../images/li-checkmark.svg) no-repeat;
	background-size: 5rem;
}*/

.section--blue .ul--checkmark.ul--checkmark-lg li {
    padding: 7rem 0 0 0;
	background: url(../images/li-checkmark-reverse.svg) no-repeat;
	background-size: 5rem;
}

.ul--checkmark--bold li {
	font-weight: bold;
}

.section--blue .ul--checkmark li,
.card--blue .ul--checkmark li {
	padding: 0 0 1rem 2em;
	background: url(../images/li-checkmark-reverse.svg) no-repeat left 0.125em;
	background-size: 1.375em;
}

.ul--checkmark-dividers li {
    border-bottom: 1px solid transparent;
    border-image: var(--border-gradient) 1;
}

.ul--dividers li {
	padding: 0 0 .25rem 0;
	background-image: none;
	border-bottom: 1px solid transparent; 
  	border-image: var(--border-gradient) 1;
}

.ul--dividers li:last-child, .ul--checkmark-dividers li:last-child {
	border-bottom: 0;
}

.ul--dividers li h4, .ul--checkmark-dividers li, .ul--dividers li > :first-child {
	margin-top: 1.25rem !important;
}

ul.multi-columns {
    column-count: 2;      /* number of columns */
    column-gap: 2rem;     /* space between columns */
    list-style-type: disc; /* optional: bullet style */
    padding-left: 1rem;    /* optional: space for bullets */
}

.multi-columns li {
    break-inside: avoid;  /* prevents items from splitting across columns */
}

.multi-columns a {
    text-decoration:none;
    font-weight:400;
    color: var(--black);
}
.multi-columns a:hover {
     text-decoration:underline;
    color: var(--black);
}

/*@media (min-width:991px) {
    .ul--checkmark-lg li, .section--blue .ul--checkmark.ul--checkmark-lg li {
	    padding: 0 0 0 7rem;
	    background-size: contain;
    }
}*/

@media (min-width: 1200px) {
    /* .ul--checkmark-lg li {
	    padding: 0 0 0 5rem;
     }*/
	.ul--dividers--horz {
		display: flex;
	}

	.ul--dividers--horz li {
		padding: 0 2rem;
		background-image: none;
		border-bottom: 0;
		border-right: 1px solid transparent; 
	  	border-image: var(--border-gradient-180deg) 1;
	    flex: 1 0 0%;
	}

	.ul--dividers--horz li:first-child {
		padding-left: 0;
	}

	.ul--dividers--horz li:last-child {
		border-right: 0;
		padding-right: 0;
	}

	.ul--dividers--horz li h4 {
		margin-top: 0;
	}

	.ul--dividers--horz li p {
		margin-bottom: 0;
	}
}

@media (min-width: 1400px) {
	.ul--dividers--horz li {
		padding: 0 3rem;
	}
}


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;
}

/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
    border: 0;
    padding-left: 0;
}

.list-group-item {
    padding: 0 0 0 2.5rem;
    color: var(--black);
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--grey-lt);
	background: url(../images/icon-list-group.svg) no-repeat left center;
	background-size: 2.5rem;
}

.list-group-item:last-child {
    padding-bottom: 0;
}


.list-group-item--no-links {
	padding: 1.125rem .5rem 1.125rem 2.5rem;
	font-weight: var(--fw-500);
}

.list-group-item a {
    color: inherit;
    font-weight: var(--fw-500);
    transition: var(--standard-transition);
    padding: 1.125rem .5rem;
    display:block;
    text-decoration: none;
}

.list-group__link:hover, .list-group-item a:hover {
	transform: translateX(1rem);
    text-decoration: underline;
}


.list-group--nested .list-group-item {
	background-image: none;
	font-size: clamp(1.375rem, 1.3725rem + 0.5229vw, 1.625rem); /*same as h4*/
	font-weight: bold;
	padding-left: 0;
}

.list-group--nested .list-group-item a {
    padding-top: 3rem;
    padding-bottom: .5rem;
}

.list-group--nested > .list-group-item:first-child > a {
    padding-top: 0;
}

.list-group--nested ul {
    padding-left: .5rem;
}

.list-group--nested ul .list-group-item {
	background: url(../images/icon-list-group.svg) no-repeat left .625em;
	background-size: 2rem;
	font-size: 1rem;
	font-weight: normal;
	padding-left: 2.5rem;
}

.list-group--nested ul .list-group-item:last-child {
    border-bottom: none;
}


.list-group--nested ul .list-group-item a {
    padding: 1.125rem .5rem;
}


@media (min-width: 1400px) {
    .list-group--nested ul .list-group-item {
    	font-size: 1.25rem;
    }	
}
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.text-yellow {
	color: var(--yellow);
}

.text-blue {
	color: var(--blue);
}

p .text-blue,
li .text-blue {
	font-weight: bold;
}


.color-inherit {
	color: inherit;
}	

.intro-text {
	font-size: 1.25rem;
}

.note {
	font-size: .875rem;
}

sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}

.nav-link,
.dropdown-item,
label,
table,
.btn,
.cta__heading,
.lh-13 {
	line-height: var(--lh-13);
}

.lh-12 {
	line-height: var(--lh-12);
}


@media (min-width: 1400px) {	
	p,
	.p,
	li,
	label,
	table {
		font-size: 1.25rem;
	}

	.intro-text {
		font-size: 1.5rem;
	}

	.note {
		font-size: 1.125rem;
	}	
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--red); 
	font-weight: var(--fw-700);
	transition: var(--standard-transition);
	text-decoration: underline;
}	

a:hover {
	color: var(--red);
	text-decoration: none;
	filter: brightness(120%);
}

.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: 1.5rem; 
	padding: .75rem 1.5rem;
	border-radius: var(--br-pill);
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: var(--fw-700);	
	transition: var(--standard-transition);
}

.btn:focus {
	outline: 0;
}

.header .btn {
	margin: 0;
}

.header--scroll .btn {
	padding: .5rem 1.5rem;
}

.header--scroll .btn-primary {
 	padding-right: 3.25rem;
}

.btn-grouping {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 1rem;
	margin-top: 2.5rem;
}

.btn-grouping.text-center {
	justify-content: center;
}

.btn-grouping .btn {
	flex-shrink: 0;
	width: max-content;
	margin: 0;
}


.btn-primary {
	color: var(--white);
	background: var(--red) url(../images/btn-arrow.svg) no-repeat center right 1.5rem;
	background-size: 1rem;
	border-color: var(--red);
    padding-right: 3.25rem;
    box-shadow: 0px 0px 0px 0px rgba(187,52,36,0);
}
.btn--filters {
   background: var(--red);
   padding:.5rem 1rem;
   font-size:1rem;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active { 
	color: var(--white);
	background-color: var(--red);
	border-color: var(--red);
	background-position: center right 1rem;
	filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(187,52,36,0.5);
}

.section--blue .btn-primary,
.card--blue .btn-primary , 
.card--blue a {
	color: var(--white);
}
.header--landing .btn-primary {
    padding: .5rem 2.75rem .5rem 1rem !important;
    background-position: center right 1rem !important;
}
@media all and (max-width: 1399px) and (min-width: 0) {
	.header .btn {
		margin:.75rem 0;
	}
}

@media all and (max-width: 1679px) and (min-width: 1400px) {
	.header .btn {
		padding: .75rem 1rem;
	}

	.header--scroll .btn {
		padding: .5rem 1rem;
	}

	.header--scroll .btn-primary {
	 	padding-right: 2.75rem;
	 }

	.header .btn-primary {
		color: var(--white);
		background-position: center right 1rem;
	    padding-right: 2.75rem;
	}

	.header .btn-primary:hover,
	.header .btn-primary:focus,
	.header .btn-primary:focus-visible,
	.header .btn-primary:active,
	.header .btn-primary:first-child:active,
	.header :not(.btn-check)+.btn-primary:active { 
		background-position: center right .75rem;
	}
}


@keyframes hovergradient {
  from { background-position: 0% 0%; }
  to { background-position: 100% 0%; }
}

.btn-secondary {
	color: var(--black);
	background-color: transparent;
	border: 1px solid transparent;
	background-image: var(--border-gradient-fill-white), var(--border-gradient-btn);
	background-size: 100%, 200%; /* Larger size to move the gradient */
  	background-origin: border-box;
  	background-clip: padding-box, border-box;
  	box-shadow: 0px 0px 0px 0px rgba(61,159,158,0);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active,
.btn-secondary:first-child:active,
:not(.btn-check)+.btn-secondary:active ,
.people-bio-icon:hover,
.modal-fullscreen .btn-close:hover { 
	color: var(--black);
	background-color: transparent;
	border-color: transparent;
	animation: hovergradient 2s linear infinite alternate;
	filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
}

.section--grey .btn-secondary,
.card--grey .btn-secondary {
	background-image: var(--border-gradient-fill-grey), var(--border-gradient-btn);
}

.section--blue .btn-secondary,
.card--blue .btn-secondary {
	color: var(--white);
	background-image: var(--border-gradient-fill-blue), var(--border-gradient-btn);
}


.section--blue .btn-secondary:hover,
.section--blue .btn-secondary:focus,
.section--blue .btn-secondary:focus-visible,
.section--blue .btn-secondary:active,
.section--blue .btn-secondary:first-child:active,
.card--blue .btn-secondary:hover,
.card--blue .btn-secondary:focus,
.card--blue .btn-secondary:focus-visible,
.card--blue .btn-secondary:active,
.card--blue .btn-secondary:first-child:active {  
	color: var(--white);
}

.btn--arrow, .btn--arrow-black {
	width: 3rem;
	height: 3rem;
	padding: 0;
	background-color: transparent;
	border: 1px solid transparent;
	background-image: var(--border-gradient-fill-white), var(--border-gradient-btn);
	background-size: 100%, 200%; /* Larger size to move the gradient */
  	background-origin: border-box;
  	background-clip: padding-box, border-box;
  	box-shadow: 0px 0px 0px 0px rgba(61,159,158,0);
  	position: relative;
}
.btn--arrow-down {
    transform: translateY(-50%) rotate(90deg);
}
.btn--arrow:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	background: url(../images/btn-arrow.svg) no-repeat center;
	background-size: 1rem;
	transition: var(--standard-transition);
}
.btn--arrow-black {
   background-image: var(--border-gradient-fill-grey), var(--border-gradient-btn);
}
.btn--arrow-black:before {
   background: url(../images/btn-arrow-black.svg) no-repeat center;
   content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	background-size: 1rem;
	transition: var(--standard-transition);
}
.btn--arrow:hover,
.btn--arrow:focus,
.btn--arrow:focus-visible,
.btn--arrow:active,
.btn--arrow:first-child:active,
:not(.btn-check)+.btn--arrow:active,
.cta:hover .btn--arrow,
.card--media:hover .btn--arrow-black {
	animation: hovergradient 2s linear infinite alternate;
	filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
	border-color: transparent;
}

.btn--arrow:hover:before,
.cta:hover .btn--arrow:before,
.card--media:hover .btn--arrow-black:before
{
	background-position: center right .5rem;
}

.section--grey .btn--arrow,
.card--grey .btn--arrow {
	background-image: var(--border-gradient-fill-grey), var(--border-gradient-btn);
}

.section--blue .btn--arrow,
.card--blue .btn--arrow,
.cta--stacked .btn--arrow {
	background-image: var(--border-gradient-fill-blue), var(--border-gradient-btn);
}
@media (min-width: 1400px) {
    .btn--filters {
     font-size:1.25rem;
        
    }
    .btn--sm {
        padding: .5rem 1.25rem;
        
    }
}

/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
 border-radius: var(--br-md);
}
.img--float-left img, .img--float-right img { 
 border-radius: var(--br-md);
}


.img--ar--wrapper {
	overflow: hidden;
	position: relative;
}

.img--ar--border {
    border: 1px solid var(--grey-lt);
}

.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--1x66 {
	aspect-ratio: 1 / 0.66;
}

.img--ar__br-md {
    border-radius: var(--br-md);
}
.img--ar__img--pill-horz {
	aspect-ratio: 1.75 / 1;
    background-color: var(--white);
    border-radius: var(--br-pill);
    overflow: hidden;
    width: 80%;
    max-width: 24rem;
}

.img--icon {
	width: 5rem;
	aspect-ratio: 1 / 1;
}
.img--icon-lg {
    max-width:12rem;
} 

.img--prosense-feed {
	max-width: 31.125rem;
}

.img--prosense-hd {
	max-width: 28.688rem;
}

h1 .img--prosense-feed {
	max-width: 33rem;
	width:100%;
}

h1 .img--prosense-hd {
	max-width: 30.563rem;
}
h3 .img--prosense-hd {
	max-width: 20rem;
}
.img--stat {
    width: min(10rem, 100%);
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*background: url("../images/icon-stats.svg") no-repeat center;*/
    background: var(--white);
    border-radius: var(--br-50);
    background-size: contain;
}
.img--stat-blue {
    /*background: url("../images/icon-stats-blue.svg") no-repeat center;*/
    background: var(--blue);
    border-radius: var(--br-50);
}
.img--stat-lg {
    width: min(24.9rem, 100%);
    /*background: url("../images/icon-stats-pill-blue.svg") no-repeat center;*/
     background: var(--white);
    border-radius: var(--br-pill);
    height: 10rem;
}

.img--stat-blue-lg {
    width: min(24.9rem, 100%);
    /*background: url("../images/icon-stats-pill-blue.svg") no-repeat center;*/
     background: var(--blue);
    border-radius: var(--br-pill);
    height: 10rem;
}

.img--stat-lg p,
.img--stat-blue-lg p {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.laptop-mobile {
	position: relative;
}

.laptop-mobile__laptop {
	width: 93%;
	margin-left: 7%;
}

.laptop-mobile__mobile {
    position: absolute;
    width: 28.8%;
    bottom: -1%;
    left: 0;
    aspect-ratio: .687 / 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%;
	}
}	
@media (min-width: 992px) {	
    .img--stat {
        width: min(14rem, 100%);
    }
    .img--stat-blue-lg {
      width: min(24.9rem, 100%);
      width: min(28rem, 100%);
      height: 14rem;
    }
   
}
@media (min-width: 1400px) {	
	.img--icon--lg {
		width: 7rem;
	}
}

@media all and (max-width: 991px) and (min-width: 0) {
	.img--request-demo {
        display: none;
    }
}

    


	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: var(--section-p-sm) auto;
/*	border-top: var(--bs-border-width) solid;*/
	border-top: 1px solid transparent; 
  	border-image: var(--border-gradient) 1;
  	opacity: 1;
}	

.hr--sm { 
	margin: var(--section-p-xs) auto;
}



/* ------------------------------------------------------------------------ Additional Utility Classes/Bootstrap Overrides */

.pt-section,
.py-section {
	padding-top: var(--section-p);
}

.pb-section,
.py-section {
	padding-bottom: var(--section-p);
}

.pe-section,
.px-section {
	padding-right: var(--section-p);
}

.ps-section,
.px-section {
	padding-left: var(--section-p);
}


.pt-section-sm,
.py-section-sm {
	padding-top: var(--section-p-sm);
}

.pb-section-sm,
.py-section-sm {
	padding-bottom: var(--section-p-sm);
}

.pe-section-sm,
.px-section-sm {
	padding-right: var(--section-p-sm);
}

.ps-section-sm,
.px-section-sm {
	padding-left: var(--section-p-sm);
}


.mt-section,
.my-section {
	margin-top: var(--section-p);
}

.mb-section,
.my-section {
	margin-bottom: var(--section-p);
}

.me-section,
.mx-section {
	margin-right: var(--section-p);
}

.ms-section,
.mx-section {
	margin-left: var(--section-p);
}


.mt-section-sm,
.my-section-sm {
	margin-top: var(--section-p-sm);
}

.mb-section-sm,
.my-section-sm {
	margin-bottom: var(--section-p-sm);
}

.me-section-sm,
.mx-section-sm {
	margin-right: var(--section-p-sm);
}

.ms-section-sm,
.mx-section-sm {
	margin-left: var(--section-p-sm);
}

.mt-section-xs,
.my-section-xs {
	margin-top: var(--section-p-xs);
}

.mb-section-xs,
.my-section-xs {
	margin-bottom: var(--section-p-xs);
}

.me-section-xs,
.mx-section-xs {
	margin-right: var(--section-p-xs);
}

.ms-section-xs,
.mx-section-xs {
	margin-left: var(--section-p-xs);
}


.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));
}

#zero-upfront {
    
}


/*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%;
}

.row--lg-divider {
	position: relative;
}

.row--lg-divider:before {
	content: "";
	position: absolute;
	left: 1rem;
	top: 55%;
	height: 1px;
	width: calc(100% - 2rem);
	background-color: var(--teal);
}

.g-4b,.gx-4b {
    --bs-gutter-x: 2rem
}

.g-4b,.gy-4b {
    --bs-gutter-y: 2rem
}

@media (min-width: 992px) {
	.row--lg-divider:before {
		left: 50%;
		top: 0;
		width: 1px;
		height: 100%;
	}

	.g-lg-6,.gx-lg-6 {
	    --bs-gutter-x: 5rem
	}

	.g-lg-6,.gy-lg-6 {
	    --bs-gutter-y: 5rem
	}
	
	.me-lg-section,
    .mx-lg-section {
    	margin-right: var(--section-p);
    }
    
    .ms-lg-section,
    .mx-lg-section {
    	margin-left: var(--section-p);
    }
}

@media (min-width: 1400px) {
	.g-xxl-5, .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
    
    .g-xxl-5, .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }
    
    .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
	}

	.g-xxl-8,.gx-xxl-8 {
	    --bs-gutter-x: 10rem
	}

	.g-xxl-8,.gy-xxl-8 {
	    --bs-gutter-y: 10rem
	}

	.col-xxl-2b {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 1680px) {
	.col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { 
	display:none; 
}
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 16rem; 
	width: 100%;
	transition: var(--standard-transition);
}

.header--scroll .logo__img {
	max-width: 13rem; 
}

.header { 
	z-index: 1040;
}

.navbar--fixed-top {
	padding: 1rem;
	transition: var(--standard-transition);
}

@media all and (max-width: 1679px) and (min-width: 1400px) {	
	.logo__img {
		max-width: 14rem; 
	}

	.header--scroll .logo__img {
		max-width: 12rem; 
	}
}

@media (min-width: 1400px) {
	.header--scroll .navbar--fixed-top {
	    padding: .625rem;
	}
}



/* ------------------------------------------------------------------------ Video Modal */

.modal-fullscreen .modal-content {
    background-color: var(--blue);
}

.modal-fullscreen .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.modal-backdrop {
    background: var(--blue) url(../images/banner-bg.jpg) no-repeat center;
	background-size: cover;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-fullscreen .btn-close {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: var(--br-50);
    background: url(../images/icon-close-blue.svg) no-repeat center;
    background-size: 3rem;
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(61, 159, 158, 0);
    padding: 0;
    transition: var(--standard-transition);
}

@media (min-width: 992px) {
    .modal-fullscreen .ratio {
    	width: 90%;
    }
}


/* ------------------------------------------------------------------------ Modals - People Full Screen */

.modal--people .modal-fullscreen .modal-content {
    background-color: var(--grey-lt);
}

.modal--people .modal--people__img {
	width: 100%;
	/*height: 100% !important;
	max-height:100vh;*/
	object-fit: cover;
	object-position:center top;
}

.modal--people .modal-fullscreen .btn-close {
	background: url(../images/icon-close.svg) no-repeat center;
    background-size: 3rem;
}

@media (min-width: 576px) {
    .modal--people .modal--people__img {
    	width: 50%;
    }
}

@media (min-width: 1200px) {
    .modal--people .modal--people__img {
    	width: 100%;
    }
}


/* ------------------------------------------------------------------------ Navbar Nav */

.header--scroll .navbar {
	border-bottom: 1px solid var(--grey-lt);
}

.navbar-nav li {
	padding: 0;
	background-image: none;
	margin-bottom:.375rem;
}

.navbar-nav .nav-link {
	color: var(--black);
	padding: .375rem 2.5rem .375rem 0;
	font-size: 1.125rem;
	position: relative;
}

.navbar-nav .nav-link:hover {
	text-decoration: underline;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--black);
    font-weight: var(--fw-700);
}

.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: 8px;
}

.navbar-nav .dropdown-item {
	font-size: 1.125rem;
}

.navbar-nav .dropdown-menu li > .dropdown-item.active {
	color: var(--black);
	font-weight: var(--fw-700);
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--black);
	background-color: transparent;
}

.dropdown-item.active, .dropdown-toggle.active, .nav-link.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(--black);
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
	white-space: wrap;
}

.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: .5rem;
}


@media (min-width: 1400px) {	
	.navbar {
		margin-top: 0; 
	}

	.navbar--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
	}

	.navbar-nav li {		
		margin-bottom: 0;
	}

	.navbar-nav .nav-link {
		padding: .5rem 0!important;
		margin-right: 1.125rem;
		border-bottom: 0;
	}

	.navbar-nav .nav-link:hover {
		text-decoration: none;
	}

	.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(--black);
	}

	.navbar-nav .nav-item .nav-link:before {
		transition: var(--standard-transition);
	}

	.navbar-nav .nav-item:hover .nav-link:before {
		content: "";
		position: absolute;
	    width: 100%;
	    height: 2px;
	    bottom: .125rem;
	    right: 0;
	    background-image: var(--border-gradient);
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 16rem !important;
	}

	.navbar-nav .dropdown-item {
		padding: .375rem 1.5rem;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.navbar-nav .dropdown-menu li.active:hover .dropdown-item, .navbar-nav .dropdown-item:hover {
		color: var(--black);
	}

	.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: 1680px) {
	.navbar-nav .nav-link {
		margin-right: 1.5rem;
	}
}


/* ------------------------------------------------------------------------ Side Nav */

.sidenav li {
	padding: 0;
	background-image: none;
}

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: var(--fw-400);
	color: var(--black);
}

.sidenav .nav-link:hover {
    text-decoration: underline;
    color: var(--black);
}

.sidenav .nav-link .active {
	color: var(--black);
	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 !important;
}

.offcanvas-header .btn-close {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--br-50);
	background: var(--blue-dk) url(../images/menu-icon-open-reverse.svg) no-repeat center .625rem;
    background-size: 1.25rem;
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(61,159,158,0);
}

.offcanvas-header .btn-close:hover,
.offcanvas-header .btn-close:focus {
	filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
}

.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: 1399px) {
	.offcanvas-header { 
		padding: 0;	
		display:block !important;
	}

	.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;
		padding: 0;
	}
}	


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0;
	border: none;
	cursor: pointer;
	border-radius: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--br-50);
	background-color: var(--blue-dk);
	box-shadow: 0px 0px 0px 0px rgba(61,159,158,0);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
}

.navbar-toggler-icon {
    background-image: url(../images/menu-icon-reverse.svg);
    width: 1.25rem;
    height: 1.25rem;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../images/menu-icon-open-reverse.svg);
}


@media (min-width: 1400px) {
	.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;
}

main .section { 
	/*overflow: hidden;*/
	overflow-x: clip;
}


.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section-s--sm { 
	padding: var(--section-p-sm) 0 var(--section-p) 0;
}

.section-e--sm { 
	padding: var(--section-p) 0 var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt);
}

.section--blue {
	background-color: var(--blue);
	color: var(--white);
}
.section--blue-dk {
	background-color: var(--blue-dk);
	color: var(--white);
}

.section--white-grey-hardstop {
	background: var(--white-grey-hardstop-gradient)
}

.section--grey-white-hardstop {
	background: var(--grey-white-hardstop-gradient)
}

.section--prosense-feed-precision {
	background: url(../images/prosense-feed-precision-bg.jpg) no-repeat center;
	background-size: cover;
}
.section--prosense-hd-consistency {
	background: url(../images/prosense-hd-consistency.jpg) no-repeat center;
	background-size: cover;
	position:relative;
}
.section--arrow-top {
   position:relative;
}
.section--prosense-hd-consistency__bottom:after {
    background-color: #003562;
    opacity: 85%;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
.section--prosense-hd-consistency__bottom:before {
    content: "";
    width: 100%;
    aspect-ratio: 1 / .054;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: url(../images/card-blue-arrow-bottom-reverse.png) no-repeat center top;
    background-size: 101%;
}

.section--products {
	background: url(../images/cta-prosense-feed-bg.jpg) no-repeat center;
	background-size: cover;
}

@media (min-width: 992px) {		
	.section--products {
		background: url(../images/cta-prosense-products-bg.jpg) no-repeat center;
		background-size: cover;
	}
	
	.section-lg--sm { 
    	padding: var(--section-p) 0;
    }
    
    .section--sm,
    .section-e--sm { 
    	padding-bottom: calc(var(--section-p-sm) + .5rem);
    }
}

@media (min-width: 1200px) {		
    .section--sm,
    .section-e--sm { 
    	padding-bottom: calc(var(--section-p-sm) + .75rem);
    }
}

@media (min-width: 1400px) {		
    .section--sm,
    .section-e--sm { 
    	padding-bottom: calc(var(--section-p-sm) - .5rem);
    }
}

@media (min-width: 1680px) {		
    .section--sm,
    .section-e--sm { 
    	padding-bottom: calc(var(--section-p-sm) + .75rem);
    }
}


/* ------------------------------------------------------------------------ Banner */

.section--banner {
	background: var(--blue) url(../images/banner-bg.jpg) no-repeat center bottom;
	background-size: cover;
	margin-bottom: 0;
	position: relative;
	color: var(--white);
}
.section--banner-grey {
    background: var(--grey-lt);
}
.section--banner-grey h1 {
    color:var(--blue);
}
.section--banner .container, .section--prosense-hd-consistency .container, .section--prosense-feed-precision .container {
    z-index: 2;
    position: relative;
}

.section--banner--home {
	padding-bottom: 0;
}

.section--banner--overlap {
	padding-bottom: calc(var(--section-p) * 3);
}

.section--banner--overlap--sm {
	padding-bottom: calc(var(--section-p) * 1.85);
}
.section--banner--overlap--xsm {
	padding-bottom: calc(var(--section-p) * 1.5);
}


.section--banner--overlap--landing {
	padding-bottom: calc(var(--section-p) * 3);
}


.section--banner--overlap + .section {
	padding-top: 0;
	margin-top: calc(var(--section-p) * -2);
}

.section--banner--overlap--sm + .section {
	padding-top: 0;
	margin-top: calc(var(--section-p) * -1);
}
.section--banner--overlap--xsm + .section {
	padding-top: 0;
	margin-top: calc(var(--section-p) * -.5);
}

.section--banner--overlap--landing + .section {
	padding-top: 0;
	margin-top: calc(var(--section-p) * -2.75);
}

@media (min-width: 992px) {
    .section--banner--overlap--xsm + .section {
    	margin-top: calc(var(--section-p) * -.5);
    }
}

@media (min-width: 1400px) {
	.section--banner--home {
		padding: 0;
		height: 45rem;
	}
}

@media (min-width: 1680px) {
	.section--banner--home {
		height: 55rem;
	}
}
/* ------------------------------------------------------------------------ People page */

.people-bio-icon {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
    align-self: center;
    justify-self: end;
    border-radius: var(--br-50);
  	background:  url(../../images/icon-open.svg) no-repeat center;
  	background-size: 2.5rem;
  	transition: all .25s ease;
  	cursor: pointer;
}


/*@media (min-width: 1200px) {*/
/*    .people-bio-icon {*/
/*        width: 3rem;*/
/*	    height: 3rem;*/
/*        background-size: 3rem;*/
/*    }*/
/*}*/

/* ------------------------------------------------------------------------ Video Masks */

.video-mask-wrapper {
	position: relative;
}

.video-mask__video {
    width: 100.2%;
}


/* ------------------------------------------------------------------------ Laptop Video Walkthrough */

.video-mask--walkthrough {
	position: relative;
}

.video-mask__video--walkthrough--laptop {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background-color: black;
}

.video-mask__video--walkthrough--desktop {
    position: absolute;
    top: 2.25%;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    background-color: black;
}

.video-mask--walkthrough__btn {
	margin-top: -12%;
}

@media (min-width: 768px) {	
	.video-mask--walkthrough__btn {
		margin-top: -14%;
	}
}

@media (min-width: 992px) {	
	.video-mask--walkthrough__btn {
		margin-top: -16%;
	}
}

@media (min-width: 1400px) {	
	.video-mask--walkthrough__btn {
		margin-top: -14%;
	}
}

@media (min-width: 1680px) {	
	.video-mask--walkthrough__btn {
		margin-top: -12%;
	}
}


/* ------------------------------------------------------------------------ Circle Video Mask */

@keyframes appscreen1 {
  0% {
    top: 30%;
    opacity:0;
  }
  100% {
    top: 10%;
    opacity: 1;
  }
}

@keyframes appscreen2 {
  0% {
    bottom: -10%;
    opacity:0;
  }
  100% {
    bottom: 10%;
    opacity: 1;
  }
}


.video-mask-wrapper--circle:before,
.video-mask-wrapper--circle:after {
	content: "";
	position: absolute;
	opacity:0;
	background-size: cover !important;
	border: 1px solid var(--grey-md);
	border-radius: .5rem;
}

.video-mask-wrapper--circle:before {
	left: -0.3%;
	top: 30%;
	width: 48%;
	aspect-ratio: 1 / .34;
	background: url(../images/video-circle-level-history.png) no-repeat center;
}

.video-mask-wrapper--circle.aos-animate:before {
	animation: appscreen1 1s .25s forwards;
}

.video-mask-wrapper--circle:after {
	right: 0;
	bottom: -10%;
	width: 36%;
	aspect-ratio: 1 / .46;
	background: url(../images/video-circle-out-of-feed-events.png) no-repeat center;
}

.video-mask-wrapper--circle.aos-animate:after {
	animation: appscreen2 1s .5s forwards;
}


.video-mask--circle {
	aspect-ratio: 1 / 1;
    background-color: var(--white);
    border-radius: var(--br-50);
    overflow: hidden;
}

/* ------------------------------------------------------------------------ Oval Video Mask */

.video-mask--pill-vert {
	aspect-ratio: 1 /  1.188;
    background-color: var(--white);
    border-radius: var(--br-pill);
    overflow: hidden;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}

.video-mask--pill-horz {
	aspect-ratio: 1.188 / 1;
    background-color: var(--white);
    border-radius: var(--br-pill);
    overflow: hidden;
    object-fit: cover;
    height: 100% !important;
}

.video-mask--circle img,
.video-mask--pill-vert img,
.video-mask--pill-horz img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}


/* ------------------------------------------------------------------------ Home Banner Video Mask */
.video-mask--banner {
    display: flex;
    aspect-ratio: 1 / .914;
    background-color: var(--white);
    -webkit-mask-image: url(../images/banner-video-mask.svg);
    mask-image: url(../images/banner-video-mask.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom right;
    mask-position: bottom right;
}

.video-mask--banner:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/banner-video-overlay.svg) no-repeat center;
	background-size: 100%;
	opacity: .25;
}

.video-mask--banner img {
    object-fit: cover;
}

.btn--play {
    background-color: var(--blue-dk);
    width: 5rem;
    height: 5rem;
    margin-top: 0;
    display: block;
    border-radius: var(--br-50);
    box-shadow: none;
    transition: all .25s ease;
    position: absolute;
    z-index: 1;
}

.btn--play:hover,
.btn--play:focus,
.btn--play:focus-visible,
.btn--play:active,
.btn--play:first-child:active,
:not(.btn-check)+.btn--play:active {
	width: 5.5rem;
    height: 5.5rem;
    background-color: var(--blue-dk);
    filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
	border-color: transparent;

}

.btn--play__svg {
    width: 50%;
    height: 50%;
    margin-left: .5rem;
}


@media (min-width: 786px) {
	.video-mask-wrapper--banner {
		max-width: 80%;
	}
}

@media (min-width: 1400px) {
    
    .video-mask-wrapper--banner {
		max-width: 75%;
	}

	.btn--play {
		width: 7rem;
	    height: 7rem;
	}

	.btn--play:hover,
	.btn--play:focus,
	.btn--play:focus-visible,
	.btn--play:active,
	.btn--play:first-child:active  {
		width: 8rem;
	    height: 8rem;
	}
}


/* ------------------------------------------------------------------------ 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;
	transition: var(--standard-transition);
}

.cta:hover .cta__heading {
	color: var(--grey-md);
}

.cta__text {
	text-align: center;
}
/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked {
    display: flex;
    align-items: center;
    height: 100%;
}

.cta--sm.cta--stacked:before {
  border-radius: var(--br-sm);
}
.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--blue-gradient);
	z-index: 1;
	transition: var(--standard-transition);
	border-radius: var(--br-md);
}

.cta--sm.cta--stacked  .cta__heading {
    padding: var(--section-p-xs);
    align-items: flex-start;
    justify-content: flex-start;
}

.cta--stacked .cta__image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.cta--stacked .cta__image {
    aspect-ratio: initial;
    width: 100%;
    height: 100%;
}

.cta--stacked .cta__heading {
	/*position: absolute;*/
 /*   left: 50%;*/
 /*   top: 50%;*/
 /*   transform: translate(-50%,-50%);*/
    position: relative;
    color: var(--white);
    width: 100%;
    min-height: 23rem;
    /*height: calc(100% + var(--card-p-lg));*/
    margin: 0;
    padding: var(--card-p-lg);
    text-shadow: unset;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.cta--stacked:hover .cta__heading {
	color: var(--white);
}
.cta--sm .cta__image-wrapper {
    border-radius: var(--br-sm);
}
.cta--sm  .btn--arrow-down {
    position: absolute;
    bottom: 1rem;
}
.cta__image-wrapper {
	overflow: hidden;
	border-radius: var(--br-md);
	filter: grayscale(1);
}

.cta__image {
	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: all .25s ease;
}

.cta:hover .cta__image, .card--media:hover img {
	transform: scale(1.05);
}
.cta--sm .cta__image {
	padding-bottom: 110%;
}

@media (min-width: 480px) {
    .cta--sm .cta__image {
	    padding-bottom: 60%;
    }
}

@media (min-width: 576px) {
    .cta__image {
	    aspect-ratio: 1 / .66;
    }
	
	.cta--sm .cta__image {
	    padding-bottom: 115%;
    }
}

@media (min-width: 992px) {
    .cta--sm .cta__image {
	    padding-bottom: 150%;
    }
}

@media (min-width: 1200px) {
    .cta--sm .cta__image {
	    padding-bottom: 110%;
    }
}

@media (min-width: 1400px) {
    .cta--stacked .cta__heading {
        min-height: 32rem;
    }
}
    
@media (min-width: 1680px) {
    .cta--sm .cta__image {
	    padding-bottom: 90%;
    }

}


/* ------------------------------------------------------------------------ Callouts with Icons */

.cta__icon {
	height: 5rem;
	width: 5rem;
	margin: 0 auto;
	transition: var(--standard-transition);
}

.cta:hover .cta__icon {
	transform: translateY(-.5rem);
}

.cta:hover .img--ar__img {
	transform: scale(1);
}


/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: var(--br-sm);
	border: 0;
}

.card--md {
    border-radius: var(--br-md);
}

.card--lg {
	border-radius: var(--br-lg);
}

.card--xl {
	border-radius:var(--br-pill);
}
.card--border-top {
      border-top-left-radius: var(--br-md);
    border-top-right-radius: var(--br-md);
}
.card--people img {
    border-top-left-radius: var(--br-md);
    border-top-right-radius: var(--br-md);
    aspect-ratio: 1 / 1;
}
.card--media img {
    border-top-left-radius: var(--br-md);
    border-top-right-radius: var(--br-md);
    aspect-ratio: 1 / .66;
    border-top: 1px solid var(--grey-lt);
    border-left: 1px solid var(--grey-lt);
    border-right: 1px solid var(--grey-lt);
}

.card--grey {
	background-color: var(--grey-lt);
}
.card--grey-md {
	background-color: var(--grey-md);
}

.card.card--xl.card--grey.mb-section-sm h4,
.card.card--xl.card--grey.mb-section-sm .h4 {
    margin: 0 !important;
}

.card--blue {
	background-color: var(--blue);
	color: var(--white);
	position: relative;
}
.card--media {
    text-decoration:none;
    overflow:hidden;
        font-weight: inherit;
}
.card--media:hover {
    color: inherit;
    text-decoration: none;
    filter: none;
}
.card--media:hover img {
        filter: brightness(120%);
}

.card--blue--arrow-bottom:after {
	content: "";
	width: 100%;
	aspect-ratio: 1 / .054;
	position: absolute;
	top: 100%;
	left: 0;
	background: url(../images/card-blue-arrow-bottom.png) no-repeat center top;
	background-size: 100%;
}

.card--blue--gradient {
	background: var(--blue) url(../images/section-blue-gradient-bg.jpg) no-repeat center bottom;
	background-size: cover;
}

.card--gradient-border {
    background-color: transparent;
    border-color: transparent;
    background-image: var(--border-gradient-fill-white), var(--border-gradient);
    background-size: 100%, 100%;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
}

.section--grey .card--gradient-border {
    background-image: var(--border-gradient-fill-grey), var(--border-gradient);
}

.section--blue .card--gradient-border {
    background-image: var(--border-gradient-fill-blue), var(--border-gradient);
}

.card--gradient-border--180deg {
    background-image: var(--border-gradient-fill-white), var(--border-gradient-180deg);
}

.card--halfgray .col-lg-6:first-child {
    background: var(--grey-lt) url(../images/comparison-traditional-sensors-bg.jpg) no-repeat center;
	background-size: cover;
	border-top-left-radius: 1.5rem;
	border-top-right-radius: 1.5rem;
}

.card-body {
	padding: var(--card-p);
	position:relative;
}
.card-body-md {
    padding: var(--section-p-xs);
}
.card-body-lg {
	padding: var(--card-p-lg);
}

.card--people .card-body {
    padding: 1.5rem var(--card-p);
}

.card a {
/*	text-decoration: none; */
	transition: var(--standard-transition);
}
.card--video, .card--video-flipped {
	overflow: hidden;
}
.card--video-flipped  {
		background: var(--grey-lt);
}

.card--img {
	height: calc(var(--section-p) * 2);
	background-repeat: no-repeat;
    background-size: 310%;
    background-position: left;
}

.card--border {
  border: 1px solid var(--grey-lt);
}

.card--grey-sm.card--xl.card--filters {
    border-radius: var(--br-pill-filters);
}



@media (min-width: 768px) {
    .card--img {
        background-size: cover;
        background-position: center;
    }
}
 
@media (min-width: 992px) {
    .card--grey-sm {
       	height: var(--section-p);
    }
	.card--video {
		background: var(--white-black-hardstop-gradient);
	}
	.card--video-flipped {
		background: var(--grey-black-hardstop-gradient-vertical);
    }
	.card--video-flipped {
		background: var(--grey-black-hardstop-gradient);
	}
	
	.card--halfgray .col-lg-6:first-child {
    	border-top-left-radius: 1.5rem;
    	border-bottom-left-radius: 1.5rem;
    	border-top-right-radius: 0;
    }
}



/* ------------------------------------------------------------------------ Infinite Logo Carousel (https://codepen.io/studiojvla/pen/qVbQqW) */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-19rem * 10));
  }
}

.logo-slider {
	margin: auto;
	margin-bottom: var(--section-p-sm);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.logo-slider:hover .slide-track {
 	animation-play-state: paused;
 }

.logo-slider::before, .logo-slider::after {
	background: linear-gradient(to right, #ECECED 0%, rgba(236, 236, 237, 0) 100%);
	content: "";
	width: 11rem;
	height: 100%;
	position: absolute;
	z-index: 2;
}

.logo-slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.logo-slider::before {
	left: 0;
	top: 0;
}

.logo-slider .slide-track {
    animation: scroll 40s linear infinite;
	display: flex;
	width: calc(19rem * 20);
}

.logo-slider .slide-track:first-child {
	margin-bottom: 1.25rem;
}

.logo-slider .slide-track--reverse {
    animation: scroll 40s linear infinite reverse;
}

.logo-slider .slide {
	height: 11rem;
	width: 19rem;
}

.card--logo {
	aspect-ratio: 1 / .61;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.card--logo a {
	width: 100%;
    display: flex;
    justify-content: center;
}

.card--logo img {
	max-width: 90%;
}

.logo-slider .slide .card--logo {
	margin: 0 1rem;
}

/*.ratio-1x61 {
	--bs-aspect-ratio: calc(.61 / 1 * 100%);
}*/

@media screen and (prefers-reduced-motion: reduce) {
    /* Disable animations and transitions for the element */
    .logo-slider .slide-track,
    .logo-slider .slide-track--reverse {
        animation: none;
        transition: none;
      }
}

/* ------------------------------------------------------------------------ Out-of-feed Prevention Timeline */

.timeline {
    position: relative;
}

.timeline:after {
    content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 1px;
	height: 100%;
	transition: var(--standard-transition);
	border-right: 1px solid transparent; 
  	border-image: var(--border-gradient-180deg) 1;
}


.timeline-item .col-lg-6 {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-bottom: 1px solid transparent; 
  	border-image: var(--border-gradient) 1;
  	position: relative;
  	z-index: 1;
}

.timeline-item .col-lg-6:after {
    content: "";
	position: absolute;
	bottom: -.5rem;
	right: -.5rem;
	width: 1rem;
	height: 1rem;
	background-color: var(--white);
	border-radius: var(--br-50);
}

.timeline-item .timeline-item__number {
    width: 4rem;
	aspect-ratio: 1 / 1;
	background: url(../images/icon-timeline-number.svg) no-repeat center;
	color: var(--black);
}

@media (min-width: 992px) {
    .timeline:after {
    	left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item .col-lg-6 {
        padding: 1.5rem var(--section-p-xs) 1.5rem 0;
    }
    .timeline-item .timeline-item__number {
        width: 5rem;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: end !important;
    }
    
    .timeline-item:nth-child(even) .col-lg-6 {
        padding: 1.5rem 0 1.5rem var(--section-p-xs);
        border-bottom: 1px solid transparent; 
      	border-image: var(--border-gradient-flip) 1;
    }
    
    .timeline-item:nth-child(even) .timeline-item__number {
        order: 2;
    }
    
    .timeline-item:nth-child(even) .timeline-item__text {
        order: 1;
    }
    
    .timeline-item:nth-child(even) .col-lg-6:after {
    	right: auto;
    	left: -.5rem;
    
    }
}

/* ------------------------------------------------------------------------ Careers Feed */
body .BambooHR-ATS-board h2, body .BambooHR-ATS-board li {
    color: var(--black);
}
 
body .BambooHR-ATS-board h2 {
    font-size: clamp(1.5rem, 1.3725rem + 0.5229vw, 2rem);
    margin-bottom: 1rem;
    border-bottom: none;
}

body .BambooHR-ATS-board a {
    font-size: 1rem;
}

@media (min-width: 1400px) {
    body .BambooHR-ATS-board a {
        font-size: 1.125rem;
    }
    
}


/* ------------------------------------------------------------------------ Accordions */

.accordion {
	border-top: 1px solid var(--grey-lt);
}

.accordion-item,
.accordion-item:last-child,
.accordion-flush>.accordion-item:last-child {
	background-color: transparent;
	border-bottom: 1px solid var(--grey-lt);
}
.section--grey .accordion {
	border-top: 1px solid var(--white);
}
.section--grey .accordion-item,
.section--grey .accordion-item:last-child,
.section--grey .accordion-flush>.accordion-item:last-child {
	border-bottom: 1px solid var(--white);
}
.accordion-flush .accordion-button {
	padding: 1.125rem .5rem;
}


.accordion-flush .accordion-body {
    padding: var(--card-p) 0.5rem;
}

.accordion-button {
	background-color: transparent;
	color: var(--black);
	z-index: 1;
	line-height: 1.3;
	font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
    border-bottom: 1px solid var(--grey-lt);
}
.section--grey .accordion-button:not(.collapsed) {
    border-bottom: 1px solid var(--white);
}


.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border-bottom: 1px solid var(--grey-lt);
}

.accordion-button::after {
	width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
	background: url(../images/icon-accordion.svg) no-repeat center;
	background-size: 2.5rem;
	transition: var(--standard-transition);
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/icon-accordion.svg) no-repeat right center;
	background-size: 2.5rem;
	transform: rotate(-180deg);
}

.accordion-button:hover:after { 
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
}

.accordion-body p:last-child {
	margin-bottom: 0;
}


/* ------------------------------------------------------------------------ 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);
}


/* ------------------------------------------------------------------------ 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: var(--br-50) !important;
    background: var(--red) url(../images/arrow-white.svg) no-repeat center;
    background-size: .875rem;
    transition: var(--standard-transition);
    border:0;
}

#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(--red);
    filter: brightness(120%);
    box-shadow: 0px 0px 0px 6px rgba(64, 119, 158, 0.25);
}

#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 */
	
legend,
.form-control, 
.form-select,
.form-control-lg.form-control--file,
.form-check-label {
	font-size: 1rem;
}

.required-input {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight: var(--fw-700);
}

.invalid-feedback {
    color: var(--error) !important;
}

.section--blue .required-input,
.card--blue .required-input,
.section--blue .invalid-feedback,
.card--blue .invalid-feedback{
	color: var(--error-lt) !important;
}

.section--blue .was-validated .form-check-input:valid~.form-check-label,
.section--blue .was-validated .form-check-input:invalid~.form-check-label,
.card--blue .was-validated .form-check-input:valid~.form-check-label,
.card--blue .was-validated .form-check-input:invalid~.form-check-label {
    color: var(--white);
}

.form-control, .form-select {
	background-color: transparent;
    border-color: transparent;
    background-image: var(--border-gradient-fill-white), var(--border-gradient);
    background-size: 100%, 100%;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
    border-radius: var(--br-pill);
	padding: .625rem 1.5rem;
	color: var(--black);
	
}

.form-select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), var(--border-gradient-fill-white), var(--border-gradient);
    background-size: 1rem, 100%, 100%;
    background-position: right 0.75rem center, left top, left top;
    background-origin: border-box;
    background-clip: padding-box, padding-box, border-box;
    background-color: var(--white);
}
    
.form-control::placeholder {
  	color: var(--black);
}

.section--grey .form-control, .section--grey .form-select {
    background-image: var(--border-gradient-fill-grey), var(--border-gradient);
}

.footer .form-control, .footer .form-select {
    background-image: var(--border-gradient-fill-blue), var(--border-gradient);
    color: var(--white);
}

.footer .form-control::placeholder {
	  color: var(--white);
}


.form-control-lg.form-control--file {
	font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    color: var(--black);
    outline: 0;
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
	border-color: transparent;
}

.footer .form-control:focus, .footer .form-select:focus, .footer .form-check-input:focus {
    color: var(--white);
}


.form-check-input {
	width: 1.5rem;
	height: 1.5rem;
	background-color: transparent;
    border-color: transparent;
    background-image: var(--border-gradient-fill-white), var(--border-gradient);
    background-size: 100%, 100%;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
	color: var(--black);
}

.form-check-input:focus { 
	background-color: transparent;
	border-color: transparent;
}

.section--grey .form-check-input {
    background-image: var(--border-gradient-fill-grey), var(--border-gradient);
}

.section--blue .form-check-input {
    background-image: var(--border-gradient-fill-blue), var(--border-gradient);
}

.form-check-input:checked[type=checkbox] {
	background-image: url(../images/input-checkmark.svg), var(--border-gradient-fill-white), var(--border-gradient);
	background-size: .875rem, 100%, 100%;
	background-clip: padding-box, padding-box, border-box;
}

.section--grey .form-check-input:checked[type=checkbox] {
	background-image: url(../images/input-checkmark.svg), var(--border-gradient-fill-grey), var(--border-gradient);
}

.section--blue .form-check-input:checked[type=checkbox] {
	background-image: url(../images/input-checkmark-reverse.svg), var(--border-gradient-fill-blue), var(--border-gradient);
}


.form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}

.checkbox-link {
    padding-left: 2.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(--black);
}

.form-control.is-invalid, .was-validated .form-control:invalid,
.form-control.is-valid, .was-validated .form-control:valid {
    background-color: var(--white);
}

.footer .form-control.is-invalid, .footer .was-validated .form-control:invalid,
.footer .form-control.is-valid, .footer .was-validated .form-control:valid {
    background-color: transparent;
}
.footer--landing {
    text-align:center;
}
@media (min-width: 990px) {
.footer--landing {
    text-align:unset;
}
    
}
@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: -.125rem;
	}

	.form-text {
	    font-size: 1rem;
	}	
}


/* ------------------------------------------------------------------------ Swiper */

.swiper-pagination-bullet {
	background: var(--white);
	width: 1rem;
	height: 1rem;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--grey-md);
}

.swiper-button-next, .swiper-button-prev {
	width: 3rem;
	height: 3rem;
	/*background: url(../images/arrow-white.svg) no-repeat left center;*/
	transition: var(--standard-transition);
	    position: absolute;
}

.swiper-button-next {
	right:0.5rem;
}

.swiper-button-prev {
	transform: rotate(180deg);
	left: 0.5rem;
}

/*.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;
}
.testimonials-swiper {
    overflow: hidden;
}
@media (max-width: 991px) {
    .swiper-button-next, .swiper-button-prev {
        top: auto;
        bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .swiper-button-next, .swiper-button-prev {
	width: 3rem;
	height: 3rem;
    }
    /*.swiper-button-next {*/
    /*	right: -5rem;*/
    /*}*/
    /*.swiper-button-prev {*/
    /*	left: -5rem;*/
    /*}*/
    
}

/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--red) url(../images/arrow-white.svg) no-repeat center;
	background-size: .875rem;
	border-radius: var(--br-50);
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: var(--standard-transition);
	box-shadow: 0px 0px 0px 0px rgba(187,52,36,0)
}

.to-top:hover {
	bottom: .75rem;
	right: .75rem;
	width: 3.5rem;
    height: 3.5rem;
    background-color: var(--red);
    filter: brightness(120%);
	box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25);
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}

/* =============================================================================================
Cookie Banner
============================================================================================= */
div#hs-eu-cookie-confirmation {
    padding: 1rem 0  !important;
    box-shadow: none  !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
        max-width: 1600px !important;
        padding: 0 2rem !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner, #hs-eu-policy-wording, #hs-eu-cookie-disclaimer, body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
   font-family:'Nunito Sans', Arial, Helvetica, sans-serif !important;
   color:#000 !important;
       font-size: 12px  !important;
    line-height: 1.3  !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
    margin:0 !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button {
    color: var(--white) !important;
background: var(--red) url(../images/btn-arrow.svg) no-repeat center right 1.5rem !important;
background-size: 1rem !important;
border-color: var(--red) !important;
    padding-right: 3.25rem !important;
    box-shadow: 0px 0px 0px 0px rgba(187,52,36,0)!important;
    margin-top: 1.5rem !important;
border-radius: var(--br-pill) !important;
cursor: pointer !important;
font-size: 0.75rem !important;
font-weight: var(--fw-700) !important;
transition: var(--standard-transition) !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button:hover  {
     color: var(--white) !important;
background-color: var(--red) !important;
border-color: var(--red) !important;
background-position: center right 1rem !important;
filter: brightness(120%) !important;
box-shadow: 0px 0px 0px 6px rgba(187,52,36,0.5) !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button {
    color: var(--black) !important;
background-color: transparent !important;
border: 1px solid transparent !important;
background-image: var(--border-gradient-fill-white), var(--border-gradient-btn) !important;
background-size: 100%, 200%; /* Larger size to move the gradient */
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  box-shadow: 0px 0px 0px 0px rgba(61,159,158,0) !important;
  margin-top: 1.5rem !important;
border-radius: var(--br-pill)!important;
cursor: pointer !important;
font-size: 0.75rem !important;
font-weight: var(--fw-700) !important;
transition: var(--standard-transition) !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button:hover {
    color: var(--black) !important;
background-color: transparent !important;
border-color: transparent !important;
animation: hovergradient 2s linear infinite alternate !important;
filter: brightness(120%) !important;
box-shadow: 0px 0px 0px 6px rgba(64,119,158,0.25) !important;
}
 div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-cookie-confirmation-button-group {
         flex-direction: row-reverse !important;
 }
 div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {
         margin-right: 0 !important;
         justify-content: flex-start !important;
 }

			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	background: url(../images/banner-bg.jpg) no-repeat left top;
	background-size: cover;
	margin-top: auto!important;
}

.footer .logo__img {
	max-width: 20rem;
	margin-bottom: 2rem;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
	opacity:.4;
}

.footer a {
	color: var(--white);
	font-weight: var(--fw-400);
}	

.footer a:hover {
	color: var(--white);
}	
		
.social__icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin: 0 .5rem 0 0;
	background-size: 2rem 2rem;
	transition: var(--standard-transition);
}

.social__icon:hover {
	transform: translateY(-.5em);
}

.footer__sub {
	border-top: 1px solid transparent; 
	background-image: var(--border-gradient); 
	background-position: top; 
	background-size: 100% 1px; 
	background-repeat: no-repeat; 
}

@media (min-width: 1400px) {
	.footer .logo__img {
		max-width: 24rem;
	}
}