@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/*** GENERIC CSS ***/
html,body {
	overflow-x: hidden;
}

body {
	font-size: 18px;
	color: #000;
	font-family: "Inter", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Inter", sans-serif;
}

a {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-decoration: none;
}

button {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

a:hover {
	text-decoration: none;
}

a:focus {
	text-decoration: none;
}

button {
	outline: 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: "Plus Jakarta Sans", sans-serif;
}

h1 {
	font-size: 72px;
	line-height: 1;
	margin-bottom: 20px;
	font-weight: 600;
	color: #fff;
}

h2 {
	font-size: 52px;
}

h3 {
	font-size:40px;
}

h4 {
	font-size:24px;
	font-weight: 600;
}

h5 {
	font-size:20px;
}

h6 {
	font-size:18px;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.section-title.sm h2 {
	font-size: 40px;
}

.section-title h6 {
	color:#1C73D6;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 700;
	font-family: "Plus Jakarta Sans", sans-serif;
	text-transform: uppercase;
}

.section-title h2 {
	color:#011429;
	font-size: 52px;
	margin-bottom: 20px;
	font-weight: 500;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.section-title.white h2 {
	color: rgba(255, 255, 255, 1);
}

.section-title.white p {
	color: rgba(255, 255, 255, 0.8);
}

.section-title.white .line {
	background: #fff;
}

.section-title p {
	margin-bottom: 25px;
	color: #011429;
	opacity: 0.8;
	font-size: 18px;
	line-height: 28px;
}

.section-title h2 span {
}

p {
	color: #000;
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.visible-xs {
	display: none;
}

.btn-default {
	display: inline-block;
	border-radius: 0;
	line-height: 56px;
	min-width: 185px;
	padding: 0px 25px;
	font-size: 18px;
	font-weight: 700;
	background: linear-gradient(90deg, #1C73D6 0%, #0D1AAC 100%);
	box-shadow: 0px 6px 18px -10px rgba(20, 2, 104, 0.60);
	color: #fff;
	border: none;
	border-radius: 50px;
	text-align: center;
}

.btn-default:hover {
	background: #011429;
	color: #fff;
}

.btn-default.white {
	background: #fff;
	color: #011429;
}

.btn-default.white:hover {
	background: #011429;
	color: #fff;
}

ul.list {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.list li {
	margin:0px 0px 15px 0px;
	padding-left: 35px;
	background: url(../img/check.png) 0px 1px no-repeat;
	background-size: 20px auto;
	color: #011429;
	color: rgba(1, 20, 41, 0.8);
	font-size: 18px;
}

/*** PRELOADER ***/
.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 99999;
}

.preloader .lds-ripple {
	position: relative;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
	position: absolute;
	border: 2px solid #DD8555;
	opacity: 1;
	border-radius: 0;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

.img-rounded {
	border-radius: 15px;
}

.hover-animate {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.hover-animate:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.navbar-expand-lg .navbar-nav {
	align-items: center;
}

/*** HEADER ***/
.header {
	padding:0px 0px;
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navbar-brand img {
	max-height: 35px;
}

.navbar-nav .nav-item {
	margin: 0px 0px 0px 45px;
}

.nav-link {
	display: inline-block;
	color: #fff;
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
	line-height: 60px;
	padding: 0px 0px !important;
	line-height: 61px;
	font-weight: 400;
}

.nav-link:hover,
.active>.nav-link:hover,
.active>.nav-link {
	color: #fff !important;
	font-weight: 700;
}

.nav-link img {
	width: 25px;
}

.nav-link:focus, .nav-link:hover {
	color: #fff;
}

.lbtn>.nav-link {
	line-height: 48px;
	padding: 0px 25px !important;
	background: #FFF;
	color: #011429;
	font-weight: 700;
	border: none;
	font-family: "Inter", sans-serif;
	border-radius: 50px;
	border: none !important;
	letter-spacing: 0;
}

.lbtn>.nav-link:hover {
	background: #011429;
	color: #fff;
}

.lbtn>.nav-link img {
	margin-right: 10px;
}

.header .navbar, .header.fixed .navbar {
	/* background: rgb(0 0 0 / 90%); */
	border-radius: 200px;
	background: linear-gradient(105deg, #641EBD 2.67%, #02004A 95.79%);
	box-shadow: 0px 20px 36px -24px rgba(0, 30, 64, 0.40);
	padding: 5px 12px 5px 24px;
}

/*** ***/
.banner {
	padding: 150px 0px 60px 0px;
	background: linear-gradient(105deg, #898C49 2.67%, #5A1408 95.79%), #CE4C36;
	background: linear-gradient(105deg, #641EBD 2.67%, #02004A 95.79%);
	position: relative;
}

.banner .art1 {
	position: absolute;
	top: 0;
	left: 0;
}

.banner .art2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.banner .shape {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 157px;
}

.banner h1 span {
	position: relative;
}

.banner h1 span img {
	position: absolute;
	bottom: 0;
	left: -3%;
	min-width: 110%;
}

.banner p {
	color: #FFF;
	font-size: 18px;
	font-weight: 400;
	opacity: 0.8;
	margin-bottom: 40px;
}


/**/
.challenges {
	padding: 30px 0px 50px 0px;
}

.challenges .table td {
	color: #011429;
	opacity: 0.8;
	border: none;
	background: none;
}

.challenges .table td .bgcolor {
	border-radius: 4px;
	background: #A5CAF4;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	transition: all .3s;
}

.challenges .table td .bgcolor.t2 {
	background: #1C73D6;
}

.challenges .table td .bgcolor.t3 {
	background: #F9A704;
}

.challenges .table td .bgcolor.t4 {
	background: #898C49;
}

.challenges .table td .bgcolor.t5 {
	background: #F26649;
}

.challenges .table td .bgcolor.t6 {
	background: #CE4C36;
}

.challenges .table td:hover {
	opacity: 1;
}

.challenges .table td:first-child {
	padding: 10px 15px;
}

.challenges .table td:last-child {
	color: #011429;
}

.challenges .table td:first-child:hover {
	font-weight: bold;
}

.challenges .table td:hover .bgcolor {
	width: 20px;
	height: 20px;
}

.challenges .table tr {
	position: relative;
}

.challenges .table tr:hover {
	box-shadow: 0px 0px 5px 0px rgba(0, 30, 64, 0.40);
	border-radius: 12px;
}

.solution-box h6 {
	color: #011429;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.solution-box p {
	color: #011429;
	font-size: 16px;
	opacity: 0.8;
}

.solution-box {
	display: flex;
	align-items: start;
	margin-bottom: 20px;
}

.solution-box .text {
	border-left: 1px solid #898C49;
	padding-left: 17px;
	margin-left: 17px;
}

.solution-box.sd .text {
	border-left: 1px solid #1C73D6;
}

.solution-box.td .text {
	border-left: 1px solid #F26649;
}

/**/
.how-it-works {
	background: linear-gradient(0deg, #F1EFF6 0%, #F1EFF6 100%), rgba(225, 235, 246, 0.50);
	padding: 15px 0px 35px 0px;
}

.workbox .img {
	position: relative;
}

.workbox .img img {
	border-radius: 12px;
	height: 260px;
	object-fit: cover;
}

.workbox .img .num {
	position: absolute;
	top: 7px;
	left: 7px;
	background: #011429;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	padding: 15px 8px 8px 8px;
	text-align: center;
	line-height: 0.6;
	color: #F9A704;
	font-size: 26px;
	font-family: "Inter", sans-serif;
	font-weight: 800;
}

.workbox .img .num span {
	font-size: 14px;
}

.workbox .text {
	border-radius: 12px;
	background: #FFF;
	padding: 12px 20px;
	box-shadow: 0px 20px 36px -24px rgba(0, 71, 152, 0.16);
	margin-top: 15px;
}

.workbox .text h3 {
	color: #011429;
	font-size: 24px;
	font-weight: 600;
}

.workbox .text h3 img {
	margin-right: 10px;
}

.workbox .text p {
	color: #011429;
	font-size: 16px;
	line-height: 1.5;
	opacity: 0.8;
	min-height: 140px;
	margin-top: 15px;
}

/*** ***/
.uniqueness {
	padding: 0px 0px 330px 0px;
}


section.benefits .container {
    margin-top: -280px;
}
.uniqueness .table {
	border-collapse: separate;
	border-spacing: 55px 0px;
}

.uniqueness .table tbody tr:first-child td {
	padding-top: 40px;
}

.uniqueness .table th {
	text-align: center;
	vertical-align: middle;
	color: #011429;
	font-size: 18px;
	border-bottom: 1px solid rgba(99, 139, 184, 0.20);
}

.uniqueness .table th:nth-child(2) {
	border-bottom: 2px solid rgba(99, 139, 184, 0.20);
}

.uniqueness .table th:first-child {
	text-align: left;
	color: #011429;
	font-size: 18px;
	opacity: 0.8;
	font-weight: 400;
}

.uniqueness .table td {
	text-align: center;
	vertical-align: middle;
	padding: 15px 10px;
	border-bottom: 1px solid rgba(99, 139, 184, 0.20);
}

.uniqueness .table td:nth-child(2) {
	border-bottom: 2px solid rgba(99, 139, 184, 0.20);
}

.uniqueness .table td:first-child {
	text-align: left;
}

.uniqueness .table td:first-child img {
	margin-right: 10px;
}


/*** ***/
.benefits {
	padding: 60px 0px 0px 0px;
}

.benefits {
	padding: 60px 0px 0px 0px;
}

.benefits .nav-tabs {
	justify-content: center;
	border-radius: 12px;
	background: #EBF2FA;
	display: inline-block;
	padding: 5px 5px;
	border: none;
}

.benefits .nav-tabs li {
	display: inline-block;
}

.benefits .nav-tabs li button {
	display: inline-block;
	display: flex;
	height: 48px;
	padding: 10px 20px;
	min-width: 175px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	color: #011429;
	border: none;
}

.benefits .nav-tabs li button.active,
.benefits .nav-tabs li button:hover {
	background:  #FFF !important;
	color: #1C73D6 !important;
	font-weight: 700 !important;
}

.benefits .benefitcard {
	border-radius: 12px;
	border: 1px solid #1C73D6;
	background: #FFF;
	box-shadow: 0px 20px 36px -24px rgba(0, 30, 64, 0.16);
	padding:25px;
	color:#011429;
	font-size:16px;
	font-weight: 500;
	margin-bottom: 15px;
	height:100px;
	display:flex;
	align-items:center;
}

.benefits .benefitcard small {
	display:inline-block;
	margin-top:10px;
	font-style:italic;
	opacity:0.6;
}

.benefits .benefitcard img {
	margin-right: 18px;
}

.benefits .benefitcard span {
	border-radius: 8px;
	background: rgba(28, 115, 214, 0.12);
	padding: 6px;
	font-weight: 700;
}

.benefits .benefitcard.td {
	border-color: #898C49;
}

.benefits .benefitcard.td span {
	background: rgba(137, 140, 73, 0.20);
}

.benefits .benefitcard.td {
	border-color: #898C49;
}

.benefits .benefitcard.td span {
	background: rgba(137, 140, 73, 0.20);
}

.benefits .benefitcard.t3 {
	border-color: #F9A704;
}

.benefits .benefitcard.t3 span {
	background: rgba(249, 167, 4, 0.20);
}

.benefits .benefitcard.t4 {
	border-color: #F26649;
}

.benefits .benefitcard.t4 span {
	background: rgba(242, 102, 73, 0.20);
}


/*** ***/
.testimonials {
	padding: 140px 0px 160px 0px;
}

.bgarts {
	background: url(../img/bg-testi.png) 50% 120% no-repeat;
    background-size: 100% 100%;
}

.testimonials .item {
	padding: 10px 10px 30px 10px;
}

.testibox {
	border-radius: 16px;
	border: 1px solid rgba(99, 139, 184, 0.20);
	background: #FFF;
	box-shadow: 0px 20px 36px -24px rgba(0, 30, 64, 0.24);
	padding: 30px 32px 20px 32px;
}

.owl-carousel .owl-item img {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

.testibox .quote {
	margin-bottom: 20px;
}

.testibox p {
	color: #011429;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 20px;
	min-height: 112px;
}

.testibox h6 {
	color: #011429;
	font-size: 18px;
	line-height: 1.5;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	opacity: 0.8;
}

.testibox h6 span {
	font-weight: 400;
}

.testimonials .custom-nav {
	margin-top: 55px;
	display: flex;
	align-items: center;
}

.testimonials .custom-nav button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: #FFF;
	color: #000;
	font-size: 20px;
	margin-right: 10px;
}


/*** ***/
.technology {
	padding: 40px 0px;
}


/*** ***/
.contactform {
	padding: 195px 0px 50px 0px;
	background: linear-gradient(105deg, #9474E0 2.77%, #230A93 95.79%), linear-gradient(134deg, #1C73D6 6.98%, #0E3C70 97.41%), #E1EBF6;
	position: relative;
}

.contactform .mainimg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 47.5%;
	width: 680px;
}

.contactform .shape {
	position: absolute;
	top:  0;
	right: 0;
	width: 100%;
	height: 157px;
}

.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	border: none;
	background: rgba(255, 255, 255, 0.10);
	font-weight: 400;
	height: 56px;
	outline: 0;
	line-height: 1.5;
	padding: 10px 30px;
	border-radius: 30px;
	margin-bottom: 10px;
	box-shadow: none;
	outline: none;
	margin-bottom: 15px;
}

.form-control::-webkit-input-placeholder {
	color: #d2cfcf;
}

.form-control:focus {
	box-shadow: none;
	outline: none;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
}

textarea.form-control {
	height: 131px;
	resize: none;
	padding: 20px 30px;
}

/*** ***/
.footer {
	background: linear-gradient(105deg, #641EBD 2.67%, #02004A 95.79%), linear-gradient(129deg, #004593 -0.19%, #001124 97.21%);
	padding: 40px 0px 0px 0px;
}

.footer label {
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}

.footer .form-control {
	height: 48px;
	background: rgba(255, 255, 255, 0.10);
	font-size: 16px;
	color: #fff;
	border-radius: 60px;
	margin: 0;
}

.footer .submit:hover {
	background: #fff;
	color: #1C73D6;
}

.footer .submit {
	line-height: 48px;
	background: rgba(255, 255, 255, 0.10);
	font-size: 16px;
	color: #fff;
	border-radius: 60px;
	border-radius: 60px;
	background: #1C73D6;
	box-shadow: 0px 10px 18px -10px #140268;
	min-width: 100px;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	text-align: center !important;
}

.footer ul li {
	display: inline-block;
	margin-left: 40px;
}

.footer ul li a {
	font-size: 18px;
	color: #fff;
}

.footer ul li a:hover {
	opacity: .5;
}

.footer .social {
	margin-top: 20px;
	text-align: right !important;
}

.footer .social a {
	margin-left: 20px;
}

.footer .social a:hover {
	opacity: .7;
}

.copyrights {
	margin-top: 30px;
	padding: 20px 0px;
	border-top: solid 1px rgba(255, 255, 255, 0.20);
}

.copyrights>div {
	padding: 0;
}

.copyrights p {
	color: #fff;
	font-size: 18px;
	opacity: 0.8;
}

.copyrights ul {
	margin: 0;
	padding: 0;
}

.copyrights ul li {
	display: inline-block;
	margin: 0px 0px 0px 30px;
	width: auto;
}

.copyrights ul li a {
	display: inline-block;
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, .6);
}

.copyrights ul li a:hover {
	color: #fff;
}

/*** ***/
.page-banner {
	position: relative;
	background: linear-gradient(260deg, #641EBD -13.06%, #02004A 103.7%);
	padding: 160px 0px 200px 0px;
}

.page-banner .art1 {
	position: absolute;
	top: 0px;
	left: 0;
	max-width: 17%;
}

.page-banner .art2 {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 40%;
}

.page-banner .shape {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 120px;
}

.page-banner p {
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
}

.page-banner p i {
	color: #fff;
	font-size: 14px;
	margin: 0px 10px 0px 15px;
}

.page-banner p a {
	color: #fff;
	font-weight: 400;
}

/*** ***/
.ourmission {
	padding: 60px 0px 50px 0px;
}

.ourmission .section-title {
	padding-right: 75px;
}

.ourmission h5 {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 25px;
}

.ourmission .bgs {
	border-radius: 12px;
	background: #FFF;
	padding: 35px 40px;
	box-shadow: 0px 20px 36px -24px rgba(0, 30, 64, 0.24);
	border: 1px solid rgba(99, 139, 184, 0.20);
}

.ourmission .mission-text {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.ourmission .mission-text .img {
	border-right: 2px solid #898C49;
	padding: 10px 0px;
	padding-right: 24px;
	margin-right: 20px;
}

.ourmission .mission-text .img.t2 {
	border-color: #1C73D6;
}

.ourmission .mission-text .img.t3 {
	border-color: #F26649;
}

/*** ***/
.our-story {
	padding: 110px 0px 80px 0px;
}

.our-story .quote {
	display: flex;
	align-items: start;
	padding-top: 10px;
}

.our-story .quote>img {
	height: 20px;
}

.our-story .quote .text {
	border-left: 1px solid rgba(242, 102, 73, 0.50);
	padding-left: 24px;
	margin-left: 20px;
}

.our-story .quote h5 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.our-story .nami {
	color: #011429;
	font-size: 18px;
	font-weight: 600;
	opacity: 1;
}

.our-story .nami span {
	font-weight: 400;
	opacity: 0.6;
}

.our-story .nami span.social {
	opacity: 1;
	position: relative;
	top: -27px;
	margin-left: 8px;
}

.our-story .nami span.social a {
	margin-right: 10px;
}

/**/
.info-scribble {
	background: linear-gradient(0deg, #F1EFF6 0%, #F1EFF6 100%), rgba(225, 235, 246, 0.50);
	padding: 20px 0px;
}

/**/
.faq {
	padding: 70px 0px 70px 0px;
}

.faq .accordion p {
	opacity: 0.8;
	font-size: 18px;
	line-height: 1.8;
}

.accordion-item {
	background: none;
	border: none;
	border-radius: 0px !important;
	border-bottom: 1px solid rgba(99, 139, 184, 0.20);
}

.accordion-button {
	padding: 25px 0px;
	background: none;
	color: #011429;
	border-radius: 0px !important;
	box-shadow: none !important;
	font-size: 18px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
}

.accordion-body {
	padding: 0px 0px 20px 0px;
	border: none !important;
}

.accordion-button:after {
	background: url(../img/arrow-down.svg) 50% 50% no-repeat;
}

.accordion-button:not(.collapsed) {
	color: #011429;
	background: none;
	border: none !important;
}

.accordion-button:not(.collapsed)::after {
	background: url(../img/arrow-down.svg) 50% 50% no-repeat;
}

.ourmission .bgs {
	border-radius: 12px;
	background: #FFF url(../img/bg-mission-art.png) top right no-repeat;
	padding: 35px 40px;
	box-shadow: 0px 20px 36px -24px rgba(0, 30, 64, 0.24);
	border: 1px solid rgba(99, 139, 184, 0.20);
}


.uniqueness .table th:nth-child(2) {
	border-bottom: 2px solid rgba(99, 139, 184, 0.20);
	border-radius: 12px 12px 0px 0px;
	background: rgba(241, 239, 246, 0.50);
}


.uniqueness .table td:nth-child(2) {
	border-bottom: 2px solid rgba(99, 139, 184, 0.20);
	background: rgba(241, 239, 246, 0.50);
}

.uniqueness .table tr:last-child td:nth-child(2) {
	border-radius: 0px 0px 12px 12px;
}


input.wpcf7-form-control.wpcf7-not-valid{
	border: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output{
	display:none !important;
}
.wpcf7 form .wpcf7-response-output{
	display:inline-block !important;
	color:#fff;
}

ul#primary-menu li.current-menu-item a{
	color: #fff !important;
	font-weight: 700;
}

.header .navbar {
	backdrop-filter: blur(10px);
}

.challenges .section-title h2 {
	position: relative;
	left: -4px;
}

.challenges .table tr.active {
	box-shadow: 0px 0px 5px 0px rgba(0, 30, 64, 0.40);
	border-radius: 12px;
}

.challenges .table tr.active td {
	color: #011429 !important;
	opacity: 1 !important;
}

.challenges .table tr.active td:first-child {
	font-weight: bold;
}

.challenges .table tr.active td .bgcolor {
	width: 20px;
	height: 20px;
}

.header.fixed {
	z-index: 99999;
	position: fixed;
	top: 10px;
	left: 0;
}

.our-story figure {
	border-radius: 10px;
	height: 100%;
	margin: 0;
	width: 100%;
	min-height: 600px;
}

.footer .submit {
	background: #fff;
	color: #011429;
}

.footer .submit:hover {
	background: #011429;
	color: #fff;
}

.benefits .benefitcard label{
	font-size: 15px;
}

section.footer .logo img{
	max-height:130px;
}