@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
/*** GENERIC CSS ***/
html,body {
	height: 100%;
}

body {
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	color: #081833;
}


@font-face {
	font-family: 'FontAwesome';
	src: url('../fonts/fontawesome-webfont.eot');
	src: url('../fonts/fontawesome-webfontd41d.eot?#iefix') format('embedded-opentype'),
		url('../fonts/fontawesome-webfont.woff2') format('woff2'),
		url('../fonts/fontawesome-webfont.woff') format('woff'),
		url('../fonts/fontawesome-webfont.ttf') format('truetype'),
		url('../fonts/fontawesome-webfont.svg#fontawesome-webfont') format('svg');
	font-weight: normal;
	font-style: normal;
}

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

a:hover {
	text-decoration: none;
	color: #24a9e2;
}

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: 'Inter', sans-serif;
	color: #081833;
}

h1 {
	font-size:56px;
	line-height: 1.3;
	font-family: "DM Sans", sans-serif;
	font-weight: bold;
}

h2 {
	font-size: 48px;
	line-height: 1.4;
}

h3 {
	font-size:26px;
	line-height: 1.5;
}

h4 {
	font-size:18px;
	line-height: 1.5;
}

h5 {
	font-size:24px;
	line-height: 1.5;
}

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

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

p {
	font-size: 16px;
	line-height: 1.6;
	color: #656a73;
	margin-bottom: 15px;
}

p.black {
	color: #081833;
}


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

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

.visible-xs {
	display: none;
}

.btn-default {
	display: inline-block;
	border: none;
	font-size: 16px;
	padding:0px 25px;
	line-height: 60px;
	border-radius: 0px;
	min-width: 190px;
	text-align: center;
	color:#081833;
	font-weight: bold;
	position: relative;
	background: url(../img/bg-btn.svg) 50% 50% no-repeat;
	background-size: contain;
}

.btn-default:hover,
.btn-default.active {
	background: url(../img/btn-btn-blue.svg) 50% 50% no-repeat;
	background-size: contain;
	color: #fff;
}

.btn-default.darkblue {
	background: url(../img/bg-btn-darkblue.svg) 50% 50% no-repeat;
	background-size: contain;
	color: #fff;
}

.btn-default.lg {
	font-weight: bold;
	padding: 16px 20px;
	min-width: 270px;
}

.btn-default span {
	position: relative;
	z-index: 1;
}

.underlined {
	position: relative;
	display: inline-block;
}

.underlined::after {
	content:'';
	width:100px;
	background:#134db8;
	height: 4px;
	position:absolute;
	top:100%;
	left: 0%;
}

.section-title h6 {
	font-size: 21px;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0px;
	margin-bottom: 0px;
	color: #000;
	position: relative;
}

.section-title.lg h2 {
	font-size: 56px;
}

.section-title.white h2,
.section-title.white h6 {
	color:#fff;
}

.section-title.white p {
	color: #fff;
	opacity: .8;
}

.section-title.white hr {
	border-color: #fff;
}

.section-title hr {
	width: 50px;
	height: 0.5px;
	border-color: #000;
	margin-top: 35px;
	margin-bottom: 35px;
	display: inline-block;
}

.section-title h2 {
	line-height: 1.3;
	font-weight: 600;
	font-size: 37px;
	margin-top: 0;
	font-family: "DM Sans", sans-serif;
}

.section-title h2 span {
	position: relative;
}

.section-title h2 span img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/*** 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 #134db8;
	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);
}

/*** HEADER ***/
.header {
	top: 0;
	left: 0;
	width: 100%;
	position: relative;
	z-index: 9;
}

.navbar {
	padding:10px 15px;
}

.header .navbar-nav .nav-item {
	margin-left: 20px;
}

.header .navbar-nav .nav-link {
	padding: 0px 0px;
	color: inherit;
	position: relative;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color:#000;
	text-align: left;
	padding:10px 15px;
}

.header .navbar-nav .nav-link.bt {
	border: none;
	padding:0px 25px;
	line-height: 60px;
	border-radius: 0px;
	margin-left: 10px;
	min-width: 190px;
	text-align: center;
	color:#081833;
	font-weight: bold;
	position: relative;
	background: url(../img/bg-btn.svg) 50% 50% no-repeat;
	background-size: cover;
}

