/* Google Web Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*** GENERAL ***/	
	:root {
		--color-first: #001361;
		--color-second: #EAC46F;
		--color-content: #373737;
		--color-black: #000;
		--light: #f5f5f5;
		--bg-light1: #fff7e4;
		--dark: #000000;
		--bs-sec-rgb:0,2,27;
		--font-family: "Inter", sans-serif;
		--shadow: 0 1px 2px 0 rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .13);
	}
*, ::after, ::before{ box-sizing: border-box; }
* {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	letter-spacing: 0;
	line-height: normal;
	color: var(--color-content);
	text-transform: none;
}
body{padding-bottom:58px;}
textarea{resize: none;}
ul.list li{list-style: disc;margin: 5px;}
/*color & Bg*/
.color-first{color:var(--color-first) !important;}
.color-second{color:var(--color-second) !important;}
.color-content{color:var(--color-content) !important;}
.bg-light{background-color:var(--light) !important;}
.bg-first, .bg-first:hover{background:var(--color-first);}
.btn.bg-first:hover{background:var(--color-second);}
.bg-second, .bg-second:hover{background:var(--color-second);}
.min-vh-50{min-height: 50vh !important;}
.bg-white-opacity{background: rgba(256, 256, 256, 0.1);}
/*.gradient-1 {
	background: #EAF6FF;
	background: -webkit-radial-gradient(circle at center, #EAF6FF, #F8F9FF, #FCEFFF);
	background: -moz-radial-gradient(circle at center, #EAF6FF, #F8F9FF, #FCEFFF);
	background: -o-radial-gradient(circle at center, #EAF6FF, #F8F9FF, #FCEFFF);
	background: radial-gradient(circle at center, #EAF6FF, #F8F9FF, #FCEFFF);
}*/
.gradient-1 {
    background: #000000; /* fallback for older browsers */
    background: -webkit-linear-gradient(top, #000000 0%, #00134e 30%, #0033a1 55%, #007aff 80%, #b2dfff 100%);
    background: -moz-linear-gradient(top, #000000 0%, #00134e 30%, #0033a1 55%, #007aff 80%, #b2dfff 100%);
    background: -o-linear-gradient(top, #000000 0%, #00134e 30%, #0033a1 55%, #007aff 80%, #b2dfff 100%);
    background: -ms-linear-gradient(top, #000000 0%, #00134e 30%, #0033a1 55%, #007aff 80%, #b2dfff 100%);
    background: linear-gradient(to bottom, #000000 0%, #00134e 30%, #0033a1 55%, #007aff 80%, #b2dfff 100%);
}
.gradient-2 {
	background: #edfefd;
	background: -moz-linear-gradient(310deg, #edfefd -12.07%, #fff7e4 58.2%);
	background: -webkit-linear-gradient(310deg, #edfefd -12.07%, #fff7e4 58.2%);
	background: -o-linear-gradient(310deg, #edfefd -12.07%, #fff7e4 58.2%);
	background: -ms-linear-gradient(310deg, #edfefd -12.07%, #fff7e4 58.2%);
}
.blue-abstract-bg{
	background: url(../img/dark-blue-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.blue-abstract-bg2{
	background: url(../img/blue-bg.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
/*color end*/

/*HEADING STYLE*/
.mainHeading{
	font-size:2.8rem;
	font-weight:700;
	line-height:1.2;
	color:var(--color-first);
	font-family: var(--font-family);
}
.largeHeading{
	font-size:2.2rem;
	font-weight:600;
	line-height:1.3;
	color:var(--color-first);
	font-family: var(--font-family);
}
.subHeading {
	font-size: 1.4rem;
	color: var(--color-content);
	font-family: var(--font-family);
	font-weight: 600;
}
.thirdHeading {
	font-size: 1.2rem;
	color: var(--color-content);
	font-family: var(--font-family);
	font-weight: 600;
	line-height: 1.3;
}
p {
	font-weight: 400;
	color: var(--color-content);
	font-size: 1rem;
	line-height: 1.6;
	font-family: var(--font-family);
}
/*HEADING STYLE*/

/*BUTTON STYLE*/
.btn-first, .btn-second {
	cursor: pointer;
	text-decoration: none !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	text-align: center;
	overflow: hidden;
	font-size: var(--font-family);
	font-weight: 500 !important;
	line-height: normal !important;
	text-transform: capitalize;
	border: 1px solid transparent;
	border-radius: 50px;
	padding: 6px 24px;
	min-height: 40px;
	outline: none !important;
	box-shadow: none !important;
	transition: all 0.7s ease;
}
.btn-first svg path, .btn-second svg path {transition: all 0.7s ease;}
.btn-first {color: #FFFFFF !important;background-color: var(--color-second);}
.btn-first:hover {background-color: var(--color-first);}
.btn-second {color: var(--color-second) !important; border-color: var(--color-second);background-color: transparent;}
.btn-second:hover {color: #FFFFFF !important;background-color: var(--color-first);border-color: transparent;}
.btn-second svg path {fill: var(--color-second) !important;}
.btn-first svg path, .btn-second:hover svg path {fill: #FFFFFF !important;}
.no-bg-btn {
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
	outline: none !important;
	box-shadow: none !important;
}
/*BUTTON STYLE end*/

/*header*/
header{background:#fff;}
header .logo {width:250px;}
header .form-control{border: 1px solid var(--color-first);height:32px;}
header .form-control:focus, .btn{box-shadow:none;outline:none;border: none;}
.header-right-side ul.navbar-nav {flex-direction: row;}
header .navbar-nav .nav-item {padding: 0 12px;text-align: center;}
header .navbar-nav .nav-item:last-child {padding-right: 0;}
header .navbar-nav .nav-item .nav-link {font-size: 1rem;font-weight:500;color:var(--color-first);}
header .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{color: var(--color-second) !important;}
.mySidenav {
box-shadow: 0 2px 4px 0 rgba(26, 26, 26, .18), 0 0 12px 0 rgba(26, 26, 26, .06);
--slide-animation: e-slide-top;
position: absolute;
top: 100%;
min-width: 184px;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
z-index: 2;
}
.mySidenav {
margin-top: 12px;
right: -12px;
color: var(--color-text-primary);
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
background-color:var(--color-first);
overflow-x: hidden;
transition: .5s
}
.sidenav .dropdown-menu{
background: transparent;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 16px;
line-height: 1.5;
font-weight: 500;
color: #fff;
display: block;
transition: .3s
}
.sidenav .search-home-page a{ 
border: 1px solid var(--color-second);
padding:0.25rem 0.50rem;
border-radius: 9999px;
margin:0 15px;
text-align:center;
}
.sidenav .dropdown-menu a{
padding: 2px;
color: var(--color-first);
padding-left: 10px;
}
.sidenav a:hover,.sidenav a:focus { color: #fff }
.sidenav .closebtn {
position: absolute;
top: 15px;
right: 5px;
}
.sidenav-padding { padding-top: 40px; }
.menu-icon {
font-size: 25px;
color: var(--color-first);
cursor: pointer;
}
/*header end*/

/*footer*/
.footer-links-ul {list-style-type: none;}
.footer-links {
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}
/*footer end*/

/*HOME PAGE*/
.featuresHeading{
	font-size: 4rem;
	font-weight:700;
	line-height:1.2;
	color:var(--color-first);
	font-family: var(--font-family);
}
.carousel-img-area {position: relative;}
.carousel-img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: center;
	margin: 0;
}
.carousel-img-area .video-btn{
	cursor: pointer;
	text-align: center;
	position:  absolute;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	margin: auto;
	padding: 14px 28px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	border: none !important;
	border-radius: 50px;
	width: fit-content;
	height: fit-content;
	background: linear-gradient(345deg, #d9a328 30%, var(--color-second));
	outline: none !important;
}
.carousel-img-area .video-btn:hover {transform: scale(1.03);}
.carousel-ul {list-style-type: none;}
.modal-btn-close {
	position: absolute;
	top: -15px;
	left: auto;
	right: -30px;
	font-size: 10px;
	font-weight: 500;
	opacity: 1;
	outline: none;
	box-shadow: none;
}
.features-img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	object-position: center;
	border-radius: 100px;
	margin: 0 auto;
}
.bg-color1 {background: linear-gradient(to top, var(--color-first) 40%, transparent 40%);}
.card-shadow {box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.12);}
	/*POINTER */
		.pointer-section{
			background-color: var(--color-first);
			background-image: url(../img/bg-img.svg);
			background-size: cover;
			background-repeat: no-repeat;
			background-position:right top; 
			position: relative;
		}
		/*.svg-Bg{position:absolute;left:0;right:0;bottom:0;width:100%; }*/
	/*icons with pointers */
		.listBlockContent{padding-left: 0;display: flex; align-items: center; border-radius: 10px;
		    border: 2px solid var(--color-second);background: #fff;}
		.listBlockContent li span{
		    width: 40px;
		    height: 40px;
		    display: inline-block;
		    line-height: 35px;
		    text-align: center;
		    color: #fff;
		    font-size: 20px;
		    font-weight: bold;
		}
		.listBlockContent li span.activateImg {width: 100px;height: 100px;margin-left: -40px;border-radius: 10px;}
		.listBlockContent li span.activateImg svg{fill: var(--color-first);}
		.listBlockContent li{list-style: none;margin-right: 20px;		}
/*HOME PAGE END*/
/*faq */
    .accordion-button:not(.collapsed){background: #fff;}
    .accordion-button:not(.collapsed) h6{color: var(--color-first);}
    .accordion-button:focus{border: none;outline: none;box-shadow: none;}
    .accordion-item{border-left: 0;border-right: 0;border-top: 0}
/*faq end*/
/*Integration */
	.custom-solution-box img {
	    margin: 18px auto 18px;
	    text-align: center;
	    width: auto;
	    height:90px;
	}
	.offerings-box{border-right:0.01px solid rgba(229, 231, 235,0.2);border-bottom:0.01px solid rgba(229, 231, 235,0.2);}
	.offerings-box img{height: 40px}
	.offerings-boxes .col:nth-child(1) .offerings-box{border-top-left-radius: 10px;}
	.offerings-boxes .col:nth-child(3) .offerings-box{border-top-right-radius: 10px;}
	.offerings-boxes .col:nth-child(4) .offerings-box{border-bottom-left-radius: 10px;}
	.offerings-boxes .col:nth-child(6) .offerings-box{border-bottom-right-radius: 10px;}
/*Integration end*/
/*code */
	.code-docs {
	    display: flex;
	    flex-direction: column;
	    border-radius: 8px;
	    position: relative;
	    border: .5px solid #ececf1;
	    background: linear-gradient( 45deg, #f7f7f8 0%, rgba(247, 247, 248, 1) 100% );
	    margin: 20px 0;
	}
	.code-docs-header {
	    display: flex;
	    align-items: center;
	    padding: 4px 8px 4px 14px;
	    border-top-left-radius: 8px;
	    border-top-right-radius: 8px;
	    overflow: auto;
	    flex-shrink: 0;
	    border-bottom: .5px solid var(--divider);
	    gap: 4px;
	}
	.code-docs-title {
	    flex: 1 1 auto;
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    margin-right: 12px;
	    color: var(--color-first);
	    font-weight: 400;
	    font-size: 12px;
	    letter-spacing:0;
	    line-height: 20px;
	}
	.code-docs-body {
	    flex-grow: 1;
	    flex-shrink: 0;
	    position: relative;
	}
	.code-docs-body code {font-family: monospace;}
	.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string{background: transparent !important;}
	.termsbox {
	    height: 250px;
	    padding: 20px;
	    overflow-x: hidden;
	    overflow-y: scroll;
	}
/*========== @media screen  ================================*/
@media screen and (max-width: 1024px) {
	.mainHeading{font-size:2.6rem;}
	.largeHeading{font-size:2rem;}
	.mainHeading, .about-section .mainHeading {font-size: 2rem;}
	header .logo {width:200px;}
	.featuresHeading{font-size: 3.6rem;}

}
@media screen and (max-width: 991px) {
	.mainHeading{font-size:2.4rem;}
	.largeHeading{font-size:1.8rem;}
	.subHeading {font-size: 1.2rem;}
	.thirdHeading {font-size: 1.1rem;}
	p {font-size: 15px;}
	.header-right-side-web-menu {display: none;}
	.featuresHeading{font-size: 2.6rem;}
	.card-shadow .subHeading {font-size: 1rem;}
	.card-shadow p {font-size: 13px;}

}
@media screen and (max-width: 767px) {
	body{padding-bottom:54px;}
	.mainHeading, .featuresHeading {font-size:1.7rem;}
	.largeHeading {font-size: 1.6rem;}
	.subHeading {font-size: 1.1rem;}
	.thirdHeading {font-size: 1rem;}
	p {font-size: 14px;}
	.header-area {flex-wrap: wrap;}
	.footer-links {font-size: 13px;}
	.card-shadow .subHeading {font-size: 0.9rem;}
	.bg-color1 {background: linear-gradient(to top, var(--color-first) 60%, transparent 60%);}
	.modal-btn-close {top: -30px;font-size: 8px;right: 0;}
}
@media only screen and (max-width: 550px){
    .listBlockContent li span.activateImg{margin-left: 0;}
    .listBlockContent{display: block;}
}