:root {
	--mobile-nav-height: 72px;
	--desktop-nav-height: 115px;
}

/* Colors */
:root {
	--very-light-blue: #f6fdff;
	--light-blue: #ddefff;
	--blue: #17abdd;
	--dark-blue: #005eb8;
	--very-dark-blue: #0057a8;

	--black: #202020;
	--light-black: #000000;
	--white: #ffffff;
	--dark-white: #fcfcfc;

	--green: #259f46;
	--red: #f64a4a;
	--very-light-gray: #f2f2f2;
	--light-gray: #e8e8e8;
	--gray: #dedede;
	--dark-gray: #d5d5d5;
	--very-dark-gray: #666666;
	--purple: #5856d6;
}

html,
body {
	overflow-x: hidden !important;
}
body {
	font-family: 'Roboto', sans-serif;
	padding-right: 0 !important;
}

body p {
	letter-spacing: 0.25px;
	line-height: 1.5;
	color: var(--black);
	font-weight: 400;
}

.right-arrow {
	position: relative;
	display:inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	gap: 5px;
	&:after {
		display: block;
		content: '\e5c8';
		font-family: 'Material Icons';
		font-size: 16px;
		transition: transform 0.3s ease;
	}
}

.text-very-light-blue {
	color: var(--very-light-blue);
}

.text-light-blue {
	color: var(--light-blue);
}

.text-blue {
	color: var(--blue);
}

.text-dark-blue {
	color: var(--dark-blue);
}

.text-very-dark-blue {
	color: var(--very-dark-blue);
}

.text-black {
	color: var(--black);
}

.text-light-black {
	color: var(--light-black);
}

.text-white {
	color: var(--white);
}

.text-dark-white {
	color: var(--dark-white);
}

.text-green {
	color: var(--green);
}

.text-red {
	color: var(--red);
}

.text-very-light-gray {
	color: var(--very-light-gray);
}

.text-light-gray {
	color: var(--light-gray);
}

.text-gray {
	color: var(--gray);
}

.text-dark-gray {
	color: var(--dark-gray);
}

.text-very-dark-gray {
	color: var(--very-dark-gray);
}

.text-purple {
	color: var(--purple);
}

/* Background colors */
.bg-white {
	background-color: var(--white);
}

.bg-light-blue {
	background-color: var(--light-blue);
}

.bg-very-light-blue {
	background-color: var(--very-light-blue);
}

.bg-dark-blue {
	background-color: var(--dark-blue);
	opacity: 1;
}

.bg-very-light-gray {
	background-color: var(--very-light-gray);
}

.bg-dark-white {
	background-color: var(--dark-white);
}

.bg-very-dark-blue {
	background-color: var(--very-dark-blue);
}
.bg-very-dark-blue-important {
	background-color: var(--very-dark-blue) !important;	
}


/* Font sizes */
.p1 {
	font-size: 16px;
}

.p2 {
	font-size: 14px;
}

.p3 {
	font-size: 12px;
}

.p4 {
	font-size: 10px;
}

.fs-24 {
	font-size: 24px;
}

.fs-36 {
	font-size: 36px;
}

.fs-48 {
	font-size: 48px;
}

/* Imgs - full width background container */
.fw-second-bg-container {
	min-height: 633px;
	max-height: 100%;
}

/* Border radius */
.border-radius-secondary {
	border-radius: 24px;
}

.border-radius-secondary-top {
	border-radius: 24px 24px 0 0;
}

.border-radius-secondary-bottom {
	border-radius: 0 0 24px 24px !important;
}

.border-radius-tertiary {
	border-radius: 50px;
}

.border-dark-blue {
	border: 4px solid var(--dark-blue);
	box-shadow: 0 5px 10px 0 rgba(102, 102, 102, 0.5);
}

.border-blue-2 {
	border: 2px solid var(--dark-blue) !important;
}

.border-gray-4 {
	border: 4px solid var(--very-dark-gray);
}

.border-gray {
	border-color: var(--very-dark-gray);
}

.no-repeat {
	background-repeat: no-repeat;
}

.background-cover {
	background-size: cover;
}

.background-center {
	background-position: center;
}

.h-394 {
	min-height: 394px;
}

.right-0 {
	right: 0;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 1px;
	border-radius: 5px;
	background-color: var(--dark-blue);
	outline: none;
	-webkit-transition: 0.2s;
	transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--dark-blue);
	cursor: pointer;
}

.second-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 1px;
	border-radius: 5px;
	background-color: var(--white);
	outline: none;
	-webkit-transition: 0.2s;
	transition: opacity 0.2s;
}

.second-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--white);
	cursor: pointer;
}

.form-control:focus {
	box-shadow: none;
	background-color: var(--very-light-gray);
}

