* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Book.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: italic;
    font-weight: 400;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Book Italic.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: italic;
    font-weight: 400;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Italic.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: italic;
    font-weight: 600;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans SemiBold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Bold.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: italic;
    font-weight: 700;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Bold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans ExtraBold.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: italic;
    font-weight: 800;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans ExtraBold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Cerebri Sans';
    font-style: normal;
    font-weight: 900;
    src: local('Cerebri Sans'), url('/assets/fonts/Cerebri Sans Heavy.woff') format('woff');
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 20px;
}
body {
	background: #f8f8f8;
	font-family: 'Cerebri Sans', Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	min-width: 320px;
    font-size: 18px;
}
.bg-white {background-color:#ffffff;}
.bg-black {background-color:#000000;}
.bg-gray-100 {background-color:rgb(243,244,246);}
.bg-gray-200 {background-color:rgb(229,231,235);}
.border-gray-300 {border-color:rgb(209,213,219);}
.text-gray-400 {color:rgb(156,163,175);}
.text-white {color:#FFFFFF;}

.contentContainer {
	background: #fff;
	max-width: 1920px;
	margin: 0 auto;
        overflow: hidden;
}

body.showBottomBanner .contentContainer {
	padding-bottom: 151px;
}

.toggleSymbol img {
    width: 32px;
    padding: 0px;
    margin-right: 2px;
    transform-origin: center;
    transform: rotate(180deg);
    transition: all .4s;
}
.toggleSymbol.open img {
    transform: rotate(0deg);
}
.responsive-video {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
}
.responsive-video:before {
    content: "";
    position: relative;
    padding-top: 56.5%;
    display: block;
}
.responsive-video iframe,
.responsive-video video{
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
p {
	margin-bottom: 15px;
}
.flex p,.flex h1,.flex h2, .flex h3, .flex h4,.flex h5, .flex a, .flex img, .flex video, .flex iframe {max-width: 100%;}

.font-r {
	font-family: 'Cerebri Sans', Arial, sans-serif;
	font-weight: 400;
}

.font-b {
	font-family: 'Cerebri Sans', Arial, sans-serif;
	font-weight: 600;
}

.primary-bg {
	background: #0777bc;
}

.primary-color, .text-blue {
	color: #0777bc;
}

.primary-border {
	border-color: #0777bc;
}

.primary-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0777bc+0,053e68+40 */
background: #0777bc; /* Old browsers */
background: -moz-linear-gradient(left,  #0777bc 0%, #053e68 40%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #0777bc 0%,#053e68 40%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #0777bc 0%,#053e68 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0777bc', endColorstr='#053e68',GradientType=1 ); /* IE6-9 */


	background: linear-gradient(to left, #053e68, 60%, #0777bc);
}

.primary-gradient-reverse {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#053e68+0,0777bc+40 */
background: #053e68; /* Old browsers */
background: -moz-linear-gradient(left,  #053e68 0%, #0777bc 40%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #053e68 0%,#0777bc 40%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #053e68 0%,#0777bc 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#053e68', endColorstr='#0777bc',GradientType=1 ); /* IE6-9 */

	background: linear-gradient(to left, #0777bc, 60%, #053e68);
}

.secondary-bg {
	background: #9A3366;
}

.secondary-color {
	color: #9A3366;
}
.heroBannerContainer .secondary-color {
	color: #AB4D7A;
}

.secondary-border {
	border-color: #9A3366;
}

.secondary-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9a3366+0,6a1d53+60 */
background: #9a3366; /* Old browsers */
background: -moz-linear-gradient(left,  #9a3366 0%, #6a1d53 60%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #9a3366 0%,#6a1d53 60%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #9a3366 0%,#6a1d53 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9a3366', endColorstr='#6a1d53',GradientType=1 ); /* IE6-9 */

	background: linear-gradient(to left, #6a1d53, 60%, #9A3366);
}

.secondary-gradient-reverse {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6a1d53+1,9a3366+60 */
background: #6a1d53; /* Old browsers */
background: -moz-linear-gradient(left,  #6a1d53 1%, #9a3366 60%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #6a1d53 1%,#9a3366 60%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #6a1d53 1%,#9a3366 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a1d53', endColorstr='#9a3366',GradientType=1 ); /* IE6-9 */

	background: linear-gradient(to left, #9A3366, 60%, #6a1d53);
}

.tertiary-bg {
	background: #987f9a;
}

.tertiary-color {
	color: #987f9a;
}

.tertiary-border {
	border-color: #987f9a;
}

.tertiary-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#987f9a+0,614863+40 */
background: #987f9a; /* Old browsers */
background: -moz-linear-gradient(left,  #987f9a 0%, #614863 40%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #987f9a 0%,#614863 40%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #987f9a 0%,#614863 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#987f9a', endColorstr='#614863',GradientType=1 ); /* IE6-9 */

	background: linear-gradient(to left, #614863, 60%, #987f9a);
}

.tertiary-gradient-reverse {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#614863+0,987f9a+40 */
background: #614863; /* Old browsers */
background: -moz-linear-gradient(left,  #614863 0%, #987f9a 40%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #614863 0%,#987f9a 40%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #614863 0%,#987f9a 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#614863', endColorstr='#987f9a',GradientType=1 ); /* IE6-9 */

	background: linear-gradient(to left, #987f9a, 60%, #614863);
}

.hover\:white-65:hover {
	color: #fff;
	opacity: 0.65;
}

.hover\:white-50:hover {
	color: #fff;
	opacity: 0.5;
}

.hover\:text-black-half:hover {
    --tw-text-opacity: .5;
	color: rgba(0,0,0,.5);
    color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.hover\:text-blue-full:hover {
    --tw-text-opacity: 1;
	color: #026097;
    color: rgba(2, 96, 151, var(--tw-text-opacity));
}

.hover\:text-blue-half:hover {
    --tw-text-opacity: .5;
	color: #026097;
	color: rgba(2,96,151,.5);
    color: rgba(2, 96, 151, var(--tw-text-opacity));
}



.max-w-xxs2 {
	max-width: 13.5rem;
}

.showMobile { display: none; }
.hideMobile {}


/* CUSTOM CSS */
.countriesWrapper .countriesList {
	width: calc(100% + 50px);
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 250ms ease-in-out;
}
.countriesWrapper:hover .countriesList {
	height: auto;
	opacity: 1;
	visibility: visible;
}

.mainNavigationWrapper .mainNavLinks {
	transition: all 150ms ease-in-out;
}
.mainNavigationWrapper .mainNavLinks .navLink {
	padding-top: 1em;
	padding-bottom: 1em;
}
.mainNavigationWrapper .mainNavLinks .navLink a {
	margin-top: -1em;
	margin-bottom: -1em;
	padding-top: 1em;
	padding-bottom: 1em;
}

.mainNavLinks .navLink::after{
	content: '';
	width: 0%;
	height: 5px;
	background: #9A3366;
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: all 250ms ease-in-out;
	transform: translateX(-50%);
}
.mainNavLinks .navLink:hover:after {
	width: 100%;
}
.mainNavLinks .navLink.active {
	color: #9A3366;
}

.dropDownsContainer .dropdDownItem {
	height: 0rem;
    pointer-events: none;
}
.dropDownsContainer .dropdDownItem.opened {
	height: auto;
    pointer-events: all;
}
.dropDownsContainer .dropdDownItem.opened li {
	text-align: center;
}
.dropDownsContainer .dropdDownItem.opened li.backBtn {
	text-align: left;
}
.dropDownsContainer .dropdDownItem.opened li:not(.backBtn) {
	display: flex;
	align-items: center;
}
.dropDownsContainer .dropdDownItem.opened li.activated { position: relative;}
.dropDownsContainer .dropdDownItem.opened li.activated:after {
	content: '';
	background: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50px;
	display: block;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.heroBannerContainer {
	background-position: top left;
	background-size: auto 520px;
	background-repeat: no-repeat;
}

.featuresContainer .threeFeatures img {
	width: 130px;
	height: auto;
}


.featuresParaContainer:before {
	content: '';
	background-image: url('/images/uploads/features-bg.png');
	background-position: bottom right;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: .45
}

.featuresContainer {
	background-image: url('/images/uploads/tech-bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.techHeroScroller{
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.techHeroContainer {
	overflow: hidden;
}

.techWrapper::-webkit-scrollbar {
  display: none;
}

.techHeroGradientLeft,
.techHeroGradientRight {
	width: 50px;
	height: 100%;
	top:0;
	position: absolute;
}

.techHeroGradientLeft{
	background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
	left: 0;
}
.techHeroGradientRight{
	background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
	right: 0;
}

.techHeroItems {
	transition: all 150ms ease-in-out;
}

.scrollArrow {
	margin-top: -5px;
	animation-name: arrowSlide;
	animation-duration: 2.2s;
	animation-iteration-count: infinite;
}

@keyframes arrowSlide {
	0% {
		margin-left:3px;
	}
	75% {
		margin-left: 23px;
	}
	to {
		margin-left: 3px;
	}
}

.mainFooterContainer {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9f9f9+0,ffffff+80 */
background: #f9f9f9; /* Old browsers */
background: -moz-linear-gradient(top,  #f9f9f9 0%, #ffffff 80%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #f9f9f9 0%,#ffffff 80%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #f9f9f9 0%,#ffffff 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */


	background: linear-gradient(#f9f9f9, 80%, #fff);
}

#sortableTable p {
	margin: 0 !important;
}
#sortableTable .tableItems:nth-of-type(odd) {
	background: #e1e1e1;
}

#sortableTable .tableItems:nth-of-type(even) {
	background: #f3f3f3;
}

#sortableTable .tableItems:last-child {
	border-bottom-right-radius: 0.75rem;
	border-bottom-left-radius: 0.75rem;
}

.tabsList li.activated {
	background: white;
	color: black;
}

.tabsSingleWrapper .tabSingle {
	display: none;
}

.tabsSingleWrapper .tabSingle.opened {
	display: flex;
}

.carouselDots span {
	width: 25px;
	height: 25px;
	background: #9A3366;
	display: block;
	border-radius: 50px;
	margin: 0 5px;
	cursor: pointer;
	opacity: 0.5;
	transition: all 150ms ease-in-out;
}

.carouselDots span:hover {
	opacity: 1;
}

.dropdDownItem .mainNavDot {
	position: absolute;
	bottom: -2.5em;
	left: 50%;
	transform: translateX(-50%);
}
.accordionElement .heading > span.items-center::before {content: '+';}
.accordionElement.activated .heading > span.items-center::before {content: '-';}

.bio-text {
	overflow: hidden;
    max-height: 2000px;
    transition: .5s max-height ease-in;
}
.bio-text span {color: inherit!important; font-family: inherit !important; background: transparent !important;}
.bio-text.reset {max-height:none!important;transition: 0s max-height linear;}
.collapsed {
	max-height: 3em;
}
.expandcollapse {
	position: relative;
	padding-left: 15px;
    color: #9A3366;
}
.expandcollapse::after {
	display: inline;
	content: 'Close';
}
.expandcollapse i {
	position: absolute;
    display: block;
    top: 50%;
    margin-top: -8px;
	border: 5px solid transparent;
    border-bottom: 5px solid #9A3366;
}
.collapsed + .expandcollapse::after {
	content: 'Expand';
}
.collapsed + .expandcollapse i {
    margin-top: -3px;
    border-top: 5px solid #9A3366;
    border-bottom: 5px solid transparent;
}
input.error,textarea.error {border-color: #9A3366;}
.errorMsg {color:#9a3366;}
.d-none {display: none;}
.d-inline {display: inline;}
@media (min-width: 768px) {
	.d-md-none {display: none;}
	.d-md-inline {display: inline;}
}

.dropdDownItem.ContactDd {
 display:none !important;
}

#sortableTable .tableHeadings span:last-child {
  display: inline-block;
  transition: all 150ms ease-in-out;
}


#sortableTable .tableHeadings span:last-child.flip{
	transform: rotate(180deg);
}
h3 > p {margin:0;color:inherit;font-size:inherit;line-height:inherit;font-family:inherit;}

.submit-consent {
	padding: 5px 10px; 
	border-radius: 5px; 
	cursor: pointer;
	margin-bottom: 7px;
}

.user_consent_form {
	position: fixed;    
	bottom: 0;    
	background-color: rgb(229,231,235); 
	width: 100%;    
	padding: 10px;     
	z-index: 2000;
	border-top: 6px solid #9A3366;
    padding-top: 14px;
}
#cookie_detailed_consent {
	z-index:2001;
}
.toggle-checkbox:checked {
  right: 0;
  border-color: #68D391;
}
.toggle-checkbox:checked + .toggle-label {
  background-color: #68D391;
}

.sortable-grid .sortable i {
	float:right;
}
.sortable-grid .sortable i::before {
	content: '\f0d7';
	color: rgba(255,255,255,.5);
}
.sortable-grid .sortable.sorted i::before {
	content: '\f0d8';
	color:white;
}
.sortable-grid .sortable.sorted.desc i::before {
	content: '\f0d7';
}
.sortable-grid .flex-grow div {
	border-right-width: 1px;
	border-bottom-width: 1px;
}
.sortable-grid .flex-grow div:last-child {
	border-right: none;
}
.sortable-grid .flex-grow:last-child div {
	border-bottom: none;
}

@media(min-width:1024px) {
  .nav-search input.active {
    width: 200px;
	background-color: #fff;
  }
  .lg\:w-96 {
    width: 24rem;
  }
  .lg\:absolute {
    position: absolute;
  }
  .lg\:bottom-0 {
    bottom: 0;
  }
  .lg\:right-0 {
    right: 0;
  }
}
.hide {
display: none;
}
.product-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.product {
    width: 50%;
    flex: 1 1 50%;
    border: 1px solid #026097;
    border-radius: 10px;
    padding: 20px;
    background: #f9f9fb;
    display: flex;
}
.product-img {
    flex: 0 0 170px;
}


@media(max-width:980px) {
  .product-img {
    flex: 0 0 100px;
  }
}
@media(max-width:767px) {
  .product-wrapper {
	  display: flex;
	  flex-direction: row;
	  gap: 20px;
	  flex-wrap: wrap;
  }
  .product {
	  width: 100%;
	  flex: 0 0 100%;
  }
}
.product-content {
    padding: 0 30px;
}
.product-title {
    font-size: 30px;
    margin: 10px 0 40px;
    font-weight: bold;
    color: #9a3366;
}
.product-content a {
    display: inline-block;
    color: #15679b;
    text-decoration: underline
}
.product-content a:hover {
    color: #0777bc;
}

{!-- CYBERSECURITY STYLES --}
.a-mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.a-mb-1 {
  margin-bottom: 0.25rem;
}

.a-mb-3 {
  margin-bottom: 0.75rem;
}

.a-mb-4 {
  margin-bottom: 1rem;
}

.a-mb-6 {
  margin-bottom: 1.5rem;
}

.a-mb-0 {
  margin-bottom: 0px;
}

.a-mb-12 {
  margin-bottom: 3rem;
}

.a-mt-3 {
  margin-top: 0.75rem;
}

.a-mt-4 {
  margin-top: 1rem;
}

.a-mt-8 {
  margin-top: 2rem;
}

.a-mb-2 {
  margin-bottom: 0.5rem;
}

.a-block {
  display: block;
}

.a-flex {
  display: flex;
}

.a-hidden {
  display: none;
}

.a-min-h-20 {
  min-height: 5rem;
}

.a-w-full {
  width: 100%;
}

.a-w-2\/12 {
  width: 16.666667%;
}

.a-w-5\/12 {
  width: 41.666667%;
}

.a-cursor-pointer {
  cursor: pointer;
}

.a-list-disc {
  list-style-type: disc;
}

.a-flex-col {
  flex-direction: column;
}

.a-items-center {
  align-items: center;
}

.a-overflow-hidden {
  overflow: hidden;
}

.a-rounded-lg {
  border-radius: 0.5rem;
}

.a-rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.a-rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.a-border {
  border-width: 1px;
}

.a-border-b {
  border-bottom-width: 1px;
}

.a-border-r {
  border-right-width: 1px;
}

.a-border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.a-border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.a-border-b-white {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.a-bg-primary-color\/30 {
  background-color: rgb(7 119 188 / 0.3);
}

.a-bg-primary-color\/15 {
  background-color: rgb(7 119 188 / 0.15);
}

.a-bg-secondary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(154 51 102 / var(--tw-bg-opacity));
}

.a-bg-primary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(7 119 188 / var(--tw-bg-opacity));
}

.a-p-12 {
  padding: 3rem;
}

.a-p-5 {
  padding: 1.25rem;
}

.a-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.a-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.a-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.a-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.a-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.a-pl-2 {
  padding-left: 0.5rem;
}

.a-pl-6 {
  padding-left: 1.5rem;
}

.a-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.a-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.a-font-bold {
  font-weight: 700;
}

.a-leading-6 {
  line-height: 1.5rem;
}

.a-text-primary-color {
  --tw-text-opacity: 1;
  color: rgb(7 119 188 / var(--tw-text-opacity));
}

.a-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.a-text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.a-underline {
  text-decoration-line: underline;
}

.a-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:a-bg-primary-color:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(7 119 188 / var(--tw-bg-opacity));
}

@media (min-width: 768px) {
  .md\:a-mb-0 {
    margin-bottom: 0px;
  }

  .md\:a-w-1\/3 {
    width: 33.333333%;
  }

  .md\:a-w-2\/3 {
    width: 66.666667%;
  }

  .md\:a-flex-row {
    flex-direction: row;
  }

  .md\:a-rounded-b-none {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .md\:a-rounded-t-none {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .md\:a-pr-2 {
    padding-right: 0.5rem;
  }

  .md\:a-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .xl\:w-1\/2 {
    width: 50%;
  }
  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .xl\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .xl\:w-1\/4 {
    width: 25%;
  }
  .lg\:a-mb-0 {
    margin-bottom: 0px;
  }

  .lg\:a-flex {
    display: flex;
  }

  .lg\:a-hidden {
    display: none;
  }

  .lg\:a-min-h-20 {
    min-height: 5rem;
  }

  .lg\:a-w-2\/12 {
    width: 16.666667%;
  }

  .lg\:a-w-5\/12 {
    width: 41.666667%;
  }

  .lg\:a-w-10\/12 {
    width: 83.333333%;
  }

  .lg\:a-flex-row {
    flex-direction: row;
  }

  .lg\:a-rounded-none {
    border-radius: 0px;
  }

  .lg\:a-rounded-b-lg {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:a-border-r {
    border-right-width: 1px;
  }

  .lg\:a-border-b-0 {
    border-bottom-width: 0px;
  }
}

@media (min-width: 1920px) {
  .xl\:a-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .xxl\:px-10 {
  	padding-left: 5rem;
    padding-right: 5rem;
  }
  .xxl\:px-2 {
  	padding-left: .5rem;
    padding-right: .5rem;
  }
  .xxl\:w-1\/6 {
  	width: 16.666667%;
  }
}

.timeline-wrap .timeline-text p {
    margin-bottom: 30px;
    font-weight: 600;
}

.timeline-wrap .timeline-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    text-align: center;
    font-size: 20px;
    width: 100%;
    z-index: 10;
}
.timeline-wrap .timeline-image {
    position: relative;
    z-index: 1;
}
.timeline-wrap .timeline-image-mobile {
    position: relative;
    z-index: 1;
    display: none;
}
@media(max-width:980px) {
	.timeline-wrap .timeline-text {
  	  max-width: 98%;
  }
  .timeline-wrap {
  		margin-top: 50px;
  }
}
@media(max-width:767px) {
  .timeline-wrap .timeline-image {
      position: relative;
      z-index: 1;
      display: none;
  }
  .timeline-wrap .timeline-image-mobile {
      position: relative;
      z-index: 1;
      display: block;
  }
  .timeline-wrap .timeline-text {
  	  width: 90%;
      position: relative;
      left: 0%;
      top: 0%;
      transform: translate(0%, 0%);
      margin: auto;
  }
  .timeline-wrap {
  		margin-top: 0px;
  }
}
.timeline-wrap {
    position: relative;
}

.simple-hover-box:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgb(15, 43, 61,.85) 0%, transparent);
    z-index: 5;
    transition: all .4s;
}



.simple-hover-box span {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    left: 20px;
    max-width: 60%;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}
.simple-hover-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
    background: rgb(15, 43, 61,.85);
}
.simple-hover-box img {
    position: relative;
    max-width: 350px;
    width: 100%;
    z-index: 1;
    transition: all .4s;
}

.pink-gradient:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 130%;
    height: 100%;
    background: linear-gradient(90deg, #e9c9d4, #e3e3e3);
    transform: translateX(-50%);
    z-index: 1;
}

.pink-gradient > * {
    position: relative;
    z-index: 10;
}
.pink-gradient {
    position: relative;
}
div#stat-counter {
    font-size: 72px;
    text-align: center;
    padding: 0 10px 30px;
    color: #943266;
    font-family: Arial;
    height: 100px;
    line-height: 100px;
}
.counter-btns {
    display: flex;
    flex-direction: row;
}
.counter-btns button:hover, .counter-btns button.active {
    background: #fff;
}
.counter-btns button {
    padding: 30px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #943266;
    border: 1px solid #943266;
    border-radius: 20px;
    display: block;
    margin: 15px;
    cursor: pointer;
    transition: all .4s;
}
.counter-btns button .stat-cta {
	text-align: right;
    display: block;
    padding-top: 20px;
    transition: all .4s;
}
@media(max-width: 1280px) {
  .counter-btns button {
      padding: 12px;
      text-align: left;
      font-size: 16px;
  }
}
@media(max-width: 980px) {
	.counter-btns {
    	flex-wrap: wrap;
    }
    .counter-btns button {
    	width: 48%;
        flex: 0 0 48%;
        margin: 1%;
    }
    .counter-btns button {
      padding: 15px;
      text-align: left;
      font-size: 16px;
    }
}
@media(max-width: 767px) {
    div#stat-counter {
      font-size: 42px;
      text-align: center;
      padding: 0 10px 30px;
      color: #943266;
      font-family: Arial;
      line-height: 60px;
      height: 60px;
  }
}
.blue-gradient > * {
    position: relative;
    z-index: 10;
}

.blue-gradient:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 135%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, black, #5a94b6);
    z-index: 1;
}
.blue-gradient {
    position: relative;
}

.fullwidth-band {
    margin: 0 -1rem;
}
@media (min-width: 1024px) {
  .fullwidth-band {
    margin: 0 -5rem;
  }
}
@media (min-width: 1280px) {
  .fullwidth-band {
    margin: 0 -8rem;
  }
}
img.split-img {
    width: 100%;
}
@media(max-width:980px) {
	img.split-img {
 	   width: 100%;
    	height: 350px;
    	object-fit: cover;
	}
}
@media(max-width:680px) {
	img.split-img {
 	   width: 100%;
    	height: 250px;
    	object-fit: cover;
	}
}
.headline {
    font-size: 44px;
    font-weight: 400;
    font-family: Montserrat;
    color: #406a98;
    line-height: 1.2;
    letter-spacing: -1.35px;
    margin-bottom: 15px;
}
@media(max-width: 1440px) {
	.headline {
    	font-size: 36px;
        letter-spacing: -1px;
    }
}
@media(max-width: 767px) {
	.headline {
    	font-size: 28px;
        letter-spacing: -0.6px;
        margin: 0;
        padding: 0 0 15px !important;
    }
}
.pill-btn {
    padding: 8px 25px;
    border-radius: 30px;
    background: linear-gradient(359deg, #156798, #6bc7d6);
    color: #fff;
    transition: all .4s;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}
.pill-btn.hidden {
    display: none;
}
.pill-btn:hover {
	background: linear-gradient(359deg, #13242d, #6bc7d6);
}

.pill-btn.pill-btn-pink {
    background: linear-gradient(359deg, #881f53, #f45ea8);
    transition: all 250ms ease-in-out;
}
.pill-btn.pill-btn-pink:hover {
    background: linear-gradient(359deg, #f45ea8, #881f53);
}
@media(max-width:767px) {
	.pill-btn {
    	min-width: 150px;
        display: inline-block;
        text-align: center;
    }
}
.white-hover-box span.title {
	position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    font-size: 24px;
    line-height: 1.2;
    font-family: Montserrat;
    z-index: 6;
    color: #fff;
    z-index: 5;
}
.white-hover-box span.box {
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 10;
    padding: 30px;
    background: #fff;
    transition: all .4s;
    transform: translateY(100%);
}

.white-hover-box img {
    width: 100%;
    position: relative;
    display: block;
    z-index: 1;
    opacity: 1;
}
.white-hover-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}
@media(max-width:767px) {
    .m-no-side-padding {
    	margin: 0 -1rem
    }
}
.white-hover-box:hover span.box {
	transform: translateY(0);
}
.white-hover-box h3 {
    font-size: 24px;
    font-family: Montserrat;
    color: #156595;
    font-weight: 500;
}
.white-hover-box ul {
    list-style: disc;
    margin: 15px 0 0 20px;
}
.white-hover-box .img-wrap {
	position: relative;
    z-index: 1;
}

.white-hover-box img.whb-desktop {
    display: block;
}
.white-hover-box img.whb-mobile {
    display: none;
}
@media(max-width: 767px) {
	.white-hover-box img {
	    width: 100%;
	    position: relative;
	    display: block;
	    z-index: 1;
	    height: 200px;
	    object-fit: cover;
	}
    .white-hover-box span.box {
    	position: relative;
    	transform: translateY(0%);
        padding: 2.5rem;
	}
    .white-hover-box span.title {
    	padding: 20px 2.5rem;
    }
    .white-hover-box span.box h3{
    	display: none;
	}
    .white-hover-box img.whb-desktop {
       display: none;
    }
    .white-hover-box img.whb-mobile {
       display: block;
    }
}
.large-mobile-header {
    padding: 30px 1rem;
    text-align: center;
    font-size: 34px;
    background: #fff;
    color: #156798;
    margin: 0 -1rem;
    width: 100%;
    position: relative;
    box-sizing: content-box;
}
.hp-hero {
    position: relative;
    height: 70vh;
        text-align: right;

}
.hero-video {
    position: relative;
    width: auto;
    height: 100%;
    z-index: 1;
    display: inline-block;
    right: -8rem;
    overflow: hidden;
}
.hero-video video {
    height: 100%;
    position: relative;
    right: -3px;
    transform: scale(1.015);
}
.hero-box {
    position: absolute;
    top: 40px;
    left: -8rem;
    padding: 4rem 4rem 4rem 8rem;
    text-align: left;
    background: linear-gradient(90deg, #222, rgba(3, 103, 152, .70));
    z-index: 10;
    width: 100%;
    max-width: 950px;
}
.hero-sub {
    color: #fff;
    font-size: 24px;
}
.hero-title {
    color: #fff;
    font-size: 54px;
    font-family: 'Montserrat';
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 32px;
}
@media(max-width: 1440px) {
	.hero-box {
      padding: 4rem 4rem 4rem 8rem;
      max-width: 780px;
    }
    .hero-sub {
      color: #fff;
      font-size: 24px;
    }
    .hero-title {
      font-size: 46px;
    }
}
@media(max-width: 1280px) {
	
    .hero-box {
      padding: 4rem 4rem 4rem 8rem;
      max-width: 750px;
    }
    .hero-sub {
      color: #fff;
      font-size: 24px;
    }
    .hero-title {
      font-size: 44px;
    }
}
@media(max-width: 980px) {

  .hp-hero {
    position: relative;
    height: auto;
    text-align: right;
	 margin: 0 -1rem;
  }
  .hero-box {
      position: relative;
      top: 0;
      left: 0rem;
      padding: 2rem;
      text-align: left;
      background: linear-gradient(90deg, #222, rgba(3, 103, 152, .70));
      z-index: 10;
      width: 100%;
      max-width: 1080px;
  }
  .hero-video {
    position: relative;
    width: 100%;
    z-index: 1;
    display: block;
    right: 0rem;
    overflow: hidden;
    height: 400px;
  }
  .hero-video video {
    height: auto;
    position: absolute;
    right: 0;
    transform: scale(1.01);
    top: 0;
    width: 110%;
    max-width: initial;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-title {
    text-align: center;
    font-size: 48px;
  }
  .hero-cta {
    text-align: center;
  }
}
@media(max-width: 767px) {
  
  .hero-video {
    position: relative;
    width: 100%;
    z-index: 1;
    display: block;
    right: 0rem;
    overflow: hidden;
    height: 230px;
  }
  .hero-title {
    text-align: center;
    font-size: 42px;
  }
}
.dash-list li:before {
    content: "–";
    position: absolute;
    left: -20px;
    top: 0;
}

.dash-list li {
    position: relative;
    margin-left: 24px;
}
.testSlickBtns:hover {
    opacity: .6;
}
.testSlickBtns.slickPrevBtn {
    left: -40px;
}
.testSlickBtns.slickNextBtn {
    right: -40px;
}
.testSlickBtns {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    z-index: 100;
    transition: all .4s;
    cursor: pointer;
}
@media(max-width:980px) {
  .testimonial-slider img {
    max-width: 200px;
  }
  .testSlickBtns.slickNextBtn {
    right: 10px;
  }
  .testSlickBtns.slickPrevBtn {
    left: 10px;
  }
  .testSlickBtns {
      width: 20px;
  }
}
@media(max-width:767px) {
  .testimonial-slider img {
    max-width: 200px;
  }
  .testSlickBtns.slickNextBtn {
    right: 10px;
  }
  .testSlickBtns.slickPrevBtn {
    left: 10px;
  }
  .testSlickBtns {
      width: 20px;
  }
}
.responsive-vimeo:before {
    content: "";
    padding-top: 56.25%;
    display: block;
}
.responsive-vimeo iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.responsive-vimeo {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 5;
}
.imagio-video {
    max-width: 680px;
    margin: -380px 0 0;
    display: block;
    border: 6px solid #fff;
    background: #fff;
}
@media(max-width: 1440px) {
	.imagio-video {
	    max-width: 540px;
        margin: -275px auto 0;
    }
}
@media(max-width: 1180px) {
	.imagio-video {
	    max-width: 540px;
        margin: -180px auto 0;
    }
}
@media (max-width: 980px) {
.imagio-video {
    max-width: 680px;
    margin: -200px auto 0;
}
}
@media (max-width: 680px) {
.imagio-video {
    max-width: 680px;
    margin: -120px auto 0;
}
}
.laser-bg > div {
    position: relative;
    z-index: 10;
}
.laser-bg {
    position: relative;
}
@media(max-width:1279px) {
.laser-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #222;
    opacity: .7;
}
}
.case-study-btn:hover img {
    border-color: #f278a7;
}
.case-study-btn img {
    border: 4px solid transparent;
    transition: all .4s;
    box-sizing: border-box;
}
.cases-modal-inner {
    width: 90%;
    max-width: 1650px;
    background: linear-gradient(225deg, black, #156798);
    border: 2px solid #4c9eb5;
        padding: 50px;
    box-sizing: border-box;
    max-height: 90vh;
    overflow: auto;
}
@media(max-width: 980px) {
	.cases-modal-inner {
    	padding: 50px 1rem 1rem;
        width: 65%;
    }
}
@media(max-width: 680px) {
	.cases-modal-inner {
    	padding: 50px 1rem 1rem;
        width: 90%;
    }
}
.cases-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}
.cases-modal.active {
	display: flex;
}

.videoPopup {
	background: rgba(0, 20, 50, 0.92);
    z-index:10001;
}

.videoPopup.opened {
	height: 100vh;
	display: flex;
	transition: all 350ms ease-in-out;
}

.videoPopup .videoContainer {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
.videoPopup.vertical .videoContainer {
	height: 100%;
    width: auto;
	padding-bottom:0%;
}
.videoPopup .videoContainer iframe{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.videoPopup .closeBtn  {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.85);
}
#video-oxygenated > div,
#video-deoxygenated > div {
    background: #000;
}


{!-- NAV CHANGES 06/2024 --}
header.mainHeaderContainer { position:relative; z-index: 999;}

li.navLink > ul.subNavs {
    background: rgba(0,0,0,0.92);
	width: auto;
    top: 100%;
    left: 0;
	opacity: 0;
    pointer-events: none;
	transition: all 250ms ease-in-out;
}

li.navLink.newsroomMain > ul.subNavs {
    left: unset;
    right: 0;
}

li.navLink:hover > ul.subNavs {
	opacity: 1;
    pointer-events: all;
}

li.navLink > ul.subNavs li,
li.navLink > ul.subNavs li a {
	white-space: nowrap;
}


@media (max-width:1023px){
	li.navLink {
    	flex-direction: column;
        align-items: flex-start;
    }
	li.navLink > ul.subNavs {
    	background: #fff;
    	position: relative;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
    }
    li.navLink > ul.subNavs li a {
    	color: #9A3366;
    }
    li.navLink:hover > ul.subNavs li {
    	padding: 6px 10px !important;
    }
    li.navLink:hover > ul.subNavs {
    	max-height: 600px;
    }

}

ol[type='a'] {padding-left: 2em;list-style-type:lower-alpha; margin-bottom: 1em;}
ul[type='dot'] {padding-left: 2em;list-style-type:disc; margin-bottom: 1em;}

.singleExpandedContent {
    z-index: 99999!important;
}
.bioInformation p a {
    display: inline;
    text-decoration: underline;
    color: #0777bc;
}
.fullWidthContainer p a {
    display: inline;
    text-decoration: underline;
    color: #0777bc;
}