.header .navbar-nav .nav-link.bt:hover {
	background: url(../img/bg-btn-black.svg) 50% 50% no-repeat;
	background-size: cover;
	color: #fff;
}

.navbar-brand img {
	max-height: 50px;
	margin-left: 0px;
}

.navbar-brand a:first-child {
	border-right: 1px solid #656a73;
	padding: 3px 0px;
	padding-right: 20px;
	margin-right: 20px;
}

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

.dropdown-toggle::after {
	display:none;
}

.dropdown-menu {
	border:none;
	padding:5px 2px;
	background:#c29b40;
	border-radius:0px;
	margin:0px;
	left:1px;
	background-color: rgba(26, 26, 26, .75);
	max-width: 300px;
}

.dropdown-menu>li {
	padding: 15px 13px;
}

.dropdown-menu a {
	color:#fff;
	display:inline-block;
	font-size:14px;
	line-height: 1;
	letter-spacing: 1.5px;
	padding: 0;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

.dropdown-menu a:hover {
	background:none;
	color:#fff;
}

.nav-item.dropdown:hover .dropdown-menu.sub-menu {
	display:block;
}

.dropdown-menu a:before {
	content: '';
	position: absolute;
	display: block;
	height: 1px;
	background-color: #c6c6c6;
	width: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.dropdown-menu a:hover:before {
	width: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

a:hover, button:hover {
	cursor: pointer;
}

.menu-btn {
	height:44px;
	width:44px;
	border-radius:100%;
	display:inline-block;
	padding: 9px 9px 13px 9px;
	line-height: 4px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu-btn:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.menu-btn:hover span {
	background:#fff;
}

.menu-btn span {
	height: 2px;
	background: #fff;
	display: inline-block;
	margin: 3.5px 0px;
}

.side-menu {
	background:#fff;
	position:fixed;
	top:0px;
	right:-140%;
	width: 400px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height:100%;
	z-index:99999;
}

.side-menu.intro {
	right:0px;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid #f2f2f2;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
	overflow:hidden;
	overflow-y:scroll;
	height:70%;
	width:100%;
	padding-left: 40px;
	padding-right: 40px;
}

.side-menu ul.main-menu li a {
	display: inline-block;
	padding: 10px;
	border: none;
	border-radius: 0;
	background: transparent;
	text-transform: none;
	-webkit-transition: all .25s;
	transition: all .25s;
	cursor: pointer;
	color: inherit;
	color:#000;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	width: 100%;
	font-size: 21px;
	line-height: 1.333333;
}

.side-menu ul.main-menu li a:hover {
	background:none;
}

ul.SubMenu {
	padding-left:0px !important;
	display:none;
}

ul.SubMenu li a {
	font-size:14px !important;
	padding:8px 35px!important;
	border:none!important;
}

ul.SubMenu.active {
	display:block;
}

a.CloseBtn {
	float:right;
	color:#000;
	font-size:26px;
	margin:25px 26px 5px 15px;
	position: relative;
}

a.CloseBtn:before,
a.CloseBtn:after {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	left: 50%;
	top: 50%;
}

a.CloseBtn:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

a.CloseBtn:after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-moz-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar-nav {
	height: 70px;
	align-items: center;
}

.header.scrolled {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	margin-top: 0;
}

.banner {
	position: relative;
	background-size: cover;
	padding: 100px 0px 180px 0px;
}

.banner h1 {
	padding-right: 65px;
}

.banner .art-1 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.banner-img {
	position: absolute;
	bottom: -6%;
	right: 0;
	width: 54%;
}

.banner-img .al {
	position: absolute;
	left: -13%;
	bottom: 30%;
}

.banner .btn-default {
	margin-right: 10px;
}

.banner p {
	margin: 20px 0px 30px 0px;
}

.zindex {
	position: relative;
	z-index: 3;
}

.h-100vh {
	height: 100vh;
}
@media (min-width: 1200px) {
	.container {
		max-width: 1400px;
	}

}

.products {
	background: url(../img/bg-products.png) 50% 50% no-repeat;
	background-size: 100% 100%;
	padding: 40px 0px 50px 0px;
	position: relative;
}

.productbox {
	background: #fff;
	border-radius: 8px;
	height: 100%;
	padding: 35px 35px;
}

.productbox h6 {
	text-transform: uppercase;
	font-size:14px;
	font-weight: bold;
	margin-bottom: 28px;
}

.productbox p {
	font-size:14px;
	margin: 17px 0px 30px 0px;
	color: #081833;
	opacity: .9;
}

.see:hover {
	color: #081833;
}

.see {
	display: inline-block;
	font-size:16px;
	color: #081833;
	font-weight: 600;
	border-bottom:1px solid #081833;
}

.see img {
	margin-left: 2px;
}

.products .spr>div {
	margin-bottom: 20px;
}

/**/
.logos {
	border-top: 1px solid rgba(8,24,51,.5);
	padding-top: 50px;
	margin-top: 40px;
}

.logos .item {
	text-align: center;
}

.logos .item>div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
}

.logos .item span {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
}

.slick-slide img {
	display: inline-block;
	opacity: .7;
}

.banner .art-1 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
}

/**/
.info {
	position: relative;
	background: #fffdf4;
	padding: 150px 0px 35px 0px;
}

.info .art-1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

.info .spright {
	padding-right: 120px;
	padding-top: 45px;
}

.sbox {
	border-radius: 5px;
	background: #fffffd;
	padding: 10px 15px;
}

.sbox span {
	display: inline-block;
	width: 100%;
	font-size: 22px;
	font-weight: bold;
	margin-top: 15px;
}

.clientslider .al {
	position: absolute;
	bottom: -25px;
	left: 17%;
}

.clientslider .bgs {
	background: #edf0f5;
	padding: 60px 55px 75px 55px;
	border-radius: 15px;
}

.clientslider .bg {
	background: #fff;
	padding: 55px 45px 40px 45px;
	border-radius: 5px;
	position: relative;
}

.clientslider .als {
	position: absolute;
	bottom: -25px;
	right: -40px;
}

.clientslider .bg .img {
	opacity: .3;
	margin-bottom: 40px;
}

.clientslider .bg h4 {
	font-size: 28px;
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 10px;
}

.clientslider .bg h6 {
	font-size: 16px;
	font-weight: 500;
	margin-top: 30px;
}

.clientslider .bg h6 span {
	position: relative;
	z-index: 5;
	font-size: 12px;
	font-weight: 400;
}

.clientslider .section-title h2 {
	font-size: 30px;
}

.clientslider .section-title h2 span  {
	z-index: 5;
	font-size: 37px;
}

.clientslider .section-title h2 span img {
	z-index: -1;
	bottom: -10px;
	left: -5px;
}

.clientslider {
	position: relative;
	overflow: hidden;
	z-index: 4;
}

.clientslider .owl-theme .owl-nav [class*=owl-] {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: url(../img/arrow-left.svg) 50% 50% no-repeat;
	background-size: contain;
	position: absolute;
	top: 45%;
	left: -30px;
}

.clientslider .owl-theme .owl-nav [class*=owl-]:hover {
	background: url(../img/arrow-left-hover.svg) 50% 50% no-repeat;
	background-size: contain;
}

.clientslider .owl-theme .owl-nav [class*=owl-] span {
	overflow: hidden;
	text-indent: -9999px;
	display: inline-block;
}

.clientslider .owl-theme .owl-nav [class*=owl-].owl-next {
	left: auto;
	right: -30px;
	background: url(../img/arrow-right.svg) 50% 50% no-repeat;
	background-size: contain;
}

.clientslider .owl-theme .owl-nav [class*=owl-].owl-next:hover {
	background: url(../img/arrow-right-hover.svg) 50% 50% no-repeat;
	background-size: contain;
}

.latest-version {
	position: relative;
	background: #4d89f9;
	padding: 350px 0px 0px 0px;
	margin-top: -280px;
}

.section-title h2 span.gradient {
	background: linear-gradient(to right, #081833 0%, #174799 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.latest-version .art-1 {
	position: absolute;
	top: -60px;
	left: 0;
	width: 100%;
	height: 60px;
}

.latest-version .art-2 {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	z-index: 3;
}


.solutions {
	overflow: hidden;
	padding: 90px 0px;
}

.solutions .section-title h2 span  {
	z-index: 5;
}

.solutions .section-title h2 span img {
	z-index: -1;
	bottom: 0px;
	left: -5px;
}

.solutions .al {
	position: absolute;
	top: -23px;
	right: -50px;
}

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

.solutions .nav-tabs {
	border-bottom: none;
	border-left: 1px solid #dee2e6;
}

.solutions .nav-tabs li:last-child {
	padding-bottom: 0px;
}

.solutions .nav-tabs li {
	width: 100%;
	margin: 0;
	padding-bottom: 40px;
}

.solutions .nav-tabs li button {
	display: inline-block;
	width: 100%;
	margin: 0;
	text-align: left;
	background: none;
	border-radius: 0;
	padding-left: 25px;
	position: relative;
}

.solutions .nav-tabs li button .arrow {
	display: none;
}

.solutions .nav-tabs li button.active .arrow {
	position: absolute;
	top: 50%;
	transform: translate(0px, -50%);
	right: -100px;
	display: block;
}

.solutions .nav-tabs li button.active::before {
	content: '';
	position: absolute;
	left: -1px;
	width: 3px;
	height: 100%;
	background: #19c17d;
}

.solutions .nav-tabs li button h3 {
	font-family: "DM Sans", sans-serif;
	color: rgba(8,24,51,.5);
	font-weight: bold;
}

.solutions .nav-tabs li button.active h3 {
	color: #081833;
}

.solutions .nav-tabs li button.active h3 span {
	color: #19c17d;
}

.solutions .nav-tabs li button p,
.solutions .nav-tabs li button .see {
	display: none;
}

.solutions .nav-tabs li button.active p,
.solutions .nav-tabs li button.active .see {
	display: inline-block;
}

.sinfos h4 {
	color:#081833;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.sinfos p {
	min-height: 120px;
}


.sinfos h4 img {
	margin-right: 10px;
}


/**/
.footer {
	background: #081833;
	padding: 70px 0px 0px 0px;
}

.footer ul {
	padding: 0px;
	margin-top: 40px;
	margin-bottom: 50px;
}

.footer ul li {
	list-style: none;
	display: inline-block;
	padding: 0px 50px;
}

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

.footer ul li a:hover {
	color:#ff9933;
}


/**/
.copyright {
	padding: 25px 0px 30px 0px;
	border-top: 1px solid #f1d547;
}

.copyright>div {
	padding: 0;
}

.copyright p {
	color: #fff;
	opacity: .7;
	font-size: 16px;
	margin: 0;
}

.copyright p a {
	display: inline-block;
	margin-left: 50px;
}

.copyright p img {
	filter: invert(1);
	width: 140px;
	padding-left: 10px;
}

section.solutions.single{
	padding-top:0px;
}

.formmodal .modal-header {
	background: #4d89f9;
}

.formmodal .modal-header .logo {
}

.modal {
	padding: 0px !important;
}

.modal .modal-content {
	border: none;
	border-radius: 100px 20px 100px 20px;
}

.formmodal .modal-header {
	padding: 30px 15px;
}

.contform {
	padding: 45px 80px 55px 80px;
}

.modal .logo {
	max-width: 180px;
	display: inline-block;
}

.modal .close {
	position: absolute;
	top: -10px;
	right: -10px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	opacity: 1;
	text-shadow: none;
	background: #4d89f9;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	font-size: 32px;
	padding-bottom: 3px;
	z-index: 99;
}

.modal .close:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}

.contform .form-control {
	background: none;
	border: 0px;
	border-radius: 0px;
	padding: 0px 3px;
	border: 1px solid #000;
	color: #000;
	margin-bottom: 20px;
	height: 50px;
	letter-spacing: 0;
	font-size: 15px;
	padding: 10px 15px;
	outline: none !important;
	box-shadow: none !important;
}

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

.contform textarea.form-control {
	resize: none;
	padding-top: 17px;
	height: 140px;
	border-radius: 0px;
}

.btn-default.active:hover {
	background: url(../img/bg-btn.svg) 50% 50% no-repeat;
	background-size: contain;
	color: #081833;
}

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

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;
}