:root{
	--primary-color				: #111111;
	--secondary-color			: #F0F2F4;
	--text-color				: #333333;
	--accent-color				: #06378f;
	--accent-secondary-color	: #00a651;
	--white-color				: #FFFFFF;
	--divider-color				: #1111111A;
	--dark-divider-color		: #FFFFFF10;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Poppins", sans-serif;

}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.1em;
	color: var(--text-color);
    background: var(--white-color);
}

/*::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(180deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);

}*/

/*::selection{
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}*/

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1400px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.flowmap-effect{
    position: relative;
}

.flowmap-effect .flowmap-deformation{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-border-radius: inherit;
	border-radius: inherit;
}

.flowmap-effect .flowmap-deformation.active canvas{
	opacity: 1;
}

.flowmap-effect .flowmap-deformation canvas{
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 0.3s 0.3s;
	transition: opacity 0.3s 0.3s;
	-webkit-border-radius: inherit;
	border-radius: inherit;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
	line-height: 1em;
    text-transform: capitalize;
    padding: 17px 40px 17px 20px;
    border: none;
	outline: none;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover{
	background-position: right center;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 20px;
	width: 10px;
	height: 10px;
	background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before{
	background: linear-gradient(90.01deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(90.01deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    transform: translate(-50%, -50%);
    background: var(--white-color);
    border-radius: 50px;
    padding: 10px;
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	width: 100%;
	max-width: 1560px;
    background-color: var(--secondary-color);
	background-image: url('../images/section-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	margin: 0 auto;
}

.dark-section{
	background-color: var(--primary-color);
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content p{
    margin-bottom: 20px;
}

.section-title-content p:last-child{
    margin-bottom: 0;	
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 20px;
}

.section-title{
    margin-bottom: 40px;
}

.section-title.section-title-center{
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 500;
	line-height: 1.2em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	background-image: url('../images/icon-sparkle.svg');
	background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px auto;
	padding-left: 26px;
    margin-bottom: 20px;
}
.hero-content .section-title h1 {
    margin-bottom: 30px;
    line-height: 60px;
    font-weight: 500;
    font-size: 50px;
}
.efabric-banner .hero-content .section-title h1 {
	font-size: 48px;
}
.hero-content .section-title h1 i {
    font-style: normal;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 6px;
}
.section-title h1{
	font-size: 60px;
	line-height: 1.1em;
	font-weight: 600;
    letter-spacing: -0.03em;
	margin-bottom: 0;
	/* cursor: none; */
}

.section-title h2{
    font-size: 40px;
	font-weight: 600;
    letter-spacing: -0.03em;
	margin-bottom: 0;
	/* cursor: none; */
}

.section-title h1 span,
.section-title h2 span{
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.section-title h2 span{
	font-weight: 600;
}

.section-title h1:hover span,
.section-title h2:hover span{
	background-position: right center;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 28px;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

.product-servies-item {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}
.product-servies-item .icon-box {
    width: 45px;
    left: 25px;
    top: 13px;
    margin: 0 auto 10px;
}
.product-servies-item h3 {
    font-size: 16px;
    line-height: 20px;
}

.how-it-work {
    padding: 100px 0;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.main-header{
	position: fixed;
	top: 0;
	width: 100%;
    border-bottom: 1px solid var(--divider-color);
	z-index: 100;
	transition: all 0.5s ease;
}
.fixed-header .main-header {
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 60%);
}
.fixed-header .header-btn .btn-default {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 150%);
}
.main-header.dark-header-bg{
	border-color: var(--dark-divider-color);
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
	z-index: 100;
}

header.main-header .header-sticky .container-fluid{
    padding: 0;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
	padding: 0 15px;
}

.main-header.dark-header-bg .header-sticky.active{
	background: var(--primary-color);
}

.navbar{
	padding: 10px 0;
	align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 200px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	margin: 0 30px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    padding: 13px 18px !important;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-header.dark-header-bg .main-menu ul li a {
    color: var(--white-color);
    border-radius: 5px;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
    margin-top: 4px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul li a:focus-visible{
    box-shadow: none;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	width: 255px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
    background: linear-gradient(110.01deg, var(--accent-secondary-color) 0.26%, var(--accent-color) 99.99%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 225px;
}
.main-menu .nav-menu-wrapper > ul > li:nth-child(2) > ul {
    width: 256px;
}
.main-menu ul li.submenu .submenu ul {
	width: 240px;
}
.main-menu ul ul ul {
    left: 100%;
    top: -5px;
    text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    /*padding: 5px 0;*/
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}
.main-menu ul ul li.cap-font {
	margin: 0;
	padding: 0;
}
.main-menu li.submenu ul a {
    font-size: 15px;
}
.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 10px !important;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	/*padding: 6px 20px 6px 23px !important;*/
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.4s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open{
	background-position: right center;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,	
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: #ffffff;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
    background: url('../images/hero-bg-image.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 215px 0 100px;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/hero-bg-shape.svg') no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image {
    position: relative;
    background: url(../images/intro-video-image.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 30px 0;
}
.hero.efabric-banner {
    padding: 140px 0 70px;
}

.hero.hero-bg-image::before{
	display: none;
}

.hero.hero-bg-image::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
	opacity: 45%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
}

.hero-section-content{
    margin-left: 5.99vw;
}

.hero-content{
    margin-bottom: 30px;
}

.hero-content p{
    font-size: 20px;
}

.hero-content p:last-child{
    margin-bottom: 0;
}

.hero-list ul{
    display: flex;    
    flex-wrap: wrap;
    gap: 20px 60px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-list ul li{
	position: relative;
	line-height: 1.5em;
    padding-left: 30px;
}

.hero-list ul li:before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.satisfy-client-box{
	display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.satisfy-client-images{
	display: inline-flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -25px;
	z-index: 1;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
	width: 72px;
	height: 72px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.satisfy-client-image img{
    width: 100%;
	border-radius: 50%;
}

.satisfy-client-content{
    width: 38%;
}

.satisfy-client-content p{
    font-size: 18px;
	margin: 0;
}

.satisfy-client-content p span{
	font-weight: 700;
	color: var(--accent-color);
}

.hero-intro-video{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-intro-video .container-fluid{
    padding: 0;
}

.hero-video-box{
    position: relative;
	aspect-ratio: 1600 / 720;
}

.flowmap-deformation{
    display: block;
    mask-image: url('../images/intro-video-bg-shape.svg');
    background-image: url('../images/intro-video-bg-shape.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-video-box .video-play-button{
    position: absolute;
    top: 40px;
    right: 40px;
}

.video-play-button a{
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
    transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background-position: right center;
}

.video-play-button a i{
    font-size: 34px;
	color: var(--white-color);
	margin-left: 3px;
}

.hero-counter-box{
    position: absolute;
    left: 50px;
    bottom: 50px;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 20px 40px;
    width: 100%;
    max-width: 480px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 20px;
	z-index: 1;
}

.hero-counter-image{
    position: relative;
    width: calc(41% - 20px);
}

.hero-counter-image figure{
    display: block;
    border-radius: 20px;
}

.hero-counter-image figure img{
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    filter: brightness(60%);
}

.video-button-border{
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    align-content: center;
    text-align: center;
    z-index: 1;
}

.video-button-border a{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    /* cursor: none; */
}

.video-button-border a i{
    font-size: 14px;
    color: var(--white-color);
}

.video-button-border h3{
    font-size: 14px;
	text-transform: capitalize;
    color: var(--white-color);
}

.hero-counter-content{
    width: calc(59% - 20px);
}

.hero-counter-content h2{
    font-size: 48px;    
    color: var(--white-color);
    margin-bottom: 10px;
}

.hero-counter-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.hero-company-slider-box{
    position: absolute;
    bottom: 0;
    right: 70px;
	text-align: center;
    width: 100%;
    max-width: 860px;
    z-index: 1;
}

.hero-company-slider-box p{
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.company-logo img{
	width: 100%;
	max-height: 40px;
}

.hero.hero-bg-image .hero-content .hero-list ul li,
.hero.hero-bg-image .hero-content .section-title h3,
.hero.hero-bg-image .hero-content .section-title h1,
.hero.hero-bg-image .hero-content .section-title p{
	color: var(--white-color);
}

/* .hero.hero-bg-image .hero-content{
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
} */

.hero.hero-bg-image .hero-content {
    /* width: 100%; */
    max-width: 920px;
    /* margin: 0 auto; */
    /* text-align: center; */
}

.hero.hero-bg-image .hero-content .hero-list ul{
	gap: 20px 30px;
	justify-content: center;
}

.hero.hero-bg-image .hero-content .hero-list ul li{
	text-align: left;
}

.hero.hero-bg-image .hero-btn{
	display: flex;
	/* justify-content: center; */
	gap: 30px;
	margin-top: 50px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us .section-title.section-title-center{
	max-width: 890px;
}

.text-effect .line{
	width: 100%;
	color: var(--divider-color);
	background: linear-gradient(120deg, var(--primary-color), var(--primary-color)) no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	background-size: 0%;
}

.about-us-images{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.about-image-list-1,
.about-image-list-2{
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.about-image-list-1{
	align-items: end;
}

.about-us-image figure{
	display: block;
	border-radius: 10px;
}

.about-us-image figure img{
	width: 100%;
	height: auto;
}

.section-footer-text{
	margin-top: 60px;
	text-align: center;
}

.section-footer-text span{
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	line-height: 1.2em;
	padding: 3px 12px;
	border-radius: 99px;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span{
	background-position: right center;
}

.section-footer-text p{
	margin-bottom: 0;
}

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

.section-footer-text p a{
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item .icon-box,
.service-item-content{
	margin-bottom: 30px;
}

.service-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.service-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 28px;
}

.service-item-content h3 a{
	color: inherit;
}

.service-item-content p{
	margin-bottom: 0;
}

.our-services .section-footer-text{
	margin-top: 30px;
}

/************************************/
/***     07. Our Features css     ***/
/************************************/

.our-features{
	padding: 100px 0;
}

.feature-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.feature-item h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 50px;
}

.feature-item ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-item ul li{
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	line-height: 1.5em;
	padding: 8px 14px;
}

.feature-content-box{
	background: url('../images/feature-item-bg.png') no-repeat;
	background-size: auto;
	background-position: right bottom;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 50px 95px 30px;
}

.feature-content-box .icon-box{
	position: relative;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.feature-content-box:hover .icon-box{
	background-position: right center;
}

.feature-content-box .icon-box img{
	width: 100%;
	max-width: 30px;
}

.feature-content-title h3{
	font-size: 20px;
	line-height: 1.4em;
}

.feature-image-box{
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	gap: 40px;
	justify-content: space-between;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 30px 0;
	overflow: hidden;
}

.feature-image-content h3{
	font-size: 20px;
	margin-bottom: 30px;
	line-height: 1.4em;
}

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

.feature-image-content ul li{
	position: relative;
	line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.feature-image-content ul li:last-child{
	margin-bottom: 0;
}

.feature-image-content ul li:before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 17px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.feature-image{
	margin-right: -75px;
	margin-left: 70px;
	align-content: end;
}

.feature-image figure{
	display: block;
}

.feature-image img{
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.feature-counter-box{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 130px 30px 30px;
}

.feature-counter-box .icon-box{
	margin-bottom: 30px;
}

.feature-counter-content h2{
	font-size: 48px;
	margin-bottom: 10px;
}

.feature-counter-content p{
	margin-bottom: 0;
}

.feature-counter-image{
	position: absolute;
	top: 15px;
	right: 15px;
}

.feature-counter-image img{
	width: 100%;
	max-width: 210px;
}

/************************************/
/***      08. Who We Are css      ***/
/************************************/

.who-we-are {
    padding: 50px 0;
}

.who-we-are-accordion {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    /* align-items: flex-start; */
    gap: 30px;
}
.who-we-are-accordion .accordion-item {
    /*border: 1px solid var(--dark-divider-color);*/
    border-radius: 10px;
    margin-bottom: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    /* width: 48%; */
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.who-we-are-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.who-we-are-accordion .accordion-header .accordion-button{
	pointer-events: none;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2em;
	background: var(--dark-divider-color);
	color: var(--white-color);
	padding: 15px 40px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.who-we-are-accordion .accordion-header .accordion-button img{
	width: 100%;
	max-width: 40px;
	margin-right: 20px;
}

.who-we-are-accordion .accordion-button:not(.collapsed){
    background: transparent;
}

.who-we-are-accordion .accordion-item .accordion-button::after,
.who-we-are-accordion .accordion-item .accordion-button.collapsed::after{
	/*content: '\f077';*/
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.who-we-are-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(180deg);
}

.who-we-are-accordion .accordion-item .accordion-body{
	/*background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);*/
	padding: 20px;
	border-top: 1px solid var(--dark-divider-color);
}

.who-we-are-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

.who-we-are-counters{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 70px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.who-we-counter-item h2{
	font-size: 48px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.who-we-counter-item p{
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***     09. Our Projects css     ***/
/************************************/

.our-project{
	padding: 100px 0 70px;
}

.project-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--divider-color);
    border-radius: 15px;
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.project-item-content{
	margin-bottom: 40px;
}

.project-item-content h3{
	font-size: 18px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.project-item-content h3 a{
	color: inherit;
}

.project-item-content p{
	margin-bottom: 0;
}

.project-image a,
.project-image figure{
	display: block;
	border-radius: 10px;
	cursor: none;
	overflow: hidden;
}

.project-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    object-position: top;
}
/*.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.818;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}*/
.tab-contents .project-image img{
	aspect-ratio: auto;
}
.tab-content1 .project-image img {
    max-width: 140px;
}

.project-image img.icon {
    /* aspect-ratio: inherit; */
    object-fit: contain;
    max-width: 70px;
}
.project-item:hover .project-image img{
	transform: scale(1.06);
}

/************************************/
/***     10. How It Work css      ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.work-step-item{
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.work-step-no {
    margin-top: 15px;
}

.work-step-no p{
	color: var(--primary-color);
	text-transform: uppercase;
	margin-bottom: 0;
}

.work-step-item .icon-box{
	margin-bottom: 20px;
}

.work-step-item .icon-box img {
    width: 100%;
    max-width: 70px;
}

.work-step-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 24px;
}

.work-step-content p{
	margin: 0;
}

/* .how-it-work-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 60px;
} */

.how-it-work-list ul{
	width: 100%;
	max-width: 1100px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}

.how-it-work-list ul li{
    display: inline-block;
    line-height: 1.25em;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/icon-sparkle.svg') no-repeat;
    background-position: left 16px center;
    background-size: 20px auto;
    border-radius: 100px;
    padding: 10px 16px 10px 45px;
}

/************************************/
/***   11. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	padding: 100px 0;
}

.testimonial-content-box{
    height: 100%;
	background: var(--secondary-color);
	border-radius: 20px;
	text-align: center;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
	margin-right: 15px;
	padding: 40px 50px;
}

.testimonial-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-counter-item {
    width: calc(50% - 15px);
    text-align: left;
    /* display: flex
; */
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}
.testimonial-counter-item .icon-box {
    margin-bottom: 20px;
}

.testimonial-counter-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.testimonial-counter-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 38px;
}

.testimonial-counter-content p{
	margin-bottom: 0;
}

.testimonial-slider-box{
    position: relative;
    background: url('../images/testimonial-box-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 60px 20px 20px;
    overflow: hidden;
}

.testimonial-slider-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonial-slider-box .testimonial-slider-box-content,
.testimonial-slider-box .testimonial-slider{
    position: relative;
	width: 100%;
    z-index: 1;
}

.testimonial-slider-box-content{
	text-align: center;
	margin-bottom: 40px;
}

.testimonial-images{
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}

.testimonial-images .satisfy-client-image figure{
	border-color: var(--primary-color);
}



.testimonial-item{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.testimonial-slider-content{
    width: 100%;
    height: 100%;
    align-content: flex-start;
    padding: 30px;
}

.testimonial-rating{
    margin-bottom: 20px;
}

.testimonial-rating i{
    font-size: 18px;
    color: #027e68;
}

.testimonial-content{
    margin-bottom: 20px;
}

.testimonial-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.author-content h3{
    font-size: 18px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.author-content p{
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.testimonial-slider-image{
    width: 40%;
}

.testimonial-slider-image figure{
    display: block;
    height: 100%;
}

.testimonial-slider-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

.testimonial-pagination{
    position: absolute;
    bottom: 0;
    transform: translateY(-5px);
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--white-color);
	border-radius: 100px;
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    width: 25px;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.testimonial-rating-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 60px;
}

.testimonial-rating-item{
	width: calc(25% - 22.5px);
    border: 1px solid var(--divider-color);
	border-radius: 20px;
	text-align: center;
	padding: 25px 30px;
}

.testimonial-rating-item .icon-box{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.testimonial-rating-item .icon-box img{
    width: 100%;
	max-width: 162px;
	max-height: 40px;
}

.testimonial-rating-content p{
	margin: 0;
}

.testimonial-rating-content p span{
    font-weight: 700;
	color: var(--accent-secondary-color);
}

/************************************/
/***       12. Our FAQs css	      ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faq-accordion{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.faq-accordion .accordion-item{
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	background: var(--dark-divider-color);
	color: var(--white-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***       13. Our Blog css	      ***/
/************************************/

.our-blog{
    padding: 100px 0 70px;
}

.post-item {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-featured-image a{
	display: block;
    overflow: hidden;
    /* cursor: none;	 */
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.623;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%!important;
}
.post-featured-image {
    width: 100%;
}
.post-item-content {
    margin-bottom: 20px;
    flex: 1;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}
.post-item-content p {
    margin-top: 10px;
    margin-bottom: 0;
}
.post-item-content h2 a{
	display: inline-block;
    color: inherit;
}

/************************************/
/***        14. Footer css	      ***/
/************************************/

.main-footer{
	background-color: var(--primary-color);
	padding: 60px 0 0;
}

.footer-scrolling-ticker{
	margin-bottom: 60px;
}

.footer-scrolling-box{
	--gap: 30px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	z-index: 1;
}

.footer-scrolling-box .scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 100s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.footer-scrolling-box .scrolling-content span{
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 100px;
	line-height: 1em;
	font-weight: 700;
	color: var(--text-color);
}

.footer-scrolling-box .scrolling-content span img{
	width: 50px;
	margin-right: 30px;
}

.footer-box{
	background: transparent;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
}

.footer-links h3{
	font-size: 20px;
    color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

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

.footer-links ul li {
    color: var(--white-color);
    /* text-transform: capitalize; */
    line-height: 1.5em;
    margin-bottom: 15px;
    font-size: 15px;
}
.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
    color: inherit;
    transition: all 0.3s ease-in-out;
    opacity: 0.9;
}

.footer-links ul li a:hover{
	opacity: 1;
	color: var(--accent-secondary-color);
}

.footer-copyright {
    padding: 15px 0;
    border-top: 1px solid;
    margin-top: 50px;
}

.footer-copyright-text p{
	font-size: 15px;
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links{
	text-align: right;
}

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

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: var(--white-color);
}

.footer-social-links ul li a i{
	font-size: 18px;
    line-height: normal;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/************************************/
/*** 	 15. About Us Page css	  ***/
/************************************/

/*.page-header{
    position: relative;
	background: url('../images/contact-banner.jpg') no-repeat;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 230px 0 115px;
}*/

/*.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/page-header-bg-shape.svg') no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}
*/
/*.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}*/
.page-header-box {
    position: absolute;
    text-align: center;
    z-index: 1;
    bottom: 20px;
    left: 20px;
}

/*.page-header-box h1 {
    display: inline-block;
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: none;
    color: #fff;
}

.page-header-box h1 span{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span{
	background-position: right center;
}*/

.inner-page-title {
    display: block;
    text-align: center;
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: none;
    color: #fff;
    position: relative;
}

.inner-page-title span{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.inner-page-title:hover span{
	background-position: right center;
}

/*.page-header-box p {
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 5px;
    font-size: 18px;
}*/
.inner-page-info {
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 5px;
    font-size: 18px;
    position: relative;
    text-align: center;
}
.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 18px;
    text-transform: capitalize;
    line-height: normal;
    color: #fff;
    position: relative;
}

.page-header-box ol li.breadcrumb-item a {
    color: #009a57;
    font-weight: 700;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--text-color);
}

.our-approach{
    padding: 100px 0;
}

.approach-content{
    margin-right: 15px;
}

.approach-image figure{
    display: block;
    border-radius: 20px;
}

.approach-image img{
    width: 100%;
    aspect-ratio: 1 / 0.741;
    object-fit: cover;
    border-radius: 20px;
}

.mission-vision-item{
    margin-bottom: 40px;
}

.mission-vision-item:last-child{
    margin-bottom: 0;
}

.mission-vision-item .icon-box {
    width: 50px;
    margin: 0 auto 15px;
}

.mission-vision-item .icon-box img{
    width: 100%;
    max-width: 60px;
}

.mission-vision-item-content h3 {
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 24px;
}

.mission-vision-item-content p{
    margin-bottom: 0;
}

.our-solutions{
    padding: 100px 0;
}

.our-solution-image{
    margin-right: 15px;
    height: 100%;
}

.our-solution-image figure{
    display: block;
    height: 100%;
    border-radius: 20px;
}

.our-solution-image img{
    width: 100%;
   /* aspect-ratio: 1 / 0.68;*/
    object-fit: cover;
    border-radius: 20px;
}

.solution-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.solution-item {
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
}

.solution-item .icon-box {
    margin-bottom: 30px;
}
.solution-item .icon-box img {
    width: 100%;
    max-width: 60px;
}
.solution-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.solution-item-content p{
    margin-bottom: 0;
}

.our-brands{
    padding: 100px 0 70px;
}

.brand-item{
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.brand-item figure{
    display: block;
    border-radius: 20px;
}

.brand-item figure img{
    width: 100%;
    aspect-ratio: 1 / 1.046;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.brand-item:hover figure img{
    transform: scale(1.1);
}
.brand-item-content ul {
	margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.brand-item-content ul li {
    width: 49%;
    margin-left: 5px;
}
.brand-item-content .product-service-list li {
	width: auto;
}
.brand-item-content .product-service-list li .badge {
	/* width: auto; */
}
.brand-item-content ul .badge {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    padding: 8px 14px;
    margin-right: 10px;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 18px;
	width: 100%;
	white-space: normal;
    line-height: 22px;
    /*display: block;*/
}
.brand-item-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    background: #fffffff7;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 30px;
    /* text-align: center; */
}

.brand-item-content h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.brand-item-content p{
    color: var(--text-color);
    margin-bottom: 20px;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a{
    position: relative;
    display: block;
	cursor: none;
}

.team-image figure{
	display: block;
}

.team-image figure::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(181.78deg, rgba(17, 17, 17, 0) 58.87%, rgba(17, 17, 17, 0.6) 76.02%);
	width: 100%;
	height: 100%;
    z-index: 1;
}

.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.424;
    object-fit: cover;
	transition: all 0.4s ease-in-out; 
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-body{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(36px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
    font-size: 20px;
    text-transform: capitalize;
	color: var(--white-color);
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

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

.team-social-list ul li{
    display: inline-block;
	margin-right: 10px;
}

.team-social-list ul li:last-child{
    margin: 0;
}

.team-social-list ul li a{
	background: var(--primary-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover{
	background: var(--white-color);
}

.team-social-list ul li a i{
    font-size: 18px;
    line-height: normal;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/************************************/
/*** 	 16. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 30px;
}

.page-services .service-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 10px;
	transition: all 0.3s ease-in-out;
}

.page-services .service-item:hover{
	transform: translateY(-4px);
}

/************************************/
/***  	17. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 110px;
    margin-right: 20px;
}

.page-category-list{
	background: var(--secondary-color) url('../images/page-category-bg.svg') no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 20px;
    margin-bottom: 40px;
	padding: 25px;
}

.page-category-list h3 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

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

.page-category-list ul li {
    margin-bottom: 15px;
}

.page-category-list ul li:last-child{
    margin: 0;
}

.page-category-list ul li a{
	position: relative;
    display: block;
    font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 13px 25px 13px 15px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-category-list ul li:hover a,
.page-category-list ul li.active a {
    color: var(--white-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    background: url(../images/arrow-text.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    transition: all 0.4s 
ease-in-out;
}

.page-category-list ul li:hover a::before,
.page-category-list ul li.active a::before{
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(1);
}

.page-category-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-category-list ul li:hover a::after,
.page-category-list ul li.active a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sidebar-cta-box .satisfy-client-box,
.sidebar-cta-contact{
	position: relative;
	z-index: 1;
}

.sidebar-cta-box .satisfy-client-box{
	margin: 0 0 30px;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-image{
	margin-left: -10px;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-image:first-child{
	margin: 0;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-image figure{
	width: 42px;
    height: 42px;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-content{
	width: auto;
}

.sidebar-cta-box .satisfy-client-box .satisfy-client-content p{
	color: var(--white-color);
}

.sidebar-cta-contact{
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-cta-contact h3{
	font-size: 18px;
	color: var(--white-color);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 15px 20px;
}

.sidebar-cta-contact ul{
	list-style: none;
	margin: 0;
	padding: 20px;
}

.sidebar-cta-contact ul li{
	display: flex;
	align-items: center;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.sidebar-cta-contact ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 20px;
}

.sidebar-cta-contact ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact ul li a:hover{
	color: var(--white-color);
}

.page-single-image{
    margin-bottom: 40px;
}

.page-single-image figure{
    display: block;
    border-radius: 20px;
}

.page-single-image img{
    width: auto;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 20px;
    max-width: 550px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-entry h2 span{
    font-weight: 600;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span{
	background-position: right center;
}
.service-entry h4 {
    font-size: 20px;
}
.service-entry ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-entry ul li{
	display: inline-block;
    line-height: 1.25em;
    border: 1px solid var(--divider-color);
    background: url('../images/icon-sparkle.svg') no-repeat;
    background-position: left 16px center;
    background-size: 20px auto;
    border-radius: 100px;
    padding: 10px 16px 10px 45px;
	margin-bottom: 15px;
}

/*.service-entry ul li:last-child{
	margin-bottom: 0;
}*/

.service-solution-box,
.service-result-box,
.service-tools-box{
	margin-top: 60px;
}

.service-solution-list{
	margin-top: 40px;
}

.service-solution-item{
	display: flex;
	margin-bottom: 40px;
}

.service-solution-item:last-child{
	margin-bottom: 0;
}

.service-solution-item .icon-box{
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
	transition: all 0.4s ease-in-out;
}

.service-solution-item:hover .icon-box{
	background-position: right center;
}

.service-solution-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.service-solution-item-content{
	width: calc(100% - 90px);
}

.service-solution-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-solution-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.solution-counter-box{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.solution-counter-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 30px;
}

.solution-counter-no h2{
	margin-bottom: 0;
}

.solution-counter-no h2 span{
	font-weight: 600;
	-webkit-text-fill-color: var(--primary-color);
}

.solution-counter-header .icon-box{
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.solution-counter-box:hover .solution-counter-header .icon-box{
	background-position: right center;
}

.solution-counter-header .icon-box img{
	width: 100%;
	max-width: 40px;
}

.service-result-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-result-image,
.service-result-content{
	width: calc(50% - 15px);
}

.service-result-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.service-result-image img{
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.service-result-item{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	margin-top: 40px;
}

.service-result-item .icon-box{
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box{
	background-position: right center;
}

.service-result-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.service-result-item-content{
	width: calc(100% - 80px);
}

.service-result-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-tool-content-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-tool-content{
	width: calc(62% - 15px);
}

.service-tool-counter-info{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 70px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.service-tool-counter{
	position: relative;
	width: calc(37% - 35px);
	text-align: center;
}

.service-tool-counter::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	width: 1px;
	height: 80%;
	transform: translateY(-50%);
	background: var(--divider-color);
}

.service-tool-counter h2{
	font-size: 92px;
	margin-bottom: 10px;
}

.service-tool-counter h2 span{
	font-weight: 600;
}

.service-tool-info{
	width: calc(63% - 35px);
}

.service-tool-image{
	width: calc(38% - 15px);
}

.service-tool-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.service-tool-image img{
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.page-single-faqs .faq-accordion{
	max-width: 100%;
}

.page-single-faqs .faq-accordion .accordion-item{
	border: 1px solid var(--divider-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button{
	color: var(--white-color);
	padding: 19px 50px 19px 20px;
}

.page-single-faqs .faq-accordion .accordion-item .accordion-button::after,
.page-single-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: var(--white-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: var(--primary-color);
}

/************************************/
/***   	 18. Blog Archive css	  ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 19. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--dark-divider-color);
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 700;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-position: right center;
}

.post-social-sharing{
    text-align: right;
}

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

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    background-position: right center;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	20. Projects Page css	  ***/
/************************************/

.page-project{
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-category-list{
    background: var(--secondary-color) url('../images/page-category-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 60px;
}

.project-category-list h3{
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
}

.project-category-list ul{
	list-style: none;
	margin: 0;
	padding: 30px;
}

.project-category-list ul li{
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-weight: 600;
	line-height: 1.5em;
    color: var(--text-color);
    text-transform: capitalize;
    background-color: var(--white-color);
    border-radius: 10px;
	margin-bottom: 20px;
    padding: 18px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-category-list ul li:last-child{
	margin-bottom: 0;
}

.project-category-list ul li:hover{
	color: var(--white-color);
}

.project-category-list ul li::before{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.project-category-list ul li:hover::before{
	top: 0;
	height: 100%;
}

.project-category-list ul li span{
	font-weight: 400;
	width: 55%;
}

.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 48px;
	font-weight: 600;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 300;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span{
	background-position: right center;
}

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

.project-entry ul li{
	position: relative;
	line-height: 1.5em;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    font-size: 18px;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.project-solution-box,
.project-performance-box,
.project-experience-box{
	margin-top: 60px;
}

.project-solution-image-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-solution-image,
.project-solution-content{
	width: calc(50% - 15px);
}

.project-solution-image figure{
	display: block;
	border-radius: 20px;
	height: 100%;
}

.project-solution-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

.project-solution-content{
	background: var(--secondary-color) url('../images/project-solution-content-bg.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 30px;
}

.project-solution-content ul{
	margin-top: 30px;
}

.performance-step-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.performance-step-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.performance-step-no,
.performance-step-content{
	margin-bottom: 40px;
}

.performance-step-no h3{
	font-size: 16px;
	font-weight: 700;
	color: var(--white-color);
	display: inline-block;
	line-height: 1.25em;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	padding: 8px 20px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.performance-step-item:hover .performance-step-no h3{
	background-position: right center;
}

.performance-step-content h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.performance-step-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.performance-step-item.highlighted-box{
	width: 100%;
	border-color: var(--dark-divider-color);
	background: var(--secondary-color) url('../images/performance-step-item-bg.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.project-experience-list{
	margin: 40px 0;
}

.project-experience-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.project-experience-list ul li{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

/************************************/
/*** 	  22. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/*** 	  23. Team Single css	  ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-single-image{
	margin-bottom: 60px;
}

.team-single-image figure{
	display: block;
	border-radius: 20px;
}

.team-single-image img{
	width: 100%;
	aspect-ratio: 1 / 1.353;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-info,
.team-member-skills,
.team-member-experience{
	margin-bottom: 60px;
}

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

.team-member-info-list ul li{
	display: flex;
	align-items: center;
	line-height: 1.5em;
	margin-bottom: 25px;
}

.team-member-info-list ul li:last-child{
	margin-bottom: 0;
}

.team-member-info-list ul li img{
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
}

.team-member-info-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-info-counter-item{
	width: calc(25% - 45px);
}

.member-info-counter-item h2{
	font-size: 48px;
	font-weight: 300;
	margin-bottom: 10px;
}

.member-info-counter-item p{
	margin-bottom: 0;
}

.member-skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.skills-progress-bar{
    width: calc(50% - 15px);
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 100px;
}

.member-experience-item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.member-experience-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.member-experience-year{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.member-experience-year .icon-box{
	margin-right: 20px;
}

.member-experience-year .icon-box i{
	font-size: 20px;
}

.member-experience-no p{
	margin-bottom: 0;
}

.member-experience-content h3{
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 600;
}

.member-experience-btn a{
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.member-experience-btn a:hover{
	background-position: right center;
}

.member-experience-btn a img{
	width: 100%;
	max-width: 18px;
	transition: all 0.3s ease-in-out;
}

.member-experience-btn a:hover img{
	transform: rotate(45deg);
}

.team-contact-form{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 20px;
	padding: 40px;
}

/************************************/
/***   24. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background-color: var(--secondary-color);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .author-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3{
	color: var(--primary-color);
}

/************************************/
/*** 	 25. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 26. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    /* cursor: none; */
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  27. FAQs Page css		  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/*** 	28. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}


.contact-info-item {
    display: flex;
    flex-wrap: wrap;
    width: 31%;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px 25px;
}
.contact-info-item .icon-box{
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-position: right center;
}

.contact-info-item .icon-box img{
	width: 100%;
	max-width: 25px;
}

.contact-info-content{
	width: calc(100% - 65px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-content p{
	margin-bottom: 2px;
}

.contact-info-content p:last-child{
	margin-bottom: 0;
}

.contact-info-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover{
	color: var(--accent-color);
}

.conatct-us-form{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 60px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 20px;
	padding: 40px;
}

.conatct-us-form .contact-form, .google-map-iframe {
    width: calc(50% - 30px);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/*.google-map-iframe:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: #f3f3f300;
    backdrop-filter: blur(100px);
}*/

.google-map-iframe iframe{
	height: 100%;
	width: 100%;
	border-radius: 20px;
}

.contact-form .section-title h3{
	filter: brightness(0) invert(1);
	color: var(--white-color);
}

.contact-form .section-title h2{
	color: var(--white-color);
}

.contact-form .section-title h2 span{
	-webkit-text-fill-color: var(--white-color);
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.44em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border: none;
	border-radius: 10px;
	padding: 21px 20px;
	box-shadow: none;
	outline: none;
	resize: none;
}

.contact-form .form-group:focus-visible{
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--white-color);
}

.contact-form .btn-default{
	width: 100%;
	background: var(--white-color);
	color: var(--primary-color);
	padding: 17px;
}

.contact-form .btn-default:hover{
	background: var(--primary-color);
	color: var(--white-color);
}

.contact-form .btn-default::before{
	display: none;
}

/************************************/
/*** 	 29. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

.contact-us-mobile{
	display: none;
}




.our-approach .our-approach-list.bg-section {
    padding: 50px;
}
.main-about .mission-vision-item {
	display: flex;
	align-items: center;
	margin-bottom: 29px;
}
.main-about .mission-vision-item .icon-box {
    margin-bottom: 0;
    width: 15%;
    margin-right: 20px;
}
.main-about .mission-vision-item-content {
    width: 75%;
}
.main-about .mission-vision-item-content h3 {
    margin-bottom: 0;
}

.product-section {
    padding: 100px 0;
    position: relative;
}

.product-section div#products {
    position: absolute;
    left: 0;
    top: -136px;
}
ul.tabs,
ul.tabs1{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.tabs li .icon {
    width: 40px;
    position: absolute;
    left: 20px;
    top: 14px;
}
ul.tabs li:nth-child(3) .icon {
    width: 37px;
    top: 17px;
    left: 23px;
}
li.tab-link.current .icon {
    filter: brightness(255);
}
ul.tabs li {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 20px 36px 20px 75px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
	position: relative;
	overflow: hidden;
}
ul.tabs li:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 30px;
    width: 13px;
    height: 13px;
	z-index: 3;
    border-right: 2px solid #053b8c;
    border-bottom: 2px solid #053b8c;
    transform: rotate(-45deg);
    transition: all 0.35s linear;
}
ul.tabs li.current:after,
ul.tabs1 li.current:after {
	border-color: var(--white-color);
}
ul.tabs li + li {
	margin-top: 22px;
}
ul.tabs li{
	/* background: #FFFFFF; */
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
}
ul.tabs li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #FFFFFF;
}
ul.tabs li.current::before,
ul.tabs1 li.current::before {
	display: none;
}
ul.tabs li span {
    position: relative;
    z-index: 3;
	font-weight: 800;
    color: var(--accent-secondary-color);
    display: block;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}
ul.tabs li.current span {
	color: #fff;
	background: transparent;
	background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
ul.tabs1 li.current span {
	    color: var(--accent-secondary-color);
    display: block;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
ul.tabs1 li.current {
	border-bottom: 2px solid var(--accent-secondary-color);
}
ul.tabs1 li {
    color: #242424;
    padding: 14px 0;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    position: relative;
    margin: 0 20px;
}
.tab-contents {
    display: none;
    background: #FFFFFF;
    padding: 42px 32px;
    height: 100%;
    border-radius: 10px;
}

.tab-content1 {
    display: none;
    margin-top: 50px;
    height: 100%;
}
.tab-contents.blink {
  animation: blink 0.5s ease-in-out;
}

@keyframes blink {
  0%   { opacity: 0; }
  /* 50%  { opacity: 1; } */
  100% { opacity: 1; }
}



.tab-contents.current,
.tab-content1.current{
	display: inherit;
}
.tab-contents h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-secondary-color);
    display: block;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tab-content1 h4 {
	font-size: 21px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    display: block;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    padding: 12px 10px;
    border-radius: 10px;
	margin-bottom: 30px;
}
.why-section .service-item {
    background: #fff;
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-radius: 20px;
}
.why-section .service-item.fullbg {
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.why-section .btn-default {
    background: #242424;
}
.why-section .fullbg .service-item-content h3 {
	color: #FFFFFF;
	font-size: 30px;
}
.why-section .fullbg .service-item-content p {
	color: #FFFFFF;
}
.main-about .approach-content {
    margin-right: 0;
    padding: 50px;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 30px;
    height: 100%;
}
.main-about .approach-content h4 {
    font-size: 32px;
    font-weight: 300;
    line-height: 54px;
    color: #fff;
}
.main-about .approach-content h4 b {
    font-weight: 700;
}
.who-image img {
	/* filter: invert(1); */
}
.our-clients {
	padding: 100px 0;
}
.client-item {
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 142px;
    padding: 15px;
}

.client-item .image-anime {
    max-width: 160px;
}
.client-item .image-anime img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.client-slider .swiper {
    padding: 0 20px;
}
 .client-button-prev {
	left: 0;
 }
 .client-button-next {
	right: 0;
 }
.client-button-prev, .client-button-next {
    background: #06378f;
    width: 40px;
    height: 40px;
    border-radius: 7px;
}
.client-button-prev::after, .client-button-next::after {
    font-size: 14px;
    color: #fff;
}

.page-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    .page-header {
    position: relative;
  
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 230px 0 115px;
}

.page-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.our-tables {
    margin-bottom: 100px;
}

.table.table-bordered thead th {
    color: #fff;
    background: linear-gradient(to right, var(--accent-secondary-color), var(--accent-color));
    border-width: 0;
}

table.table.table-bordered.table-hover td {
    font-size: 14px;
    padding: 11px;
}

.breadcrumb-item+.breadcrumb-item::before {
   display: none;
}

.page-header-box ol {
    /* display: none; */
    margin-top: 10px;
}

.testimonial-content-box-xeno {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 20px;
    
    margin-right: 15px;
    padding: 40px;
}
.feature-image-content {
    margin-top: 20px;
}

.our-targets {
    margin-bottom: 100px;
}

.our-tiny-product {
    margin-top: 100px;
}

.page-module {
    background-color: black;
    padding: 100px 0;
    margin-bottom: 100px;
    border-radius: 50px;
}
.page-module h3 {
    color: #fff;
}

.page-module .feature-image-content.wifi {
    color: #fff;
}

.page-module .feature-image-content.wifi p{
    color: #fff;
}

.product-img img {
    max-width: 51%;
}

.sensor-section.bg-section {
    padding: 40px 0;
}

.our-solutions-cnt {
    padding: 40px 0;
}

.case_study_s {
    background-color: #f8fafc;
    padding: 20px 0 0;
}
.ww_w h2 {
    font-size: 25px;
    font-weight: 600;
    color: #02756c;
    padding-bottom: 8px;
}

.hardware_r {
    border-right: 3px solid #070134;
    margin-top: 2px;
    text-align: center;
}

/*.hardware_r:last-child{
   
  
    display: none;
}*/

.Objective-section {
   
    margin-top: 60px;
    margin-bottom: 100px;
}

.wifi-based-img {
    background-color: #027e6717;
    text-align: center;
}

.wifi-based-img img {
    padding: 40px 0;
}

.wifi-based-cnt {
    padding: 100px 0px 100px;
}
.case_study_s .col-lg-6:last-child .hardware_r {
    border-right: none; 
}

.ww_w p {
    padding-right: 50px;
}

.product-detail-section {
    
    max-width: 1400px;
    margin: 0 auto;
}
.our-casestudy {
	padding: 100px 0 70px;
}
.our-casestudy .post-featured-image img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.capabilities-section .work-step-item {
    margin-bottom: 0;
}
.product-top-bar {
    background: #f7f7f7;
    padding: 18px 0;
}
.product-quick-follow-links a {
    padding: 2px 10px;
    display: inline-block;
    font-weight: 500;
    color: var(--primary-color);
}
.product-quick-follow-links a.active {
	color: var(--accent-secondary-color);
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-top-bar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
}
.product-top-bar li {
    padding-left: 10px;
    border-left: 1px solid;
    padding-right: 10px;
}
.product-top-bar li:first-child {
    border-left: 0;
}

.product-full-discription .section-title h2 {
    font-size: 32px;
}
.product-full-discription .section-title h4 {
    font-size: 20px;
}
.custom-tab {
    display: flex;
    list-style-type: none;
    padding: 0 0 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #cac8c8;
}
.custom-tab .nav-link {
    border: 0;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
    padding: 0;
}
.custom-tab .nav-link span {
    font-weight: 500;
    color: #000;
}
.custom-tab .nav-tabs {
    border-bottom: 0;
}
.custom-tab .nav-link.active span {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-tab .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
}
.target-application-list.block-list ul {
    display: block;
}
.target-application-list ul {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 30px;
}

.list-style-1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.list-style-1 ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}
.list-style-1 ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 17px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}
.product-space {
	padding: 50px 0;
	position: relative;
}
.product-space > [id] {
    position: absolute;
    left: 0;
    top: -100px;
}
.product-diagram-video .product-image {
    border: 1px solid #ccc;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    max-width: 1200px;
    cursor: zoom-in;
}
.product-video {
    /* margin-top: 50px; */
    position: relative;
    padding-top: 58%;
    border: 1px solid #ccc;
    height: 100%;
}
.product-video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.custom-table thead {
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.custom-table th {
	background: transparent;
}
.custom-table thead th {
	color: var(--white-color);
}
.custom-table th, .custom-table td {
    padding: 15px 20px;
}

.product-feature-list p {
    margin-bottom: 10px;
}
.product-feature-list b {
    margin-bottom: 10px;
    display: block;
}

.product-slider-img {
    text-align: center;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-slider-img img {
    width: auto;
    display: inline-block;
    max-width: 280px;
}
.product-slider-img-sm {
    border: 2px solid #eaeaea;
    margin: 5px;
    padding: 2px;
    background: #fff;
}

.product-slider, 
.product-slider .slick-list, 
.product-slider .slick-track {
    height: 100%;
}
/*.product-slider-nav .slick-track {
    display: flex;
    flex-direction: column;
}*/
.product-slider-nav {
    max-width: 300px;
    margin: 30px auto 0;
}
.product-slider-wrapper {
    position: relative;
    height: 100%;
    border: 2px solid #efefef;
    padding: 40px 20px 30px;
    margin-top: 65px;
}

/*.product-slider-nav {
    margin-top: 10px;
    position: absolute;
    left: 0;
    top: 0;
}*/
.product-slider .slick-prev {
    left: 12px;
}
.product-slider .slick-next {
	right: 12px;
}
.product-slider .slick-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 110%);
    border-radius: 6px;
    z-index: 9;
}
.product-slider .slick-prev:before, 
.product-slider .slick-next:before {
	color: #ffffff;
}

.product-design-development-heading {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 60%);
    padding: 14px 30px;
}
.product-design-development-heading h5 {
    font-size: 18px;
    color: #fff;
}
.product-design-development-img {
    border: 1px solid #ccc;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-design-development-content .product-cat {
    color: #242424;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-design-development-content h4 {
    margin-bottom: 15px;
}
.product-design-development-content h4 a {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-design-development-list + .product-design-development-list {
    /* border-top: 1px solid #c7c7c7; */
    padding-top: 30px;
}

.product-full-discription .section-title {
    margin-bottom: 30px;
}
.product-full-discription .section-title h4 a {
    color: #01975a;
    border-bottom: 1px solid;
}
.about-us.custom-about-us {
    padding: 30px;
}
.custom-journey-section .our-solution-image figure {
	text-align: center;
}
.custom-journey-section .our-solution-image img {
    width: auto;
}
.custom-partner-section .solution-item {
	text-align: center;
}
.custom-partner-section .solution-item .icon-box img {
    width: 100%;
    max-width: 200px;
}
.custom-partner-section .solution-item .icon-box {
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-partner-section .solution-item-content h3 {
    font-size: 18px;
}
.custom-partner-section .solution-item .icon-box img {
    max-width: 200px;
}

.commitment-section figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.commitment-section .image-anime:after {
	display: none;
}
.our-event-section {
    margin-bottom: 100px;
}
.our-event-section.bg-section {
    position: relative;
    background: url(../images/testimonial-box-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 70px 40px;
    overflow: hidden;
}
.our-event-section.bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.our-event-section.bg-section .container {
    position: relative;
    z-index: 1;
}
.our-event-section .section-title h3 {
	color: #ffffff;
}

.our-event-section .swiper-wrapper {
    align-items: stretch;
}
.our-event-section .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}
.our-event-section .testimonial-item {
    height: 100%;
}
.our-event-section .testimonial-slider-content {
    align-content: flex-start;
}
.our-event-section .testimonial-content a {
	color: #ffffff;
}
.our-event-section .testimonial-content a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    transition: all 0.35s ease-in-out;
}
.our-event-section .testimonial-content a:hover {
    color: var(--accent-secondary-color);
}
.hardware-design-section .section-title.section-title-center {
    max-width: 100%;
}
.hardware-design-section .work-step-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
}

.software-dev-section .our-approach-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.software-dev-section .mission-vision-item {
    margin-bottom: 0;
    width: 47%;
    background: #fff;
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}
.software-dev-section .mission-vision-item .icon-box {
    width: 45px;
    margin: 0 auto 10px;
}
.software-dev-section .approach-content {
	margin-right: 0;
}
.contact-today a {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mission-vision-item .zephyr-icon img {
	max-width: 110px;
    height: 60px;
    object-fit: contain;
}

.development-content-box {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 28px;
}
.development-content-box h4 {
    font-size: 21px;
    line-height: 26px;
}
.development-content-box .section-title p {
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 28px;
}
/*.development-content-box .section-title {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
}*/
.development-oofering-section .row [class*="col-"] {
    margin-bottom: 30px;
}

.development-logo-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}
.development-logo-item {
    width: auto;
    padding: 10px;
}
.development-logo-item .icon-box img {
    width: auto;
    max-width: 84px;
    height: 34px;
}
.development-logo-item .icon-box {
	text-align: center;
}

.custom-expertise-section .solution-item {
    width: calc(24.4% - 15px);
    padding: 30px 20px;
}
.commitment-section .reveal img {
	width: auto;
}

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

.latest-update-list li + li {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #ccc;
}

.latest-update-list li a {
    color: var(--text-color);
    transition: all 0.35s ease-in-out;
}
.latest-update-list li a:hover {
    color: var(--accent-secondary-color);
}
.latest-update-list h3 {
    font-size: 20px;
    font-weight: 600;
}

.latest-update-image .reveal {
    border-radius: 20px;
}
.our-event-section .testimonial-content {
    margin-bottom: 0;
}

.service-single-content {
    position: relative;
}
.scroll-target {
    position: absolute;
    left: 0;
    top: -120px;
}
.service-list {
    margin-bottom: 30px;
}
.service-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 30px;
}

.service-list ul li {
    position: relative;
    line-height: 1.5em;
    padding: 0 0 0 30px;
    margin-bottom: 15px;
    background: none;
    display: block;
    border: 0;
}
.service-list ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 17px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.cloud-sucess-list .page-single-image img {
    object-fit: contain;
    max-width: 100%;
}

.development-content-box .section-title {
    margin-bottom: 0;
}
.custom-our-services .project-item {
    padding: 30px;
    justify-content: initial;
}
.custom-our-services .project-item-content {
    margin-bottom: 0;
    margin-top: 40px;
    text-align: left;
}
.custom-our-services .project-item-content h3 {
    font-size: 32px;
}
.custom-badges {
	margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.custom-badges .badge {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    padding: 8px 14px;
    margin-right: 10px;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 18px;
    width: 100%;
    white-space: normal;
    line-height: 24px;
}
.badge-double-layout li {
    width: 49%;
}
.badge-single-layout li {
    width: 100%;
}
.swiper {
  height: 100%; /* Optional: full height container */
}

.swiper-wrapper {
  display: flex;
  align-items: stretch; /* Ensures equal height slides */
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}
.page-single-image figure:after,
.post-featured-image figure:after {
	display: none;
}

.bottom-logos-section ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    flex-wrap: wrap;
}
.bottom-logos-section ul li {
    width: 20%;
    text-align: center;
}
.logo-wrap {
    background: #e8e8e8;
    padding: 15px 10px;
    border-radius: 10px;
    margin: 10px;
}
.bottom-logos-section {
    margin-bottom: 90px;
}

.btn2{
	display: flex;
	align-items: center;
	justify-content: center;
}


.lottie-anim-banner {
    width: 850px;
    position: relative;
    /* top: -220px; */
    /* left: -90px; */
	left: -180px;
}
.hero-content .section-title h2 {
	color: var(--white-color);
	margin-bottom: 10px;
    font-size: 50px;
    font-weight: 500;
   /* background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 22% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;*/
}

.product-scroll {
    overflow-x: auto;
    max-height: 448px;
}
.product-design-development-list.row {
    align-items: center;
}

/************************************/
/***      30. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1600px){

    header.main-header .header-sticky,
    .hero-intro-video{
           max-width: calc(100% - 40px);
    }
     
    header.main-header .header-sticky .container-fluid,
    .hero-intro-video .container-fluid{
        padding: 0 15px;
    }

	header.main-header .header-sticky.active{
		border-right: none;
		border-left: none;
		border-radius: 0px;
		padding: 0px;
	}
	/*.bg-section{
        max-width: 98%;
    }*/
}

@media only screen and (max-width: 1550px){

   .main-about .approach-content h4 {
    font-size: 29px;
    font-weight: 300;
    line-height: 46px;
    color: #fff;
}

.main-about .mission-vision-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.mission-vision-item .icon-box img {
    width: 100%;
    max-width: 50px;
}
    .main-menu .nav-menu-wrapper{
        margin: 0 30px;
    }

	.hero-counter-box{
		left: 20px;
		bottom: 20px;
	}

	.hero-company-slider-box{
		right: 60px;
		max-width: 800px;
	}
	.hero-content .section-title h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 46px;
    font-weight: 500;
}
.hero-content .section-title h1 {
    margin-bottom: 30px;
    line-height: 60px;
    font-weight: 500;
    font-size: 46px;
}

.our-approach-list p{
margin-bottom: 16px;
}
.main-about .mission-vision-item .icon-box {
    margin-bottom: 0;
    width: 10%;
    margin-right: 20px;
}
.brand-item figure img {
    aspect-ratio: 3/2.6;
}
.custom-our-services .project-item {
    padding: 10px 20px;
}
.custom-our-services .project-item-content {
    margin-top: 10px;
}
.custom-our-services .project-item-content h3 {
    font-size: 28px;
}
/*.project-image img {
    aspect-ratio: 2/1;
}*/
.custom-our-services .project-item-content h3 {
    font-size: 28px;
}
.project-item-content h3 {
    margin-bottom: 10px;
}

.testimonial-content-box {
    padding: 30px;
}
.testimonial-content-box .section-title {
    margin-bottom: 30px;
}
.development-content-box .section-title {
    margin-bottom: 20px;
}
.development-content-box .section-title p {
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 32px;
}
.development-logo-item .icon-box img {
    width: auto;
    max-width: 80px;
    height: 28px;
}

}

@media only screen and (max-width: 1440px){

	.hero-counter-box{
		gap: 20px;
		max-width: 360px;
		border-radius: 12px;
		padding: 15px;
	}

	.hero-counter-image{
		width: calc(41% - 10px);
	}

	.hero-counter-image figure,
	.hero-counter-image figure img{
		border-radius: 12px;
	}

	.hero-counter-content{
		width: calc(59% - 10px);
	}

	.hero-counter-content h2{
		font-size: 38px;
		margin-bottom: 10px;
	}
	
	.hero-counter-content p{
		font-size: 14px;
	}

	.hero-company-slider-box{
		right: 40px;
	}

    .hero-company-slider-box p{
        font-size: 18px;
        margin-bottom: 15px;
    }
    .brand-item-content h2 {
	    font-size: 28px;
	    margin-bottom: 10px;
	}
	.service-entry h2 {
	    font-size: 38px;
	}
}

@media only screen and (max-width: 1300px){
	
	.hero-company-slider-box{
		right: 20px;
		max-width: 650px;
	}
	.section-title h2 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}


/*.product-quick-follow-links a {
    padding: 10px;
    color: var(--white-color);
    border: 2px solid #ccc;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 110%);
}*/
.page-header-box h1 {
    font-size: 45px;
}
.service-entry h2 {
    font-size: 36px;
}
.custom-expertise-section .solution-item {
    width: 30%;
}
.solution-item-list {
    justify-content: 	center;	
}
}

@media only screen and (max-width: 1200px){
	.btn-default::before {
    top: 50%;
    right: 8px;
}
.header-btn .btn-default {
    padding: 17px 40px 17px 20px;
}
.btn-default {
    padding: 12px 22px 12px 10px;
}
.main-about .approach-content {
    padding: 36px;
}
.product-top-bar ul {
    flex-wrap: wrap;
}
.product-top-bar li {
    border-right: 1px solid;
    border-left: 0;
    margin: 9px 0;
}
.product-top-bar li:last-child {
	border-right: 0;
}
.product-top-bar {
	padding: 9px 0;
}
    .brand-item figure img {
        aspect-ratio: 3 / 2.9;
    }
}

}


@media only screen and (max-width: 1100px){
	.brand-item figure img {
    aspect-ratio: 1/1.2;
}
}


@media only screen and (max-width: 1024px){

	.hero-section-content{
		margin-left: 0;
	}

	.hero-counter-box{
        max-width: 320px;
    }

	.hero-counter-image{
        width: calc(49% - 10px);
    }

	.hero-counter-content{
        width: calc(51% - 10px);
    }

	.hero-company-slider-box{
		right: 10px;
		max-width: 600px;
	}
}

@media only screen and (max-width: 991px){

.contact-us-mobile{
	display: block;
}

.lottie-anim-banner {
    width: 660px;
}

.our-approach .our-approach-list.bg-section {
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.product-section {
    padding: 50px 0;
}
.tab-contents.current, .tab-content1.current {
     display: inherit; 
    margin-top: 20px;
}
.custom-our-services .project-item-content h3 {
    font-size: 28px;
}

.who-we-are-accordion .accordion-item {
    flex: 100%;
}
.product-target-application h4{
	font-size: 22px;
}
.service-entry h2 {
    font-size: 38px;
}
.who-we-are-content{
	text-align: center;
}
.commitment-section .reveal img {
    width: 100%;
}
.latest-update-image {
    text-align: center;
    margin: 30px 0;
}
.latest-update-list h3 {
    font-size: 20px;
    font-weight: 700;
}

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.btn-default{
		padding: 14px 35px 14px 15px;
	}

	.btn-default::before{
		right: 15px;
	}

	.bg-section{
        max-width: 100%;
        margin: 20px 0 50px 0;
        border-radius: 0;
    }

	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 50px;
	}
	.hero-content .section-title h1 {
    margin-bottom: 30px;
    line-height: 56px;
    font-weight: 500;
    font-size: 42px;
}
.hero-content .section-title h2 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 500;
}

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

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 140px 0 50px;
	}

	/*.hero.hero-bg-image{
		padding: 180px 0 90px;
	}*/
	.hero.hero-bg-image{
		padding: 20px 14px;
	}

	.hero.hero-bg-image .hero-content{
		max-width: 100%;
	}

	.hero.hero-bg-image .hero-btn{
		margin-top: 30px;
		gap: 20px;
	}

	.hero-section-content{
        margin: 15px 0 0;
    }

	.hero-content{
		margin-bottom: 20px;
	}

	.hero-list ul li{
		padding-left: 25px;
	}

	.hero-list ul li:before{
		font-size: 16px;
	}
	
	.satisfy-client-box{
		margin-top: 30px;
	}
	
	.satisfy-client-image figure{
		width: 62px;
		height: 62px;
	}
	
	.hero-video-box{
		margin-bottom: 10px;
	}

	.hero-video-box .video-play-button{
		top: 30px;
		right: 30px;
	}

	.video-play-button a{
		width: 60px;
		height: 60px;
	}

	.video-play-button a i{
		font-size: 24px;
	}
	
	.hero-counter-box{
        max-width: 160px;
        display: block;
		padding: 10px;
    }

	.hero-counter-image{
        width: 100%;
        margin-bottom: 15px;
    }

	.video-button-border{
		top: 10px;
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

	.hero-counter-content{
		width: 100%;
	}

	.hero-company-slider-box{
		bottom: -10px;
        right: 10px;
        max-width: 440px;
    }

	.hero-company-slider-box p{
		margin-bottom: 5px;
	}
	
	.about-us{
		padding: 50px 0;
		text-align: center;
	}

	.about-us .section-title.section-title-center{
		max-width: 100%;
	}

	.about-image-list-2{
		margin: 0 50px;
	}

	.section-footer-text{
		margin-top: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item .icon-box,
	.service-item-content{
		margin-bottom: 20px;
	}

	.service-item .icon-box img{
		max-width: 50px;
	}

	.our-services .section-footer-text{
		margin-top: 10px;
	}

	.our-features{
		padding: 50px 0;
	}
	
	.feature-item,
	.feature-content-box,
	.feature-counter-box{
		width: calc(50% - 15px);
	}

	.feature-item{
		padding: 20px;
	}

	.feature-item h3{
		margin-bottom: 30px;
	}

	.feature-item ul li{
		font-size: 14px;
	}

	.feature-content-box{
		padding: 20px 20px 60px;
	}

	.feature-image-box{
		height: auto;
		gap: 30px;
		padding: 20px 20px 0;
		margin: 30px 0;
	}

	.feature-image-content{
		width: calc(60% - 15px);
	}

	.feature-image-content h3{
		margin-bottom: 20px;
	}

	.feature-image-content ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.feature-image-content ul li::before{
		font-size: 16px;
	}
	
	.feature-image{
		width: calc(40% - 15px);
		margin-right: -50px;
		margin-left: 0;
	}

	.feature-counter-box{
		padding: 20px 130px 20px 20px;
	}

	.feature-counter-image img{
		max-width: 160px;
	}

	.feature-counter-content h2{
		font-size: 38px;
	}

	.who-we-are{
		padding: 50px 0;
	}

	.who-we-are-content{
		margin-bottom: 30px;
	}

	.who-we-are-counters{
		padding-top: 30px;
	}
	
	.who-we-counter-item h2{
		font-size: 38px;
	}

	.who-we-are-accordion{	
		margin: 0;
	}

	.who-we-are-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.who-we-are-accordion .accordion-header .accordion-button{
		padding: 15px 36px 15px 15px
	}

	.who-we-are-accordion .accordion-item .accordion-button::after,
	.who-we-are-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 14px;
	}

	.who-we-are-accordion .accordion-header .accordion-button img{
		max-width: 34px;
		margin-right: 15px;
	}
	
	.who-we-are-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

	.our-project{
		padding: 50px 0 20px;
	}
	
	.project-item{
		padding: 20px 20px 0;
	}

	.project-item-content{
		margin-bottom: 30px !important;
	}

	.project-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	/*.project-image img{
		aspect-ratio: 1 / 0.72;
	}*/

	.how-it-work{
		padding: 50px 0;
	}

	.work-step-no{
		margin-bottom: 15px;
	}

	.work-step-item .icon-box{
		margin-bottom: 20px;
	}

	.work-step-item .icon-box img{
		max-width: 50px;
	}

	.work-step-content h3{
		margin-bottom: 10px;
	}

	.how-it-work-list{
		margin-top: 0;
		padding-top: 30px;
	}
	
	.how-it-work-list ul{
		gap: 10px 15px;
	}

	.how-it-work-list ul li{
		padding: 8px 12px 8px 35px;
		background-size: 18px auto;
		background-position: left 12px center;
	}

	.our-testimonials{
        padding: 50px 0;
    }

    .testimonial-content-box{
        height: auto;
		display: block;
        margin: 0 0 30px 0;
        padding: 30px;
    }

    .testimonial-counter-item .icon-box{
        margin-bottom: 30px;
    }

    .testimonial-counter-item .icon-box img{
        max-width: 50px;
    }

    .testimonial-counter-content h2{
        font-size: 38px;
        margin-bottom: 10px;
    }

    .testimonial-slider-box{
        height: auto;
		display: block;
        padding: 30px 20px 20px;
    }

	.testimonial-slider-box-content{
		margin-bottom: 30px;
	}
    
    .testimonial-rating{
        margin-bottom: 15px;
    }

    .testimonial-rating-item{
        width: calc(50% - 15px);
        padding: 15px 20px;
    }

    .testimonial-rating-item .icon-box{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

	.our-faqs{
		padding: 50px 0;
	}

	.faq-accordion{
		max-width: 100%;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 40px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 14px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body{
		padding: 20px;
	}

	.post-item-content{
		margin-bottom: 20px;
	}

	.main-footer{
		padding: 40px 0 0;
	}

	.footer-scrolling-ticker{
		margin-bottom: 40px;
	}

	.footer-scrolling-box{
		--gap: 20px;
	}

	.footer-scrolling-box .scrolling-content span{
		font-size: 65px;
	}

	.footer-scrolling-box .scrolling-content span img{
		width: 35px;
		margin-right: 20px;
	}

	.footer-box{
		padding: 40px 0 10px;
	}

	.footer-logo{
		margin-bottom: 30px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
		padding: 30px 0;
	}

	.page-header{
        padding: 150px 0 60px;
    }

    .page-header-box h1{
        font-size: 50px;
    }

	.our-approach {
		padding: 50px 0;
	}

    .approach-content{
        margin: 0 0 30px;
    }

    .mission-vision-item{
        margin-bottom: 30px;
    }

    .software-dev-section .mission-vision-item {
    width: 48%;
}
.software-dev-section .our-approach-list {
    justify-content: center;
    align-items: center;
}

    .mission-vision-item .icon-box{
        margin-bottom: 20px;
    }

    .mission-vision-item .icon-box img{
        max-width: 50px;
    }

    .mission-vision-item-content h3{
        margin-bottom: 10px;
    }

    .our-solutions{
        padding: 50px 0;
    }

    .our-solution-image{
        margin: 20px 0 30px;
        height: auto;
    }
    
    .our-solution-image figure{
        height: auto;
    }

    .solution-item-list{
        margin-top: 30px;
    }

    .solution-item{
        padding: 20px;
    }

    .solution-item .icon-box{
        margin-bottom: 20px;
    }

    .solution-item .icon-box img{
        max-width: 50px;
    }

    .solution-item-content h3{
        margin-bottom: 10px;
    }

    .our-brands{
        padding: 50px 0 20px;
    }

    .brand-item-content{
		left: 15px;
    	right: 15px;
    	bottom: 15px;
        padding: 20px;
    }

    .brand-item figure img{
        aspect-ratio: 1 / 1.2;
    }

    .brand-item-content h2{
        font-size: 28px;
        margin-bottom: 10px;
    }

    .our-team{
        padding: 50px 0 20px;
    }

    .team-image img{
        aspect-ratio: 1 / 1.2;
    }

	.team-body{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-services .service-item{
		padding: 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.page-category-list h3{
		margin-bottom: 20px;
	}

	.page-category-list ul li a{
		padding: 11px 35px 11px 15px;
	}

	.page-category-list ul li a::before{
		right: 15px;
		width: 12px;
		height: 12px;
	}

	.sidebar-cta-box{
		padding: 20px;
	}

	.sidebar-cta-contact h3,
	.sidebar-cta-contact ul{
		padding: 15px;
	}
	
	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 40px;
		text-align: center;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 34px;
		margin-bottom: 15px;
	}

	.service-entry ul li{
		background-position: left 12px center;
		background-size: 18px auto;
		padding: 8px 12px 8px 36px;
		margin-bottom: 10px;
	}

	.service-solution-box,
	.service-result-box,
	.service-tools-box{
		margin-top: 40px;
	}

	.service-solution-list{
		margin-top: 30px;
	}

	.service-solution-item{
		margin-bottom: 30px;
	}

	.service-solution-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.service-solution-item .icon-box img{
		max-width: 24px;
	}

	.service-solution-item-content{
		width: calc(100% - 65px);
	}

	.service-solution-counters{
		margin-top: 30px;
	}

	.solution-counter-box{
		padding: 20px;
	}

	.solution-counter-no h2{
		margin-bottom: 0;
	}

	.solution-counter-header .icon-box{
		width: 60px;
		height: 60px;
	}

	.solution-counter-header .icon-box img{
		max-width: 30px;
	}

	.service-result-item{
		padding: 20px;
		margin-top: 30px;
	}

	.service-result-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.service-result-item .icon-box img{
		max-width: 24px;
	}

	.service-result-item-content{
		width: calc(100% - 65px);
	}

	.service-tool-content-box{
		margin-top: 30px;
	}

	.service-tool-counter-info{
		gap: 30px;
		margin-top: 20px;
		padding-top: 20px;
	}

	.service-tool-counter{
		width: calc(33% - 15px);
	}

	.service-tool-counter::before{
		right: -15px;
	}

	.service-tool-info{
		width: calc(67% - 15px);
	}

	.page-single-faqs .faq-accordion .accordion-header .accordion-button{
		padding: 14px 40px 14px 15px;
	}

	.page-blog{
        padding: 50px 0;
    }
    
    .page-pagination{
        margin-top: 10px;
    }

    .page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

    .post-image figure,
    .post-image img{
        border-radius: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.4em;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-project{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-category-list{
		margin-bottom: 30px;
	}

	.project-category-list h3,
	.project-category-list ul{
		padding: 20px;
	}

	.project-category-list ul li{
		padding: 12px 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-entry ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before{
		font-size: 16px;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-solution-box,
	.project-performance-box,
	.project-experience-box{
		margin-top: 40px;
	}

	.project-solution-image-content{
		margin-top: 30px;
	}

	.project-solution-content{
		padding: 20px;
	}

	.project-solution-content ul{
		margin-top: 20px;
	}

	.performance-step-list{
		gap: 30px;
		margin-top: 30px;
	}

	.performance-step-item{
		padding: 20px;
	}

	.performance-step-no,
	.performance-step-content{
		margin-bottom: 30px;
	}

	.performance-step-no h3{
		padding: 6px 15px;
	}

	.performance-step-content h3{
		margin-bottom: 15px;
	}

	.performance-step-item .icon-box img{
		max-width: 50px;
	}

	.project-experience-list{
		margin: 30px 0;
	}

	.project-experience-list ul{
		gap: 10px 20px;
	}

	.project-experience-list ul li{
		width: calc(50% - 10px);
		margin-bottom: 0;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-image{
		margin-bottom: 30px;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.85;
		object-position: top center;
	}

	.team-member-info,
	.team-member-skills,
	.team-member-experience{
		margin-bottom: 40px;
	}

	.team-member-info-list ul li{
		margin-bottom: 15px;
	}

	.team-member-info-list ul li img{
		max-width: 24px;
		margin-right: 15px;
	}

	.team-member-info-counters{
		gap: 30px 40px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.member-info-counter-item{
		width: calc(25% - 30px);
	}

	.member-info-counter-item h2{
		font-size: 38px;
	}

	.member-experience-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.member-experience-year{
		margin-bottom: 10px;
	}

	.member-experience-btn a{
		height: 50px;
		width: 50px;
	}

	.member-experience-btn a img{
		max-width: 16px;
	}

	.team-contact-form{
		padding: 30px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}
	
	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}


	.contact-info-list{
		margin-bottom: 50px;
	}

	.contact-info-item{
		width: calc(50% - 15px);
		padding: 20px;
	}

	.conatct-us-form{
		padding: 30px;
	}
	
	.conatct-us-form .contact-form,
	.google-map-iframe{
		width: 100%;
	}

	.google-map-iframe iframe{
		height: 450px;
	}

	.contact-form .form-control{
		padding: 14px 15px;
	}
	
	.contact-form .btn-default{
		padding: 14px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
	.slick-slider {
		margin-top: 26px;
	}
	.custom-expertise-section .solution-item {
    width: 46%;
}
.footer-box{
	margin: 0;
}
}

@media only screen and (max-width: 767px){




.lottie-anim-banner {
display: none;
}
.hero.hero-bg-image {
    padding: 170px 14px 70px 14px;
}
.main-about .approach-content h4 {
    font-size: 22px;
    font-weight: 300;
    line-height: 42px;
    color: #fff;
}
.main-about .approach-content {
    text-align: center;
}
.product-quick-follow-links a {
    border-left:none;
}
.product-target-application h4{
	font-size: 20px;
}
.custom-tab .nav-link span {
    line-height: 40px;
}
.custom-tab .nav-link.active:after {

    bottom: -2px;
}
.product-design-development-content {
    margin-top: 20px;
}

.product-design-development-content p{
	margin-bottom: 2px;
}
.product-details .product-full-discription .section-title {
    margin-bottom: 10px;
}
.contact-today.wow.fadeInUp {
    line-height: 34px;
}

.footer-copyright {
    margin-top: 10px;
}
.footer-box {
    padding: 0px 0 10px;
}
.custom-expertise-section .solution-item {
    width: 100%;
}

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

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

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
    }

	.hero.hero-bg-image .hero-content .hero-list ul{
		gap: 10px 30px;
	}

	.hero-section-content{
        margin: 10px 0 0;
    }

	.hero-content p{
		font-size: 16px;
	}

	.hero-list ul{
		gap: 10px;
	}

	.satisfy-client-box{
		gap: 15px;
        margin-top: 20px;
    }

	.satisfy-client-image figure{
        width: 52px;
        height: 52px;
    }

	.satisfy-client-content{
		width: auto;
	}

	.satisfy-client-content p{
		font-size: 16px;
	}

	.hero-video-box.flowmap-effect .flowmap-deformation{
		position: initial;
	}

	.hero-video-box .video-play-button{
		top: 35px;
		right: 50%;
		transform: translateX(50%);
	}

	.hero-video-box .video-play-button a{
		width: 50px;
		height: 50px;
	}

	.hero-video-box .video-play-button a i{
		font-size: 20px;
	}

	.hero-counter-box{
		position: initial;
		display: flex;
		max-width: 100%;
		background: var(--primary-color);
		margin-top: 20px;
	}

	.hero-counter-image{
		width: calc(45% - 10px);
		margin-bottom: 0;
	}

	.hero-counter-content{
		width: calc(55% - 10px);
	}

	.hero-counter-content h2{
        font-size: 26px;
    }

	.hero-company-slider-box{
		position: initial;
		max-width: 100%;	
		margin-top: 20px;
	}
	
	.hero-company-slider-box p{
		font-size: 16px;
	}

	.about-image-list-1,
	.about-image-list-2{
		flex-wrap: wrap;
	}

	.about-image-list-2{
		margin: 0;
	}
	
	.about-us-image{
		width: calc(50% - 10px);
	}
	
	.about-us-image img{
		aspect-ratio: 1 / 0.75;
	}

	.service-item .icon-box, .service-item-content {
    margin-bottom: 8px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.our-solution-content {
    text-align: center;
}
.post-item-body {
    padding: 20px;
    text-align: center;
}

	.service-item-content h3{
		font-size: 18px;
		margin-bottom: 7px;
	}
.service-item-content p {
    margin-bottom: 0;
    text-align: center;
}
	.feature-item,
	.feature-content-box,
	.feature-counter-box{
		width: 100%;
	}

	.feature-item h3{
		font-size: 18px;
	}

	.feature-item ul li{
		padding: 6px 12px;
	}

	.feature-content-box{
		padding-bottom: 40px;
	}

	.feature-content-title h3{
		font-size: 18px;
	}

	.feature-image-content{
        width: 100%;
    }

	.feature-image-content h3{
		font-size: 18px;
	}

	.feature-image{
		width: 85%;
        margin-left: auto;
	}
	
	.feature-counter-image img{
        max-width: 130px;
    }

	.feature-counter-box .icon-box{
		margin-bottom: 20px;
	}

	.feature-counter-box .icon-box img{
		max-width: 50px;
	}

	.feature-counter-content h2{
		font-size: 26px;
	}

	.who-we-are-counters{
		gap: 20px 10px;
	}

	.who-we-counter-item{
		width: calc(33.33% - 6.66px);
	}

	.who-we-counter-item h2{
        font-size: 26px;
        margin-bottom: 5px;
    }

	.who-we-counter-item p{
		font-size: 14px;
	}

	.who-we-are-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.who-we-are-accordion .accordion-header .accordion-button img{
        max-width: 30px;
        margin-right: 10px;
    }

	.project-item{
		padding: 15px 15px 0;
	}

	.work-step-no{
        margin-bottom: 10px;
    }

	.work-step-content h3{
		font-size: 18px;
	}

	.testimonial-content-box{
        padding: 30px 20px;
    }

    .testimonial-counters{
        margin-top: 0;
		gap: 20px;
    }

    .testimonial-counter-item{
        width: 100%;
    }

    .testimonial-counter-item .icon-box{
        margin-bottom: 15px;
    }

    .testimonial-counter-content h2{
        font-size: 26px;
    }

	.testimonial-counter-content p{
		font-size: 14px;
	}

    .testimonial-slider-content,
    .testimonial-slider-image{
        width: 100%;
        height: auto;
    }

    .testimonial-slider-content{
        padding: 20px;
    }

    .testimonial-rating i{
        font-size: 16px;
    }

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
		font-size: 14px;
	}

    .author-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

    .testimonial-rating-box{
        margin-top: 30px;
        gap: 20px;
    }

    .testimonial-rating-item{
        width: 100%;
    }

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
        padding: 12px 35px 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 15px;
	}
	
	.post-item-content h2{
		font-size: 18px;
	}

	.footer-scrolling-box{
        --gap: 15px;
    }

	.footer-scrolling-box .scrolling-content span{
        font-size: 30px;
    }

	.footer-scrolling-box .scrolling-content span img{
		max-width: 25px;
        margin-right: 15px;
    }

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright{
		text-align: center;
        padding: 15px 0;
    }

	.footer-social-links{
		text-align: center;
		margin-top: 10px;
	}
	
	.page-header-box h1{
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

	.mission-vision-item .icon-box{
        margin-bottom: 15px;
    }

    .mission-vision-item-content h3{
        font-size: 18px;
    }

	.solution-item-list{
        gap: 20px;
    }

    .solution-item{
        width: 100%;
    }

    .solution-item-content h3{
        font-size: 18px;
    }

    .brand-item-content{
        padding: 15px;
        text-align: center;
    }
    .custom-our-services .project-item-content {
    text-align: center;
}
    .brand-item-content h2{
        font-size: 26px;
    }

	.brand-item-content p{
		font-size: 14px;
	}

	.page-category-list h3,
	.sidebar-cta-contact h3{
		font-size: 18px;
	}

	.sidebar-cta-contact ul li{
		margin-bottom: 15px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry ul li{
        background-position: left 10px center;
        background-size: 16px auto;
        padding: 6px 10px 6px 30px;
    }

	.service-solution-item-content h3{
		font-size: 18px;
	}

	.service-solution-counters{
		gap: 20px;
	}

	.solution-counter-box{
		width: 100%;
	}

	.solution-counter-header{
		margin-bottom: 20px;
	}

	.service-result-image,
	.service-result-content{
		width: 100%;
	}

	.service-result-image figure{
		height: auto;
	}

	.service-result-item-content h3{
		font-size: 18px;
	}

	.service-tool-counter-info{
        margin-top: 15px;
        padding-top: 15px;
    }

	.service-tool-content,
	.service-tool-image,
	.service-tool-counter,
	.service-tool-info{
		width: 100%;
	}

	.service-tool-counter::before{
        width: 100%;
        height: 1px;
        right: 0;
        bottom: -15px;
        top: auto;
        transform: translateY(0);
    }

	.page-single-faqs .faq-accordion .accordion-header .accordion-button{
		padding: 11px 35px 11px 15px;
	}

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.tag-links{
        font-size: 18px;
    }

	.project-category-list h3{
		font-size: 18px;
	}

	.project-category-list ul li{
		gap: 5px;
	}

	.project-category-list ul li span{
		width: 57%;
	}

	.project-entry h2{
		font-size: 26px;
	}

	.project-solution-image,
	.project-solution-content{
		width: 100%;
	}

	.project-solution-content{
        padding: 20px 15px;
    }

	.performance-step-list{
		gap: 20px;
	}

	.performance-step-item{
		width: 100%;
	}

	.performance-step-no,
	.performance-step-content{
        margin-bottom: 20px;
    }

	.performance-step-no h3{
		font-size: 14px;
	}

	.performance-step-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.project-experience-list{
        margin: 20px 0;
    }

	.project-experience-list ul li{
		width: 100%;
	}

	.team-single-image img{
        aspect-ratio: 1 / 1.353;
        object-position: center center;
    }

	.team-member-info-counters{
        margin-top: 20px;
        padding-top: 20px;
    }

	.member-info-counter-item{
        width: calc(50% - 20px);
    }

	.member-info-counter-item h2{
        font-size: 26px;
    }

	.member-skills-list{
		gap: 20px;
	}

	.skills-progress-bar{
		width: 100%;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.member-experience-year .icon-box{
		margin-right: 10px;
	}

	.member-experience-year .icon-box i{
		font-size: 18px;
	}

	.member-experience-content h3{
		font-size: 16px;
	}

	.member-experience-btn a{
        height: 40px;
        width: 40px;
    }

	.member-experience-btn a img{
        max-width: 14px;
    }

	.team-contact-form{
        padding: 20px;
    }

	.contact-info-list{
		gap: 20px;		
	}

	.contact-info-item{
		width: 100%;
	}

	.contact-info-content h3{
		font-size: 18px;
	}

	.conatct-us-form{
        padding: 20px;
    }

	.google-map-iframe iframe{
		height: 350px;
	}
	.custom-our-services .project-item-content h3 {
    font-size: 22px;
}
.product-full-discription h2 span {
    font-size: 28px;
}
	.product-space {
    padding: 26px 0;
}
.table-responsive {
  width: 100%;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch; 
}

table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  white-space: nowrap;
}
.software-dev-section .mission-vision-item {
    width: 46%;
}
}






@media only screen and (max-width: 565px){

        header.main-header .header-sticky .container-fluid, .hero-intro-video .container-fluid {
        padding: 0px;
    }
    .navbar-brand img {
    max-width: 84%;
}
.hero.hero-bg-image {
    padding: 150px 14px 50px 14px;
}
.our-approach .our-approach-list.bg-section {
    padding: 20px;
}
.mission-vision-item-content h3 {
    font-size: 17px;
}
.main-about .approach-content {
    padding: 30px;
}
.brand-item-content h2 {
    font-size: 22px;
}
.brand-item-content ul .badge {
    font-size: 16px;
}
.brand-item-content p {
    margin-bottom: 5px;
}
.product-target-application h4{
	font-size: 19px;
}
.software-dev-section .mission-vision-item {
    width: 100%;
}
}

@media only screen and (max-width: 460px){
.service-list ul {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
}



@media only screen and (max-width: 360px){

  .brand-item-content h2 {
    font-size: 15px;
}
.brand-item-content h2 {
    font-size: 15px;
}
.brand-item-content ul .badge {
    font-size: 12px;
}
}

.lottie-inovative {
	height: 600px;
}
.contact-today {
    font-size: 20px;
}
a[href^="mailto:"] {
    text-transform: lowercase;
}
.product-technical-documentation h3 {
    font-size: 20px;
    font-weight: 700;
}
.product-technical-documentation h3 a {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.full-width-product-img .product-slider-img img {
    max-width: 100%;
}
.text-right {
	text-align: right;
}
.page-service-single hr {
    margin-bottom: 50px;
}
.home-contact-us {
    padding-bottom: 70px;
}
.product-technical-documentation a {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.slick-dots li {
	margin: 0;
}
.slick-dots li button {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background: #ddd;
}
.slick-dots li.slick-active button {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 60%);
}
.slick-dots {
    bottom: -10px;
    z-index: 2;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 30px;
}
.product-full-discription p {
    line-height: 30px;
}
.contact-bottom-wrapper {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 60%);
    padding: 50px 0;
}
.contact-bottom-wrapper h3 {
    color: #fff;
}
.contact-bottom-wrapper .btn-default {
    background: #242424;
    padding: 20px 45px 20px 30px;
}
.product-style-1 .project-image a, 
.product-style-1 .project-image figure {
    cursor: pointer;
}

.product-style-1 + .product-style-1 {
	margin-top: 60px;
}
.product-card-icon {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    padding: 12px;
    position: relative;
    z-index: 1;
}
.product-card-content {
	position: relative;
    /*height: 100%;*/
    padding: 25px 30px;
    /*background: linear-gradient(to right, #06378fd9 0%, var(--accent-secondary-color) 100%);*/
    border-radius: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 30px;
}
@media only screen and (max-width: 1367px){
	.product-card-content {
	    padding: 30px;
	}
}
.product-card-content:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(to right, #06378fd9 0%, var(--accent-secondary-color) 100%);
}
.product-card-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1280px) {
    .product-card-content h3 {
        font-size: 24px;
    }
}
.product-card-content p {
    color: #FFFFFF;
    position: relative;
    z-index: 1;margin-bottom: 15px;
}

@media only screen and (max-width: 1367px){
	.product-card-content p {
		font-size: 16px;
	}
}
.product-card-list .project-item {
    background: #ffffff;
    padding: 10px 10px 15px;
    margin: 0 10px;
    max-width: 290px;
	width: 100%;
}
@media only screen and (max-width: 1367px){
	.product-card-list .project-item {
	    padding: 15px;
	}
}
@media only screen and (max-width: 767px){
	.product-card-list .project-item {
	    display: inline-block;
	    width: 100%;
	}
	.product-card-list .project-item + .project-item {
		margin-top: 20px;
	}
}
.project-item-content h3 a {
    color: inherit;
    font-size: 17px;
    display: block;
    line-height: 24px;
    font-weight: 800;
}
@media only screen and (max-width: 1367px){
	.project-item-content h3 a {
	    font-size: 16px;
	}
}
.product-card-list .project-item .project-image {
    margin-bottom: 15px;
}
.product-card-list {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 767px){
	.our-approach .our-approach-list.bg-section {
    margin-bottom: 0;
}
.product-card-list {
    flex-direction: column;
}
.product-style-1 .col-lg-6 {
    margin-bottom: 50px;
    padding-right: 25px;
    padding-left: 25px;
}
}
@media only screen and (max-width: 1367px){
	.product-style-1 .col-lg-6 {
	    margin-bottom: 30px;
	    padding-right: 15px;
	    padding-left: 15px;
	}
}
.product-card-list .project-item-content h3 {
	color: #242424;
}
.services-target {
	position: relative;
}
.services-target > [id] {
    position: absolute;
    top: -100px;
}

.product-image img {
    transition: transform 0.4s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 992px) and (max-width: 1080px) {
    .main-menu ul li a,
    .main-menu ul li > a {
        padding: 13px 13px !important;
    }
}


.lottie-efabric {
    width: 750px;
    margin-left: -70px;
}

.journey-section .work-step-no p {
    color: var(--white-color);
}
.journey-section .work-step-content h3 {
    color: var(--white-color);
}
.journey-section .work-step-content p {
    color: var(--white-color);
	opacity: 0.9;
}
.journey-section .work-step-item {
    padding: 30px;
    border: 1px solid;
    border-radius: 16px;
    background: #ffffff1c;
}
.how-it-work.journey-section {
    padding: 100px 0 70px;
    overflow: hidden;
    /* background: rgb(17 17 17 / 85%); */
}
.journeu-bottom p {
    color: var(--white-color);
}
.hardware-ecosystem-section .solution-item-list {
	gap: 20px;
}
.hardware-ecosystem-section .solution-item {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 110%);
}
.hardware-ecosystem-section .solution-item-content h3, 
.hardware-ecosystem-section .solution-item-content p {
	color: var(--white-color);
}
.who-we-are.deployment-section {
    padding: 80px 0;
}
.deployment-section .who-we-are-accordion .accordion-item {
	width: 100%;
    flex: 1 1 calc(100% - 20px);
	background: none;
}
.deployment-section .who-we-are-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.deployment-section .who-we-are-accordion .accordion-header .accordion-button {
	pointer-events: all;
}
.deployment-section .who-we-are-accordion .accordion-item .accordion-body {
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.our-solution-image.width-auto figure {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .width-auto img {
    object-fit: contain;
    width: auto;
    height: auto;
} */
.width-auto img {
    object-fit: cover;
    width: auto;
    height: 100%;
}
.our-solution-image.width-auto {
    background: var(--white-color);
    border-radius: 16px;
}
.platform-section .service-item .icon-box, 
.platform-section .service-item-content {
    margin-bottom: 15px;
}
.platform-section .service-item {
    text-align: center;
    padding: 30px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* .platform-section .service-item:hover {
	border-color: var(--accent-secondary-color);
	background: rgb(0 166 81 / 10%);
} */
/* .platform-section .service-item.current-service {
    padding-bottom: 50px;
} */
.platform-section .btn-default {
	background: transparent;
    color: var(--accent-secondary-color);
    border: 1px solid #ddd;
    padding: 12px 20px;
}
.platform-section .service-item:hover .btn-default {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}
.platform-section .btn-default::before {
	display: none;
}
.platform-section .service-item .icon-box {
    width: 85px;
    height: 85px;
    /* background: #242424; */
    border-radius: 15px;
    display: inline-block;
    line-height: 60px;
    padding: 10px;
}
.platform-section .service-item .icon-box {
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.platform-section .service-item .icon-box img {
    max-width: 45px;
	opacity: 0.8;
}

.platform-section .service-item .current {
    background: var(--accent-secondary-color);
    width: 60px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.platform-section .service-item-content h3 {
    margin-bottom: 0;
}
.platform-section .how-it-work-list ul li {
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 60%);
    border-radius: 100px;
    padding: 10px 15px;
    color: var(--white-color);
    font-size: 15px;
}


.platform-section .how-it-work-list {
    border-bottom: 1px solid var(--divider-color);
    /* margin-bottom: 30px; */
    padding-bottom: 60px;
}
.platform-section .how-it-work-list ul li img {
    width: 18px;
    margin-right: 6px;
    opacity: 0.9;
}
.aml-section .work-step-item {
    text-align: left;
    margin-bottom: 0;
    height: 100%;
}
.aml-section .feature-image-content ul li {
    color: var(--white-color);
    opacity: 0.9;
}

.aml-section .work-step-item .icon-box {
    margin-bottom: 20px;
    width: 65px;
    height: 65px;
    background: #018a4a;
    border-radius: 10px;
    display: inline-block;
    line-height: 43px;
    padding: 10px;
    text-align: center;
}
.aml-section .work-step-item .icon-box img {
	max-width: 40px;
}
.image-section {
    background: rgb(17 17 17 / 80%);
}
.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
    z-index: -1;
}

.core-section .brand-item,
.core-section .brand-item figure,
.core-section .brand-item figure img {
	height: 100%;
}
.core-section .solution-item-list {
    gap: 20px;
}
.core-section .solution-item .icon-box {
    margin-bottom: 20px;
}
.core-section .solution-item-content h3 {
    margin-bottom: 10px;
}
.core-section .solution-item {
    border-radius: 16px;
    padding: 20px;
}
.usecase-slider .post-item-body {
    padding: 20px;
}

/* roadmap css start */
.roadmap-section {
	padding: 100px 0;
}
.roadmap-item {
    text-align: center;
    padding: 30px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	border: 1px solid var(--divider-color);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.roadmap-item.active {
    border-color: var(--accent-secondary-color);
    background: rgb(0 166 81 / 10%);
}
.roadmap-item .icon-box {
    width: 85px;
    height: 85px;
    background: #242424;
    border-radius: 15px;
    display: inline-block;
    line-height: 60px;
    padding: 10px;
}
.roadmap-item.active .icon-box {
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}
.roadmap-item .icon-box, 
.roadmap-item .roadmap-item-content {
    margin-bottom: 10px;
}
.roadmap-item .icon-box img {
    max-width: 45px;
    opacity: 0.9;
}
.roadmap-item-content h3 {
    font-size: 20px;
    line-height: 28px;
	margin-bottom: 0;
}
.roadmap-item-content p {
    margin-bottom: 0;
    font-size: 15px;
}
.roadmap-item .btn-default {
    background: transparent;
    color: var(--accent-secondary-color);
    border: 1px solid #ddd;
    padding: 12px 20px;
}
.roadmap-item.active .btn-default {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}
.roadmap-item .btn-default::before {
	display: none;
}
.roadmap-bar {
    height: 6px;
    background: #ededed;
    border-radius: 20px;
    margin: 25px 0;
}
.roadmap-status {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.roadmap-bottom-list .roadmap-status {
    align-items: flex-start;
}
.roadmap-status-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: #f0f0f0;
    font-size: 15px;
    font-weight: 600;
}
.active .roadmap-status-btn {
	border: 1px solid var(--accent-secondary-color);
	background: rgb(0 166 81 / 10%);
}
.roadmap-item:before {
    content: "";
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border: 5px solid #dadada;
    background: #fff;
    border-radius: 20px;
}
.roadmap-item.active:before {
	border-color: var(--accent-color);
	background: var(--accent-secondary-color);
}
.roadmap-bottom-list .roadmap-item::before {
    bottom: inherit;
    top: -44px;
}
.roadmap-item:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: #dadada;
    top: 100%;
    z-index: -1;
}
.roadmap-item.active:after {
	background: var(--accent-secondary-color);
}
.roadmap-bottom-list .roadmap-item:after {
    bottom: 100%;
	top: inherit;
}
.roadmap-point {
	margin-top: 50px;
}
.roadmap-pointer ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.roadmap-pointer li + li {
	margin-left: 100px;
}
.roadmap-point {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-left: 40px;
}
.roadmap-point:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    width: 30px;
    height: 30px;
    border: 5px solid #dadada;
    background: var(--white-color);
    border-radius: 20px;
}
.roadmap-point.active:before {
	border-color: var(--accent-color);
	background: var(--accent-secondary-color);
}
.efabric-banner .hero-content p {
    margin-top: 40px;
}
.efabric-banner .hero-content h1 {
    margin-bottom: 50px;
}
.ecosystem-list.feature-image-content ul li:before {
	display: none;
}
.ecosystem-list.feature-image-content ul li {
    padding-left: 80px;
    margin-bottom: 30px;
}
.ecosystem-list.feature-image-content ul li b {
    display: block;
}
.ecosystem-list .icon-box {
    position: absolute;
    left: 0;
    top: -5px;
    width: 65px;
    height: 65px;
    /* background: #e2e2e2; */
    background: linear-gradient(-30deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    display: inline-block;
    line-height: 34px;
    padding: 12px;
}
.ecosystem-list.feature-image-content {
	margin-top: 35px;
}
.real-time-section .accordion-body p {
    min-height: 115px;
}
.home-why-efabric .col-lg-3 {
    width: 33%;
}
.home-why-efabric .service-item {
    text-align: center;
}

.home-why-efabric .service-item-content {
	margin-bottom: 0;
}
.home-why-efabric .service-item .icon-box {
    margin-bottom: 20px;
}
.home-usecase-section {
	padding: 100px 0 70px;
}
.home-usecase-section .testimonial-pagination .swiper-pagination-bullet {
    background: #ccc;
}
.hero-img {
    max-width: 750px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.lowercase {
    text-transform: lowercase;
}
.cap-card {
    background: var(--white-color);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
	padding: 25px;
	height: 100%;
}
.cap-card .cap-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 28px;
    margin-top: 20px;
}
.cap-card .cap-item-content p {
	margin-bottom: 0;
}

.journey-section.journey-style-v2 .work-step-item {
    padding: 20px 10px;
    /* max-width: 250px; */
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
}
.journey-style-v2-list > * {
    margin-top: 30px;
}
.journey-col {
    width: 20%;
}
.journey-style-v2-list .journey-col:nth-last-child(-1n + 2) {
    width: 26%;
}
.journey-section.journey-style-v2 .work-step-item:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    background: #019f55;
    z-index: 0;
    border-bottom: 2px solid #019f55;
    width: 40px;
}
.journey-style-v2-list > *:last-child .work-step-item:before,
.journey-style-v2-list > *:last-child .work-step-item:after {
    display: none;
}
.journey-section.journey-style-v2 .work-step-item:after {
    content: "";
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 11px;
    height: 11px;
    border-right: 2px solid #00a154;
    border-bottom: 2px solid #00a154;
}
.journey-style-v2-list > *:nth-child(-5n + 5) .work-step-item:before {
    bottom: -40%;
    transform: translate(-100%, 100%);
    left: 50%;
    border-color: #019f55;
    width: 50px;
    height: 60px;
    background: transparent;
    border-width: 0 2px 2px 0;
    border-style: solid;
    right: inherit;
    top: inherit;
}
.journey-style-v2-list > *:nth-child(-5n + 5) .work-step-item:after {
    content: "";
    position: absolute;
    right: inherit;
    bottom: -151px;
    top: inherit;
    transform: rotate(135deg);
    width: 15px;
    height: 15px;
    border-right: 2px solid #00a154;
    border-bottom: 2px solid #00a154;
    left: 74px;
}
/* .journey-style-v2-list > *:nth-child(-3n + 3) .work-step-item:after {
	display: none;
} */
.journey-style-v2-list > *:nth-child(-6n + 6) .work-step-item .work-step-content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -70%;
    transform: translate(70%, -100%);
    border-color: #019f55;
    right: inherit;
    width: 50px;
    height: 60px;
    background: transparent;
    border-width: 0px 0px 2px 2px;
    border-style: solid;
}
.journey-style-v2-list > *:nth-child(-6n + 6) .work-step-item .work-step-content:after {
    content: "";
    position: absolute;
    left: -64%;
    top: 47px;
    transform: translateX(56%) rotate(-135deg);
    width: 15px;
    height: 15px;
    border-right: 2px solid #00a154;
    border-bottom: 2px solid #00a154;
}
.journey-style-v2-list > *:nth-child(-6n + 6) .work-step-item:after {
    transform: translateY(-50%) rotate(135deg);
    right: -5px;
}
.journey-style-v2-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
/* .journey-style-v2-list:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 240px;
    right: 240px;
    border-bottom: 2px solid var(--accent-secondary-color);
} */
/* .journey-style-v2-list:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--accent-secondary-color);
    border-left: 2px solid var(--accent-secondary-color);
} */

.journey-section.journey-style-v2 .work-step-content p {
    font-size: 14px;
}
.journey-section.journey-style-v2 .work-step-content h3 {
    margin-bottom: 10px;
}

.real-time-section .who-we-are-accordion .accordion-item .accordion-body p {
    font-size: 17px;
}
.core-section .solution-item-content p,
.core-section .feature-image-content ul li {
    font-size: 16px;
    line-height: 22px;
}
.core-section .feature-image-content ul li {
	margin-bottom: 5px;
}
.core-section .solution-item .icon-box img {
    max-width: 50px;
}
.core-section .solution-item-content h3 {
    font-size: 17px;
}
.core-section .feature-image-content {
    margin-top: 10px;
}

.footer-logo img {
    width: 100%;
    max-width: 230px;
    margin: 0 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.main-menu .submenu ul a:hover {
    background: #ffffffe0;
}
.main-header.dark-header-bg .main-menu ul li a:hover {
    color: #01965a;
}

.testimonial-slider-box.dark-section.bg-section {
    margin-bottom: 100px;
}

.table-section .table-container {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .table-section table {
    width: 100%;
    border-collapse: collapse;
  }

  .table-section thead {
    background: #dfd5d5;
    color: black;
}

  .table-section thead th {
    padding: 12px;
    text-align: left;
    font-size: 16px;
  }

 .table-section tbody td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

  .table-section tbody tr{
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 150%);
    color: #fff;
  }

  

  .table-section td, th:first-child {
    font-weight: bold;
    
    border-right: 2px solid #fff;
    margin-right: 40px;
}

.our-brands.core-section.bg-section {
    margin-bottom: 100px;
}

.logo-breadcrumb.inner-page-info img {
    width: 290px;
}

.footer-logo  a img {
    max-width: 280px;
}



.page-header-box nav {
    align-items: flex-start;
}

.logo-breadcrumb {
    margin-top: 90px;
}

.main-menu ul li.submenu.menu-nav > a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 2px;
    margin-top: 4px;
}



.main-menu ul ul.menu-nav-bar{
   
    width: 210px;
    
}

.main-menu ul li.submenu.menu-nav:first-child ul {
    width: 210px;
}

.logo-breadcrumb {
    margin-top: 90px;
    margin-bottom: -30px;
}
.footer-links.links {
    margin-left: -40px;
}
.our-solution-image.evk {
    margin-top: 60px;
}
.our-solution-image.rlsom {
   margin-top: 100px;
}


@media only screen and (max-width: 575px){
.footer-logo {
    display: inline-block;
    
}

.footer-logo img {
    margin: 0px;
}
}
@media only screen and (max-width:991px){
.footer-links.links {
    margin-left: 0px;
}
}