:root{
	--primary-color				: #DCDCDC;
	--secondary-color			: #0A0A0A;
	--text-color				: #A7AABB;
	--bg-color					: #060606;
	--accent-color				: #A93E17;
	--accent-secondary-color	: #15399A;
	--divider-color				: #FFFFFF0F;
	--dark-divider-color		: #FFFFFF33;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Manrope", sans-serif;
}

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

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.1em;
	color: var(--text-color);
    background: var(--bg-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: #5243bc;
	border-radius: 200px;

}

::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: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
	    border-radius: 40px;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.1);
    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;
}

.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-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
	line-height: 1em;
    text-transform: capitalize;
    border: none;
    outline: none;
    padding: 17px 30px;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

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

.btn-default.btn-highlighted{
	/* background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box, linear-gradient(to left, var(--accent-color), var(--accent-secondary-color)) border-box; */
    /* border: 1px solid transparent; */
	border: 1px solid var(--accent-color);
	background: var(--bg-color);
	padding: 16px 30px;
}

.btn-default.btn-highlighted::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    /* background: linear-gradient(to left, var(--accent-color) 0%, var(--accent-secondary-color) 100%); */
	background: var(--accent-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.readmore-btn{
	position: relative;
    font-size: 16px;
    font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 34px;
}

.readmore-btn::after{
	content: '';
    position: absolute;
	right: 0;
	top: 0;
    background: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::after{
    border-color: var(--accent-color);
	transform: rotate(45deg);
}

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

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--bg-color);
	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(--accent-color) transparent var(--accent-secondary-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%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

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

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

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

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

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

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

.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(--text-color);
    background: var(--divider-color);
    border-radius: 100px;
    margin-bottom: 14px;
}

.section-title h1{
    font-size: 50px;
    line-height: 88px;
    font-weight: 600;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2{
	font-size: 44px;
	font-weight: 600;
	margin-bottom: 0;
	cursor: none;
}

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

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

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

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

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

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

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

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

header.main-header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

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(--bg-color);
	border-bottom: 1px solid var(--divider-color);
}

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

.navbar-brand{
    padding: 0;
    margin: 0;
    color: #718dfe;
    font-size: 28px;
}

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

.main-menu .nav-menu-wrapper .navbar-nav{
	padding: 0 10px;
}

.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: 15px;
	font-weight: 300;
	line-height: normal;
	padding: 0px 20px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	border-right: 1px solid #666666;
}
.brnone {
	border: none !important;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	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: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
    background: linear-gradient(110.01deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	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 a{
	color: var(--primary-color);
	padding: 6px 20px !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(--bg-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{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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(--primary-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(--primary-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(--primary-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(110deg, var(--accent-color) 0%, var(--accent-secondary-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: 400;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--primary-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(--bg-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(--primary-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: var(--bg-color);
}

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

.hero{
	position: relative; 
    background: url('../img/banner.png') no-repeat;
    background-position: top center;
    background-size: contain;
    background-size: contain;
    padding: 180px 0 50px;
    z-index: 1;
    min-height: 1160px;
}

@keyframes shape1{
	from{
		transform: translateY(0) rotate(0deg);
	  }
	to{
		transform: translateY(50px) rotate(360deg);
	}
}

.hero.hero-bg-image{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

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

.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-content{
    position: relative;
    width: 100%;
    margin: 0 auto;
	text-align: center;
    z-index: 2;
}
@keyframes shape2{
	from{
		transform: translateY(0) rotate(0deg);
	  }
	to{
		transform: translateY(50px) rotate(-360deg);
	}
}

.hero-content .section-title{
    position: relative;
    z-index: 2;
}

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

.hero-btn{
    position: relative;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 30px;
    z-index: 2;
}

.hero-company-slider{
	text-align: center;
	margin-top: 80px;
}

.hero-company-slider p{
	font-size: 20px;
	margin-bottom: 30px;
}

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

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

.about-us{
	padding: 30px 0 50px;
}

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

.about-us .section-title h2 span{
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
}

.about-us .section-title h2 span img{
	max-width: 20px;
}

.about-us .section-title h2 span:nth-child(2){
	background: var(--accent-color);
}

.text-effect .line{
  width: 100%;
  color: var(--dark-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-box{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	    text-align: center;
}

.about-us-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.about-item-content p{
        color: var(--text-color);
    margin-bottom: 0;
    margin-top: 12px;
    font-size: 15px;
    text-align: center;
}

.about-item-content h2{
    font-size: 25px;
    line-height: 33px;
    font-weight: 600;
    text-align: center;
    color: #e0e0e4;
	background: -webkit-linear-gradient(left, #e0e0e4, #6367b0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-us-item .icon-box{
	position: relative;
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-us-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, var(--accent-color), var(--accent-secondary-color)) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-us-box:hover .about-us-item .icon-box::before{
	transform: scale(1);
}

.about-us-item .icon-box img{
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.about-item-image{
    width: 100%;
    text-align: center;
}

.about-item-image img{
	max-height: 80px;
}

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

.our-services{
    padding: 80px 0;
}
.serviceAnim{
	margin: 0 !important;
	    margin-bottom: 25px !important;
}
.spaceRight{
	padding-right: 25px;
}
.service-item{
    display: flex;
        align-items: center;
    justify-content: space-between;
    background: #0d0c0c;
    border-radius: 20px;
    padding: 10px 27px;
    transition: all 0.4s ease-in-out;
	    border: 1px solid var(--divider-color);
	    min-height: 270px;
}
.pr0{
	padding-right: 0 !important;
}
.pl0{
	padding-left: 0 !important;
}
.service-item:hover{
    transform: translateY(-5px);
}

.service-item-content{
    
}

.service-item-content h3{
    font-size: 22px;
    margin-bottom: 15px;
	font-weight: 700;
	    line-height: 28px;
	    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #ceced6, #7070fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.service-item-image{
    width: 100%;
    text-align: center;
    align-content: center;
}

.service-item-image figure{
    display: block;
}

.service-list{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

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

.service-list ul li{
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/icon-sparkle.svg') no-repeat;
    background-position: left 15px center;
    background-size: 20px auto;
    line-height: 1.3em;
    border-radius: 100px;
    padding: 10px 15px 10px 45px;
}

/************************************/
/***     07. How It Work css      ***/
/************************************/

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

.how-work-item{
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.how-work-item:last-child{
    margin-bottom: 0;
}

.how-work-header{
    border-right: 1px solid var(--divider-color);
    margin-right: 40px;
    padding-right: 40px;
}

.how-work-header .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-work-item .how-work-header .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, var(--accent-color), var(--accent-secondary-color)) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-header .icon-box::before{
	transform: scale(1);
}

.how-work-header .icon-box img{
    position: relative;
    max-width: 30px;
    z-index: 1;
}

.how-work-step-no{
    text-align: center;
    margin-top: 15px;
}

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

.how-work-item-content{
    width: calc(100% - 150px);
}

.how-work-item-content h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.how-work-item-content p{
    margin: 0;
}

.how-work-video-content{
    position: sticky;
    top: 30px;
    margin-left: 15px;
}

.how-work-video{
    width: 100%;
}

.how-work-video video{
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

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

.how-work-video-content .section-footer-text{
    margin: 30px 30px 0 30px;
}

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

.section-footer-text span{
	font-size: 14px;
	font-weight: 500;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--primary-color);
	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 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);
}

/************************************/
/***       08. Our Facts css      ***/
/************************************/

.our-facts{
    padding: 80px 0;
}

.facts-item{
    background: var(--secondary-color) url('../images/facts-item-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 35px;
}

.facts-item-title{
    margin-bottom: 60px;
}

.facts-item-title h3{
    font-size: 20px;
    text-transform: capitalize;
}

.facts-item-counter{
    margin-bottom: 60px;
}

.facts-item-counter h2{
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.facts-item-counter p{
    margin: 0;
}

.facts-item-content{
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 20px;
}

.facts-item-content p{
    margin: 0;
}

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

.our-projects{
    padding: 80px 0 50px;
}

.our-projects .container-fluid{
    max-width: 1600px;
}

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

.project-image a{
	display: block;
	cursor: none;
}

.project-image figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.project-image figure:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background: linear-gradient(180deg, rgba(6, 6, 6, 0) 49.26%, rgba(6, 6, 6, 0.6) 86.32%);
    z-index: 1;
}

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

.project-item:hover .project-image img{
	transform: scale(1.1);
    filter: blur(5px);
}

.project-btn{
	position: absolute;
    top: 50px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-btn{
    top: 30px;
	opacity: 1;
	visibility: visible;
}

.project-btn a{
	position: relative;
    display: block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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;
}

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

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

.project-btn a:hover{
	transform: rotate(45deg);
}

.project-content{
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 2;
}

.project-content h3{
    font-size: 20px;
	text-transform: capitalize;
    margin-bottom: 10px;
}

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

.project-content p{
    padding-left: 25px;
    background: url('../images/icon-sparkle.svg') no-repeat;
    background-position: left center;
    background-size: 18px auto;
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/***      10. Real Impact css     ***/
/************************************/

.real-impacts{
    padding: 80px 0;
}

.real-impact-item{
    height: calc(100% - 30px);
    margin-bottom: 0px;
	    margin-top: 1px;
}

.real-impact-image{
    border-radius: 15px;
    padding: 43px 45px 20px;
    text-align: center;
    min-height: 377px;
	    display: flex;
    align-items: center;
}
.impactBg1{
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../img/featureBg1.svg') no-repeat;
    background-position: center center;
    background-size: cover;
}
.impactBg2{
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../img/featureBg2.svg') no-repeat;
    background-position: center center;
    background-size: cover;
}
.impactBg3{
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../img/featureBg3.svg') no-repeat;
    background-position: center center;
    background-size: cover;
}

.real-impact-image h3{
    font-size: 20px;
    line-height: 1.3em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.impact-chatbot-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.chatbot-item{
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-impact-image .chatbot-item img{
    width: 100%;
    max-width: 30px;
}

.real-impact-image figure img{
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
    border: 1px solid var(--divider-color);
    border-radius: 15px;
}

.real-impact-content.highlighted-content{
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.customer-review-images{
    display: inline-flex;
    margin-right: 15px;
}

.customer-image{
    margin-left: -14px;
}

.customer-image:first-child{
    margin: 0;
}

.customer-image figure{
    display: block;
    width: 40px;
    border-radius: 50%;
}

.customer-image img{
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
}

.real-impact-content p{
    margin: 0;
}

/************************************/
/***        11. CTA Box css       ***/
/************************************/

.cta-box{
    padding: 80px 0;
}
.titleLeft{
	text-align: left;
}
.cta-box-box{
background: #4960D0;
background: linear-gradient(0deg, rgba(73, 96, 208, 1) 0%, rgba(80, 2, 153, 1) 100%);
	padding: 90px 0 100px;
}


.cta-box-content{
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.cta-box-body{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/************************************/
/***      12. What We Do css      ***/
/************************************/

.what-we-do{
    padding: 80px 0;
}

.what-we-box{
    background: var(--secondary-color) url('../images/what-we-do-box-bg.svg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 50px 45px;
    text-align: center;
    margin-right: 15px;
}

.what-we-box h3{
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 50px;
}

.what-we-img img{
    width: 100%;
}

.what-we-img-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.what-we-img-list ul li{
    width: auto;
    line-height: 1.3em;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url(../images/icon-sparkle-gradient.svg) no-repeat;
    background-position: left 15px center;
    background-size: 20px auto;
    border-radius: 100px;
    padding: 10px 15px 10px 45px;
}

.what-we-do-content{
    margin-left: 15px;
}

.what-we-do-body{
    margin-bottom: 40px;
}

.what-we-do-body ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do-body ul li{
    position: relative;
    line-height: normal;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color);
    border-radius: 100px;
    padding: 10px 15px 10px 45px;
}

.what-we-do-body ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 12px;
    left: 15px;
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
}

/************************************/
/***   13. Our Testimonial css    ***/
/************************************/

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

.testimonials-box{
    background: var(--secondary-color) url('../images/testimonials-box-bg.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px;
    overflow: hidden;
}

.testimonials-content,
.testimonial-slider{
    width: 50%;
}

.testimonials-body{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.testimonials-counter-item h2{
    color: var(--accent-color);
    font-size: 48px;
    margin-bottom: 5px;
}

.testimonials-counter-item p{
    text-transform: capitalize;
    margin: 0;
}

.testimonial-slider{
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 25px auto;
}

/*
.testimonial-slider::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--divider-color);
    border-radius: 20px;
    transform: rotate(-9deg);
    z-index: 0;
}
*/

.testimonial-slider .swiper{
    position: relative;

    border-radius: 20px;

    z-index: 1;
} 

.testimonial-slider .swiper-wrapper{
    cursor: none;
} 

.testimonial-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author{
    display: flex;
    align-items: center;
}

.author-image{
    display: inline-block;
    margin-right: 15px;
}

.author-image figure{
    border-radius: 50%;
    display: block;
}

.author-image img{
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

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

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

.testimonial-quotes-img img{
    width: 100%;
}

.testimonial-content p{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.testimonial-slider .testimonial-pagination{
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 2;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 10px;
    width: 10px;
    background:#871dd0;
	opacity: 1;
    margin: 0 10px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--primary-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--primary-color);
	height: 17px;
	width: 17px;
}

/************************************/
/***        14. Our FAQs css      ***/
/************************************/

.our-faqs{
    padding: 80px 0 80px;
    background: url(../img/faqBg.png);
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
}

.faqs-content{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.faq-accordion .accordion-item{
	position: relative;
	border-radius: 10px;
	margin-bottom: 6px;
    padding: 0;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.333em;
    background: transparent;
    color: var(--text-color);
    padding: 20px 50px 20px 20px;
    border-radius: 200px !important;
         border: 1px solid #1b0636;
}
#txtGrad{
	    background: -webkit-linear-gradient(left, #e0e0e4, #6367b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.FaqTitle img{
    width: 22px;
    margin-right: 3px;
    position: relative;
    top: -2px;
}
.FaqTitle{
    color: var(--text-color);
    font-weight: 400;
    margin-top: 38px;
}
.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #8b8b8b;
    transition: all 0.3s ease-in-out;
    font-weight: 300;
    background: #1b0636;
    border-radius: 200px;
    padding: 5px;
    height: 30px;
    width: 30px;
    text-align: center;
}

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

.faq-accordion .accordion-item .accordion-body{
    border-top: 1px solid var(--divider-color);
	padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    margin: 0;
}

/************************************/
/***       15. Our Blog css       ***/
/************************************/

.our-blog{
    padding: 80px 0 130px;
}

.post-item{
    position: relative;
    background: var(--secondary-color) url('../images/post-item-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 40px 35px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-meta{
    margin-bottom: 20px;
}

.post-meta ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-meta ul li{
    line-height: normal;
    text-transform: capitalize;
}

.post-meta ul li a{
    color: inherit;
}

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

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

.post-item-content h2{
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-content p{
    margin: 0;
}

/************************************/
/***        16. Footer css        ***/
/************************************/

.main-footer{
    background: #0f0e12;
    background-position: bottom center;
    background-size: auto;
    
    padding: 65px 0 0;
}

.main-footer .section-row{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 80px;
}

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

.footer-contact-box{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.footer-contact-box .footer-links{
    width: calc(20% - 0px);
}

.footer-links h3{
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links p{
    margin-bottom: 2px;
}

.footer-links p:last-child{
    margin-bottom: 0;
}

.footer-links p a{
    color: inherit;
    transition: all 0.3s ease-in-out;
    line-height: 33px;
    font-size: 14px;
}

.footer-links p a:hover{
    color: var(--accent-color);
}

.footer-privacy-policy{
    margin-left: 20px;
}

.footer-newsletter-form .form-group{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 15px;
}

.footer-newsletter-form .form-group .form-control{
	width: 70%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 0;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 30%;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    background: transparent;
    border: none;
    text-align: right;
	padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
    color: var(--accent-color);
}

.footer-newsletter-form .form-group .newsletter-btn i{
    font-size: 18px;
    color: var(--accent-color);
    margin-left: 8px;
}

.footer-copyright-text{
    border-top: 1px solid var(--divider-color);
    text-align: center;
    margin-top: 60px;
    padding: 24px 0;
    font-size: 14px;
}

.footer-copyright-text p{
    margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
    background: url('../images/page-header-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 265px 0 80px;
	z-index: 1;
}

.page-header::before{
    content: '';
    display: block;
    position: absolute;
    left: 160px;
    bottom: 20%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes shape1{
	from{
		transform: translateY(0) rotate(0deg);
	  }
	to{
		transform: translateY(50px) rotate(360deg);
	}
}

.page-header::after{
    content: '';
    display: block;
    position: absolute;
    right: 220px;
    top: 40%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	font-size: 70px;
    display: inline-block;
	line-height: 1.2em;
	font-weight: 600;
    letter-spacing: -0.02em;
	margin-bottom: 15px;
	cursor: none;
}

.page-header-box h1 span{
	font-weight: 700;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

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

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

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

.approach-item{
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

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

.approach-item:after{
    content: "";
    display: block;
    position: absolute;
    left: 40px;
    bottom: -80px;
    border-left: 1px solid var(--divider-color);
    width: 1px;
    height: 100%;
}

.approach-item:last-child:after{
    display: none;
}

.approach-item .icon-box{
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    margin-right: 20px;
    background: #5c10e0;
    background: linear-gradient(0deg, rgba(92, 16, 224, 1) 0%, rgba(66, 21, 142, 1) 100%);
    border: 1px solid #4859b6;
}

.approach-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4135af;
    border-radius: 24px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
	border: 1px solid #6e83f5;
}

.approach-item:hover .icon-box::before{
	transform: scale(1);
}

.approach-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.approach-item-content{
    width: calc(100% - 120px);
}

.approach-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(left, #e0e0e4, #c08cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	    margin-top: 4px;
}

.approach-item-content p{
    margin-bottom: 0;
	    line-height: 22px;
}

.approach-image{
    position: relative;
    margin-left: 15px;
}

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

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

.approach-counter-box{
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

.approach-counter-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 21%;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.approach-counter-item{
    position: relative;
    border-right: 1px solid var(--divider-color);
    margin-right: 15px;
    padding-right: 15px;
    z-index: 1;
}

.approach-counter-item:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.approach-counter-item h2{
    font-size: 48px;
    margin-bottom: 5px;
}

.approach-counter-item p{
    color: var(--primary-color);
    margin-bottom: 0;
}

.our-solution{
    padding: 80px 0;
}

.our-solution-content{
    position: sticky;
    top: 20px;
    margin-right: 15px;
}

.our-solution-content .section-title{
    margin-bottom: 0;
}

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

.solution-item{
    width: calc(50% - 15px);
    padding: 20px;
}

.solution-item:nth-child(4n - 3),
.solution-item:nth-child(4n - 4){
    background: url('../images/solution-item-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
}

.solution-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.solution-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.solution-item:hover .icon-box::before{
    transform: scale(1);
}

.solution-item .icon-box img{
    position: relative;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.solution-item:hover .icon-box img{
    filter: brightness(0) invert(0);
}

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

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

.our-team{
	padding: 80px 0 50px;
}

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

.team-image figure,
.team-image a{
    display: block;
    cursor: none;
}

.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: 20px;
    left: 20px;
    right: 20px;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/team-body-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

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

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

.team-content p{
    text-transform: capitalize;
    margin-bottom: 0;
}

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

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

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

.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(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover{
    background: var(--primary-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;
}

.our-faqs.about-our-faqs{
    padding: 80px 0 160px;
}

/************************************/
/***    18. Services Page css     ***/
/************************************/

.page-services{
    padding: 80px 0 50px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

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

.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-catagery-list{
    background: var(--secondary-color) url('../images/sidebar-catagery-list-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
	border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-catagery-list h3{
	font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    line-height: 1.5em;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--primary-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover{
    color: var(--accent-color);
}

.page-catagery-list ul li a::before{
	content: '';
    position: absolute;
	right: 0;
	top: 0;
    background: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover:before{
	border-color: var(--accent-color);
	transform: rotate(45deg);
}

.sidebar-cta-box{
    position: relative;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.sidebar-cta-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/sidebar-cta-box.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 30%;
    width: 100%;
    height: 100%;
}

.sidebar-cta-logo,
.sidebar-cta-content,
.sidebar-cta-contact{
    position: relative;
    z-index: 1;
}

.sidebar-cta-logo{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 50%;
    margin-bottom: 30px;
}

.sidebar-cta-logo img{
    width: 100%;
    max-width: 48px;
}

.sidebar-cta-content{
    margin-bottom: 40px;
}

.sidebar-cta-content h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-cta-content p{
    margin: 0;
}

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

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

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

.sidebar-cta-contact ul li a{
    display: inline-flex;
    align-items: center;
    line-height: 1.4em;
    color: var(--text-color);
    background: var(--divider-color);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

.service-entry h2 span{
    font-weight: 700;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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 ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-entry ul li{
    position: relative;
    width: calc(33.33% - 20px);
    line-height: 1.25em;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 10px 15px 10px 45px;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 12px;
    left: 15px;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-solution-box,
.service-impact-box,
.service-innovation-box,
.building-smarter-box{
    margin-top: 60px;
}

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

.service-impact-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/service-impact-list-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
}

.service-impact-item{
    width: calc(33.33% - 20px);
}

.service-impact-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.service-impact-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, var(--accent-color) 0, var(--accent-secondary-color) 100%) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-impact-item:hover .icon-box::before{
	transform: scale(1);
}

.service-impact-item .icon-box img{
    position: relative;
    max-width: 40px;
    z-index: 1;
}

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

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

.building-steps-image{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.building-smarter-steps,
.building-smarter-image{
    width: calc(50% - 15px);
}

.building-step-item{
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.building-step-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.building-step-no{
    margin-right: 30px;
}

.building-step-no h2{
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.building-step-item:hover .building-step-no h2{
    color: var(--accent-color);
}

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

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

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

/************************************/
/***     20. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 80px 0 160px;
}

.page-pagination{
    margin-top: 20px;
    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(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	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);
}

/************************************/
/***     21. Blog Single css      ***/
/************************************/

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

.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: 20px;
	overflow: hidden;
}

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

.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: 300;
	line-height: 1.2em;
	margin: 0 0 0.477em;
}

.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: 500;
    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(--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-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-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;
}

/************************************/
/***     22. Projects Page css    ***/
/************************************/

.page-projects{
    padding: 80px 0 130px;
}

/************************************/
/***    23. Project Details css   ***/
/************************************/

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

.project-category{
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/sidebar-catagery-list-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 30px;
    overflow: hidden;
}

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

.project-category-list ul li{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-list ul li span{
    font-size: 16px;
    font-weight: 400;
}

.category-social-link{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.category-social-link h3{
	font-size: 20px;
}

.category-social-link ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

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

.category-social-link ul li a:hover{
    background: var(--primary-color);
}

.category-social-link 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;
}

.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: 300;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 700;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-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;
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

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

.project-challenge-list{
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 30px;
}

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

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

.solution-counter-item h2{
    margin-bottom: 5px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team{
    padding: 80px 0 130px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

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

.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.29;
    object-fit: cover;
    border-radius: 20px;
}

.team-member-info,
.team-expertise-box,
.team-guideline-box{
	margin-bottom: 60px;
}

.team-member-info{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px 80px;
}

.member-info-box{
	position: relative;
	width: calc(62% - 40px);
}

.member-info-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: -40px;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.member-info-box .section-title h3{
    font-size: 16px;
    letter-spacing: 0;
    text-transform: capitalize;
	padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
	margin-bottom: 10px;
}

.member-info-box .section-title h3::before,
.member-info-box .section-title h3::after{
    display: none;
}

.member-contact-list{
	width: calc(38% - 40px);
}

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

.member-social-links ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

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

.member-social-links ul li a{
	width: 36px;
	height: 36px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.member-social-links ul li:hover a{
    background-position: right center;
}

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

.member-contact-item{
	margin-bottom: 30px;
}

.member-contact-item:last-child{
	margin-bottom: 0;
}

.member-contact-item h3{
	font-size: 20px;
    display: inline-block;
	text-transform: capitalize;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

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

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

.member-contact-item p a:hover{
	color: var(--accent-color);
}

.team-expertise-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 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 .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	font-size: 20px;
	font-weight: 700;
    color: var(--primary-color);
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
    border: 1px solid var(--divider-color);
	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-color) 0%, var(--accent-secondary-color) 100%);
	border-radius: 100px;
}

.team-guideline-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-guideline-list ul li{
    position: relative;
    width: calc(50% - 15px);
    line-height: 1.25em;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 10px 15px 10px 40px;
}

.team-guideline-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 10px;
    left: 15px;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.team-contact-form .contact-form{
    border: 1px solid var(--divider-color);
    border-radius: 20px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials{
    padding: 80px 0 50px;
}

.page-testimonials .testimonial-item{
    position: relative;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/testimonial-item-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px 25px;
    overflow: hidden;
}

.page-testimonials .testimonial-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
    border-radius: 999px 999px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.page-testimonials .testimonial-item.active:before,
.page-testimonials .testimonial-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-header{
    position: relative;
    z-index: 1;
}

/************************************/
/***     27. Image Gallery css    ***/
/************************************/

.page-gallery{
	padding: 80px 0 130px;
}

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

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

.page-video-gallery{
	padding: 80px 0 130px;
}

.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(--secondary-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(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
	color: var(--primary-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;
}

/************************************/
/***      29. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 80px 0 160px;
}

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

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

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

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

.conatct-us-form{
	display: flex;
	flex-wrap: wrap;
	border-radius: 40px;
    border: 1px solid var(--divider-color);
	overflow: hidden;
}

.contact-form{
	background: var(--secondary-color) url('../images/contact-form-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 40px;
}

.contact-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 17px 20px;
    outline: none;
    box-shadow: none;
}

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

.contact-form form .btn-default{
	width: 100%;
	padding: 17px;
}

.conatct-us-form .contact-form,
.google-map-iframe{
	width: 50%;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
}

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

.contact-info-item{
	position: relative;
	width: calc(25% - 22.5px);
    border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/contact-info-item-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
	border-radius: 20px;
    text-align: center;
	padding: 30px;
	overflow: hidden;
}

.contact-info-item .icon-box,
.contact-info-content{
	position: relative;
	z-index: 1;
}

.contact-info-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 auto 40px;
}

.contact-info-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, var(--accent-color), var(--accent-secondary-color)) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
    position: relative;
	width: 100%;
	max-width: 30px;
    z-index: 1;
}

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

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

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

.contact-info-content p a{
	color: inherit;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 80px 0 160px;
}

.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;
}
.MenuBg{
	background: var(--divider-color);
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 30px;
	padding: 2px 5px 2px 25px;
}
.playBtn img{
	    width: 180px;
}
.playBtn img:hover{
	    opacity: 0.8;
}
.arrowst{
	    width: 14px;
    margin-left: 4px;
}
.btn_one {
    position: relative;
    display: inline-block;
    background: rgb(51 49 65 / 71%);
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    border: none;
    outline: none;
    padding: 17px 30px;
        transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.btn_one:hover {
	    background-image: linear-gradient(to right, #400fb6 0%, #871dd0 51%, #400fb6 100%);
}

.headGget {
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1em;
    border: none;
    outline: none;
    padding: 19px 30px;
    transition: all 0.4s ease-in-out;
    float: left;
}
.SlideBanner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    background: #000000;
    padding: 25px;
       border-radius: 15px;
    overflow: hidden;
}

.carousel img {

    
}
.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
        display: flex;
        width: 97%;
        margin-inline: auto;
        overflow: hidden;
	          padding-top: 0;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
@media screen and (min-width: 1280px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 4);
  }
}
.carousel .card {
  margin: 0 0.8em;
  border: 0;
	    background: none;
	    height: auto;
}

.carousel-control-prev,
.carousel-control-next {
height: 5rem;
	    width: 5rem;
  top: 80%;
}
.carousel-control-prev{
  left: 45%
}
.carousel-control-next {
  right: 45%;
}
.carousel-control-prev-icon {
    background-image: url(../img/next.svg);
	height: 5rem;
	    width: 5rem;
}
.carousel-control-next-icon {
    background-image: url(../img/prev.svg);
	height: 5rem;
	    width: 5rem;
}

.main-section {
  padding: 0px 0;
  width: 100%;
  margin: 0 auto;
}

.img_container {
  width: 100%;
  height: 80vh;
}

.img_container img,
.tWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img_container.top_img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

section .tWrap {
  perspective: 500px;
}

.box_Slide {
  animation: noTransformAnim linear forwards normal;
  animation-timeline: view();
  transform: rotateX(100deg);
  opacity: 0;
}

@keyframes noTransformAnim {
  50% { transform: none; opacity: 1; }
  100% { transform: none; opacity: 1; }
}

@keyframes img_key {
  0% { clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes fade-out {
  100% { opacity: 0; scale: 1.5; }
}
.Faqbg{
	max-width: 70%;
	margin: 0 auto
}
.BottoSlide {
    padding: 80px 0 130px;
}


/*****************************************/

@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}

@keyframes shadow-pulse-big
{
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
}

.ShaowOne
{
  animation: shadow-pulse 1s infinite;
}

/*************************************/
.shadowslide {
	--gradient-shadow: linear-gradient(
		45deg,
		#36132b,
		#070707,
		#070707,
		#070707,
		#36132b,
		#070707,
		#070707,
		#070707,
		#36132b,
		#070707
	);
}
.shadowslide {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;

	font-weight: bold;

	background: linear-gradient(0deg, #000, #262626);
}
.shadowslide:before,
.shadowslide:after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	background: var(--gradient-shadow);
	background-size: 400%;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	z-index: -1;
	animation: animate 20s linear infinite;
}

.shadowslide:after {
	filter: blur(10px);
}

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

/**********************************************/

.BoxAnimBg{
	display: flex;
	border-radius: 15px;
	animation: rotation 5s linear 0s infinite;
	background: linear-gradient(var(--gradient-angle), rgb(0, 0, 0), rgb(66, 66, 66), rgb(0, 0, 0));
	margin: 12px;
	    border-radius: 40px;
}   
.BoxAnim{
   margin: 1px;
	background-color: rgba(0, 0, 0, 0.903);
	outline: none;
	border: none;
	    border-radius: 40px;

}
@keyframes rotation {
	0%
	{
		--gradient-angle: 0deg;
	}
	100%
	{
		--gradient-angle: 360deg;
	}    
}
@property --gradient-angle{
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}


/*******************************************/


.tag-list {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.loop-slider .inner {
  display: flex;
  width: fit-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: var(--direction);
  animation-duration: var(--duration);
}

.tag {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    background-color: #270953;
    margin-right: 1.5rem;
    padding: 48px 32px 32px;
    border-radius: 25px;
    width: 480px;
    border: 1px solid var(--divider-color);
    background: #1e0444;
}


.tag p {
    margin-bottom: 0;
    font-size: 15px;
    border-left: 1px dotted #ddd;
    padding-left: 16px;
    margin-left: 13px;
	    color: var(--text-color);
}
.tagAvatar {
	width: 140px
}
.tagQuote{
    width: 20px;
    position: absolute;
    margin-left: 29px;
    margin-top: -27px;
}
.fade {
  pointer-events: none;
  background: linear-gradient(90deg, #1e293b, transparent 30%, transparent 70%, #1e293b);
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(100);
  }
  100% {
    transform: translateX(-20%);
  }
}
.Testimonial{
	padding: 0px 0 40px;
    background: url(../img/faqBg.png);
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
}
.loop-slider:hover .inner {
  animation-play-state: paused;
}

/***************************************************/

.cardBtBox {
  box-sizing: border-box;
  background: #dedede;
  width: 100%;
	height: 696px;
  border-radius: 30px;
  position: sticky;
  display:flex;
  align-items: center;
  justify-content: center;
	border: none;
	    overflow: hidden;
}

.one {
	top: 80px;
	width: 100%;
	height: 550px;
	background-size: cover;
	margin-bottom: 120px;
	box-shadow: 0px -1px 1px #3d3c43;
	background: url("../img/btmslidebg1.png") no-repeat center center, linear-gradient(#000, #000);
    border: 1px solid var(--divider-color);
}
@keyframes gradients {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 0;
  }
  50% {
    background-position: 90% 0;
  }
  60% {
    background-position: 60%;
  }
  75% {
    background-position: 40%;
  }
  100% {
    background-position: 0 0;
  }
}


.two {
	top: 100px;
	width: 100%;
	height: 550px;
	background-size: cover;
	margin-bottom: 120px;
	box-shadow: 0px -1px 1px #3d3c43;
	background: url("../img/btmslidebg2.png") no-repeat center center, linear-gradient(#000, #000);
    border: 1px solid var(--divider-color);
}
.three {
  top: 120px;
	width: 100%;
	height: 600px;
	background-size: cover;
	margin-bottom: 120px;
	box-shadow: 0px -1px 1px #3d3c43;
	background: url("../img/btmslidebg3.png") no-repeat center center, linear-gradient(#000, #000);
    border: 1px solid var(--divider-color);
}

.four {
  top: 140px;
	width: 100%;
	height: 600px;
	background-size: cover;
	margin-bottom: 120px;
	    box-shadow: 0px -1px 1px #3d3c43;
	background: url("../img/btmslidebg4.png") no-repeat center center, linear-gradient(#000, #000);
    border: 1px solid var(--divider-color);
}
.Bttomcards{
	padding: 80px 150px 0;
}
.Cycle{
    display: flex
;
    align-items: baseline;
    justify-content: center;
    padding-left: 70px;
    flex-direction: column;
}
.Cycle h3{
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 500;
}
.Cycle p{
font-size: 17px;
    color: #c6c6c6;
	    max-width: 540px;
}
.CycleImg {
    text-align: right;
    display: flex;
 
    flex-direction: column;
    height: 550px;
 align-items: flex-end;
}

.btmslideImg1{
    width: 470px;
    border-radius: 30px;
    margin-top: 70px;
    position: relative;
    left: 75px;
}
.btmslideImg2{
    width: 100%;
    border-radius: 30px;
    margin-top: 90px;
    position: relative;
    left: 0;
}

.btmslideImg3{
    width: 500px;
    border-radius: 30px;
    margin-top: 60px;
    position: relative;
    left: 58px;
}

.btmslideImg4{
    width: 480px;
    border-radius: 30px;
    margin-top: 60px;
    position: relative;
    left: 108px;
}
.BtSlideIcons p{
	margin-bottom: 0px;
}
.BtSlideIcons img{
	width: 60px;
}

.cycleBtn{
	margin-top: 25px;
}

@keyframes square {
  0%, 100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
}

.CycleImg .square {
  border-radius: 30px;
  animation: square 8s linear infinite;
  animation-delay: calc(-1s * var(--i));
}

/****************************************************/
.txtEffects{
	    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #985df2, #e4cc92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#slideTxt{
    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #985df2, #e4cc92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 74px;
    font-weight: 900 !important;
    font-size: 62px;
    letter-spacing: -1.5px;
}



.dotted {
    background-position: 0px 4px;
	    font-size: 92px;
    background-size: 2px 3px;
    background-clip: text;
    background-image: radial-gradient(
        circle at 2px 2px,
        var(--animated-color) 1px,
        transparent 0
    );
    color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
    @property --animated-color {
        syntax: "<color>";
        initial-value: oklch(from lime l c 0deg);
        inherits: false;
    }
    @keyframes scrollBg {
        50% {
            --animated-color: oklch(from lime l c 240deg);
        }
        100% {
            background-position: -32px 4px;
        }
    }
    .dotted {
        animation: scrollBg 5s linear infinite forwards;
    }
}

.BuildSec{
	padding:70px 0 30px;
}

/********************************************/

.works{
	background: #4960D0;
background: linear-gradient(0deg, rgba(73, 96, 208, 1) 0%, rgba(80, 2, 153, 1) 100%);
	padding: 80px 0;
	min-height:600px;
}
.startp{
	font-size: 22px;
}
.titleTwo{
font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    margin-top: 13px;
    line-height: 28px;
}
.dwload-box-box{
	    padding: 90px 0;
	border-radius: 70px 70px 0px 0px;
background: #000;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(49, 49, 50, 1) 100%);
}
.dwload-box {
	    padding: 0px 150px 20px;
}
.mbApp{
	width: 400px;
	margin: 0 auto;
}
.mbTitle{
	margin-top: -100px;
}

	
.testimonial-item{
	    width: 400px;
    height: 313px;
    border-radius: 20px;
    overflow: hidden;
}
.rippleEffect{
position: absolute;
    text-decoration: none;
    color: #fff;
    width: 260px;
    height: 260px;
    top: 150px;
	right: 100px;
    background:none;
    margin: 0 auto;
    border-radius: 200px;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04), 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04), 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04), 0 0 0 90px rgba(189, 142, 210, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04), 0 0 0 90px rgba(189, 142, 210, 0);
  }
}
@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04), 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04), 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04), 0 0 0 90px rgba(189, 142, 210, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 30px rgba(255, 255, 255, 0.04), 0 0 0 60px rgba(255, 255, 255, 0.04), 0 0 0 90px rgba(189, 142, 210, 0);
  }
}

.compliance{
	padding: 90px 0 30px;
	min-height: 1200px;
}
.featIcon{
    width: 200px;
    margin: 0 auto;
    margin-bottom: 25px;
}
.GrothBg{
    width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 130px 0;
}
.GrothImg{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.GrothImg img{
	width: 460px;

}

.rippleTwo {
    position: absolute;
    text-decoration: none;
    color: #fff;
	    z-index: -1;
    width: 400px;
    height: 400px;
    background:#120e14;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(189, 142, 210, 0.03), 0 0 0 30px rgba(189, 142, 210, 0.03), 0 0 0 50px rgba(189, 142, 210, 0.03), 0 0 0 80px rgba(189, 142, 210, 0.03);
            box-shadow: 0 0 0 0 rgba(189, 142, 210, 0.03), 0 0 0 30px rgba(189, 142, 210, 0.03), 0 0 0 50px rgba(189, 142, 210, 0.03), 0 0 0 100px rgba(189, 142, 210, 0.03);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(189, 142, 210, 0.03), 0 0 0 50px rgba(189, 142, 210, 0.03), 0 0 0 80px rgba(189, 142, 210, 0.03), 0 0 0 150px rgba(189, 142, 210, 0);
            box-shadow: 0 0 0 30px rgba(189, 142, 210, 0.03), 0 0 0 50px rgba(189, 142, 210, 0.03), 0 0 0 80px rgba(189, 142, 210, 0.03), 0 0 0 150px rgba(189, 142, 210, 0);
  }
}

.GrothIcon1{
    position: absolute;
    width: 110px;
    top: 70px;
    left: 90px;
}
.GrothIcon2{
    position: absolute;
    top: 340px;
    width: 85px;
    left: 40px;
}
.GrothIcon3{
    position: absolute;
    left: 250px;
    bottom: 0px;
    width: 90px;
}
.GrothIcon4{
    position: absolute;
    right: 60px;
    top: 250px;
    width: 100px;
}
/*************************************/

#horizontal-scoll {
  padding: 0px 0 !important;
}

.horizontal-scoll-wrapper {
  overflow: hidden;
  height: auto;
}

.horizontal {
  display: flex;
}
.horizontal > div {
  display: flex;
  flex-shrink: 0;
  padding: 0 5px;
}

.horizontal > div:first-child {
  padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
  padding: 0 15px 0 5px;
}

.horizontal .cardabt {
align-items: stretch;
    width: 100%;
    border-radius: 38px;
    color: #f6f2e8;
}
.rippleNew{
    border-radius: 10px !important;
    width: 370px;
    left: 55px;
    height: 330px;
    top: 202px;
}

/*********Expan Box */

/*
.cards {
  --cards-text-color: #fff;
  --cards-closed-size: 4rem;
  --animation-speed-normal: .5s;
  --animation-speed-fast: .25s;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.card {
    width: 100%;
    height: var(--cards-closed-size);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all var(--animation-speed-normal) ease-in-out;
    cursor: pointer;
background: #000;
    border: 1px solid #221c2d;
	padding: 40px;
    border-radius: 15px;
	
	
}

.card[active] {
  height: 56vw;
}

.card__image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;

	opacity: 0;
}
.card[active] .card__image {
  opacity: 1;
}

.InfoBtn{
	margin-top: 50px;
}

.card__infos {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  height: var(--cards-closed-size);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .125rem;
  width: 100%;
  padding: .25rem 1rem;
}
.card[active] .card__infos {
    bottom: 31px;
    padding: 37px;
}

.card__name {
    margin: 0;
    color: #c3c3c3;
    transform: translateY(.65rem);
    transition: all var(--animation-speed-normal) ease-in-out;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.card[active] .card__name {
    transform: translateY(0);
    font-size: 20px;
    margin-top: 2px;
    font-weight: 600;
}

.card__author {
  margin: 0;
  color: var(--cards-text-color);
  text-decoration: none;
  transform: translateY(.65rem);
  opacity: 0;
  transition:
    opacity var(--animation-speed-fast) ease-in-out,
    transform var(--animation-speed-normal) ease-in-out;
	height: 0;
}

.card[active] .card__author {
    transform: translateY(0);
    opacity: 1;
    height: auto;
    margin-top: -37px;
    font-size: 14px;
	    color: #bfbfbf;
    font-weight: 200;
}

.card[active] .card__author:hover {
  opacity: .75;
}
.ExpIcon {
    position: relative;
    top: -24px;
	    left: 11px;
}
.card[active] .ExpIcon {
    top: -78px;
	    left: 0px;
}
.BoxExpand{
	margin-bottom: 150px;
	    margin-left: -165px;
}
@media screen and (min-width: 640px) {
  .cards {
    max-width: 1100px;
    margin: 0 auto;
    flex-direction: row;
  }

  .card {
    width: var(--cards-closed-size);
    height: 27rem;
    flex: 0 0 var(--cards-closed-size);
	  padding: 50px;
  }

  .card[active] {
    width: 100%;
    height: 27rem;
    flex: 0 0 calc(1100px - 19rem);
  }
  
  .card__name {
    transform: rotate(-90deg) translate(7rem, -3.2rem);
  }
}
*/


.ExpContainer {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 1180px;
    height: 430px;
    margin: 0 auto;
    }

    .card {
    flex: 0.4;
    background: #101010;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
    position: relative;
    border: 1px solid #1f1e1e;
    }

    .card.expanded {
      flex: 3;
      background: #1a1a1a;
		    padding: 0;
    }

    /* collapsed state label + icon */
    .collapsed-info {
      /* display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease; */
    }

    .MainLabel {
transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 19px;
    margin-bottom: 12px;
    position: absolute;
    bottom: 100px;
    color: #c8c5c5;
    width: 100%;
    margin-left: 0px;
    line-height: 24px;
    }

    .iconSieze {
    font-size: 20px;
    opacity: 0.8;
    position: absolute;
    bottom: 25px;
    left: 27px;
    }

    /* hide label + icon smoothly when expanded */
    .card.expanded .collapsed-info {
      opacity: 0;
      transform: translateY(40px);
      pointer-events: none;
    }

    /* expanded content */
    .card-content {
      opacity: 0;
      text-align: left;
      transition: opacity 0.5s ease;
    }

    .card.expanded .card-content {
      opacity: 1;
    }


.card-content p{
    color: #d1cbcb;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 22px;
}

    .ExpaTitle{
        font-size: 25px;
    margin-bottom: 7px;
    font-weight: 300;
    }

.IcoOpen {
    position: relative;
    top: -8px;
    left: -3px;
}

.Expslide1 {
    background-image: url(../img/slide1.png) ;
    width: 100%;
    height: 430px;
    background-size: cover;
	    padding: 40px;
    padding-top: 240px;
}
.Expslide2 {
    background-image: url(../img/slide2.png) ;
    width: 100%;
    height: 430px;
    background-size: cover;
	    padding: 40px;
    padding-top: 240px;
}
.Expslide3 {
    background-image: url(../img/slide3.png) ;
    width: 100%;
    height: 430px;
    background-size: cover;
	    padding: 40px;
    padding-top: 240px;
}
.Expslide4 {
    background-image: url(../img/slide4.png);
    width: 100%;
    height: 430px;
    background-size: cover;
	     padding: 40px;
    padding-top: 240px;
}
.Expslide5 {
    background-image: url(../img/slide5.png);
    width: 100%;
    height: 430px;
    background-size: cover;
	    padding: 40px;
    padding-top: 240px;
}
.BoxExpand {
    margin-bottom: 150px;
}











.btn-one {
    position: relative;
    display: inline-block;
    background: #fff;
    background-size: 200% auto;
    border-radius: 100px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    outline: none;
    padding: 17px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.btn-two {
    position: relative;
    display: inline-block;
    background: none;
    background-size: 200% auto;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: 1px solid #fff;
    padding: 17px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}


.btn-three {
    position: relative;
    display: inline-block;
    background: none;
    background-size: 200% auto;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    padding: 17px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
 }
.btn-three:hover {
  background-position: right center; /* change the direction of the change here */
}

.btn-three {
  background-image: linear-gradient(to right, #400fb6 0%, #871dd0 51%, #400fb6 100%);
}
.worksTitle{
	    
}


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



.worksTitle {
 font-size: 90px;
    line-height: 75px;
	color: #fff;
  background: linear-gradient(45deg, #ab88ea 20%, #8454e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 6px 7px rgba(0,0,0, 0.2));
	margin-top: 25px;
}


.workBtm{
	padding:90px 0 10px;
}

.floatbg{
	position: relative;
	    padding-left: 70px;
}
.floatbg::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 460px;
    background: #592aa9;
    z-index: -1;
    border-radius: 200px;
    top: 0px;
    left: 170px;
}
.floatbg img{
	margin-top: -30px;
	margin-left: 40px;
}


/***** Vertical Scroll CSS ***/

.threshold {
  position: sticky;
  width: 100%;
  height: 1px;

  z-index: 9999999999;
	
}
.threshold--top {
  top: 50%;
}


.image {
  opacity: 0;
  transition: all 0.5s ease;
}
.image.active {
  opacity: 1;
}
.scbtn{
	margin-top: 20px;
}
.locker {
  outline-offset: -1px;
  position: relative;
  display: grid;
  grid-template-columns: [full-start] minmax(0rem, 1fr) [center-start] repeat(12, [col-start] minmax(min-content, 7rem) [col-end]) [center-end] minmax(0rem, 1fr) [full-end];
	    margin-top: -70px;
}
.locker__image {
  position: relative;
  grid-column: col-start 1/col-end 6;
}
.locker__image img {
    border-radius: 21px;
    width: 100%;
	    margin-top: 90px;
	top: 0;
    position: absolute;
    transition: all 1s ease;
    border: 1px solid #2a203a;
}
.locker__container {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.locker__content {
  grid-column: col-start 8/center-end;
}
.locker__section {
  height: 90vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
      border-top: 3px dotted #363137;
}
.locker__section:first-child {
  border: none;
}
.locker__section p {
 
}

#message {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: white;
  height: auto;
  padding: 10px 20px;
  z-index: 900;
}
.VertTitle{
	text-align: center;
	font-weight: 300;
	font-size: 60px;
	margin: 0 auto;
	width: 80%;
}
.VertScale{
	    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 48px;
    color: #e0e0e4;
    background: -webkit-linear-gradient(left, #ceced6, #7070fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.Secure{
	padding: 10PX 0 140PX;
}
.sec_img{
	width: 90%;
}

.rowSecure{
	margin-bottom: 150px;
}
.SecRight{
	text-align: right;
}
.FaqContent h3{
	font-size: 17px;
	    font-weight: 500;
}
.FaqContent p{
    font-size: 15px;
    margin-top: 11px;
    line-height: 22px;
}
.FaqContent {
    margin-bottom: 70px;
}










/************************************/
/***      32. Responsive css      ***/
/************************************/

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

    .our-projects .container-fluid{
        max-width: 100%;
    }
}

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

    .hero::before{
        left: 30px;
    }

    .hero::after{
        right: 30px;
    }

    .hero-content::before{
        left: -20%;
    }

    .hero-content::after{
        right: -20%;
    }

    .page-header::before{
        left: 30px;
    }

    .page-header::after{
        right: 30px;
    }
}

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

    .hero-content::before{
        left: -5%;
    }

    .hero-content::after{
        right: -5%;
    }
}

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

	.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 20px;
	}

	.btn-default.btn-highlighted{
		padding: 13px 20px;
	}

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

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

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

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

	.section-title h3::before{
		left: 10px;
	}

	.section-title h3::after{
		right: 10px;
	}

	.section-title h1{
		font-size: 50px;
	}

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

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

	.section-title p span{
		font-size: 18px;
	}

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

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

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

	.hero{
		background-size: 165% auto;
		padding: 150px 0 40px;
	}

    .hero::before{
        width: 80px;
        height: 77px;
        opacity: 30%;
    }

    .hero::after{
        width: 52px;
        height: 80px;
        opacity: 30%;
    }

    .hero-content::before{
        left: 5%;
        width: 51px;
        height: 55px;
        opacity: 30%;
    }

    .hero-content::after{
        right: 5%;
        width: 72px;
        height: 76px;
        opacity: 30%;
    }

	.hero-btn{
		margin-top: 30px;
	}	

	.hero-company-slider{
		margin-top: 40px;
	}

	.hero-company-slider p{
		margin-bottom: 20px;
	}

	.about-us{
		padding: 40px 0 10px;
	}

	.about-us-box{
		padding: 20px;
	}

	.about-us-item{
		gap: 20px;
		margin-bottom: 30px;
	}

	.about-item-content{
		width: calc(100% - 60px);
	}

	.about-item-content h3{
		margin-bottom: 20px;
	}

	.about-item-content h2{
		font-size: 38px;
	}

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

    .service-item{
        display: block;
        padding: 20px;
    }

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

    .service-list{
        margin-top: 10px;
    }

    .service-list ul{
        gap: 15px 12px;
    }

    .service-list ul li{
        background-size: 18px auto;
        padding: 8px 15px 8px 40px;
    }

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

    .how-work-content{
        margin-bottom: 30px;
    }

    .how-work-item{
        padding: 30px;
        margin-bottom: 30px;
    }

    .how-work-header{
        margin-right: 30px;
        padding-right: 30px;
    }

    .how-work-item-content{
        width: calc(100% - 130px);
    }

    .how-work-video-content{
        position: initial;
        top: 0px;
        margin-left: 0;
    }

    .how-work-video video{
        height: 500px;
    }

    .our-facts{
        padding: 40px 0;
    }

    .facts-item{
        padding: 30px 25px;
    }

    .facts-item-counter,
    .facts-item-title{
        margin-bottom: 40px;
    }

    .facts-item-counter h2{
        font-size: 38px;
    }

    .facts-item-content{
        padding: 15px;
    }

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

	.our-projects{
        padding: 40px 0 10px;
    }

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

    .project-content{
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .project-btn{
        right: 20px;
    }

    .project-item:hover .project-btn{
        top: 20px;
    }

    .project-btn a{
        width: 50px;
        height: 50px;
    }

    .project-btn a img{
        max-width: 16px;
    }

	.real-impacts{
        padding: 40px 0 10px;
    }

    .real-impact-image{
        padding: 30px;
        margin-bottom: 20px;
    }

    .real-impact-image h3{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .impact-chatbot-list{
        gap: 10px;
    }

    .real-impact-image .chatbot-item img{
        max-width: 24px;
    }

	.cta-box{
        padding: 40px 0;
    }

    .cta-box-box{
        padding: 50px 20px;
    }

    .cta-box-box::before{
        left: 30px;
        top: 30px;
        width: 80px;
        height: 77px;
        opacity: 30%;
    }

    .cta-box-box::after{
        right: 30px;
        width: 52px;
        height: 80px;
        opacity: 30%;
    }

	.what-we-do{
        padding: 40px 0;
    }

    .what-we-box{
        padding: 40px 35px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .what-we-box h3{
        margin-bottom: 30px;
    }

    .what-we-img-list ul li{
        padding: 8px 15px 8px 40px;
    }

    .what-we-do-content{
        margin-left: 0;
    }

    .what-we-do-body{
        margin-bottom: 30px;
    }

    .what-we-do-body ul{
        gap: 20px;
    }

    .what-we-do-body ul li{
        padding: 8px 15px 8px 40px;
    }

    .what-we-do-body ul li::before{
        font-size: 16px;
    }

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

    .testimonials-box{
        padding: 50px 20px;
    }

    .testimonials-content,
    .testimonial-slider{
        width: 100%;
    }

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

    .testimonials-counter-item h2{
        font-size: 38px;
    }

    .testimonial-header{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .testimonial-content p{
        font-size: 16px;
    }

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

    .faqs-content{
        padding-left: 0;
        position: static;
        margin: 0 0 30px;
    }

    .faq-accordion .accordion-item{
        margin-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button{
        padding: 15px 45px 15px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after{
        font-size: 20px;
        right: 15px;
    }

    .faq-accordion .accordion-item .accordion-body{
        padding: 15px;
    }

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

    .post-item{
        padding: 30px;
    }

    .post-item-content{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .main-footer{
        padding: 50px 0 0;
    }

    .main-footer .section-row{
        padding-bottom: 40px;
    }

    .footer-contact-box{
        gap: 20px;
    }

    .footer-contact-box .footer-links{
        width: calc(50% - 10px);
    }

    .footer-privacy-policy{
        margin: 30px 0 0;
    }

    .footer-copyright-text{
        margin-top: 40px;
        padding: 30px 0;
    }

    .page-header{
        padding: 170px 0 40px;
    }

    .page-header::before{
        width: 80px;
        height: 77px;
        opacity: 30%;
    }

    .page-header::after{
        width: 52px;
        height: 80px;
        opacity: 30%;
    }

    .page-header-box h1{
        font-size: 50px;
        margin-bottom: 10px;
    }

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

    .approach-item-list{
        margin-bottom: 30px;
    }

    .approach-item:after{
        left: 30px;
        bottom: -60px;
    }  

    .approach-item .icon-box{
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .approach-item .icon-box img{
        max-width: 30px;
    }

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

    .approach-image{
        margin-left: 0;
    }

    .approach-counter-item h2{
        font-size: 38px;
    }

    .our-solution{
        padding: 40px 0;
    }

    .our-solution-content{
        position: initial;
        margin: 0 0 30px 0;
    }

    .solution-item .icon-box{
        margin-bottom: 30px;
    }

    .our-team{
        padding: 40px 0 10px;
    }

    .team-image img{
        aspect-ratio: 1 / 1.2;
    }

    .team-body{
        padding: 15px;
    }

    .our-faqs.about-our-faqs{
        padding: 40px 0 80px;
    }

    .page-services{
        padding: 40px 0 10px;
    }

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

    .page-single-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list{
        margin-bottom: 30px;
    }

    .page-catagery-list h3,
    .page-catagery-list ul{
        padding: 20px;
    }

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

    .sidebar-cta-box{
        padding: 20px;
    }

    .sidebar-cta-logo{
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .sidebar-cta-logo img{
        max-width: 34px;
    }

    .sidebar-cta-content{
        margin-bottom: 30px;
    }

    .sidebar-cta-content h3
    .sidebar-cta-contact ul li{
        margin-bottom: 15px;
    }

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

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

    .service-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-entry ul{
        gap: 20px;
    }

    .service-entry ul li{
        width: calc(33.33% - 13.33px);
        padding: 8px 15px 8px 40px;
        font-size: 14px;
    }

    .service-entry ul li::before{
        font-size: 16px;
        top: 9px;
    }

    .service-solution-box,
    .service-impact-box,
    .service-innovation-box,
    .building-smarter-box{
        margin-top: 40px;
    }

    .service-solution-steps{
        margin-top: 30px;
    }

    .service-impact-list{
        padding: 30px;
        margin-top: 30px;
    }

    .service-impact-item .icon-box{
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
    }

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

    .service-impact-item-content h3{
        margin-bottom: 10px;
    }

    .service-innovation-list{
        margin-top: 30px;
    }

    .building-steps-image{
        margin-top: 30px;
    }

    .building-step-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .building-step-no{
        margin-right: 20px;
    }
    
    .building-step-no h2{
        margin-bottom: 0;
    }

    .page-blog{
        padding: 40px 0 80px;
    }
    
    .page-pagination{
        margin-top: 10px;
    }

    .page-single-post{
        padding: 40px 0 80px;
    }
    
    .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.45em;
    }
    
    .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-projects{
        padding: 40px 0 50px;
    }

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

    .project-category{
        margin-bottom: 30px;
        padding: 20px;
    }

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

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

    .project-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

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

    .project-entry ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .project-entry ul li::before{
        font-size: 16px;
    }

    .project-challenge-box,
    .project-solution-box{
        margin-top: 40px;
    }

    .project-challenge-list{
        margin-top: 30px;
        padding: 20px;
    }

    .project-solution-counters{
        gap: 30px 40px;
        margin-top: 30px;
    }

    .solution-counter-item{
        width: calc(25% - 30px);
    }

    .solution-counter-item h2{
        margin-bottom: 5px;
    }

    .page-team{
        padding: 40px 0 50px;
    }

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

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

    .team-single-image img{
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }

    .team-member-info,
    .team-expertise-box,
    .team-guideline-box{
        margin-bottom: 40px;
    }

    .team-expertise-list{
        gap: 30px;
    }

    .team-guideline-list ul{
        gap: 20px;
    }

    .team-guideline-list ul li{
        width: calc(50% - 10px);
        font-size: 14px;
        padding: 8px 15px 8px 40px;
    }

    .team-guideline-list ul li::before{
        font-size: 16px;
    }

    .page-testimonials{
        padding: 40px 0 10px;
    }
    
    .page-testimonials .testimonial-item{
        padding: 20px;
    }

    .page-gallery{
		padding: 40px 0 50px;
	}

	.page-video-gallery{
		padding: 40px 0 50px;
	}

    .page-faqs{
        padding: 40px 0 80px;
    }
    
    .page-faqs .page-faq-accordion{
        margin-bottom: 40px;
    }

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

    .conatct-us-form{
		border-radius: 26px;
	}

    .conatct-us-form .contact-form,
    .google-map-iframe{
        width: 100%;
    }

    .contact-form{
		padding: 30px;
	}

    .contact-form form .form-control{
		padding: 12px 15px;
		border-radius: 14px;
	}

	.google-map-iframe iframe{
		height: 450px;
	}

    .contact-info-list{
        margin-top: 80px;
    }

    .contact-info-item{
        width: calc(50% - 15px);
        padding: 20px;
    }

    .contact-info-item .icon-box{
        margin: 0 auto 30px;
    }

    .error-page{
		padding: 40px 0 80px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

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

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

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

	.section-title h3{
		font-size: 12px;
	}

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

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

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

	.section-title p span{
		font-size: 16px;
	}

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

	.hero-company-slider p{
		font-size: 18px;
	}

	.about-item-content h2{
        font-size: 26px;
    }

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

    .service-list ul{
        gap: 10px;
    }

    .service-list ul li{
        background-position: left 10px top 10px;
        background-size: 16px auto;
        padding: 8px 10px 8px 30px;
    }

    .how-work-item{
        display: block;
        padding: 20px;
        margin-bottom: 20px;
    }

    .how-work-header{
        border-right: none;
        border-bottom: 1px solid var(--divider-color);
        margin: 0 0 20px 0;
        padding: 0 0 20px 0;
    }

    .how-work-step-no{
        text-align: left;
        margin-top: 10px;
    }

    .how-work-item-content{
        width: 100%;
    }

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

    .how-work-video video{
        height: 350px;
    }

    .how-work-video-content .section-footer-text{
        margin: 20px 0px 0 0px;
    }

    .facts-item{
        padding: 20px;
    }

    .facts-item-counter,
    .facts-item-title{
        margin-bottom: 30px;
    }

    .facts-item-title h3{
        font-size: 18px;
    }

    .facts-item-counter h2{
        font-size: 26px;
    }

    .facts-item-content{
        border-radius: 12px;
        padding: 10px;
    }

    .section-footer-text span{
        margin-right: 5px;
    }

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

	.real-impact-image{
        padding: 20px;
        margin-bottom: 15px;
    }

    .real-impact-image h3{
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .real-impact-content.highlighted-content{
        border-radius: 12px;
        padding: 15px;
    }

	.cta-box-box{
        padding: 50px 15px;
    }

	.what-we-box{
        padding: 25px 15px;
    }

    .what-we-box h3{
        font-size: 18px;
        margin-bottom: 30px;
    }

    .what-we-img-list ul{
        gap: 15px;
    }

    .what-we-img-list ul li{
        font-size: 14px;
        background-position: left 10px center;
        background-size: 18px auto;
        padding: 8px 15px 8px 35px;
    }

    .what-we-img-list ul li img{
        max-width: 16px;
    }

    .what-we-do-body ul{
        gap: 15px;
    }

    .what-we-do-body ul li{
        font-size: 14px;
        padding: 8px 15px 8px 30px;
    }

    .what-we-do-body ul li::before{
        font-size: 14px;
        left: 10px;
    }

    .testimonials-body{
        gap: 20px;
    }

    .testimonials-counter-item h2{
        font-size: 26px;
    }

    .testimonials-counter-item p{
        font-size: 14px;
    }

    .testimonial-slider{
        margin: 10px 0;
    }

    .testimonial-slider::before{
        transform: rotate(-6deg);
    }

    .testimonial-slider .swiper{
        padding: 20px 20px 50px 20px;
    }

    .author-image{
        margin-right: 10px;
    }

    .author-content h3{
        font-size: 18px;
        margin-bottom: 3px;
    }

    .author-content p{
        font-size: 14px;
    }

    .testimonial-quotes-img img{
        max-width: 25px;
    }

    .testimonial-slider .testimonial-pagination{
        bottom: 20px;
        left: 20px;
    }

	.faq-accordion .accordion-header .accordion-button{
        font-size: 16px;
        padding: 12px 40px 12px 12px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after{
        font-size: 18px;
        right: 12px;
    }

    .faq-accordion .accordion-item .accordion-body{
        padding: 12px;
    }

	.post-item{
        padding: 20px;
    }

    .post-meta{
        margin-bottom: 15px;
    }

    .post-meta ul li i{
        font-size: 16px;
    }

    .post-item-content h2{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .main-footer .section-row{
        padding-bottom: 30px;
    }

    .about-footer{
        margin-bottom: 30px;
    }

    .footer-contact-box .footer-links{
        width: 100%;
    }

    .footer-links h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-newsletter-form .form-group .newsletter-btn{
        width: 35%;
    }

    .footer-copyright-text{
        margin-top: 30px;
        padding: 15px 0;
    }

    .page-header-box h1{
        font-size: 30px;
    }

    .approach-item{
        margin-bottom: 30px;
    }

    .approach-item:after{
        left: 25px;
        bottom: -50px;
    }

    .approach-item .icon-box{
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .approach-item .icon-box img{
        max-width: 26px;
    }

    .approach-item-content{
        width: calc(100% - 65px);
    }

    .approach-item-content h3{
        font-size: 18px;
    }

    .approach-image img{
        aspect-ratio: 1 / 0.8;
    }

    .approach-counter-box{
        left: 15px;
        bottom: 15px;
        border-radius: 14px;
        padding: 15px;
    }

    .approach-counter-item h2{
        font-size: 26px;
    }

    .approach-counter-item p{
        font-size: 14px;
    }

    .solution-item-list{
        gap: 20px;
    }

    .solution-item:nth-child(4n - 1){
        background: url('../images/solution-item-bg.svg') no-repeat;
        background-size: cover;
        background-position: center center;
        border: 1px solid var(--divider-color);
        border-radius: 20px;
    }

    .solution-item:nth-child(4n - 4){
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .solution-item{
       width: 100%;
    }

    .page-catagery-list h3{
        font-size: 18px;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .sidebar-cta-content{
        margin-bottom: 20px;
    }

    .sidebar-cta-contact ul li{
        margin-bottom: 15px;
    }

    .sidebar-cta-contact ul li a{
        padding: 6px 14px;
    }

    .sidebar-cta-contact ul li a img{
        max-width: 16px;
    }

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

    .service-entry h2{
        font-size: 26px;
    }

    .service-entry ul li{
        width: auto;
    }

    .service-impact-list{
        padding: 20px;
    }

    .service-impact-item{
        width: 100%;
    }
    
    .service-impact-item .icon-box{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

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

    .service-impact-item-content h3{
        font-size: 18px;
    }

    .building-smarter-steps,
    .building-smarter-image{
        width: 100%;
    }

    .building-step-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .building-step-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .building-smarter-image figure{
        height: auto;
    }

    .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: 18px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.tag-links{
        font-size: 18px;
    }

    .project-category-list ul li,
    .category-social-link h3{
        font-size: 18px;
    }
    

    .project-entry h2{
        font-size: 26px;
    }

    .project-challenge-list{
        padding: 12px;
        border-radius: 12px;
    }

    .solution-counter-item{
        width: calc(50% - 20px);
    }

    .solution-counter-item h2{
        font-size: 30px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 1.15;
        object-position: center center;
    }

    .member-info-box,
	.member-contact-list{
		width: 100%;
	}

	.member-info-box::before{
		width: 100%;
		height: 1px;
		top: auto;
		right: auto;
		left: 0;
		bottom: -20px;
	}

	.member-contact-item{
		margin-bottom: 20px;
	}

	.member-contact-item h3{
		font-size: 18px;
        margin-bottom: 5px;
	}

	.skills-progress-bar{
		width: 100%;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no{
		font-size: 18px;
	}

    .team-guideline-list ul li{
        width: 100%;
        padding: 8px 10px 8px 30px;
    }

    .team-guideline-list ul li::before{
        font-size: 14px;
        left: 10px;
        top: 9px;
    }

    .contact-form{
        padding: 30px 20px;
    }

    .google-map-iframe iframe{
        height: 350px;
    }

    .contact-info-item{
        width: 100%;
    }

    .contact-info-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/*

@media only screen and (min-width:1300px) {
    .about-us {
    padding: 150px 0 50px;
}
}


@media only screen and (min-width:1560px) {
    .about-us {
    padding: 0px 0 50px;
}
}
*/
.hero {
    min-height: 1220px;
}
@media only screen and (min-width:1540px) and (max-width:1980px) {
    .hero {
    min-height: 1120px;
}
	.about-us {
    padding-top: 0;
}
}

