/*Global styles*/ 

.btn-primary{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-primary.btn-primary-grey{
    background: linear-gradient(#E8EAF6, #E8EAF6) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
}
.btn-primary:hover{
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    color: #fff;
}

.btn-search{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 11;
    margin-left: -50px;
}

.btn-filled{
    font-family: 'Manrope-Regular';
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 11;
}

.btn-filled:hover{
	 background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border-radius: 100px;
    border: 2px solid transparent;
	color: #11279C;
}

.btn-secondary{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-secondary:hover{
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border: 2px solid transparent;
    color: #fff;
}

.btn-purple{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
	background-color: #9B2188;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid #9B2188;
    cursor: pointer;
    text-transform: uppercase;
	transition: all .1s linear;
}

.btn-purple:hover{
    background-color: #fff;
    border: 2px solid #fff;
    color: #9B2188;
	transition: all .1s linear;
}

.btn-secondary-white{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-secondary-white:hover{
    background-color: #fff;
    color: #11279C;
}

.btn-white-filled{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #11279C;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-white-filled:hover{
    background-color: transparent;
    color: #fff;
}
.btn-gutter{
	margin-left: calc(var(--bs-gutter-x) * .5);
}

.btn-simple{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
    transition: all .2s linear;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-simple::before{
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    background-image: url('../img/Arrow-right.svg');
    background-position: center right;
    width: 20px;
    height: 8px;
    transition: width .2s linear;
}

.btn-simple:hover{
    padding-left: 45px;
    transition: all .2s linear;
}
.btn-simple:hover::before{
    width: 40px;
    height: 8px;
}

.btn-simple-after{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
	color: #11279C;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
    transition: all .2s linear;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-simple-after::before{
    content: '';
    position: absolute;
    right: 0;
    top: 35%;
    background-image: url('../img/Arrow-right.svg');
    background-position: center right;
    width: 20px;
    height: 8px;
    transition: width .2s linear;
}

.btn-simple-after:hover{
    padding-right: 45px;
    transition: all .2s linear;
}
.btn-simple-after:hover::before{
    width: 40px;
    height: 8px;
}


.btn-simple-white{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
    transition: all .2s linear;
    cursor: pointer;
    text-transform: uppercase;
	color: #fff;
}

.btn-simple-white::before{
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    background-image: url('../img/Arrow-right-white.svg');
    background-position: center right;
    width: 20px;
    height: 8px;
    transition: width .2s linear;
}

.btn-simple-white:hover{
	color: #fff;
}

.btn-simple-white:hover{
    padding-left: 45px;
    transition: all .2s linear;
}
.btn-simple-white:hover::before{
    width: 40px;
    height: 8px;
}

@keyframes constgrow{
	0% {
		transform: scale(1);
		
		
		/*background-size: 100% auto;*/
	}
	50% {
		transform: scale(1.2);
		
		/*background-size: 120% auto;*/
	}
	100% {
		transform: scale(1);
		
		/*background-size: 100% auto;*/
	}
}

@keyframes movegradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.background-blue-tint{
	background-color: #E8EAF6;
}
.gradient-background-{
	background: linear-gradient(180deg, #E5F2F8 0%, rgba(229, 242, 248, 0) 100%);
}
.gradient-background-Bilirubin{
	background: linear-gradient(180deg, rgba(214, 151, 46, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-Clinical{
	background: linear-gradient(180deg, rgba(95, 91, 151, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-Dairy{
	background: linear-gradient(180deg, rgba(148, 81, 142, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-Glocyte{
	background: linear-gradient(186.05deg, rgba(208, 61, 38, 0.5) 4.79%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-ANOXO{
	background: linear-gradient(180deg, rgba(64, 159, 47, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-CLD{
	background: linear-gradient(180deg, rgba(21, 131, 116, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-BIOpro{
	background: linear-gradient(180deg, rgba(40, 106, 123, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}
.gradient-background-ARTEL{
	background: linear-gradient(180deg, rgba(64, 167, 199, 0.5) 0%, rgba(240, 234, 244, 0) 100%);
}

.background-{
	background-color: #11279C;
	color: #fff;
}
.background-Bilirubin{
	background-color: #D8982C;
	color: #fff;
}
.background-Clinical{
	background-color: #5F5B97;
	color: #fff;
}
.background-Dairy{
	background-color: #94518E;
	color: #fff;
}
.background-Glocyte{
	background-color: #D03D26;
	color: #fff;
}
.background-ANOXO{
	background-color: #369425;
	color: #fff;
}
.background-CLD{
	background-color: #158374;
	color: #fff;
}
.background-BIOpro{
	background-color: #286A7B;
	color: #fff;
}
.background-ARTEL{
	background-color: #40A7C7;
	color: #fff;
}

body .opaque-background-Bilirubin{
	background-color: #FBF5EA;
}
body .opaque-background-Clinical{
	background-color: #EFEFF5;
}
body .opaque-background-Dairy{
	background-color: #F4EEF4;
}
body .opaque-background-Glocyte{
	background-color: #FAECE9;
}
body .opaque-background-ANOXO{
	background-color: #EBF4E9;
}
body .opaque-background-CLD{
	background-color: #E8F3F1;
}
body .opaque-background-BIOpro{
	background-color: #E9F0F2;
}
body .opaque-background-ARTEL{
	background-color: #ECF6F9;
}

.swiper-button-next{
	box-shadow: 0px 4px 14px 0px #CCC;
	background-color: #fff;
	border-radius: 50%;
	width: 48px !important;
	height: 48px !important;
	transition: all .1s linear;
}
.swiper-button-prev{
	box-shadow: 0px 4px 14px 0px #CCC;
	background-color: #fff;
	border-radius: 50%;
	width: 48px !important;
	height: 48px !important;
	transition: all .1s linear;
}
.swiper-button-next:after{
    background-image: url('../img/Arrow-right-blue.svg');
	content: '' !important;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	transition: all .1s linear;
	width: 23px;
	background-position: right;
}
.swiper-button-prev:after{
    background-image: url('../img/Arrow-left-blue.svg');
	content: '' !important;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
	transition: all .1s linear;
}
.swiper-button-next:hover{
	background-color: #11279C;
}
.swiper-button-prev:hover{
	background-color: #11279C;
}
.swiper-button-next:hover:after{
    background-image: url('../img/Arrow-right-white.svg');
}
.swiper-button-prev:hover:after{
    background-image: url('../img/Arrow-left-white.svg');
}

.swiper-pagination-bullet{
	background-color: #fff !important;
	opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #11279C!important;
}

.accordion .accordion-button{
	color: #11279C;
	font-weight: bold;
}
.accordion-item, .accordion-flush .accordion-item:last-child{
	border-bottom: 2px #E5F2F8 solid;
}
.accordion .accordion-button{
	padding-left: 0;
}
.accordion .accordion-button::after{
	background-image: url("../img/plus.svg");
	background-position: center;
	transition: none;
}
.accordion-button:not(.collapsed)::after{
	background-image: url("../img/minus.svg");
	background-position: center;
	transform: none;
}
.accordion .accordion-button:focus{
	outline: 0;
	box-shadow: none;
}
.accordion .accordion-button:not(.collapsed){
	background-color: #fff;
	color: #11279C;
}
.accordion .accordion-body{
	padding-left: 0;
}
/*Global styles*/

/* hero */

.hero{
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    display: flex;
    align-items: center;
	position: relative;
}

.hero h1, .hero p{
    color: #fff;
}

.hero-tag{
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	position: relative;
	font-size: 13px;
}
.hero-tag:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: calc(100% + 4px);
	background-color: #fff;
}
.hero-tag:hover{
	color: #fff;
	font-weight: 700;
}

.hero-content{
    max-width: 50%;
}

.hero-content h1{
	font-size: 40px;
}

.hero-gradient{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.res-hero .hero-constellation{
	background-position: left;
}
.hero-constellation{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-position: right;
	background-repeat: no-repeat;
	background-image: url('../img/Constellation.svg');
}


.res-hero .herogradient-{
	background: linear-gradient(to right, #11279C 50%, #E8EAF6 50%);
}
.herogradient-{
	background: linear-gradient(to right, #11279C 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-Bilirubin{
	background: linear-gradient(to right, #D8982C 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-Clinical{
	background: linear-gradient(to right, #5F5B97 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-Dairy{
	background: linear-gradient(to right, #94518E 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-Glocyte{
	background: linear-gradient(to right, #D03D26 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-ANOXO{
	background: linear-gradient(to right, #369425 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-CLD{
	background: linear-gradient(to right, #2E755E 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-BIOpro{
	background: linear-gradient(to right, #286A7B 40%, rgba(0, 120, 175, 0) 80%);
}
.herogradient-ARTEL{
	background: linear-gradient(to right, #40A7C7 40%, rgba(0, 120, 175, 0) 80%);
}

.hero-container{
	z-index: 9;
}

/* hero */

/*5050*/
.image-left{
	flex-direction: row-reverse;
}

.image-50 img{
	border-radius: 10px;
	width: 100%;
}
.box-background{
	background: linear-gradient(180deg, #E5F2F8 0%, rgba(229, 242, 248, 0) 100%);
	border-radius: 10px;
	padding: 64px;
}
.box-background:first-child{
	margin-right: auto;
}
/*5050*/

/*Images with text*/
.img-text-img{
	border-radius: 4px;
}
/*Images with text*/
/*contact us*/
.contact-us{
	background: linear-gradient(92.78deg, #11279C 21.89%, #6C2E8F 100%);	
	background-repeat: no-repeat;
	background-position: right;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.show-constellation{
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	position: absolute;
	z-index: 1;
}
.product-cta-cont{
	position: relative;
	min-height: 300px;
}
.product-cta-cont.show-constellation{
	background-position: right;
}
.contact-us h2, .contact-us p{
	color: #fff;
}
.contact-details-cont{
	padding-right: 0px;
	position: relative;
}

.contact-details{
	position: absolute;
	z-index: 2;
	bottom: 0%; 
	width: 100%;
	background-color: #9A2088;
	display: flex;
}
.contact-details p{
	margin-bottom: 0px;
}
.show-constellation{
	background-image: url('../img/Constellation.svg');
	background-repeat: no-repeat;
	background-position: right;
	background-size: 100% auto;
}
.constellation-grow{
	will-change: transform;
	animation: constgrow 90s linear infinite;
}
/*contact us*/
/*full width*/
.full-width{
	display: flex;
	flex-direction: column;
}
.full-width img{
	width: 100%;
	max-height: 400px;
	border-radius: 10px;
}
.full-width .comparison img{
	width: fit-content;
}
.align-items-center .full-width-cont{
	display: flex;
	flex-direction: column;
}

.full-width.align-items-center .body-text, .full-width.align-items-center .heading-text{
	text-align: center;
}

/*full width*/
/*prod quad*/
.prod-quad-item{
	background-color: #fff;
	border-radius: 10px;
	display: flex;
	border: 1px solid #E7E9F5;
}
.prod-quad-cont{
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 90%;
	padding-left: 10px;
}
/*prod quad*/
/*text with icon*/
.icon-txt-block{
	display: flex;
	align-items: flex-start;
}
.icon-txt-block img{
	max-height: 64px;
	max-width: 64px;
}
.icon-txt-block-vert{
	flex-direction: column;
	align-items: center;
}
.icon-txt-block .icon-txt{
	margin-left: 1rem;
}
.icon-txt-block.icon-txt-block-vert .icon-txt{
	margin-left: 0;
	margin-top: 1rem;
}
.icon-txt-block-vert .icon-txt{
	text-align: center;
}
.icon-txt-block-vert .icon-txt p{
	margin-top: .5rem;
}
/*text with icon*/
/*image-with-bullets*/
.image-with-bullet img{
	border-radius: 10px;
}
/*image-with-bullets*/
/*icon row*/
.icon-row-heading{
	text-align: center;
}
/*icon row*/
/*image with textbox*/
.image-with-textbox{
	min-height: 500px;
	background-position: center right;
	background-size: cover;
	margin-top: 100px;
}
.text-box{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%);
	border-radius: 10px;
	width: 50%;
	translate: 0px -70px;
}
.text-box h3, .text-box p{
	color: #fff;
}
/*image with textbox*/
/*timeline*/
.timeline{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%);
}
.timeline h3{
	color: #fff;
	text-align: center;
}
.timeline h5, .timeline p{
	color: #fff;
}
.timeline-text{
	position: relative;
}
.timeline-text:before{
	content: '';
	position: absolute;
	width: 1px;
	height: calc(100% - 17px);
	background-color: #fff;
	top: 17px;
	left: 0;
}
.timeline-text:after{
	content: '';
	position: absolute;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 1px solid #fff;
	top: 0;
	left: -8px;
}
/*timeline*/
/*Anchor links*/
.anchor_link_cont{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	padding: 0px;
	gap: 2px;
}
.anchor_link{
	background-color: #E7E9F5;
	padding: 12px 24px;
	text-decoration: none;
	color: #3C4148;
	display: inline-block;
	flex: none;
	flex-grow: 1;
	text-align: center;
}
.anchor_link:hover{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%);
	color: #fff;
}

/*Anchor links*/
/*Associated products*/
.product-cat{
	display: flex;
	cursor: pointer;
}
.product-cat-cont{
	position: relative;
	padding: 0;
}
.product-cat-link{
	width: 33%;
	border-bottom: 1px solid #E8EAF6;
	padding: 16px 0;
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	color: #3C4148;
	background-image: url('../img/Arrow-right-grey.svg');
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 23px;
}
.product-cat:first-of-type .product-cat-link{
	border-top: 1px solid #E8EAF6;
}
.product-cat.active .product-cat-link{
	color: #11279C;
	background-image: url('../img/Arrow-right-blue.svg');
}
.featured-prods{
	display: none;
	position: absolute;
	left: 33%;
	top: 0;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 66%;
}
.product-cat.active .featured-prods{
	display: flex;
}

.featured-prod{
	list-style-type: none;
	border: 1px solid #E7E9F5;
	border-radius: 10px;
	width: 48%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
.featured-prod-cont{
	padding: 10px 32px 32px 32px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	max-width: 100%;
	width: 100%;
	align-items: center;
	overflow: hidden;
}
.featured-prod-imgcont{
	width: 100%;
	border-radius: 10px;
	display: flex;
}
.featured-prod-imgcont img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

/*Associated products*/
/*Simple CTA*/
.simple-cta{
	background-color: #E8EAF6;
}
.simple-cta-cont{
	display: flex;
	justify-content: space-between;
}
.simple-cta-cont .blue-heading{
	max-width: 50%;
}
.simple-cta-buttons{
	width: auto;
}
/*Simple CTA*/
/*full-width-5050*/
.full-width-5050{
	display: flex;
	background-color: #E8EAF6;
	position: relative;
}
.full-width-5050-img{
	width: 50%;
}
.full-width-5050-cont{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.full-width-5050-body{
	float: right;
	width: 50%;
	padding-left: 5%;
}
/*full-width-5050*/
/*Testimonials*/

.testimonials{
	background: linear-gradient(92.78deg, rgba(17, 39, 156, 0.1) 21.89%, rgba(0, 120, 175, 0.1) 100%);
	padding: 5% 0;
	overflow: hidden;
}
.single-name, .single-role{
	text-wrap: nowrap;
}
.single-testimonial .quote-author img{
	width: 100px;
	height: 100px;
	margin-bottom: 1rem;
}
.testimonials-head{
	text-align: center;
	margin-bottom: 2rem;
}
.testimonials .quote-box{
	background-color: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0px 4px 70px 0px #B6B6B6;
	position: relative;
	height: 80%;
}
.testimonials .swiper-slide, .testimonials .swiper-slide{
	opacity: .4;
}
.testimonials .swiper-slide.swiper-slide-active{
	opacity: 1;
}
.testimonials .swiper {
  width: 600px;
  height: 400px;
	overflow: visible;
}
.quote-author{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}
.quote-author img{
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.testimonials .swiper-button-next{
	top: 100%;
	right: 15%;
}
.testimonials .swiper-button-prev{
	top: 100%;
	left: 15%;
}
.quote-box:after{
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #fff;
	top: calc(100% - 15px);
	left: calc(50% - 15px);
	transform: rotate(-45deg);
}
.quote-box-top{
	display: flex;
	justify-content: space-between;
}
.quote-author p{
	color: #11279C;
}
.quote-author-name{
	font-weight: 700;
}
.single-testimonial{
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.single-testimonial .quote-box{
	margin-left: 50px;
	width: 630px;
}
.single-name{
	font-weight: 700;
	margin-bottom: 0;
}
.single-testimonial .quote-box:after{
	
	top: 15%;
	left: -15px;
}

.testimonials .stars{
	background-image: url('../img/Star.svg');
	height: 20px;
}
.testimonials .stars.stars-5{
	width: 100px;
}
.testimonials .stars.stars-4{
	width: 80px;
}
.testimonials .stars.stars-3{
	width: 60px;
}
.testimonials .stars.stars-2{
	width: 40px;
}
.testimonials .stars.stars-1{
	width: 20px;
}
/*Testimonials*/
/*Product page tabs*/

.formtabs .nav-item{
	max-width: 33%;
}

.nav-tabs.product-tabs{
	border: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 2px;
}

.product-tabs li.nav-item{
	flex: none;
	flex-grow: 1;
}

.product-tabs .product-tab{
	background-color: #E7E9F5;
	padding: 12px 24px;
	text-decoration: none;
	color: #3C4148;
	display: inline-block;
	text-align: center;
	border: none;
	border-radius: 0px;
	width: 100%;
}

.product-tabs .product-tab:hover{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%);
	color: #fff;
}

.product-tabs .product-tab.active{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%);
	color: #fff;
}
/*Product page tabs*/

/*product hero*/

.productSwiper{
	background-color: #000;
}

.swiper.productSwiper {
  width: 100%;
	margin: unset;
}
.productSwiper .swiper-slide{
	height: auto;
}
.productSwiper .swiper-slide .hero-video-cont{
	height: 100%;
	position: relative;
	overflow: hidden;
}
.productSwiper .swiper-slide .hero-video-cont video{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.productSwiper .swiper-slide img{
	width: 100%;
	height: 100%;
}
.swiper-slide-next{
	opacity: .4;
}
.productSwiper .swiper-button-prev{
	top: 90%;
	left: 5%;
	z-index: 2;
}

.productSwiper .swiper-button-next{
	top: 90%;
	left: calc(5% + 70px);
	z-index: 2;
}

.productSwiper .swiper-pagination{
	width: auto !important;
	top: 88% !important;
	left: calc(5% + 140px) !important;
	z-index: 1;
}

.prod-hero-cont{
	background-color: #fff;
	border-radius: 10px;
	width: 35%;
	position: absolute;
	bottom: 5%;
	right: 5%;
	z-index: 3;
	padding: 2rem;
}
.prod-hero-tag{
	background-color: #E7E9F5;
	color: #11279C;
	padding: 4px 12px 4px 12px;
	font-weight: bold;
	width: fit-content;
}
.prodSwiper-cont{
	position: relative;
}
.prod-or{
	color: #11279C;
	font-size: 13px;
	line-height: 24px;
	width: fit-content;
	padding: 5px 15px;
	position: relative;
}
.prod-or:before, .prod-or:after{
	position: absolute;
	content: '';
	width: 30px;
	height: 1px;
	background-color: #11279C;
	top: 50%;
}
.prod-or:before{
	left: 100%;
}
.prod-or:after{
	right: 100%;
}
.prod-btns{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.prod-btns a{
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: center;
}
/*product hero*/
/*product testimonial*/
.prod-test-cont{
	background: linear-gradient(92.78deg, rgba(17, 39, 156, 0.1) 21.89%, rgba(0, 120, 175, 0.1) 100%);
	border-radius: 10px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	min-width: 50%;
}
.prod-test-innr{
	margin-left: 2rem;
}
.prod-testimonial img{
	max-width: 100%;
	height: auto;
}
.prod-test-mainimg{
	border-right: 1px #E8EAF5 solid;
	min-width: 15%;
	padding: 0 1rem;
	margin-right: 1rem;
	height: 140px;
}
.prod-test-img{
	display: flex;
	flex-wrap: wrap;
	padding-left: 1rem;
	height: 140px;
}
.prod-test-imgcont{
	width: 30%;	
	margin-bottom: 1rem;
	max-height: 64px !important;
	padding-right: 1%;
	overflow: hidden;
}
.prod-test-innr, .prod-test-innr p{
	color: #11279C;
}
/*product testimonial*/
/*product banner*/

.product-banner{
	min-height: 550px;
}
.product-banner-cont h2{
	margin-bottom: 20px;
}
.product-banner img{
	max-width: 100%;
}

.product-banner-cont{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.product-banner-{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #11279C 80.29%);
}
.product-banner-Bilirubin{
	background: linear-gradient(107.46deg, #FFFFFF 43.62%, #D8982C 80.69%);
}
.product-banner-Clinical{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #5F5B97 80.29%);
}
.product-banner-Dairy{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #94518E 80.29%);
}
.product-banner-Glocyte{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #D03D26 80.29%);
}
.product-banner-ANOXO{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #369425 80.29%);
}
.product-banner-CLD{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #158374 80.29%);
}
.product-banner-BIOpro{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #286A7B 80.29%);
}
.product-banner-ARTEL{
	background: linear-gradient(107.1deg, #FFFFFF 43.84%, #40A7C7 80.29%);
}

/*product banner*/
/*product highlighted features*/

.high-features-topbar{
	padding-top: 12px;
	padding-bottom: 12px;
}
.highlighted-feat{
	padding-top: 32px;
	padding-bottom: 32px;
	background-color: #EFEFF5;
}
.highlighted-feat-cont ul{
	display: flex;
  	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.highlighted-feat-cont ul li{
  	position: relative;
	padding-left: 40px;
	padding-right: 10px;
	font-weight: bold;
	color: #3C4148;
}

.highlighted-feat-cont ul li:before{
    position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 32px;
	width: 32px;
	background-image: url('../img/Check-mark.svg');
}


.check-mark-Bilirubin.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-BILIRUBIN.svg');
}
.check-mark-Clinical.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-CLINICAL.svg');
}
.check-mark-Dairy.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-DAIRY.svg');
}
.check-mark-Glocyte.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-GLOCYTE.svg');
}
.check-mark-ANOXO.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-ANOXO.svg');
}
.check-mark-CLD.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-CLD.svg');
}
.check-mark-BIOpro.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-BIOpro.svg');
}
.check-mark-ARTEL.highlighted-feat-cont ul li:before{
	background-image: url('../img/Check-mark-ARTEL.svg');
}

/*product highlighted features*/
/*Product features*/
.features-box{
	background-color: #EFEFF5;
}
/*Product features*/
/*Accordion widget*/
.accord-widget{
	background-color: #E8EAF6;
}
.accord-widget .accordion .accordion-button{
	color: #3C4148;
	font-weight: bold;
	background-color: #E8EAF6;
}
.accord-widget .accordion-item, .accord-widget .accordion-flush .accordion-item:last-child{
	border-bottom: 2px #FFF solid;
}
.accord-widget .accordion .accordion-collapse{
	background-color: #E8EAF6;
}
/*Accordion widget*/
/*tech specs*/
.sc-tech-specs table.prd_specifications{
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.sc-tech-specs table.prd_specifications tr td{
	font-family: 'Manrope-Regular';
	color: #3C4148;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: .2;
	padding: 12px 0px;
}
.sc-tech-specs table.prd_specifications tr td p{
	font-family: 'Manrope-Regular';
	color: #3C4148;
	font-weight: 500;
}
.sc-tech-specs table.prd_specifications tr td:first-child{
	color: #11279C;
	font-weight: 700;
	padding-right: 20px;
}
.prd_specifications tbody tr{
	border-bottom: 1px #E8EAF6 solid;
}
/*tech specs*/
/*Associated products tab*/
.sc-products-pns table{
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.sc-products-pns table tr td{
	color: #3C4148;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: .2;
	padding: 12px 0px;
}
.sc-products-pns table tr td:first-child{
	color: #11279C;
	font-weight: 700;
	padding-right: 20px;
}
.sc-products-pns tbody tr{
	border-bottom: 1px #E8EAF6 solid;
}

.sc-products-pns .btn-simple::before{
    width: 20px;
}
.sc-products-pns .btn-simple:hover{
    padding-left: 25px;
    transition: all .1s linear;
}
.sc-products-pns .btn-simple:hover::before{
    width: 23px;
}

.associated .sc-cards img{
	max-width: 100%;
}

.associated .sc-cards .card{
	border-color: #E7E9F5;
	margin-bottom: 1.5rem;
	border-radius: 10px;
	overflow: hidden;
}
.associated .sc-cards .h4{
	font-family: 'Manrope-Medium';
	font-size: 23px;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0.3px;
	text-align: left;
}
/*Associated products tab*/
/*Homepage hero*/

.home-hero video{
	width: 100%;
}

.home-hero{
	position: relative;
	max-height: 700px;
	overflow: hidden;
}

.home-hero .home-hero-cont{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align:center;
}
.home-hero .home-hero-cont .btn-filled{
	padding: 12px 60px;
}
.home-hero .home-hero-cont .btn-filled:hover{
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    color: #fff;
}
.home-hero h1{
	text-transform: uppercase;
	color: #fff;
	max-width: 100%;
	font-size: 55px;
	font-weight: 400;
	line-height: 60px;
	letter-spacing: 5px;
}
/*Homepage hero*/
/*Homepage explore*/

.explore-cards{
	justify-content: space-between;
	padding: 0 1rem;
}

.explore-card{
	transition: 0.2s all ease;
	width: 32%;
	border-radius: 10px;
	min-height: 510px;
	background-position: center;
	background-size: cover;
	padding: 0 !important;
}

.explore-card:hover{
	transform: scale(1.05);
}

.explore-card-innr{
	background: linear-gradient(179.63deg, rgba(0, 0, 0, 0) 23.43%, rgba(17, 39, 156, 0.3) 68.43%);
	height: 100%;
	width: 100%;
	border-radius: 10px;
	transition: 0.2s all ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.explore-card-innr:hover{
	background: linear-gradient(178.76deg, rgba(17, 39, 156, 0.18) 14.29%, rgba(17, 39, 156, 0.9) 71.26%);
}

.explore-card h4{
	color: #fff;
}

.explore-card-body{
	display: none;
	color: #fff;
}

.explore-card:hover .explore-card-body{
	display: block;
}

/*Homepage explore*/
/*product grid*/
.product-grid-item{
	background: linear-gradient(180deg, #EDEDED 14.29%, #FFFFFF 71.26%);
	border-radius: 10px;
}
.product-grid-item img{
	width: 100%;
}
.product-grid-grad{
	border-radius: 10px;
}
/*product grid*/
/*Homepage products*/

.homepage-swiper{
	overflow: visible !important;
}
.homepage-prods{
	overflow: hidden;
}
.homepage-swiper img{
	max-width: 100%;
	margin-top: 40px;
}
.homepage-swiper .swiper-slide-next{
	opacity: 1;
}

.homepage-swiper .swiper-button-next{
	left: calc(100% - 20px);
}
.homepage-swiper .swiper-button-prev{
	left: calc(0% - 20px);
}
.homepage-swiper .swiper-slide{
	background: linear-gradient(180deg, #EDEDED 14.29%, #FFFFFF 71.26%);
	border-radius: 10px;
}

.homepage-swiper .btn-simple:hover{
    padding-left: 25px;
    transition: all .2s linear;
}
.homepage-swiper .btn-simple:hover::before{
    width: 20px;
    height: 8px;
}

.homepage-swiper .swiper-slide:hover .swiper-slide-innr{
	border-radius: 10px;
}
.homepage-swiper .swiper-slide .swiper-slide-innr p{
	color: #11279C;
}

.homepage-swiper .swiper-slide:hover .swiper-slide-innr h4, .homepage-swiper .swiper-slide:hover .swiper-slide-innr p{
	color: #fff;
}

.homepage-swiper h4{
	max-width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}
.product-grid-item a, .homepage-swiper .swiper-slide p{
	transition: padding .2s linear !important;
}
.product-grid-item:hover h4, .product-grid-item:hover a{
	color: #fff;
}
.product-grid-item:hover .btn-simple:before, .homepage-swiper .swiper-slide:hover .btn-simple:before{
	background-image: url('../img/Arrow-right-white.svg');
}

.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-, .product-grid-item:hover .swiper-slide-gradient-{
	background: linear-gradient(0deg, #E5F2F8 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-Bilirubin, .product-grid-item:hover .swiper-slide-gradient-Bilirubin{
	background: linear-gradient(0deg, #D8982C 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-Clinical, .product-grid-item:hover .swiper-slide-gradient-Clinical{
	background: linear-gradient(0deg, #5F5B97 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-Dairy, .product-grid-item:hover .swiper-slide-gradient-Dairy{
	background: linear-gradient(0deg, #94518E 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-Glocyte, .product-grid-item:hover .swiper-slide-gradient-Glocyte{
	background: linear-gradient(0deg, #D03D26 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-ANOXO, .product-grid-item:hover .swiper-slide-gradient-ANOXO{
	background: linear-gradient(0deg, #369425 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-CLD, .product-grid-item:hover .swiper-slide-gradient-CLD{
	background: linear-gradient(0deg, #158374 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-BIOpro, .product-grid-item:hover .swiper-slide-gradient-BIOpro{
	background: linear-gradient(0deg, #286A7B 0%, rgba(137, 88, 165, 0) 53.73%);
}
.homepage-swiper .swiper-slide:hover .swiper-slide-gradient-ARTEL, .product-grid-item:hover .swiper-slide-gradient-ARTEL{
	background: linear-gradient(0deg, #40A7C7 0%, rgba(137, 88, 165, 0) 53.73%);
}

/*Homepage products*/
/*Homepage news*/

.featured-news .featured-image-cont{
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.featured-news .featured-image-cont img{
	width: 100%;
	border-radius: 4px;
}

.latest-image-cont img{
	width: 100%;
	border-radius: 4px;
}

.latest-news-item{
	border-bottom: 1px solid #CDCFC1;
	padding: 1rem 0px;
	display: flex;
}
.latest-news-item .latest-image-cont{
	min-width: 30%;
	max-width: 30%;
	display: flex;
}
.latest-content{
	padding-left: 1rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
/*Homepage news*/
/*Services and support*/

.services-support{
	background: linear-gradient(180deg, #E5F2F8 0%, rgba(229, 242, 248, 0) 100%);
}
.services-container{
	display: flex;	
	background-color: #fff;
	box-shadow: 0px 4px 50px 0px #B6B6B6;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}
.services-content{
	width: 66%;
}
.services-img{
	width: 33%;
	height: 100%;
	overflow:hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.services-img img{
	height: 100%;
	position: absolute;
	right: 0;
}
.support-container{
	background: linear-gradient(92.78deg, #11279C 21.89%, #0078AF 100%),
linear-gradient(0deg, #E5F2F8, #E5F2F8);
	box-shadow: 0px 4px 50px 0px #B6B6B6;
	border-radius: 10px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.support-container h4, .support-container p {
	color: #fff;
}
.support-container .btn-simple-white{
	width: 49%;
	margin-bottom: 10px;
}
.services-content .btn-simple{
	width: 100%;
	margin-bottom: 10px;
}
/*Services and support*/
/*Scroll to top*/
#ScrollTop {
  transform: rotate(-90deg);
	
  background-image: url('../img/Arrow-right-blue.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 28px;
  display: none; 
  position: fixed; 
  bottom: 60px; 
	
	box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.2);
  left: 13px; 
  z-index: 99;
  border: none;
  outline: none;
  background-color: #fff;
  color: white; 
  cursor: pointer; 
  border-radius: 50%; 
  font-size: 18px;
  width: 40px;
  height: 40px;
  border: 2px solid #11279C;
}

#ScrollTop:hover {
  background-image: url('../img/Arrow-right-white.svg');
}

#ScrollTop:hover {
  background-color: #11279C; 
}
/*Scroll to top*/
/*Resources*/

.resources-widget .nav-tabs{
	border-bottom: none;
}
.resources-widget .nav-tabs .nav-link{
	font-weight: 700;
	margin-right: 20px;
	border: 1px solid #11279C;
	color: #11279C;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.resources-widget .nav-tabs .nav-link:hover{
	background-color: #11279C;
	color: #fff;
}
.resources-widget .nav-tabs .nav-link.active{
	background-color: #11279C;
	color: #fff;
}

.resources-widget .tab-content{
	margin-top: 2rem;
}
.resources-widget .panel-content{
	display: flex;
	justify-content: space-between;
}
.resources-widget .ind-res{
	background-color: #fff;
	border-radius: 10px;
	width: 32%;
}
.resources-widget .ind-res-content{
	padding: 24px 24px 40px 24px;
}
.resimg-cont{
	width: 100%;
	height: 50%;
	overflow: hidden;
	border-radius: 10px 10px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.resimg-cont img{
	width: 100%;
}
.res-type{
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
	color: #11279C;
	margin-bottom: 10px;
}
.resources-widget .ind-res-content h3{
	color: #3C4148;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.3px;
}
/*Resources*/
/*comparison guide*/

.comparison tr{
	border-bottom: 1px solid #E8EAF6;
}
.comparison tr td{
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: center;
}
.comparison .aligncenter{
	margin-left: auto;
	margin-right: auto;
}
.comparison tr td.tble_frist_td{
	text-align: left;
}
.comparison th{
	text-align: center;
}
.comparison th a{
	color: #11279C;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.3px;
}
.comparison th .tble_prd_name{
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}
.comparison .tbl_frist{
	padding: 16px;
	background-color: #E8EAF6;
}
.comparison .tble_frist_td{
	padding-right: 20px;
	vertical-align: bottom;
	padding-bottom: 20px;
}
.comparison .last_btn_section a, .last_btn_section a{
	text-wrap: nowrap !important;
	white-space: nowrap !important;
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 11;
	margin-bottom: 10px;
}
.comparison .last_btn_section a:hover, .last_btn_section a:hover{
	 background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border-radius: 100px;
    border: 2px solid transparent;
	color: #11279C;
}
/*comparison guide*/
/*3-col*/
.colimg3{
	max-width: 100%;
}
/*3-col*/

.formtabs .accordion-item{
	border-radius: 0 !important;
	border-top: none;
	border-left: none;
	border-right: none;
}
.formtabs .accordion-item button{
	box-shadow: none;
}
/*3-col*/
/*resources*/
.featured-tag{
	border-radius: 4px;
	background-color: #11279C;
	padding: 4px 10px;
	font-size: 13px;
	color: #fff;
	font-weight: 700;
	line-height: 24px;
	width: fit-content;
	margin-bottom: 24px;
}

.res-hero .hero-container{
	display: flex;
}
.res-hero .hero-content{
	width: 50%;
	max-width: 50%;
}
.res-hero .hero-content h1, .res-hero .hero-content p{
	max-width: 80%;
} 
.res-hero .res-hero-featured{
	width: 50%;
	padding: 0 44px;
}
.featured-resources{
	background-color: #E8EAF6;
	margin-bottom: 2rem;
}
/*resources*/

.featured-post{
	display: flex;
	border-radius: 10px;
	background-color: #fff;
	justify-content: space-between;
	flex-grow: 1;
	max-height: 400px;
}
.featured-post-img{
	width: 40%;
	overflow: hidden;
	border-radius: 0px 10px 10px 0px;
	display: flex;
	justify-content: center;
}
.featured-post-cont{
	width: 60%;
	padding: 24px 24px 24px 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.featured-post-cont h3{
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.3px;
}
.featured-post-types{
	margin-bottom: 10px;
	color: #11279C;
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
}
.featured-container{
	display: flex;
	justify-content: space-between;
}
.featured-innr{
	width: 48%;
	display: flex;
	flex-direction: column;
}

/*Small hero*/

.small-hero{
    min-height: 350px;
	background: linear-gradient(92.78deg, #11279C 21.89%, #6C2E8F 100%);
    display: flex;
    align-items: center;
	position: relative;
	animation: movegradient 7s ease infinite;
    background-size: 200% 100%;
}

.small-hero h1, .small-hero p{
    color: #fff;
}

/*small hero*/

/*Resources*/

.resource-filters{
	display: flex;
}
.cvp-search-box{
	order: 1;
}
.cvp-live-button{
	order: 2;
}
.cvp-dropdown{
	order: 3;
}

.cvp-responsive-image{
	width: 100% !important;
	max-height: 250px !important;
}
.pt-cv-ifield{
	border-radius: 10px;
	border: 1px solid #E8EAF6;
}

.pt-cv-readmore{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
    transition: all .2s linear;
    cursor: pointer;
    text-transform: uppercase;
}
.pt-cv-readmore::before{
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    background-image: url('../img/Arrow-right.svg');
    background-position: center right;
    width: 20px;
    height: 8px;
    transition: width .2s linear;
}

.pt-cv-readmore:hover{
    padding-left: 45px;
    transition: all .2s linear;
	opacity: 1 !important;
}
.pt-cv-readmore:hover::before{
    width: 40px;
    height: 8px;
}
.pt-cv-meta-fields, .pt-cv-title, .pt-cv-content{
	padding-left: 16px;
	padding-right: 16px;
}
body .pt-cv-wrapper .cvp-live-submit{
	height: 54px;
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 11;
    margin-left: -50px;
}
.pt-cv-wrapper .cvp-dropdown{
	margin-right: 0px;
	margin-left: 20px;
}
.cvp-live-button{
	margin-right: auto!important;
	display: flex;
}
	
body .pt-cv-wrapper .cvp-live-reset{
    font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border-radius: 100px;
    border: 2px solid transparent !important;
    cursor: pointer;
    text-transform: uppercase;
	color: #11279C;
	max-height: 54px;
}
body .pt-cv-wrapper .cvp-live-reset:hover{
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    color: #fff;
}
.cvp-search-box input[type="text"]{
	width: 236px;
	background-image: url('../img/search-blue.svg');
	background-size: 16px 16px;
	background-position: 8px calc(50% + 2px);
	background-repeat: no-repeat;
	padding-left: 30px;
}
.cvp-search-box input[type="text"], .cvp-dropdown select{
	height: 54px;
	border-radius: 8px;
	border: 1px solid #E8EAF6;
}
.pt-cv-edit-view{
	margin-right: 5px;
}
.pt-cv-thumb-default{
	margin-bottom: 24px;
}
/*Resources*/
/*Leadership*/

dialog::backdrop {
  background: rgba(0, 0, 0, 0.80);
}

.leader-sml img{
	width: 100%;
}

.sc-leadership dialog{
	width: 65%;
	height: 80%;
	margin-top: auto;
	border: none;
	border-radius: 10px;
	padding: 80px;
	position: fixed;
	overflow: visible;
}
.sc-leadership dialog:focus{
	outline: none;
}
.leader-lrg{
	display: flex;
	justify-content: space-between;
}
.leader-lrg-content{
	width: 55%;
}
.leader-lrg-img{
	width: 36%
}
.leader-lrg-img img{
	width: 100%;
}
.leader-close{
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(50%, -50%);
	width: 48px;
	height: 48px;
	background-color: #11279C;
	border: 2px solid #fff;
	border-radius: 50%;
    background-image: url('../img/Close.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	cursor: pointer;
}
/*Leadership*/
/*Contact us*/

.triboxes{
	padding-top: 50px;
	padding-bottom: 100px;
}

.tri-box{
	box-shadow: 0px 4px 50px 0px #B6B6B6;
	border: 1px solid #E8EAF6;
	border-radius: 10px;
}

.contact-location{
	border-bottom: 1px solid #E8EAF6;
	padding-bottom: 40px;
}
.address-box{
	background: rgba(232, 234, 246, 0.50);
	padding: 12px;
	display: flex;
	align-items: flex-start;
	flex-shrink: 0;
	flex-direction: column;
}
.location-title{
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #E8EAF6;
}

.location-detail p{
	margin-bottom: 6px;
}

/*Contact us*/
/*post hero */
.post-hero .hero-content{
	max-width: 60%;
}
.post-hero .hero-content h1{
	font-size: 32px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: 0.5px;
	text-transform: capitalize;
}
/*post hero */
/*resource sub*/
.post-img-cont{
	border-radius: 10px;
	border: 1px solid #E8EAF6;
}
.post-img-cont img{
	width: 100%;
}
/*resource sub*/
/*product page*/
.company-events{
	width: 100%;
}
thead, th{
	background-color: rgba(232, 234, 246, 0.50);
	color: #11279C;
}
tr:nth-child(even) {background-color: rgba(232, 234, 246, 0.25)}
tbody tr td, th{
	padding: 10px 12px;
}
tbody tr td{
	color: #3C3C3B;
}
table{
	margin-bottom: 1rem;
}
/*product page*/
/*Side scroller*/

.side-scroller{
	list-style-type: none;
	padding-left: 0px;
	border-top: 1px solid #E8EAF6;
	top: calc(120px + 5%);
	position: sticky;
}
.side-scroller-item{
	border-bottom: 1px solid #E8EAF6;
}
.side-scroller-item a{
	display: block;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px; 
	letter-spacing: 0.3px;
	color: #3C4148;
	width: 100%;
	padding: 16px 0px;
	position: relative;
}
.side-scroller-item a:hover{
	color: #11279C;
}
.side-scroller-item a:hover:after{
    background-image: url('../img/Arrow-right.svg');
}
.side-scroller-item a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 40%;
    background-image: url('../img/Arrow-right-grey.svg');
    background-position: center right;
    width: 20px;
    height: 8px;
}

/*Side scroller*/
/*Search page*/
.search-bar{
	background-color: #E8EAF6;
	padding: 25px 0px;
}
/**/
/*contact single*/
#subaccordion .accordion-item{
	border: none !important;
	border-top: 1px solid #E8EAF6 !important;
	border-bottom: 1px solid #E8EAF6 !important;
	border-radius: 0px !important;
}
#subaccordion .accordion-item .accordion-header button{
	font-size: 18px;
	font-weight: 500;
	line-height: 26px; 
	letter-spacing: 0.3px;
	color: #3C4148;
}
#subaccordion .accordion-item .accordion-body p{
	color: #11279C;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px; 
	letter-spacing: 0.2px;
	margin-bottom: 8px;
}
#subaccordion .accordion-item .accordion-body a{
	color: #11279C;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px; 
	letter-spacing: 0.2px;
	text-decoration-line: underline;
	margin-bottom: 8px;
}
#subaccordion .accordion-button:not(.collapsed){
	box-shadow: none !important;
}
/*contact single*/
/*refs*/
.references ol li, .references ul li, .references ol li a, .references ul li a{
	font-size: 14px;
	line-height: 20px;
}
/*refs*/
/*3 col styling*/
.sc-cards .container{
	padding-bottom: 2rem;
}
.sc-cards .card{
	height: 100%;
}
.sc-cards .card .content{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.sc-cards .card .btn-filled{
	margin-top: auto;
}
/*3 col styling*/
/*careers*/
.border-bottom-blue{
	border-bottom: 1px solid #E8EAF6;
}
.careers-listing .blue-bold{
	color: #11279C;
	font-size: 16px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.2px;
}
/*careers*/
/*Posts*/
.post-date-cont{
	background: rgba(17, 39, 156, 0.10);
	color: var(--ai-blue, #11279C);
	font-size: 15px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0.2px;
	padding: 4px 12px;
	width: fit-content;
	margin-bottom: 1rem;
}
/*Posts*/
/*404*/
.page-not-found {
    text-align: center;
    padding: 10% 0;
    position: relative;
    z-index: 10;
}
.page-not-found h2 {
    font-size: 250px;
    line-height: 250px;
	font-weight: bold;
}
.page-not-found h3 {
    font-size: 54px;
	font-weight: bold;
}
/*404*/
.tri-box{
	height: 100%;
	display: flex;
	flex-direction: column;
}
.tri-box img{
	width: 33%;
}
.tri-box .btn-filled{
	margin-top: auto;
}
.icon-container{
	display: flex;
	justify-content: space-between;
}
.icon-container .icon-item-cont{
flex: 1 1 0px;
}

/*Search page*/
.search-bar-container{
	background-color: #E8EAF6;
	padding-top: 15px;
	padding-bottom: 25px;
	border-radius: 8px;
}
.search-item{
	border-bottom: 1px solid #E8EAF6;
	text-decoration: none;
}
.search-item .btn-simple{
	float: right;
}
.search-item .btn-simple:hover::before{
    width: 20px;
}
.search-item .btn-simple:hover{
    padding-left: 25px;
}
.search-item-posttype{
	color: #11279C;
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
}
#searchpage-search .search-form{
	flex-direction: column;
}
#searchpage-search .search-form input[type=search].search-field{
	border: none;
	border-radius: 8px;
	width: 100%;
	padding: 10px 20px;
}
#searchpage-search .search-form .search-submit{
	height: fit-content;
}
.search-form-inputs{
	display: flex;
	flex-direction: column;
}
.mark, mark{
	background-color: #E8EAF6;
}
.search-result-img{
	max-width: 180px;
	margin-right: 40px;
}
#filtered-by{
	text-transform: capitalize;
}
.search-form-inputs .search-checkbox{
	display: flex;
	align-items: center;
}
.search-form-inputs .search-checkbox label{
	color: #3C4148;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.2px;
	margin-left: 12px;
}
.search-form-inputs .search-checkbox input[type=checkbox]{
	accent-color: #11279C;
}
.page-numbers.current{
	font-size: 13px !important;
    color: #ffffff !important;
    background-color: #11279c !important;
    font-weight: 600 !important;
    line-height: 28px !important;
	border-color: rgba(66,139,202,.2)!important;
	padding: 6px 12px;
	border-radius: 6px!important;
	text-decoration: none !important;
	margin: auto 2px!important;
	display: block;
	border: 1px solid #ddd;
}
.page-numbers{
	font-size: 13px !important;
    color: #11279c !important;
    background-color: #ffffff !important;
    font-weight: 600 !important;
    line-height: 28px !important;
	border-color: rgba(66,139,202,.2)!important;
	padding: 6px 12px;
	border-radius: 6px!important;
	text-decoration: none !important;
	margin: auto 2px!important;
	display: block;
	border: 1px solid #ddd;
}
.page-numbers:hover{
	background-color: #EEE !important;
}
.page-numbers.current:hover{
	background-color: #11279c !important;
}
    
.gform_wrapper.gravity-theme .gform_footer input{
	font-family: 'Manrope-Regular';
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    padding: 6px 40px;
    width: fit-content;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #11279C, #0078AF) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 11;
}
.gform_wrapper.gravity-theme .gform_footer input:hover{
	background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #11279C, #0078AF) border-box;
    border-radius: 100px;
    border: 2px solid transparent;
	color: #11279C;
}
@media(min-width: 600px){
	.sc-search{
		min-width: 350px;
	}
	
}
.sc-search div{
	width: 100% !important;
}
.sc-search div button{
    width: 54px;
    height: 100%;
	background-image: url('../img/search-white.svg');
    background-color: #11279C;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center center;
    border: 2px solid #11279C;
    cursor: pointer;
    transition: all 0.2s linear;
}
.sc-search div button:hover{
    background-image: url('../img/search-blue.svg');
	background-color: #fff;
    transition: all 0.2s linear;
}
.full-width-cont.align-items-start .onchange{
	padding: 10px;
	margin-bottom: 20px;
}

.full-width-cont.align-items-start h1{
	text-transform: unset
}

.full-width-cont.align-items-start table{
	width: 100%;
}
.full-width-cont.align-items-start{
	width: 100%;
}
.full-width-cont .comm_table_all img.wp-image-529{
	width: 30px !important;
	height: 30px !important;
}
.comparison .fixed-mobile-top-margin sub.one{
	display: none;
}
/*Search page*/
#app-tab-pane .resources-widget{
	padding-top: 3rem;
}
#app-tab-pane .applications{
	padding-bottom: 3rem;
}
#app-tab-pane .sc-cards{
	padding-top: 3rem;
}
.mobile-tab-select{
	display: none;
}
.form-select:focus{
	outline: 0;
	box-shadow: none;
	border: 1px solid #11279C;
}
.news-prod-tabs{
	width: 40%;
}

.contact-wp{
	display: flex;
	min-height: 320px;
}
.contact-person{
	min-width: 300px;
	max-width: 340px;
	width: 18%;
	background-size: cover;
}
.contact-body{
	z-index: 2;
	padding-left: 2rem;	
}
h2.pri.mont{
	font-weight: 600;
	color: #11279C;
    font-family: 'Manrope-Regular';
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.3px;
}
.hero-blue{
	background-color: #11279C;
}
.blue-hero-height{
	min-height: 350px !important;
}
.pt-cv-meta-fields .terms a{
	pointer-events: none;
}
.pt-cv-ifield:has(.alert-warning){
	border: none !important;
}
.pt-cv-ifield .alert-warning{
	padding-left: 0px !important;
	border: none !important;
	background-color: #fff !important;
	margin-bottom: none !important;
}
#assprods-tab-pane{
	padding-top: 3rem;
}
.discontinued .prod-img{
	max-width: 100%;
}
.discontinued .prod-heading{
	border-bottom: 1px solid #ccc;
}
.comparison .icon_paddding_left{
	padding-left: 5px;
	height: 18px;
	width: 32px;
}
table.comm_table_all td {
    position: relative;
}
table.comm_table_all td sup {
    font-size: 16px;
    font-weight: 800;
    color: #00a0de;
    line-height: 1.63;
    position: absolute;
    top: 0;
    left: 37px;
    right: 0;
}
table.comm_table_all td sub.one {
    font-size: 16px;
    font-weight: 800;
    color: #00a0de;
    line-height: 1.63;
    position: absolute;
    top: 0;
    left: 37px;
    right: 0;
}

.hero-video-cont-mob{
	display: none;
	float: right;
}

.leader-lrg{
    overflow: scroll;
    max-height: 100%;
}

.contact-location .location-detail a{
    word-wrap: break-word;
}

#mobileSiteNavigation .btn-primary{
	line-height: 26px;
	padding: 6px 20px;
	font-size: 12px;
}
.full-width-cta{
    display: none;
  }