input {
	border: 0;
	outline: 0;
}

input:focus {
	outline: none !important;
}

.chevron-ms::after {
	margin-left: 62px;
}

.h-200px {
	min-height: 200px;
}

.h-400 {
	height: 400px;
}

.h-290px {
	height: 290px;
}

.h-10 {
	height: 10px;
}

.h-36 {
	height: 36px;
}

.h-48 {
	height: 48px;
}

.h-72 {
	height: 72px;
}

.contact-us-input:focus {
	border: 4px solid var(--very-dark-blue) !important;
	background-color: white;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.header-linear-color {
	background: linear-gradient(90.39deg, #0057A8 32.99%, rgba(0, 87, 168, 0) 99.8%);
}

.background-img-blue {
	background-color: rgba(0,87,168,0.93);
}

.z-index--1 {
	z-index: -1;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}

.z-index-5 {
	z-index: 5;
}

.z-index-6 {
	z-index: 6;
}

.no-hover-color-white:hover {
	color: white !important;
}

.resize-none {
	resize: none;
}

.w-10 {
	width: 10px;
}

.w-243 {
	width: 243px !important;
}

.w-375 {
	width: 375px;
}

.ps-12 {
	padding-left: 12px !important;
}

.ps-90 {
	padding-left: 90px;
}

.l-h-primary {
	line-height: 1.4;
}

.l-s-primary {
	letter-spacing: 0.25px;
}

.fw-700 {
	font-weight: 700;
}

.fw-500 {
	font-weight: 500;
}

.fw-400 {
	font-weight: 400;
}

.fw-300 {
	font-weight: 300;
}

.mb-72 {
	margin-bottom: 72px;
}

.word-break {
    word-break: break-word;
    white-space: normal;
}


.splide__pagination__page {
	background: #CCE6FF;
	height: 10px;
	width: 10px
}

.splide__pagination__page.is-active {
	background: var(--very-dark-blue) !important;
	opacity: 1;
}

.splide__slide {
	width: auto;
}

.slider-btn-holder {
	height: 30px;
}

.slider-btn {
	height: 24px;
	width: 24px;
	border: 1.5px solid #CCE6FF;
}

.slider-btn:hover {
	color: white;
	background: var(--very-dark-blue) !important;
	border: 0;
}

.slider-btn:hover > .chevron-left{
	color: white;
	margin-left: -4px;
	margin-top: 2px;
}

.slider-btn:hover > .chevron-right{
	color: white;
	margin-left: -4px;
	margin-top: 2px;
}

.chevron-left {
	width: auto;
    font-size: 20px;
    margin-left: -6px;
}

.chevron-right {
	width: auto;
    font-size: 20px;
    margin-left: -5px;
}

.cursor-pointer {
	cursor: pointer;
}

.wpcf7-form-control {
	width: 100%;
}

.btn-secondary {
	color: var(--very-dark-blue) !important;
}

.btn-secondary:hover {
	color: var(--very-dark-blue);
}

.dropdown-menu li:hover {
	background-color: var(--light-gray);
}

.opacity-50 {
	opacity: 0.5;
}

.splide__arrows {
	display: none !important;
	opacity: 0;
	visibility: hidden;
}

.top--30 {
	top: -30px;
}
.right-14 {
	right: 14px;
}

.card-holder:hover {
    background: var(--very-dark-blue) !important;
}
.card-holder:hover .card-title-on-hover {
	color: white !important;
}
.card-holder:hover .card-content-on-hover{
	color: white !important;
}

.h-245 {
	height: 245px;
}

.h-217 {
	height: 217px;
}

.h-161 {
	height: 161px;
}

.box-shadow-none {
	box-shadow: none !important;
}

.shadow-primary {
	box-shadow: 0 9px 24px 0 rgb(0 0 0 / 38%);
}

.light-shadow {
    box-shadow: 0 5px 14px 0 rgb(0 0 0 / 38%);
}

.dropdown-menu li:hover {
	background-color: var(--very-dark-blue);
}

.dropdown-menu li a:hover {
	color: white !important;
}

.w-70 {
	width: 70% !important;
}

.bullet-content * {
	font-size: 14px;
}

.bullet-content p {
	font-weight: 400;
}

.section-10-content-color * {
	color: var(--black);
	font-size: 14px;
}

.section-10-content-color ul, .section-10-content-color p {
	font-weight: 300;
	letter-spacing: 0.25px;
}

.accordion, .accordion-item, .accordion-header, .accordion-button, .accordion-collapse {
	box-shadow: none !important;
}

.accordion-item {
	border: 0 !important;
}

.accordion-button {
	border: 0 !important;
	background-color: transparent !important;
}

.service-last-content *{
	font-size: 14px;
	font-weight: 400;
}

.py-36 {
	padding: 36px 0 36px 0;
}


@media (max-width: 768px) {
	.container {
		padding: 0 24px 0 24px;
	}
	.flex-wrap-nowrap {
		flex-wrap: nowrap !important;
	}
	.width-550px {
		min-width: 550px;
	}
	.width-717px {
		min-width: 717px;
	}
	.remove-container-md {
		padding: 0 !important;
	}
	.footer-center-left-text {
		text-align: center;
	}
	.w-mobile-100 {
		width: 100%;
	}
	.border-radius-secondary-left-mobile {
		border-radius: 24px 0 0 24px;
	}
	.border-radius-secondary-right-mobile:last-child {
		border-radius: 0 24px 24px 0 !important;
	}
	.h-245-mobile {
		height: 245px;
	}
	.font-size-14-mobile * {
		font-size: 14px;
		margin-bottom: 0;
	}
	.px-mobile-4 {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (max-width: 576px) {
	.mx-mobile-auto {
		margin-left: auto;
		margin-right: auto;
	}
	.text-mobile-center {
		text-align: center;
	}
	.align-items-mobile-center {
		align-items: center;
	}
}

@media (min-width: 576px) {
	.w-sm-25 {
		width: 25% !important;
	}
	.w-sm-50 {
		width: 50% !important;
	}
	.w-sm-75 {
		width: 75% !important;
	}
	.w-sm-100 {
		width: 100% !important;
	}
	.w-242 {
		width: 242px !important;
	}
}

@media (min-width: 768px) {
	.w-md-25 {
		width: 25% !important;
	}
	.w-md-40 {
		width: 40% !important;
	}
	.w-md-50 {
		width: 50% !important;
	}
	.w-md-75 {
		width: 75% !important;
	}
	.w-md-100 {
		width: 100% !important;
	}
	.border-md-0 {
		border: 0 !important;
	}
	.border-radius-md-0 {
		border-radius: 0px !important;
	}
	.h-96 {
		height: 96px;
	}
	.footer-center-left-text {
		text-align: left;
	}
	.submenu {
		margin-top: 6px !important;
	}
	.border-radius-secondary-top-sm {
		border-radius: 24px 24px 0 0;
	}
	.border-radius-secondary-bottom-sm:last-child {
		border-radius: 0 0 24px 24px !important;
	}
	.h-md-100 {
		height: 100%;
	}
	.px-sm-70 {
		padding-left: 70px;
		padding-right: 24px;
	}
}

@media (max-width: 991px) {
	.fw-bg-container {
		min-height: 360px;
		max-height: 100%;
	}
	.px-mobile-0 {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 991px) {
	.navigation-holder {
		height: var(--desktop-nav-height);
	}
	.fw-bg-container {
		min-height: 540px;
	}
	.py-md-36 {
		padding: 36px 0 36px 0;
	}
	.w-md-242 {
		width: 242px;
	}
}

.products-dropdown.show {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

.products-dropdown::after {
	position: absolute;
    left: auto;
    right: 0;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 5px;
}

.products-dropdown-menu {
	margin-top: -4px !important;
}

.group-selected {
	background-color: var(--very-dark-blue) !important;
	color: white !important;
}

.home-specific-slide-content * {
	font-size: 14px;
	word-break: break-all;
	font-weight: 300;
	margin-bottom: 12px;
}

.about-section-4-paragraph * {
	font-size: 14px;
}

.single-blog-content img {
	height: auto;
	width: 100%;
}

.single-blog-content *{
	margin-bottom: 0;
	font-size: 14px;
}

.social-sharing * {
	display: flex;
}

.apss-default-facebook {
	margin-right: 0 !important;
	padding-right: 0 !important;
}

.our-team-email *{
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 0;
	color: var(--black);
}

.terms-and-conditions {
	white-space: break-spaces;
}

.terms-and-conditions ol li {
	margin-top: -2.5em; 
}

.under-table-text-size * {
	font-size: 14px;
}

.overflow-x-auto {
	overflow-x: auto;
}

.s2_product_content * {
	font-size: 14px;
	font-weight: 300;
}

#contact-form-submit-button {
	color: white;
	background: var(--green);
	border: 4px solid var(--green);
}
#contact-form-submit-button.disabled {
	pointer-events: none !important;
	background: var(--dark-white);
	color: var(--very-dark-gray);
	border: 4px solid var(--very-dark-gray);
}
#contact-form-submit-button span {
	color: white;
}
#contact-form-submit-button.disabled span {
	color: var(--text-very-dark-gray);
}

.border-radius-secondary-bottom-last:last-child {
	border-radius: 0 0 24px 24px !important;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005eb8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.grecaptcha-badge {
	display: none !important;
}