/*
Theme Name: Nextmind
Theme URI: https://1.envato.market/nextmind-wp
Description: AI Agency & Technology WordPress Theme
Author: Awaiken Themes
Author URI: https://themeforest.net/user/awaiken
Version: 1.0.1
Requires at least: 6.3
Tested up to: 6.8
Requires PHP: 7.4
License: Themeforest Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: nextmind
Tags: one-column, two-columns, three-columns, four-columns, custom-colors, custom-menu, custom-logo, editor-style, featured-images, threaded-comments, style-variations, blog
*/

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

body{
	font-family: var(--e-global-typography-text-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--e-global-color-text);
	background: var(--e-global-color-background);
}

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

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

.elementor-widget-text-editor p{
	line-height: inherit;
}

.elementor-widget-text-editor p:last-child{
	margin-bottom: 0 !important;
}

a{
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

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

figure{
	margin: 0;
}

iframe{
	max-width: 100%;
}

.elementor-widget-button{
	line-height: 0;
}

/* Theme Button CSS  */

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

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

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

	.btn-default{
		padding: 14px 20px;
	}

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

/* Elementor Button CSS */

.highlighted-button.elementor-widget-button .elementor-button{
	position: relative;
	background: var(--e-global-color-background);
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.highlighted-button.elementor-widget-button .elementor-button:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
	background: var(--e-global-color-accent);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.highlighted-button.elementor-widget-button .elementor-button:hover:before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}


/* Image Animation CSS */

.at-animation-image-style-1 img{
	clip-path: inset(0 100% 0 0); 
}

.at-blog-shiny-glass-effect,
.at-shiny-glass-effect{
	position: relative;
	overflow: hidden;
}

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

.at-blog-shiny-glass-effect:hover:after,
.at-shiny-glass-effect:hover:after{
	height: 250%;
	transition: all 600ms linear !important;
	background-color: transparent;
}

.container{
	max-width: 1300px;
}

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

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

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

#magic-cursor{
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index:1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	background: linear-gradient(90.01deg, var(--e-global-color-accent) 0.26%, var(--e-global-color-accentsecondary) 99.99%);
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	pointer-events: none;
	border: none;
	opacity: 1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--e-global-color-background);
	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(--e-global-color-accent) transparent var(--e-global-color-accentsecondary);
	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);
	}
}


body.fancy-scrollbar::-webkit-scrollbar-track{
	background-color: var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

body.fancy-scrollbar::-webkit-scrollbar{
	width: 7px;
	background-color: var(--e-global-color-primary);
}

body.fancy-scrollbar::-webkit-scrollbar-thumb{
	background: linear-gradient(180deg, var(--e-global-color-accent) 0.26%, var(--e-global-color-accentsecondary) 99.99%);
}

/* Ekit Icon Box Size */

.elementor-icon-box-wrapper .elementor-icon-box-icon{
	line-height: 0;
}

.elementor-widget-icon .elementor-icon-wrapper{
	line-height: 0;
}

.elementor-widget-elementskit-icon-box .elementskit-box-header{
	line-height: 0;
}

.elementskit-funfact .funfact-icon svg path{
	stroke: none !important;
}

.elementskit-pricing-header svg path{
	fill: none !important;
}

.elementor-widget-elementskit-icon-box .elementskit-infobox::before,
.elementor-widget-elementskit-icon-box .elementskit-infobox .elementskit-info-box-icon{
	transition: all 0.4s ease-in-out !important;
}

/* Theme Header CSS */

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

header.main-header .header-sticky{
	padding: 30px 0;
	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;
	border-bottom: 1px solid var(--e-global-color-divider);
    transform: translateY(0);
	background: var(--e-global-color-background);
}

.navbar{
	padding: 0;
}

.navbar-brand{
	padding: 0;
}

.navbar-brand h1,
.navbar-brand h2{
	font-size: 40px !important;
	color: var(--e-global-color-accent) !important;	
	font-weight: 700 !important;
	letter-spacing: -0.02em;
}	

.navbar-brand span{
	display: block;
	font-size: 14px;
	color: var(--e-global-color-text);
	line-height: 1.2em;
}

.navbar-brand:hover{
	color: var(--e-global-color-accent);
}

.main-menu{
	font-family: var(--e-global-typography-primary-font-family);
	justify-content: flex-end;
}

.main-menu ul{
	align-items: center;
	flex-wrap: wrap;
}

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

.main-menu ul li:last-child{
	margin-right: 0;
}

.main-menu ul li.menu-item-has-children > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul ul li.menu-item-has-children > a{
	position: relative;
}

.main-menu ul ul li.menu-item-has-children > a:after{
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 6px;
	transform: rotate(-90deg);
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	padding: 13px 20px !important;
	color: var(--e-global-color-text);
}

.main-menu ul li.highlighted-menu a{
	display: block;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-primary);
	font-size: 16px;
	font-weight: 500;
	border: 2px solid var(--e-global-color-accent);
	padding: 10px 30px !important;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
}

.main-menu ul li.highlighted-menu a:after{
	background-color: var(--e-global-color-primary);
	border-radius: 30px;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-100%, 0) rotate(10deg);
	transform-origin: top left;
	transition: 0.2s transform ease-out;
	will-change: transform;
	z-index: -1;
}

.main-menu ul li.highlighted-menu a:hover::after{
	transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover{
	color: var(--e-global-color-accent);
}

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

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

.main-menu ul ul ul{
	left: 100%;
	top: 0;
}

.main-menu ul ul ul ul ul{
	display: none !important;
	opacity: 0;
	visibility: hidden;
}

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

.main-menu ul ul li a,
.main-menu ul ul li a:focus{
	color: var(--e-global-color-white);
	padding: 6px 20px !important;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover{
	color: var(--e-global-color-background);
}

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

#menu-all-pages-flat > li a{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.slicknav_btn,
.slicknav_nav .slicknav_item{
	cursor: pointer;
}

.slicknav_menu,
.slicknav_menu * {
	box-sizing: border-box;
}

.slicknav_btn{
	position: relative;
	display: block;
	float: right;
	padding: .438em .625em;
	line-height: 1.125em;
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar{
	margin-top: .188em;
}

.slicknav_menu .slicknav_menutxt{
	display: block;
	line-height: 1.188em;
	float: left;
	color: #fff;
	font-weight: 700;
	text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon{
	float: left;
	width: 1.125em;
	height: .875em;
	margin: .188em 0 0 .438em;
}

.slicknav_menu .slicknav_icon:before{
	background: 0 0;
	width: 1.125em;
	height: .875em;
	display: block;
	content: "";
	position: absolute;
}

.slicknav_menu .slicknav_no-text{
	margin: 0;
}

.slicknav_menu .slicknav_icon-bar{
	display: block;
	width: 1.125em;
	height: .125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}

.slicknav_menu:after,
.slicknav_menu:before{
	content: " ";
	display: table;
}

.slicknav_menu:after{
	clear: both;
}

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

.slicknav_nav .slicknav_arrow{
	font-size: .8em;
	margin: 0 0 0 .4em;
}

.slicknav_nav .slicknav_item a{
	display: inline;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a{
	display: block;
}

.slicknav_nav .slicknav_parent-link a{
	display: inline;
}

.slicknav_menu{
	font-size: 16px;
	background: #4c4c4c;
	padding: 5px;
}

.slicknav_nav,
.slicknav_nav ul{
	list-style: none;
	overflow: hidden;
	padding: 0;
}

.slicknav_menu .slicknav_icon-bar{
	background-color: #fff;
}

.slicknav_btn{
	margin: 5px 5px 6px;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #222;
}

.slicknav_nav{
	clear: both;
	color: #fff;
	margin: 0;
	font-size: .875em;
}

.slicknav_nav ul{
	margin: 0 0 0 10px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a{
	padding: 5px 10px;
}

.slicknav_nav .slicknav_row:hover{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #ccc;
	color: #fff;
}

.slicknav_nav a{
	text-decoration: none;
	color: #fff;
}

.slicknav_nav a:hover{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #ccc;
	color: #222;
}

.slicknav_nav .slicknav_txtnode{
	margin-left: 15px;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a{
	padding: 0;
	margin: 0;
}

.slicknav_brand{
	float: left;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 7px 12px;
	height: 44px;
}

.responsive-menu{
	top: 100%;
	position: absolute;
	left: 0;
	right: 0;
}

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

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

.slicknav_menu{
	padding: 0;
	background: linear-gradient(110deg, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 100%);
	max-height: 80vh;
	overflow: auto;
}

.slicknav_nav{
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav > ul{
	margin-left: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	font-size: 16px;
	font-weight: 400;
	padding: 7px 20px;
	color: var(--e-global-color-white);
	line-height: normal;
}

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

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

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	margin-top: 2px;
	float: right;
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
}

.slicknav_nav li.slicknav_open > a .slicknav_arrow:after{
	transform: rotate(-90deg);
	color: var(--e-global-color-primary);
}

/* Page Header Style */

.page-header{
    background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;
    padding: 265px 0 80px;
}

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

.page-header-box h1{
    font-size: 70px !important;
	font-weight: 600 !important;
	letter-spacing: -0.02em;
    margin-bottom: 15px;
	word-wrap: break-word;
}

.page-header-box .taxonomy-description{
	color: var(--e-global-color-white);
	margin-bottom: 20px;
}

.breadcrumb-trail{
	line-height: 1.5em;
}

.trail-items,
.page-header-box .post-meta ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.trail-items .breadcrumb_separate{
	margin: 0 8px;
}

.trail-items li,
.page-header-box .post-meta ul li{
	color: var(--e-global-color-text);
	display: inline-block;
}

.trail-items li:before,
.page-header-box .post-meta ul li:before{
	content: '/';
	margin: 0 8px;
}

.trail-items li:first-child:before,
.page-header-box .post-meta ul li:first-child:before{
	display: none;
}

.trail-items li a,
.page-header-box .post-meta ul li a{
	color: var(--e-global-color-text);
	transition: all 0.3s ease-in-out;
}

/* Theme Footer css */

footer.footer{
	background-color: var(--e-global-color-secondary);
}

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

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

.footer-logo h4{
	color: var(--e-global-color-white) !important;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

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

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

.footer-social ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
	background-size: 200% auto;
	width: 38px;
	height: 38px;
	color: var(--e-global-color-white);
	font-size: 18px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

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

.footer-menu{
	text-align: right;
	margin-bottom: 20px;
}

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

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

.footer-menu ul li a{
	color: var(--e-global-color-text);
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: var(--e-global-color-accent);
}

.copyright{
	text-align: right;
}

.copyright p{
	color: var(--e-global-color-text);
	margin: 0;
}

/* 404 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 .error-page-content{
	text-align: center;
}

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

.error-page-content-heading h2{
	font-size: 48px !important;
}

.error-page-content-body p{
	margin-bottom: 25px;
}

/* Archive and Single CSS */

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

/* Archive Style - 1 */

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

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

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

.blog-style-1 .post-meta ul li a{
    color: var(--e-global-color-primary);
}

.blog-style-1 .post-meta p{
	margin-bottom: 20px;
	line-height: normal;
}

.blog-style-1 .post-meta ul li i,
.blog-style-1 .post-meta p i{
    color: var(--e-global-color-accent);
    font-size: 18px;
    margin-right: 8px;
}

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

.blog-style-1 .post-item-content h2{
    font-size: 20px !important;
	font-weight: 700 !important;
    line-height: 1.4em !important;
    margin-bottom: 15px;
}

.blog-style-1 .post-item-content h2 a{
    color: var(--e-global-color-primary);
	word-break: break-word;
}

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

.blog-style-1 .post-item-btn a{
	color: var(--e-global-color-accent);
	font-weight: 700;
	display: flex;
	align-items: center;
}

.blog-style-1 .post-item-btn a i{
	border: 1px solid var(--e-global-color-divider);
	border-radius: 50%;
	padding: 5px;
	font-size: 12px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.blog-style-1 .post-item-btn a:hover i{
	transform: rotate(0deg);
	border-color: var(--e-global-color-accent);
}

.blog-style-1 .post-item-btn a svg{
	transition: all 0.3s ease-in-out;
}

.blog-style-1 .post-item-btn a:hover svg{
	transform: rotate(45deg);
}
 
.blog-style-1 .post-item-btn svg,
.blog-style-1 .post-item-btn i{
	margin-left: 10px;
}

.pagination .nav-links{
	margin-top: 30px;
	display: flex;
	text-align: center;
	justify-content: center;
	width: 100%;
}

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

.pagination .nav-links span.current,
.pagination .nav-links a:hover{
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
}

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

.page-single-post.single-page .post-entry{
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

.post-single-meta ul{
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.1em;
}

.post-single-meta ul li{
	font-size: 18px;
	display: inline-block;
	margin-right: 15px;
	color: var(--e-global-color-white);
	line-height: 1.2em;
}

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

.post-single-meta ul li i{
	font-size: 18px;
	color: var(--e-global-color-white);
	margin-right: 8px;
}

.post-single-meta ul li a{
	color: var(--e-global-color-primary);
}

.post-single-image{
	margin-bottom: 30px;
	overflow: hidden;
}

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

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

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

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

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

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

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

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 1em 0 0.7em;
	color: var(--e-global-color-primary);
}

.post-entry h1{
	font-size: 40px !important;
}

.post-entry h2{
	font-size: 48px !important;
	font-weight: 300;
}

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

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

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

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

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

.post-entry ul li{
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--e-global-color-text);
}

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

.post-entry ol li{
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
	color: var(--e-global-color-text);
}

.post-entry ul li a{
	color: var(--e-global-color-text);
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
	margin-top: 10px;
	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: var(--e-global-color-secondary) url('assets/images/icon-blockquote.svg') no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border: 1px solid var(--e-global-color-divider);
    border-radius: 20px;
    padding: 30px 30px 30px 90px !important;
    margin-bottom: 30px !important;
}

.post-entry blockquote p{
	font-size: 20px !important;
	color: var(--e-global-color-primary);
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.5em;
}

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

.post-entry blockquote cite{
    font-size: 18px;
    color: var(--e-global-color-accent);
}

.post-entry table{
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

.post-entry table tr td,
.post-entry table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px 10px;
}

.post-entry .wp-block-latest-posts.wp-block-latest-posts__list{
	list-style: inherit;
    padding-left: 20px;
}

.post-entry .has-fixed-layout tr td{
	border-color: inherit;
}

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

.post-tags .tag-links a{
	display: inline-block;
    font-size: 16px;
    font-weight: 500;
	line-height: 1em;
    text-transform: capitalize;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    color: var(--e-global-color-white);
    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: 12px;
}

.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(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	font-size: 18px;
    color: var(--e-global-color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

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

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

.post-entry hr,
.comment-content hr{
	border-top: 1px solid var(--e-global-color-divider);
	opacity: 1;	
}

.post-entry table caption{
	text-align: center;
	color: var(--e-global-color-primary);
}

.post-entry .wp-block-rss{
	list-style: inherit;
}

.post-entry .wp-block-social-links{
	padding: 0;
}

.post-entry .wp-block-calendar{
	margin-bottom: 20px;
}

@media only screen and (max-width: 1300px){
	
	.main-menu ul li a{
		padding: 12px 4px !important;
	}
}

@media only screen and (max-width: 1024px){
	
	.navbar-brand span{
		display: none;
	}

	.main-menu ul li a{
		padding: 12px 2px !important;
	}
}

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

	#magic-cursor{
        display: none !important;
    }

	.navbar-brand h1, 
	.navbar-brand h2{
		font-size: 30px !important;
	}

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

	.main-menu ul li{
        margin: 0 10px;
    }
	
	header.main-header .header-sticky{
		padding: 20px 0;
	}

	header.main-header .header-sticky.active .slicknav_menu{
		border-radius: 0;
	}
	
	.page-header{
		padding: 170px 0 40px;
	}

	.page-header-box h1{
		font-size: 50px !important;
		margin-bottom: 10px;
	}
	
	.page-header-box .taxonomy-description{
		margin-bottom: 10px;
	}
	
	.page-blog-archive{
		padding: 40px 0 80px;
	}

	.pagination .nav-links{
		margin-top: 10px;
	}
	
	.page-single-post{
		padding: 50px 0;
	}

	.post-single-image{
		margin-bottom: 20px;
	}
	
	.post-entry p{
		margin-bottom: 15px;
	}
	
	.blog-style-1 .post-item{
		 padding: 30px;
	}
	
	.blog-style-1 .post-item-content{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
		background-size: 40px;
        padding: 20px 20px 20px 70px !important;
        margin-bottom: 20px !important;
    }

	.post-entry blockquote p{
		font-size: 18px !important;
	}
	
	.post-entry h2{
		font-size: 38px !important;
	}

	.post-entry ul li,
	.post-entry ol li{
		margin-bottom: 10px;
	}

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

	.post-tags .tag-links a{
		padding: 12px 15px;
	}

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

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

	.footer-logo{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-social{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-social ul li{
		margin: 0 7px;
	}

	.footer-menu{
		text-align: center;
	}

	.footer-menu ul li{
		margin: 0 10px;
	}

	.copyright{
		text-align: center;
	}

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

	.error-page-image img{
		max-width: 80%;
	}
	
	.error-page-content-heading h2{
		font-size: 38px !important;
	}	

	.error-page-content-body p{
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 767px){
	
	.blog-style-1 .post-item-content h2{
		font-size: 18px !important;
		margin-bottom: 10px;
	}
	
	.blog-style-1 .post-meta p{
		margin-bottom: 15px;
	}
	
	.blog-style-1 .post-meta ul li i,
	.blog-style-1 .post-meta p i{
		font-size: 16px;
	}

	.post-single-meta ul li{
		margin-right: 15px;
		font-size: 16px;
	}

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

	.post-single-image figure,
	.post-single-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-single-meta ul li i{
		font-size: 16px;
	}
	
	.post-entry h1{
		font-size: 28px !important;
	}

	.post-entry h2{
		font-size: 26px !important;
	}

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

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

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

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

	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px !important;
	}

	.post-entry blockquote p{
		font-size: 18px !important;
	}
	
	.blog-style-1 .post-item{
		padding: 20px;
	}

	.tag-links {
		font-size: 18px;	
	}

	.error-page-content-heading h2{
        font-size: 26px !important;
	}

}

/* Default Post and Page CSS */

.alignnone{
	margin: 5px 0 20px 0;
}

.aligncenter,
div.aligncenter{
	display: block;
	margin: 5px auto 5px auto;
}

.alignright{
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft{
	float: left;
	margin: 5px 20px 20px 0 !important;
}

a img.alignright{
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone{
	margin: 5px 20px 20px 0;
}

a img.alignleft{
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption{
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone{
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft{
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright{
	margin: 5px 0 20px 20px;
}

.wp-caption img{
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text{
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.screen-reader-text{
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus{
	background-color: var(--e-global-color-divider);
	clip: auto !important;
	clip-path: none;
	color: var(--e-global-color-primary);
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.gallery-caption,
.bypostauthor{
	position: inherit;
}

.has-medium-font-size,
.has-large-font-size,
.has-x-large-font-size{
	line-height: 1.4em;
}

.wp-block-navigation__responsive-container-content ul ul li{
	padding-left: 0;
	margin-bottom: 0;
}

.wp-block-navigation__responsive-container-content ul ul li:before{
	display: none;
}

ul.wp-block-post-template{
	list-style: none !important;
	padding: 0;
}

ul.wp-block-post-template li{
	padding-left: 0;
}

.wp-block-post-template li:before{
	display: none;
}

.wp-block-post-template .wp-block-post-excerpt__excerpt{
	color: var(--e-global-color-text);
	font-weight: 400;
}

.wp-block-post-featured-image,
.wp-block-post-author,
.wp-block-avatar,
.wp-block-post-date,
.wp-block-post-navigation-link,
.wp-block-search,
.wp-block-buttons,
.wp-block-image,
.wp-block-audio,
.wp-block-cover,
.wp-block-media-text,
.wp-block-table,
.wp-block-button,
.wp-block-embed{
	margin-bottom: 20px;
}

.wp-block-gallery{
	margin-bottom: 20px !important;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{
	border: 1px solid var(--e-global-color-divider);
	background: var(--e-global-color-secondary);
	border-radius: 10px;
}

.wp-block-search .wp-block-search__input{
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-text);
	border: 1px solid var(--e-global-color-divider);
	outline: 0;
	box-shadow: none;
	border-radius: 10px;
	padding: 8px 20px;
}

.wp-block-search .wp-block-search__button{
	border-radius: 10px;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: all 0.4s ease-in-out;
}

.wp-block-search .wp-block-search__button:hover{
	background-position: right center;
}

.wp-block-social-links li{
	padding-left: 0 !important;
}

.wp-block-social-links li:before{
	display: none;
}

.wp-block-tag-cloud a{
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 1em !important;
	border: 0 !important;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-primary) !important;
	text-transform: capitalize;
	padding: 12px 20px;
	margin-bottom: 10px;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
}

.wp-block-tag-cloud a:hover{
	background-position: right center;
}

.wp-block-latest-comments{
	padding-left: 0;
}

.wp-block-latest-comments a{
	color: var(--e-global-color-primary);
}

.wp-block-button__link{
	width: auto;
}

.wp-block-button .wp-element-button,
.wp-block-button.is-style-outline .wp-element-button,
.wp-element-button,
.wp-block-button .wp-block-button__link,
.wp-block-file .wp-block-file__button{
	font-size: 16px;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-primary) !important;
	font-weight: 700;
	line-height: 1em;
	border-radius: 100px;
	padding: 17px 20px;
}

.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-background){
	color: var(--e-global-color-primary) !important;
	border: 0;
}

.wp-block-button.is-style-outline .wp-element-button{
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	background-position: right center;
	border: 0;
	color: var(--e-global-color-primary) !important;
}

.wp-block-button .wp-element-button:hover,
.wp-block-button.is-style-outline .wp-element-button:hover,
.wp-element-button:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:hover{
	background-position: right center;
}

.wp-block-file a{
	font-size: 16px;
}

.wp-block-column p:last-child{
	margin-bottom: 0;
}

.wp-block-cover{
	color: var(--e-global-color-white);
}

.wp-block-image figcaption{
	text-align: center;
}

.wp-block-gallery ul li{
	padding-left: 0;
}

.wp-block-gallery ul li:before{
	display: none !important;
}

.wp-block-quote.is-style-large{
	padding-top: 30px;
	padding-bottom: 30px;
}

.wp-block-categories-dropdown,
.wp-block-archives-dropdown{
	margin-bottom: 20px;
}

.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select{
	border-radius: 10px;
	background: var(--e-global-color-secondary);
	border: 1px solid var(--e-global-color-primary);
	color: var(--e-global-color-text);
	padding: 10px 20px;
}

.wp-caption .wp-caption-text{
	margin-top: 6px;
}

.gallery.gallery-columns-2,
.gallery.gallery-columns-3,
.gallery.gallery-columns-4,
.gallery.gallery-columns-5,
.gallery.gallery-columns-6,
.gallery.gallery-columns-7,
.gallery.gallery-columns-8,
.gallery.gallery-columns-9{
	display: flex;
	flex-wrap: wrap;
}

div:not(.elementor-image-gallery) .gallery .gallery-item{
	margin-right: 30px;
	margin-bottom: 30px;
}

div:not(.elementor-image-gallery) .gallery .gallery-item img{
	width: 100%;
	height: auto;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-1 .gallery-item{
	width: 100%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item{
	width: calc(50% - 15px);
}

.elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item{
	width: 50%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item{
	width: calc(33.33% - 20px);
}

.elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item{
	width: 33.33%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item{
	width: calc(25% - 22.5px);
}

.elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item{
	width: 25%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item{
	width: calc(20% - 24px);
}

.elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item{
	width: 20%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item{
	width: calc(16.66% - 25px);
}

.elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item{
	width: 16.66%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item{
	width: calc(14.28% - 25.7px);
}

.elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item{
	width: 14.28%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item{
	width: calc(12.5% - 26.25px);
}

.elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item{
	width: 12.5%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
	width: calc(11.11% - 26.66px);
}

.elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item{
	width: 11.11%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
	margin-right: 0;
}

.elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item{
	width: 10%;
}

.post-password-form input[type="password"]{
	background: var(--e-global-color-secondary);
	border: 1px solid var(--e-global-color-divider);
	color: var(--e-global-color-primary);
	outline: 0;
	box-shadow: none;
	border-radius: 10px;
	padding: 10px 20px;
}

.post-password-form input[type="submit"]{
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-white);
	font-weight: 700;
	font-size: 16px;
	line-height: 1em;
	border: none;
	border-radius: 10px;
	padding: 17px 20px;
	margin-left: 10px;
	transition: all 0.3s ease-in-out;
}

.post-password-form input[type="submit"]:hover{
	background-position: right center;
}

aside.widget{
	background: var(--e-global-color-secondary);
	border: 1px solid var(--e-global-color-divider);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 30px;
}

aside.widget a{
	color: var(--e-global-color-accent);
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.5em;
}

aside.widget .wp-block-latest-comments a,
aside.widget.widget_tag_cloud a{
	color: var(--e-global-color-primary);
}

aside.widget .tagcloud a{
	display: inline-block;
	font-size: 16px !important;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	line-height: 1em;
	font-weight: 500;
	border: none !important;
	padding: 12px 20px;
	border-radius: 30px;
	text-transform: capitalize;
	margin-bottom: 10px;
	margin-right: 4px;
	transition: all 0.3s ease-in-out;	
}

aside.widget .tagcloud a:hover{
	background-position: right center;
}

aside.widget .wp-block-heading,
aside.widget .widget-title{
	font-size: 20px;
	color: var(--e-global-color-primary);
	margin-bottom: 20px;
	word-break: break-word;
}

aside.widget ul{
	padding-left: 20px !important;
	margin: 0;
	list-style: inherit !important;
}

aside.widget ul li{
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--e-global-color-primary);
}

aside.widget ul li a{
	color: var(--e-global-color-primary);
}

aside.widget ul ul{
	margin-top: 10px;
	margin-bottom: 0;
	margin-left: -10px;
}

aside.widget ul li:last-child{
	margin-bottom: 0;
}

aside.widget ul.wp-block-social-links{
	padding-left: 0 !important;
}

aside.widget .wp-block-search .wp-block-search__input{
	background-color: transparent;
}

aside.widget .wp-block-search{
	margin-bottom: 0;
}

aside.widget .wp-block-search .wp-block-search__button{
	padding-left: 15px;
	padding-right: 15px;
}

aside.widget .wp-block-categories-dropdown,
aside.widget .wp-block-archives-dropdown{
	margin-bottom: 0;
}

aside.widget select,
aside.widget .wp-block-categories-dropdown select,
aside.widget .wp-block-archives-dropdown select{
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-text);
	border: 1px solid var(--e-global-color-primary);
	padding: 12px 20px;
	border-radius: 10px;
	width: 100%;
	outline: 0;
	line-height: 1.5em;
	box-shadow: none;
}

aside.widget.widget_recent_entries ul li{
	padding-left: 0;
}

aside.widget.widget_recent_entries ul li:before{
	display: none;
}

aside.widget.widget_recent_entries .wp-block-latest-posts__post-excerpt,
aside.widget .wp-block-rss__item-excerpt,
aside.widget .rssSummary{
	font-weight: 400;
	color: var(--e-global-color-text);
}

aside.widget .wp-block-social-links li{
	margin-bottom: 0;
}

aside.widget .wp-block-social-links{
	padding: 0 !important;
}

aside.widget table{
	width: 100%;
	background: transparent;
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

aside.widget table tr td,
aside.widget table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px;
	text-align: center;
}

aside.widget table caption{
	text-align: center;
	color: var(--e-global-color-primary);
}

aside.widget_search .search-form{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

aside.widget_search .search-form label{
	width: calc(100% - 100px);
}

aside.widget_search .search-form input{
	width: 100%;
	padding: 12px 20px;
	border: 1px solid var(--e-global-color-divider);
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondaryx) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-text);
	outline: 0;
	box-shadow: none;
	border-radius: 10px;
}

aside.widget .search-submit{
	max-width: 86px;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%) !important;
    background-size: 200% auto !important;
	color: var(--e-global-color-primary) !important;
	border: none !important;
	outline: 0;
	box-shadow: none;
	border: none;
	font-weight: 500;
	padding: 17px !important;
	line-height: 1em !important;
	border-radius: 10px !important;
	transition: all 0.3s ease-in-out;
}

aside.widget .search-submit:hover{
	background-position: right center !important;
}

aside.widget .has-login-form label{
	margin-bottom: 5px;
}

aside.widget .has-login-form input[type="text"],
aside.widget .has-login-form input[type="password"]{
	background: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-divider);
    outline: 0;
    box-shadow: none;
    border-radius: 10px;
    padding: 12px 20px;
	width: 100%;
}

aside.widget .has-login-form input[type="checkbox"]{
	width: auto;
}

aside.widget .has-login-form input[type="submit"]{
	font-size: 18px;
	font-weight: 500;
	border-radius: 10px;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    color: var(--e-global-color-primary) !important;
    line-height: 1em;
    border: none;
    outline: 0;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
    padding: 16px;
}

aside.widget .has-login-form input[type="submit"]:hover{
	background-position: right center;
}

aside.widget .calendar_wrap{
	text-align: center;
}

aside.widget .wp-block-social-links{
	padding: 0 !important; 
}

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

	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
		width: calc(50% - 15px);
	}
	
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
		margin-right: 30px;
	}

	div.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
	div.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9),
	div.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item:nth-of-type(10n + 10),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(2n + 2){
		margin-right: 0;
	}

	aside.widget{
		padding: 20px;
	}
	
	.sidebar-widget{
		margin-top: 30px;
	}

	.wp-block-tag-cloud a{
		padding: 12px 15px;
	}

	.post-password-form input[type="submit"]{
		padding: 14px 16px;
	}

	aside.widget .search-submit{
		padding: 14px 16px !important;
	}

	aside.widget .has-login-form input[type="submit"]{
		padding: 14px 16px ;
	}

	aside.widget .tagcloud a{
		padding: 12px 15px;
	}

}

@media only screen and (max-width: 767px){
	
	div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
		width: 100%;
	}
	
	div:not(.elementor-image-gallery) .gallery .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
		margin-right: 0;
	}

	.elementor-image-gallery .gallery.gallery-columns-1 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item {
		width: 100%;
	}
	
	.has-medium-font-size{
		font-size: 20px !important;
	}

	.has-large-font-size{
		font-size: 26px !important;
	}

	.has-x-large-font-size{
		font-size: 30px !important;
	}
	
	.wp-block-navigation__responsive-container{
		padding: 20px !important;
	}	

	.wp-block-media-text .wp-block-media-text__content{
		padding-left: 0;
		padding-right: 0;
		padding-top: 10px;
	}

	.post-password-form{
		text-align: center;
	}

	.post-password-form input[type="password"]{
		width: 100%;
		margin: 10px 0; 
	}
}

/* Post Comment Box CSS */

.page-single-post .comment-box{
	max-width: 1100px;
	margin: 80px auto 0;
}

.page-single-post .comment-box a,
.wp-block-post-comments-form a{
	color: var(--e-global-color-accent);
}

.comment-box .comment-respond:not(:first-child){
	margin-top: 60px;
}

.page-single-post .comment-box .comment-reply-title,
.page-single-post .comment-box .title-comments,
.wp-block-post-comments-form .comment-reply-title,
.wp-block-post-comments-form .title-comments{
	font-weight: 700;
	color: var(--e-global-color-primary);
	font-size: 30px;
	margin-bottom: 10px;
}

.page-single-post .comment-box .comment-reply-title,
.wp-block-post-comments-form .comment-reply-title{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link,
.wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link{
	font-size: 14px;
	font-weight: 400;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-primary);
	border-radius: 100px;
	text-transform: capitalize;
	padding: 5px 12px;
	transition: all 0.4s ease-in-out;
}

.page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link:hover,
.wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link:hover{
	background-position: right center;
}

.page-single-post .comment-box .title-comments{
	margin-bottom: 30px;
}

.comment-form{
	display: flex;
	flex-wrap: wrap;
}

.comment-form p:last-child{
	margin-bottom: 0;
}

.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit{
	width: 100%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-author,
.comment-form .comment-form-email{
	width: calc(33.33% - 20px);
	margin-right: 30px;
}

.comment-form .comment-form-url{
	width: calc(33.33% - 20px);
}

.comment-form label{
	display: block;
	margin-bottom: 4px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
	width: 100%;
	padding: 17px 20px;
	border: 1px solid var(--e-global-color-divider);
    box-shadow: none;
    background: var(--e-global-color-secondary);
    border-radius: 20px;
	outline: 0;
	color: var(--e-global-color-text);
}

.comment-form .comment-form-cookies-consent{
	position: relative;
	padding-left: 20px;
}

.comment-form .comment-form-cookies-consent label{
	display: inline-block;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]{
	margin-top: 0 !important;
	margin-right: 4px;
	top: 6px;
	left: 0;
	position: absolute;
}

.comment-form .form-submit .submit{
	display: inline-block;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	color: var(--e-global-color-primary);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	border: none;
	padding: 17px 30px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition:all 0.4s ease-in-out;
}

.comment-form .form-submit .submit:hover{
	background-position: right center;
}

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

.comment-list li{
	list-style: none;
}

.comment-list .comment .comment-body{
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--e-global-color-divider);
}

.comment-list .comment:last-child{
	margin-bottom: 0;
}

.comment-list .comment .comment-meta{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.comment-list .comment .comment-meta .comment-author img{
	max-width: 42px;
	aspect-ratio: 1/1;
	background: var(--e-global-color-secondary);
	border-radius: 50%;
	margin-right: 10px;
}

.comment-list .comment .comment-meta .comment-author b{
	font-weight: 400;
}

.comment-list .comment .comment-meta .comment-author a{
	color: var(--e-global-color-primary);
}

.comment-list .comment .comment-meta .comment-metadata a{
	color: var(--e-global-color-text);
	transition: all 0.4s ease-in-out;
}

.comment-list .comment .comment-meta .comment-metadata a:hover{
	color: var(--e-global-color-accent);
}

.comment-list .comment .comment-meta .comment-metadata  .comment-edit-link{
	color: var(--e-global-color-accent);
	margin-left: 10px;
}

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

.comment-list .comment .reply a{
	margin-top: 10px;
	display: inline-block;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
	padding: 2px 10px;
	border-radius: 100px;
	font-size: 14px;
	color: var(--e-global-color-primary) !important;
	transition: all 0.4s ease-in-out;
}

.comment-list .comment .reply a:hover{
	background-position: right center;
}

.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6{
	color: var(--e-global-color-primary);
	margin: 0.8em 0;
}

.comment-content table{
	width: 100%;
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

.comment-content table tr td,
.comment-content table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px 10px;
}

.comment-content table tr th{
	color: var(--e-global-color-primary);
	font-size: 18px;
}

.comment-content ul{
	padding-left: 20px;
	margin: 0 0 1.7em;
}

.comment-body li{
	list-style: initial;
}

.comment-content ul li{
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--e-global-color-primary);
}

.comment-content ul ul{
	margin-top: 10px;
	margin-bottom: 0;
}

.comment-content ol ol{
	margin-top: 10px;
}

.comment-content ol li{
	list-style: decimal;
	margin-bottom: 10px;
}

@media only screen and (max-width: 991px){
	
	.page-single-post .comment-box{
		margin-top: 40px;
	}

	.comment-box .comment-respond:not(:first-child){
		margin-top: 40px;
	}

	.page-single-post .comment-box .comment-reply-title, 
	.page-single-post .comment-box .title-comments, 
	.wp-block-post-comments-form .comment-reply-title, 
	.wp-block-post-comments-form .title-comments{
		font-size: 24px;
	}

	.wp-block-button .wp-element-button, 
	.wp-block-button.is-style-outline .wp-element-button, 
	.wp-element-button, 
	.wp-block-button .wp-block-button__link, 
	.wp-block-file .wp-block-file__button{
		padding: 14px 16px;
	}

	.page-single-post .comment-box .comment-reply-title small{
		width: 100%;
		margin-top: 6px;
	}
	
	.comment-form .form-submit .submit{
		padding: 14px 20px;
	}
	
	.comment-form textarea,
	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"]{
		padding: 12px 15px;
		border-radius: 14px;
	}

	.comment-list .children{
		padding-left: 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.page-single-post .comment-box .comment-reply-title, .page-single-post .comment-box .title-comments{
		font-size: 26px;
	}
	
	.comment-form .comment-form-author,
	.comment-form .comment-form-email,
	.comment-form .comment-form-url{
		width: 100%;
		margin-right: 0;
	}

	.comment-list .comment .comment-meta .comment-author,
	.comment-list .comment .comment-meta .comment-metadata{
		width: 100%;
	}

	.comment-list .comment .comment-meta .comment-metadata{
		margin-top: 10px;
	}
}

/* Project Widget CSS */

.awaiken-portfolio-grid__filters{
	--listIndent: 0;
	--contentSpacing: 0;
	--listStyleType: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-bottom: 60px;
	flex-wrap: wrap;
	gap: 10px 60px;
}

.awaiken-portfolio-grid__filters li{
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
	font-weight: 400;
	color: var(--e-global-color-text);
	text-transform: capitalize;
	line-height: 1.4em;
	border: none;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1{
	gap: 10px 30px;
	margin-bottom: 60px;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
	position: relative;
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 1.2em;
	height: auto;
	padding: 12px 25px;
	border-radius: 100px;
	border: 1px solid var(--e-global-color-accent);
	background: transparent;
	color: var(--e-global-color-accent);
	overflow: hidden;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
  	left: 50%;
  	right: 50%;
  	opacity: 0;
	background: var(--e-global-color-accent);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:hover:after,
.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li.active:after{
	left: -5px;
  	right: -5px;
	opacity: 1;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:hover,
.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li.active{
	color: var(--e-global-color-white);
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2{
	list-style-type: none;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:before{
	content: '/';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:first-child:before{
	display: none;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:hover,
.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li.active{
	color: var(--e-global-color-accent);
}

.layout-style-1 .awaiken-portfolio-grid{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	--portfolio-gap: 30px;
	column-gap: var(--portfolio-gap);
	width: 100%;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: 100%;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:has(:not(.awaiken-portfolio-grid-item__img img)){
	aspect-ratio: 1 / 1.352 !important;
	background: var(--e-global-color-accentsecondary);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:has(.awaiken-portfolio-grid-item__img img){
	position: relative;
	overflow: hidden;
	background: transparent;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item .awaiken-portfolio-grid-item__img img{
	width: 100%;
	aspect-ratio: 1 / 1.352 !important;
	object-fit: cover;
	height: 100%;
	transition: all 0.4s ease-out;
}

.elementor-grid-2 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: calc(50% - (var(--portfolio-gap) / 2));
}

.elementor-grid-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: calc(33.33% - ((var(--portfolio-gap) * 2) / 3));
}

.elementor-grid-4 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: calc(25% - ((var(--portfolio-gap) * 3) / 4));
}

.elementor-grid-5 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: calc(20% - ((var(--portfolio-gap) * 4) / 5));
}

@media only screen and (max-width: 1024px){
	
	.elementor-grid-tablet-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: 100%;
	}
	
	.elementor-grid-tablet-2 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(50% - (var(--portfolio-gap) / 2));
	}

	.elementor-grid-tablet-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(33.33% - ((var(--portfolio-gap) * 2) / 3));
	}

	.elementor-grid-tablet-4 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(25% - ((var(--portfolio-gap) * 3) / 4));
	}

	.elementor-grid-tablet-5 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(20% - ((var(--portfolio-gap) * 4) / 5));
	}
}

@media only screen and (max-width: 767px){
	
	.elementor-grid-mobile-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: 100%;
	}

	.elementor-grid-mobile-2 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(50% - (var(--portfolio-gap) / 2));
	}

	.elementor-grid-mobile-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(33.33% - ((var(--portfolio-gap) * 2) / 3));
	}

	.elementor-grid-mobile-4 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(25% - ((var(--portfolio-gap) * 3) / 4));
	}

	.elementor-grid-mobile-5 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(20% - ((var(--portfolio-gap) * 4) / 5));
	}
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img{
	position: relative;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img:after{
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__img:after{
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: 0;
   background: linear-gradient(180deg, rgba(6, 6, 6, 0) 49.26%, rgba(6, 6, 6, 0.864) 86.32%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.layout-style-1 .awaiken-portfolio-grid.awaiken-portfolio-layout-grid .awaiken-portfolio-grid-item__img{
	border-radius: 20px;
	overflow: hidden;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover img{
	transform: scale(1.1);
	filter: blur(5px);
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
	font-size: 20px;
	font-family: var(--e-global-typography-secondary-font-family);
    text-transform: capitalize;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
	position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__categories a{
    padding-left: 25px;
    background: url('assets/images/icon-sparkle.svg') no-repeat;
    background-position: left center;
    background-size: 18px auto;
    text-transform: capitalize;
    margin: 0;}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__categories a{
	display: none;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__categories a:first-child{
	display: block;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore{
	position: absolute;
    top: 50px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore a{
	position: relative;
	display: block;
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 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;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__readmore{
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore a:hover{
	background-position: right center;
	transform: rotate(45deg);
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__readmore svg{
	color: var(--e-global-color-primary);
	width: 20px;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__excerpt p{
	display: none;
	color: var(--e-global-color-white);
	margin-top: 15px;
	margin-bottom: 15px !important;
}

.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__excerpt p:last-child{
	margin-bottom: 0;	
}

.layout-style-1 .awaiken-portfolio-grid.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__excerpt p{
	display: block;
}

@media only screen and (max-width: 991px){
	
	.awaiken-portfolio-grid__filters{
		gap: 10px 40px;
		margin-bottom: 50px;
	}
	
	.awaiken-portfolio-grid__filters.portfolio_filter-design-1{
		gap: 10px 20px;
		margin-bottom: 40px;
	}
	
	.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
		padding: 10px 18px;
	}
	
	.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:before{
		left: -25px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid.awaiken-portfolio-layout-grid .awaiken-portfolio-grid-item__img img,
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:has(:not(.awaiken-portfolio-grid-item__img img)){
		aspect-ratio: 1 / 1.1 !important;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__excerpt p{
		margin-top: 10px;
		margin-bottom: 10px !important;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore a{
		width: 50px;
		height: 50px;
	}

	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__readmore svg{
		color: var(--e-global-color-primary);
		width: 16px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore{
		right: 20px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__readmore{
		top: 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.awaiken-portfolio-grid__filters{
        gap: 10px 40px;
		margin-bottom: 30px;
    }
	
	.awaiken-portfolio-grid__filters li{
		font-size: 16px;
	}
	
	.awaiken-portfolio-grid__filters.portfolio_filter-design-1{
        gap: 8px 15px;
    }
	
	.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
		padding: 8px 15px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}
	
	.layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
		font-size: 18px;
		margin-bottom: 5px;
	}
}

/* Project Archive Css */

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

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

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

.project-style-1 .project-item:has(:not(.project-image)){
	aspect-ratio: 1 / 1.352;
	background: var(--e-global-color-accentsecondary);
	border-radius: 20px;
}

.project-style-1 .project-item:has(.project-image img){
    background: transparent;
    aspect-ratio: auto;
}

.project-style-1 .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.864) 86.32%);
    z-index: 1;
}

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

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

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

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

.project-style-1 .project-btn a{
	position: relative;
    display: block;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 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-style-1 .project-btn a svg{
	color: var(--e-global-color-white);
	width: 20px;
}

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

.project-style-1 .project-btn a svg{
    width: 20px;
}

.project-style-1 .project-btn a i{
	font-size: 26px;
	transform: rotate(-45deg);
	color: var(--e-global-color-white);
}

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

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

.project-style-1 .project-content h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.project-style-1 .project-content h3 a{
    color: var(--e-global-color-primary);
}

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

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

	.project-style-1 .project-item:has(:not(.project-image)),
	.project-style-1 .project-image img{
		aspect-ratio: 1 / 1.1 !important;
	}

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

    .project-style-1 .project-btn{
        right: 20px;
    }

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

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

    .project-style-1 .project-btn a svg{
        width: 16px;
    }
	
	.project-style-1 .project-btn a i{
		font-size: 22px;
	}
}

@media only screen and (max-width: 767px){
	
	.project-style-1 .project-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }
}

/* Elementor Header CSS */

.main-header.ekit-sticky--effects:before{
	transform: scale(1);
}

.elementskit-navbar-nav > li.current-menu-item > a.active .elementskit-submenu-indicator{
	color: var(--e-global-color-accent) !important;
}

.main-header .e-con-inner{
	transition: all 0.4s ease-in-out !important;
}

.main-header.ekit-sticky--effects .e-con-inner{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.main-header.ekit-sticky--effects .main-header-inner{
	padding-left: 0;
	padding-right: 0;
}

.main-header .ekit-menu-nav-link>i{
	padding-right: 0;
}

body.admin-bar .main-header.ekit-sticky--effects{
	top: 32px !important;
}

.elementskit-dropdown i.elementskit-submenu-indicator{
	transform: rotate(-90deg);
	margin-top: 6px;
}

.mobile-menu{
	display: none;
}

.header-version-2 .mobile-menu,
.header-version-3 .mobile-menu,
.header-version-4 .mobile-menu{
	display: block;
}

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

.header-social-icon ul li a,
.header-infobox .elementskit-infobox .elementskit-info-box-icon,
.header-serarch-icon a,
.header-canvas-icon .ekit-offcanvas-toggle-wraper a{
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
}

.header-social-icon ul li a:hover,
.header-infobox .elementskit-infobox .elementskit-info-box-icon:hover,
.header-serarch-icon a:hover,
.header-canvas-icon .ekit-offcanvas-toggle-wraper a:hover{
	background-position: right center;
}

.main-header-menu .elementskit-menu-close,
.main-header-menu .elementskit-menu-close:hover{
	background-image: none;
}

.ekit-search-panel .ekit_search-button{
	background-image: none;
}

@media only screen and (max-width: 1024px){
	
	body.admin-bar .main-header.ekit-sticky--effects{
		top: 46px !important;
	}
	
	.elementskit-dropdown i.elementskit-submenu-indicator{
		transform: rotate(0deg);
		margin-top: 6px;
	}
	
	.elementskit-navbar-nav-default .elementskit-navbar-nav{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements{
		transition: left 0.3s ease-in-out !important;
	}
	
	.elementskit-menu-overlay{
		display: none !important;
	}
	
	.elementskit-menu-close .elementskit-menu-hamburger-icon,
	.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{
		height: 2px;
		margin-bottom: 5px;
	}

	.elementskit-navbar-nav-default .elementskit-nav-identity-panel{
		border-bottom: 1px solid var(--e-global-color-divider);
	}
	
	.ekit_menu_responsive_tablet .elementskit-submenu-indicator{
		border: none !important;
	}
	
	.elementskit-navbar-nav .elementskit-submenu-panel{
		background: none !important;
		margin-left: 20px;
	}

	.mobile-menu{
		display: block;
	}
	
	.main-header-menu .elementskit-menu-hamburger .icon:before{
		font-weight: 900;
	}

	.main-header-menu .elementskit-navbar-nav > li.current-menu-item > a .elementskit-submenu-indicator, 
	.main-header-menu .elementskit-navbar-nav > li > a .elementskit-submenu-indicator{
		color: currentcolor !important;
	}

	.main-header-menu .elementskit-menu-hamburger{
		line-height: 0;
	}

	.main-header-menu{
		backdrop-filter: none;
	}
	
	.main-header-menu .elementor-widget-container .elementskit-menu-hamburger,
	.main-header-menu .elementor-widget-container .elementskit-menu-container{
		background: linear-gradient(254.54deg, var(--e-global-color-accentsecondary) 0.03%, var(--e-global-color-accent) 100%);	
	}
	
	.main-header-menu ul li a{
		line-height: normal !important;
	}
}

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

	body.admin-bar .main-header.ekit-sticky--effects{
		top: 0px !important;
	}
}

/* Elementor Footer CSS */

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

.footer-form .wpcf7-submit{
	background: transparent !important;
}

.footer-form .newsletter-btn p{
	line-height: 1em;
    text-align: right;
    padding-right: 28px;
}

.footer-form .newsletter-btn{
	width: 30%;
	background-image: url("assets/images/paper-plane-regular.svg");
	background-size: 18px auto;
	background-repeat: no-repeat;
	background-position: right;
}

.footer-form .form-group .email-field{
	width: 70%;
}

.footer-form .wpcf7-not-valid-tip,
.footer-form .wpcf7-response-output{
	display: none;
}

.footer-links ul li:last-child a{
	padding: 0 !important;
}

@media only screen and (max-width: 991px){
	
	.footer-links ul li a{
		padding-bottom: 10px !important;
	}
}


@media only screen and (max-width: 991px){
	
	.footer-form .newsletter-btn{
		width: 35%;
	}
}

/* Global CSS */

.column-2 .elementor-icon-list-items,
.column-3 .elementor-icon-list-items{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.column-2 .elementor-icon-list-items .elementor-icon-list-item{
	width: calc(50% - 15px);
}

.column-3 .elementor-icon-list-items .elementor-icon-list-item{
    width: calc(33.33% - 20px);
}

.column-2 ul li .elementor-icon-list-icon+.elementor-icon-list-text,
.column-3 ul li .elementor-icon-list-icon+.elementor-icon-list-text{
	align-self: start;
}

.sticky-column{
	position: sticky;
	top: 20px;
}

@media only screen and (max-width: 991px){
	
	.column-2 .elementor-icon-list-items,
	.column-3 .elementor-icon-list-items{
		gap: 20px;
	}

	.column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: calc(50% - 10px);
	}

	.column-3 .elementor-icon-list-items .elementor-icon-list-item{
   		 width: calc(33.33% - 13.33px);
	}

}

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

	.column-2 .elementor-icon-list-items .elementor-icon-list-item,
	.column-3 .elementor-icon-list-items .elementor-icon-list-item{
		width: 100%;
	}
}

/****************************/
/*   Elementor Pages CSS    */
/****************************/

/* Section Title Css */

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

.elementor-heading-title:hover span{
	background-position: right center;
}

/*  Heading Small Icon & Hide Small Icon  */

.section-title .elementor-heading-title{
	padding: 0px 30px;	
}

.section-title .elementor-heading-title::before,
.section-title .elementor-heading-title::after{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	transform: translateY(-50%);
	background-color: var(--e-global-color-accent);
	mask-image: url("assets/images/icon-sub-heading.svg");
	mask-repeat: no-repeat;
	width: 16px;
	height: 16px;
}

.section-title .elementor-heading-title::before{
    left: 24px;
}

.section-title .elementor-heading-title::after{
    right: 24px;
}

.nextmind-hide-small-icon .section-title .elementor-heading-title::before,
.nextmind-hide-small-icon .section-title .elementor-heading-title::after{
	display: none;
}

.nextmind-hide-small-icon .section-title .elementor-heading-title{
	padding-left: 0;
	padding-right: 0;
}

@media only screen and (max-width: 991px){
	
	.section-title .elementor-heading-title{
		padding: 0px 20px;	
	}	
	
	.section-title .elementor-heading-title::before{
    	left: 15px;
	}

	.section-title .elementor-heading-title::after{
    	right: 15px;
	}
}

/* Home Page Css */

.hero:before{
	left: 160px;
    top: 20%;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.shape-2{
    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);
	}
}

.hero-content:before{
    left: 0;
	top: auto;
    bottom: 20%;
    width: 81px;
    height: 85px;
    animation: shape2 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.shape-4{
    animation: shape2 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

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

.about-us-box .about-item-icon{
	background-color: var(--e-global-color-secondary);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.about-us-box:hover .about-item-icon{
	background-color: var(--e-global-color-accent);
}

.service-item{
	transition: all 0.4s ease-in-out !important;
}

.service-item:hover{
	transform: translateY(-5px);
}

.how-work-image img{
	aspect-ratio: 1 / 1.1571;
    object-fit: cover;
}

.how-work-video .elementor-wrapper{
	--video-aspect-ratio: 0.86 !important;
}

.impact-chatbot-list ul li:last-child{
	margin-right: 0 !important;
}

.impact-chatbot-list ul li svg{
	width: auto;
}

.real-impact-image img{
	aspect-ratio: 1 / 0.57;
    object-fit: cover;
}

.cta-box-box:before{
    left: 60px;
    top: 60px;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
	border: none;
}

.our-fact-icon-2{
	animation: shape1 20s infinite linear;
    animation-direction: alternate;
}

.testimonial .elementskit-testimonial-slider{
	position: relative;
}

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

.testimonial .swiper-slide-inner .elementskit-single-testimonial-slider{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}

.testimonial .swiper-slide-inner .elementskit-single-testimonial-slider .elementskit-icon-content{
	bottom: auto !important;
    top: 45px;
    right: 30px !important;
}

.testimonial .swiper-slide-inner .elementskit-single-testimonial-slider .elementskit-commentor-content{
	margin-top: 30px;
	border-top: 1px solid var(--e-global-color-divider);
}

.testimonial .elementskit-testimonial-slider .swiper-pagination{
	justify-content: left;
	left: 30px;
}

.testimonial .elementskit-testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	position: relative;
}

.testimonial .elementskit-testimonial-slider .swiper-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 .elementskit-testimonial-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
	border: 1px solid var(--e-global-color-primary);
	height: 22px;
	width: 22px;
}

.our-blog .elementskit-post-image-card .elementskit-post-body p{
	padding-bottom: 30px;
	border-bottom: 1px solid var(--e-global-color-divider);
}

.our-blog .elementskit-post-image-card .btn-wraper a svg{
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in-out;
	margin-left: 10px;
}

.our-blog .elementskit-post-image-card .btn-wraper a:hover svg{
	border-color: var(--e-global-color-accent);
	color: var(--e-global-color-accent);
	transform: rotate(45deg);
}

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

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

    .shape-2{
        right: 30px !important;
    }

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

    .shape-4{
        right: 5% !important;
    }

}

@media only screen and (max-width: 1024px){
	
	.shape-2{
		opacity: 30%;
	}
	
    .hero-content::before{
        left: 5%;
    }

    .shape-4{
		opacity: 30%;
    }
}

@media only screen and (max-width: 991px){
	
	.hero::before{
        width: 80px;
        height: 77px;
	}

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

	.how-work-image img{
		aspect-ratio: 1 / 0.8;
	}

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

	.our-fact-icon-2{
		opacity: 30%;
	}
	
	.how-work-video .elementor-wrapper{
		--video-aspect-ratio: 1.455 !important;
	}

	.testimonial .swiper-slide-inner .elementskit-single-testimonial-slider .elementskit-commentor-content{
		margin-top: 20px;
		margin-bottom: 0px;
	}

	.our-blog .elementskit-post-image-card .elementskit-post-body p{
		padding-bottom: 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.how-work-video .elementor-wrapper{
		--video-aspect-ratio: 0.955 !important;
	}

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

	.testimonial .swiper-slide-inner .elementskit-single-testimonial-slider .elementskit-icon-content{
		top: 35px;
	}
}


/* Home Image Page CSS ( Ai - Image ) */

.image-hero-list ul{
	gap: 10px;
}

/* About Us Page Css */

.hero-page-header:before{
	left: 160px;
	top: auto;
    bottom: 20%;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.approach-counter-box{
	backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
}

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

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

.team-item .team-image img{
	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-item .team-body{
	right: 20px;
}

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

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

@media only screen and (max-width: 1440px){
	
	.hero-page-header:before{
		left: 30px;
    }
}

@media only screen and (max-width: 991px){
		
    .hero-page-header:before{
        width: 80px;
        height: 77px;
    }

	.approach-item:after{
		left: 30px;
		bottom: -60px;
	}
	
	.team-item .team-image img{
		aspect-ratio: 1 / 1.2;
	}
	
}

@media only screen and (max-width: 767px){
	
	.approach-item:after{
		left: 25px;
		bottom: -50px;
	}
}

/* Image Gallery Page Css */

.photo-gallery img{
	aspect-ratio: 1 / 0.829;
    object-fit: cover;
}

.photo-gallery .gallery-icon{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

.photo-gallery .gallery-icon a:hover:after{
    height:250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* Video Gallery */

.video-gallery-image .ekit-video-item a::before{
	transform: scale(0);
	transition: all 0.4s ease-in-out !important;
}

.video-gallery-image .ekit-video-item a:hover:before{
	opacity: 40% !important;
	transform: scale(1);
	border-radius: 20px;
}

.video-gallery-image .ekit-video-item a i{
	width: 60px;
	height: 60px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: all 0.4s ease-in-out !important;
	color: var(--e-global-color-white) !important;
}


/* Testimonials Page Css */

.testimonial-item{
	position: relative;
	overflow: hidden !important;
}

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

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

.testimonial-author-img .elementskit-info-box-icon img{
	border-radius: 50%;
}

/* Team Details Css */

.team-single-image img{
	aspect-ratio: 1 / 1.29;
    object-fit: cover;
}

.skill-progress .single-skill-bar .content-group{
	width: 100% !important;
}

.skill-progress .skill-bar{
	height: 16px !important;
	border: 1px solid var(--e-global-color-divider);
}

.skill-progress .skill-bar .skill-track::after,
.skill-progress .skill-bar .skill-track::before{
	display: none;
}

.skill-progress .content-group .skill-bar-content{
	margin-bottom: 20px !important;
	line-height: 0;
}

.skill-progress .single-skill-bar .number-percentage-wraper{
	position: absolute !important;
	top: 0px !important;
	right: 0;
	margin-left: 10px;
}

.team-guideline-list ul li{
	border: 1px solid var(--e-global-color-divider);
	background-color: var(--e-global-color-secondary);
	border-radius: 100px;
	padding: 10px 15px !important;
}

@media only screen and (max-width: 991px) {
	
    .team-single-image img {
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }
	
	.team-guideline-list ul li{
		padding: 8px 15px !important;
	}
	
}

@media only screen and (max-width: 767px) {
	
    .team-single-image img {
        aspect-ratio: 1 / 1.15;
        object-position: center center;
    }
	
	.team-guideline-list ul li{
		padding: 8px 10px !important;
	}

	.skill-progress .content-group .skill-bar-content{
		margin-bottom: 10px !important;
	}
}

/* Services Details Page Css */

.service-catagery-list .elementor-icon-list-items li,
.service-catagery-list .elementor-icon-list-items li a {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.service-catagery-list .elementor-icon-list-items li .elementor-icon-list-icon svg,
.service-catagery-list .elementor-icon-list-items li a .elementor-icon-list-icon svg{
    margin: 0 !important;
	transition: all 0.4s ease-in-out !important;
}

.service-catagery-list .elementor-icon-list-items li:hover .elementor-icon-list-icon svg{
	transform: rotate(45deg);
}

.service-catagery-list .elementor-icon-list-text{
	padding-inline-start: 0 !important;
}

.sidebar-cta .elementskit-infobox .elementskit-info-box-icon  {
	background: linear-gradient(90deg, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 100%) !important;
}

.sidebar-cta-contact .elementskit-infobox{
	display: inline-flex;
	backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
}

.page-single-img img {
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}

.faq-accordion .elementskit-card{
	overflow: hidden;
}

.faq-accordion .elementskit-accordion .elementskit-card .number{
    margin-right: 5px;
}

.faq-accordion .elementskit-card .elementskit-btn-link{
	border-radius: 0 !important;
	align-items: start !important;
}

@media only screen and (max-width: 767px){
	
	.service-innovation-list .elementskit-infobox{
		display: inline-flex;
	}
}

/* Projects Details Page Css */

.project-category-list .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text{
    display: flex;
    gap: 25px;
}

.project-category-list .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text span{
	font-size: var(--e-global-typography-text-font-size);
	font-weight: var(--e-global-typography-text-font-weight);
	color: var(--e-global-color-primary);
}

.solution-counter-item .elementor-counter-number-wrapper .elementor-counter-number{
	background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    background-clip: text;
	-webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.solution-counter-item .elementor-counter-number-wrapper .elementor-counter-number-suffix{
	font-weight: 300;
}

.category-social-link ul li a svg{
	width: auto;
}

/* Contact Us Page CSS */

.ekit-wid-con a:focus-visible, 
.ekit-wid-con button:focus-visible, 
.ekit-wid-con input:focus-visible, 
.ekit-wid-con textarea:focus-visible{
	outline: 0;
}

.wpcf7-spinner{
	display: none;
}

.wpcf7-not-valid-tip{
	color: #E65757 !important;
	font-size: 14px;
    line-height: 1.1em;
    font-weight: 400;
}

.wpcf7-response-output{
	margin: 20px 0 0 0 !important;
    padding: 5px 10px !important;
    border-radius: 30px !important;
    border: 1px solid #E65757 !important;
    line-height: 1.1em;
    color: #E65757 !important;
}

.wpcf7-form.sent .wpcf7-response-output{
	color: #46B450 !important;
	border-color: #46B450 !important;
}

.conatct-us-form{
	overflow: hidden !important;
}

.google-map,
.google-map .elementor-custom-embed,
.google-map .elementor-custom-embed iframe{
	height: 100%;
}

/****************************
******** AI - Image *********
****************************/

/* 
 * Theme CSS ( Ai - Image ) 
 * */

.ai-image #ball,
.ai-image .preloader{
	background: linear-gradient(90.01deg, var(--e-global-color-accentsecondary) 0.26%, var(--e-global-color-accent) 99.99%);
}

.ai-image .loading,
.ai-chatbot body.fancy-scrollbar::-webkit-scrollbar-thumb{
	border-color: transparent var(--e-global-color-white) transparent var(--e-global-color-white);
}

.ai-image header.main-header{
	position: absolute;
    left: 0;
    right: 0;
    top: auto;
    border-bottom: 1px solid var(--e-global-color-divider);
    z-index: 100;
}

.ai-image header.main-header .header-sticky{
	max-width: 1600px;
    margin: 0 auto;
}

.ai-image .container-fluid{
	padding: 0;
}

.ai-image .navbar-brand h1, 
.ai-image .navbar-brand h2{
	color: var(--e-global-color-primary) !important;
}

.ai-image .navbar-brand h1, 
.ai-image .navbar-brand h2,
.ai-image .footer-logo h4{
	letter-spacing: -0.03em;
}

.ai-image .main-menu ul li a{
	font-weight: 500;
	padding: 13px 15px !important;
}

.ai-image .main-menu ul ul{
	background: linear-gradient(110.01deg, var(--e-global-color-accentsecondary) 0.26%, var(--e-global-color-accent) 99.99%);
}

.ai-image .main-menu ul ul li a, 
.ai-image .main-menu ul ul li a:focus,
.ai-chatbot .main-menu ul ul li a,
.ai-chatbot .main-menu ul ul li a:focus{
	padding: 6px 20px !important;
}

.ai-image .main-menu ul ul li a:hover{
	color: var(--e-global-color-primary);
} 

.ai-image .slicknav_btn{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.ai-image .slicknav_icon .slicknav_icon-bar{
	background-color: var(--e-global-color-white);
}

.ai-image .slicknav_menu{
	background: linear-gradient(110deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
}

.ai-image .slicknav_arrow:after{
	color: var(--e-global-color-white);
}

.ai-image .slicknav_nav li.slicknav_open > a .slicknav_arrow:after{
	transform: rotate(-180deg);
}

.ai-image .page-header{
	position: relative;
    padding: 230px 0 115px;
}

.ai-image .page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: url("assets/images/page-header-img-ai.png") no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}

.ai-image .page-header-box h1{
	line-height: 1.3em;
	margin-bottom: 10px;
}

.ai-image .trail-items, 
.ai-image .page-header-box .post-meta ul{
	font-size: 18px;
}

.blog-style-2 .post-item{
	background: transparent;
    border: 1px solid var(--e-global-color-divider);
    border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    overflow: hidden;
}

.blog-style-2 .post-featured-image a{
	display: block;
    overflow: hidden;
}

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

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

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

.blog-style-2 .post-item-body{
	padding: 30px;
	line-height: 0;
}

.blog-style-2 .post-item-content{
	margin-bottom: 30px;
}

.blog-style-2 .post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.blog-style-2 .post-item-content h2 a{
	display: inline-block;
    color: var(--e-global-color-primary);
}

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

.blog-style-2 .post-item-btn a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-style-2 .post-item-btn:hover{
	background-position: right center;
}

.blog-style-2 .post-item-btn svg,
.blog-style-2 .post-item-btn i{
	width: 10px;
    height: auto;
    margin-left: 10px;
	transition: all 0.3s ease-in-out;
}

.blog-style-2 .post-item-btn i{
	transform: rotate(-45deg);
	font-size: 14px;
}

.blog-style-2 .post-item-btn:hover svg{
	transform: rotate(45deg);
}

.blog-style-2 .post-item-btn:hover i{
	transform: rotate(0deg);
}

.ai-image .page-blog-archive,
.ai-image .page-single-post,
.ai-image .error-page,
.ai-image .page-blog-archive{
	padding: 100px 0;
}

.ai-image .post-single-meta ul li,
.ai-image .post-single-meta ul li i{
	color: var(--e-global-color-primary);
}

.ai-image .post-single-image figure, 
.ai-image .post-single-image img{
	border-radius: 30px;
}

.ai-image .post-entry blockquote{
	background: url("assets/images/icon-blockquote-ai.svg"), var(--e-global-color-secondary);
    background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border: 1px solid var(--e-global-color-darkdivider);
}

.ai-image .post-entry ul li{
	font-weight: 600;
}

.ai-image .post-tags .tag-links a,
.ai-image .post-social-sharing ul li a,
.ai-image .comment-form .form-submit .submit,
.ai-image .footer-social ul li a,
.ai-chatbot .footer-social ul li a,
.ai-chatbot .post-tags .tag-links a,
.ai-chatbot .post-social-sharing ul li a,
.ai-chatbot .comment-form .form-submit .submit{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.ai-image .post-tags .tag-links a:hover,
.ai-image .post-social-sharing ul li a:hover,
.ai-image .comment-form .form-submit .submit:hover,
.ai-image .footer-social ul li a:hover,
.ai-chatbot .footer-social ul li a:hover,
.ai-chatbot .post-tags .tag-links a:hover,
.ai-chatbot .post-social-sharing ul li a:hover,
.ai-chatbot .comment-form .form-submit .submit:hover{
	background-position: right center;
}

.ai-image .post-social-sharing ul li a,
.ai-image .comment-form .form-submit .submit,
.ai-image .footer-menu ul li a,
.ai-image .copyright p{
	color: var(--e-global-color-white);
}

.ai-image .comment-form textarea, 
.ai-image .comment-form input[type="text"], 
.ai-image .comment-form input[type="email"], 
.ai-image .comment-form input[type="url"],
.ai-image .wp-block-search .wp-block-search__input,
.ai-image .wp-block-categories-dropdown select, 
.ai-image .wp-block-archives-dropdown select,
.ai-image .post-password-form input[type="password"],
.ai-image aside.widget{
	border: none;
}

.ai-image .error-page-content-body,
.ai-chatbot .error-page-content-body{
	line-height: 0;
}

.ai-image .footer.footer{
	background-color: var(--e-global-color-primary);
}

.ai-image .footer-menu ul li a:hover{
	color: var(--e-global-color-accent);
}

.ai-image .page-header-box .taxonomy-description,
.ai-image aside.widget ul li,
.ai-image aside.widget ul li a{
	color: var(--e-global-color-text);
}

.ai-image .comment-list .comment .reply a,
.ai-image .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link, 
.ai-image .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link,
.ai-image .wp-block-button .wp-element-button,
.ai-image .wp-element-button, 
.ai-image .wp-block-button .wp-block-button__link, 
.ai-image .wp-block-file .wp-block-file__button,
.ai-image .wp-block-tag-cloud a,
.ai-image .post-password-form input[type="submit"],
.ai-image aside.widget .tagcloud a,
.ai-image .wp-block-button .wp-element-button, 
.ai-image .wp-block-button.is-style-outline .wp-element-button,
.ai-image aside.widget .has-login-form input[type="submit"],
.ai-chatbot .comment-list .comment .reply a,
.ai-chatbot .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link,
.ai-chatbot .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link,
.ai-chatbot .wp-block-button .wp-element-button, 
.ai-chatbot .wp-block-button.is-style-outline .wp-element-button, 
.ai-chatbot .wp-element-button, 
.ai-chatbot .wp-block-button .wp-block-button__link, 
.ai-chatbot .wp-block-file .wp-block-file__button,
.ai-chatbot .wp-block-tag-cloud a,
.ai-chatbot .post-password-form input[type="submit"],
.ai-chatbot  aside.widget .tagcloud a,
.ai-chatbot aside.widget .has-login-form input[type="submit"]{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.ai-image .comment-list .comment .reply a:hover,
.ai-image .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link:hover, 
.ai-image .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link:hover,
.ai-image .wp-block-button .wp-element-button:hover, 
.ai-image .wp-block-button.is-style-outline .wp-element-button, 
.ai-image .wp-element-button:hover, 
.ai-image .wp-block-button .wp-block-button__link:hover, 
.ai-image .wp-block-file .wp-block-file__button:hover,
.ai-image .wp-block-tag-cloud a:hover,
.ai-image .post-password-form input[type="submit"]:hover,
.ai-image aside.widget .tagcloud a:hover,
.ai-image aside.widget .has-login-form input[type="submit"]:hover,
.ai-chatbot .comment-list .comment .reply a:hover,
.ai-chatbot .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link:hover,
.ai-chatbot .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link:hover,
.ai-chatbot .wp-block-button .wp-element-button:hover, 
.ai-chatbot .wp-block-button.is-style-outline .wp-element-button, 
.ai-chatbot .wp-element-button:hover, 
.ai-chatbot .wp-block-button .wp-block-button__link:hover, 
.ai-chatbot .wp-block-file .wp-block-file__button:hover,
.ai-chatbot .wp-block-tag-cloud a:hover,
.ai-chatbot .post-password-form input[type="submit"]:hover,
.ai-chatbot  aside.widget .tagcloud a:hover,
.ai-chatbot aside.widget .has-login-form input[type="submit"]:hover{
	background-position: right center;
}

.ai-image .comment-list .comment .reply a,
.ai-image .wp-block-button .wp-element-button, 
.ai-image .wp-block-button.is-style-outline .wp-element-button, 
.ai-image .wp-element-button, 
.ai-image .wp-block-button .wp-block-button__link, 
.ai-image .wp-block-file .wp-block-file__button,
.ai-image .wp-block-tag-cloud a,
.ai-image aside.widget .search-submit,
.ai-image aside.widget .has-login-form input[type="submit"]{
	color: var(--e-global-color-white) !important;
}

.ai-image .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link, 
.ai-image .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link,
.ai-image aside.widget .tagcloud a{
	color: var(--e-global-color-white);
}

.ai-image aside.widget .wp-block-search .wp-block-search__input,
.ai-image aside.widget select, 
.ai-image aside.widget .wp-block-categories-dropdown select, 
.ai-image aside.widget .wp-block-archives-dropdown select{
	border: 1px solid var(--e-global-color-divider);
}

.ai-image aside.widget .search-submit,
.ai-chatbot aside.widget .search-submit{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%) !important;
	background-size: 200% auto !important;
	font-weight: 700;
}

.ai-image aside.widget .search-submit:hover,
.ai-chatbot aside.widget .search-submit:hover{
	background-position: right center !important;
}

@media only screen and (max-width: 1600px){
	
	.ai-image .container-fluid{
		padding: 0 15px;
	}
}

@media only screen and (max-width: 991px){
	
	.ai-image header.main-header .header-sticky{
		max-width: 100%;
	}
	
	.ai-image .page-header{
		padding: 150px 0 60px;
	}
	
	.blog-style-2 .post-item-body{
		padding: 20px;
	}

	.blog-style-2 .post-item-content{
		margin-bottom: 20px;
	}
	
	.blog-style-2 .post-item-btn{
		padding: 14px 15px;
	}
	
	.ai-image .page-blog-archive,
	.ai-image .page-single-post,
	.ai-image .error-page,
	.ai-image .page-blog-archive{
		padding: 50px 0;
	}
	
	.ai-image .post-single-image figure, 
	.ai-image .post-single-image img{
		border-radius: 20px;
	}
	
	.ai-image .post-entry blockquote{
		background-position: 20px 20px;
		background-size: 40px;
	}
}

@media only screen and (max-width: 767px){
	
	.ai-image .trail-items, 
	.ai-image .page-header-box .post-meta ul{
		font-size: 16px;
	}
	
	.blog-style-2 .post-item-content h2{
		font-size: 18px;
	}
	
	.ai-image .post-entry blockquote{
		background-position: 15px 15px;
	}
	
	.ai-image .post-entry blockquote p{
		font-size: 16px !important;
	}
}

/* Theme Button CSS ( Ai - Image ) & ( Ai - Chatbot ) */

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

.ai-image .btn-default:hover,
.ai-chatbot .btn-default:hover{
	background-position: right center;
}

@media only screen and (max-width: 991px){
	
   .ai-image .btn-default,
   .ai-chatbot .btn-default{
        padding: 14px 15px;
    }
}

/* Elementor Button CSS ( Ai - Image ) */

.ai-image .elementor-button .elementor-button-icon i{
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.ai-image .elementor-button:hover .elementor-button-icon i{
	transform: rotate(0);
}

/* 
 * Elementor CSS ( Ai - Image ) 
 * */

/* Project Widget CSS */

.layout-style-2 .awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:after{
	background: var(--e-global-color-accent);
}

.layout-style-2 .awaiken-portfolio-grid{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	--portfolio-gap: 30px;
	column-gap: var(--portfolio-gap);
	width: 100%;
}

.layout-style-2 .awaiken-portfolio-grid-item{
	border: 1px solid var(--e-global-color-divider);
    border-radius: 20px;
    text-align: center;
	padding: 40px 40px 0;
}

.layout-style-2 .awaiken-portfolio-grid-item__content{
	margin-bottom: 40px;
}

.layout-style-2 .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
	font-size: 20px;
    line-height: 1.4em;
	margin-bottom: 20px;
}

.layout-style-2 .awaiken-portfolio-grid-item__content p{
	margin: 0;
}

.layout-style-2 .awaiken-portfolio-grid-item__img{
	position: relative;
	display: block;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    overflow: hidden;
}

.layout-style-2 .awaiken-portfolio-grid-item__img img{
	width: 100%;
    aspect-ratio: 1 / 0.793;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.layout-style-2 .awaiken-portfolio-grid-item__img:after{
	content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.layout-style-2 .awaiken-portfolio-grid-item__img:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.layout-style-2 .awaiken-portfolio-grid-item:hover .awaiken-portfolio-grid-item__img img{
	transform: scale(1.06);
}

.layout-style-2 .awaiken-portfolio-grid.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__excerpt p{
	display: none;
}

.layout-style-2 .awaiken-portfolio-grid.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__excerpt p{
	display: block;
}

.ai-image .awaiken-portfolio-grid .awaiken-portfolio-grid-item__readmore svg,
.ai-image .layout-style-1 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__categories a span{
	color: var(--e-global-color-white);
}

.ai-image .awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__readmore a{
	background: var(--e-global-color-accent);
}

@media only screen and (max-width: 991px){
	
	.layout-style-2 .awaiken-portfolio-grid-item{
		padding: 20px 20px 0;
	}
	
	.layout-style-2 .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.layout-style-2 .awaiken-portfolio-grid-item__content{
		margin-bottom: 30px;
	}
	
	.layout-style-2 .awaiken-portfolio-grid-item__img img{
		aspect-ratio: 1 / 0.72;
	}
}

@media only screen and (max-width: 767px){
	
	.layout-style-2 .awaiken-portfolio-grid-item{
		padding: 15px 15px 0;
	}
}

/* Header CSS ( Ai - Image ) */

.main-menu-nai .elementskit-navbar-nav > li > a,
.main-menu-nai ul li .elementskit-submenu-panel > li > a{
	line-height: normal !important;
}

.header-social-icon-nai ul li a,
.header-infobox-nai .elementskit-infobox .elementskit-info-box-icon,
.header-serarch-icon-nai a,
.header-canvas-icon-nai .ekit-offcanvas-toggle-wraper a{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.header-social-icon-nai ul li a:hover,
.header-infobox-nai .elementskit-infobox .elementskit-info-box-icon:hover,
.header-serarch-icon-nai a:hover,
.header-canvas-icon-nai .ekit-offcanvas-toggle-wraper a:hover{
	background-position: right center;
}

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

	.main-menu-nai .elementor-widget-container .elementskit-menu-hamburger,
	.main-menu-nai .elementor-widget-container .elementskit-menu-container{
		background: linear-gradient(110deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);	
	}

	.main-menu-nai .elementskit-menu-hamburger .icon:before{
		font-weight: 600;
	}
}

/* Footer CSS ( Ai - Image ) */

.footer-scrolling-box-nai .ekit-title-and-description a{
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: var(--e-global-color-darkdivider);
}

.footer-scrolling-box-nai .ticker:before,
.footer-scrolling-box-nai .ticker:after{
	display: none;	
}

.footer-links-nai ul li:last-child a{
	padding: 0 !important;
}

@media only screen and (max-width: 991px){
	
	.footer-links-nai ul li a{
		padding-bottom: 10px !important;
	}
}

/* Small Heading & Section Title CSS ( Ai - Image ) */

.ai-image .section-title .elementor-heading-title{
	padding-left: 26px;
	padding-right: 0;
}

.ai-image .section-title .elementor-heading-title::before{
	left: 0;
	background-color: var(--e-global-color-accent);
	mask-image: url("assets/images/icon-sparkle.svg");
	mask-repeat: no-repeat;
	mask-size: cover;
	width: 18px;
	height: 18px;
}

.ai-image .section-title .elementor-heading-title::after{
	display: none;
}

.ai-image .elementor-heading-title span{
	font-weight: 300;
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ai-image h1.elementor-heading-title span{
	font-weight: 600; 
}

/* Home Page CSS ( Ai - Image ) */

.intro-video-img-nai{
    display: block;
    mask-image: url("assets/images/intro-video-bg-shape.svg");
    mask-position: center center;
    mask-repeat: no-repeat; 
	mask-size: cover; 
    width: 100%;
    height: 100%;
}

.intro-video-img-nai img{
    aspect-ratio: 1 / 0.45;
    object-fit: cover;
    filter: brightness(80%);
}

.hero-counter-box-nai{
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.hero-company-slider-nai .swiper-slide-inner img{
	width: 100%;
	height: 40px;
}

.service-item-nai .elementskit-btn i{
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.service-item-nai .elementskit-btn:hover i{
	transform: rotate(0deg);
}

.feature-item-nai ul{
	gap: 10px;
	justify-content: center;
}

.feature-item-nai ul li{
	padding: 8px 14px !important;
	margin: 0 !important;
	border-radius: 100px;
	border: 1px solid var(--e-global-color-divider);
}

.feature-icon-box-nai .elementskit-infobox .elementskit-info-box-icon{
    background: linear-gradient(110deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
}

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

.feature-image-box-nai{
	overflow: hidden !important;
}

.faq-accordion-nai .elementskit-accordion .elementskit-card .number{
    margin-right: 5px;
}

.testimonial-item-nai .elementskit-single-testimonial-slider{
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    overflow: hidden !important;
}

.testimonial-item-nai .ekit-wid-con .col-lg-6:first-child{
	flex: 0 0 60%;
	max-width: 60%;
	padding-right: 0;
}

.testimonial-item-nai .ekit-wid-con .col-lg-6:last-child{
	flex: 0 0 40%;
	max-width: 40%;
	padding-left: 0;
}

.testimonial-item-nai .elementskit-commentor-content{
	margin-bottom: 0;
}

.testimonial-item-nai .elementskit-profile-image-card img{
	aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

.testimonial-item-nai .elementskit-profile-image-card:before{
	display: none;
}

.testimonial-item-nai .elementskit-profile-image-card,
.testimonial-item-nai .elementskit-profile-image-card img{
	height: 100%;	
}

.testimonial-item-nai.elementor-element .elementkit-testimonial-col{
	align-self: auto !important;
}

.testimonial-rating-content-nai .elementor-counter-number-prefix{
	display: none;
}

.testimonial-rating-content-nai .elementor-counter-number-wrapper{
	margin: 0 auto;
}

.testimonial-rating-content-nai .elementor-counter-number{
	color: var(--e-global-color-accentsecondary);
	font-weight: 700;
}

.our-blog-nai .elementskit-post-image-card{
	overflow: hidden;
}

.our-blog-nai .elementskit-entry-header img{
   aspect-ratio: 1 / 0.623;
    object-fit: cover;
	transition: all 0.5s ease-in-out !important;
}

.our-blog-nai .elementskit-post-image-card:hover img{
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.our-blog-nai .elementskit-entry-header a{
    position: relative;
    overflow: hidden;
}

.our-blog-nai .elementskit-post-image-card .elementskit-entry-header a:after{
	content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.our-blog-nai  .elementskit-post-image-card .elementskit-entry-header a:hover:after{
	height: 250%;
	transition: all 0.4s linear !important;
	background-color: transparent;	
}

.our-blog-nai .btn-wraper{
	line-height: 0;
}

.our-blog-nai .btn-wraper a{
	gap: 8px;
}

.our-blog-nai .btn-wraper a i{
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.our-blog-nai .btn-wraper a:hover i{
    transform: rotate(0deg);
}

@media only screen and (max-width: 1500px){
	
	.hero-counter-box-nai{
		left: 30px !important;
		bottom: 30px !important;
	}
	
	.hero-company-slider-box-nai{
		max-width: 800px;
	}
}

@media only screen and (max-width: 1440px){
	
	.hero-counter-box-nai{
		max-width: 460px;
	}
	
	.hero-counter-box-nai .hero-counter-content .elementor-counter-title{
		font-size: 14px !important;
	}
	
	.hero-company-slider-box-nai{
		gap: 10px !important;
		right: 50px !important;
	}
}

@media only screen and (max-width: 1300px){
	
	.hero-counter-box-nai{
		max-width: 415px;
	}
	
	.hero-company-slider-box-nai{
		right: 30px !important;
		max-width: 650px;
	}
}

@media only screen and (max-width: 1024px){
	
	.hero-counter-box-nai{
		max-width: 320px;
	}
	
	.hero-counter-box-nai .hero-counter-image{
		width: calc(49% - 10px) !important;
		min-height: 132px;
	}
	
	.hero-counter-box-nai .hero-counter-content{
		width: calc(51% - 10px) !important;
	}
	
	.hero-company-slider-box-nai{
		right: 20px !important;
		max-width: 600px;
	}
}

@media only screen and (max-width: 991px){
		
	.hero-company-slider-box-nai{
		gap: 5px !important;
	}
	
	.hero-counter-box-nai{
		top: 20px;
		gap: 15px !important;
        max-width: 160px;
		padding: 10px !important;
	}

	.hero-counter-box-nai .hero-counter-image{
		width: 100% !important;
		min-height: 140px;
	}

	.hero-counter-box-nai .hero-counter-content{
		width: 100% !important;
	}
	
	.hero-company-slider-box-nai{
		max-width: 440px;
	}
}

@media only screen and (max-width: 767px){
	
	.hero-list-nai.column-2 ul{
		row-gap: 10px;
	}
	
	.video-play-button-nai{
	 	transform: translateX(50%);	
	}

	.hero-counter-box-nai{
		position: inherit;
		display: flex;
		max-width: 100%;
		top: 0 !important;
		left: 0 !important;
        background: var(--e-global-color-primary) !important;
	}
	
	.hero-counter-box-nai .hero-counter-image{
		width: calc(45% - 10px) !important;
	}

	.hero-counter-box-nai .hero-counter-content{
		width: calc(55% - 10px) !important;
	}
	
	.hero-company-slider-box-nai{
		position: inherit;
		right: 0 !important;
	}
	
	.intro-video-img-nai{
		mask-image:none;
	}

	.about-us-image-nai img{
		aspect-ratio: 1 / 0.75;
		object-fit: cover;
	}

	.feature-item-nai ul li{
		padding: 6px 12px !important;
	}

	.testimonial-item-nai .ekit-wid-con .col-lg-6:first-child{
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 15px;
	}

	.testimonial-item-nai .ekit-wid-con .col-lg-6:last-child{
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 15px;
	}

	.testimonial-item-nai .ekit-wid-con .elementskit-commentor-content{
		margin: 0 !important;
	}
}

/* About Us Page CSS ( Ai - Image ) */

.breadcrumb-nai .trail-items li, 
.breadcrumb-nai .page-header-box .post-meta ul li{
	font-size: 18px;
}

.approach-image-nai img{
	object-fit: cover;
	aspect-ratio: 1 / 0.741;
}

.our-solution-image-nai{
	height: 100%;
}

.our-solution-image-nai img{
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
}

.brand-item-content-nai .elementskit-infobox{
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.brand-item-img-nai img{
	aspect-ratio: 1 / 1.046;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.brand-item-img-nai:hover img{
	transform: scale(1.1);
}

.team-item-nai{
	overflow: hidden !important;
}

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

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

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

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

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

.team-social-list-nai li a{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
}

.team-social-list-nai li a:hover{
	background-position: right center;
}

.team-body-nai{
    transform: translateY(40px);
    transition: all 0.4s ease-in-out;
}

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

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

	.brand-item-img-nai img{
		aspect-ratio: 1 / 1.2;	
	}
	
	.team-img-nai img{
		aspect-ratio: 1 / 1.2;	
	}
}

@media only screen and (max-width: 767px){
	
	.breadcrumb-nai .trail-items li, 
	.breadcrumb-nai .page-header-box .post-meta ul li{
		font-size: 16px;
	}	
}

/* Service Page CSS ( Ai - Image ) */

.service-item-box-nai{
	transition: all 0.4s ease-in-out;
}

.service-item-box-nai:hover{
    transform: translateY(-4px);
}

/* Service Details CSS ( Ai - Image ) */

.service-catagery-list-nai ul li,
.service-catagery-list-nai ul li a{
	position: relative;
	background: var(--e-global-color-white);
	flex-direction: row-reverse;
	justify-content: space-between;
	border-radius: 10px;
	margin-bottom:20px !important;
	padding: 18px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

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

.service-catagery-list-nai ul li:hover:before{
	top: 0;
	height: 100%;
}

.service-catagery-list-nai ul li:hover,
.service-catagery-list-nai ul li a:hover{
	background: transparent;
}

.service-catagery-list-nai ul li:hover .elementor-icon-list-text,
.service-catagery-list-nai ul li a:hover .elementor-icon-list-text{
	color: var(--e-global-color-white) !important;
}

.service-catagery-list-nai ul li:last-child,
.service-catagery-list-nai ul li a{
	margin: 0 !important;
}

.service-catagery-list-nai ul li:has(:not(a)){
	padding: 18px 20px!important;
}

.service-catagery-list-nai ul li:has(a){
	padding: 0 !important;
}

.service-catagery-list-nai ul li .elementor-icon-list-text{
	padding-inline-start: 0 !important;
	transition: all 0.4s ease-in-out !important;
}

.service-catagery-list-nai .elementor-icon-list-icon svg{
    margin-right: 0 !important;
	transition: all 0.4s ease-in-out !important;
}

.service-catagery-list-nai ul li:hover .elementor-icon-list-icon svg,
.service-catagery-list-nai ul li a:hover .elementor-icon-list-icon svg {
	transform: rotate(45deg);
	fill: var(--e-global-color-white) !important;
}

.page-single-img-nai img{
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}

.solution-counter-header-nai .elementskit-funfact-inner{
	justify-content: space-between;
}

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

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

.solution-counter-header-nai .funfact-icon svg{
	width: auto;
}

.service-result-img-nai{
	height: 100%;
} 

.service-result-img-nai img{
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.service-tool-counter-nai .elementor-counter-title{
	text-align: center;
}

.service-tool-counter-nai .elementor-counter-number{
	background: linear-gradient(90deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-tool-img-nai{
	height: 100%;
}

.service-tool-img-nai img{
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

@media only screen and (max-width: 991px){
	
	.service-catagery-list-nai ul li,
	.service-catagery-list-nai ul li a{
		padding: 11px 15px;
	}
	
	.solution-counter-header-nai .funfact-icon{
		height: 60px;
		width: 60px;
	}
}

@media only screen and (max-width: 767px){
	
	.page-single-img-nai img{
		aspect-ratio: 1 / 0.72;
	}
}

/* Project CSS ( Ai - Image ) */

.project-style-2 .project-item{
	border: 1px solid var(--e-global-color-divider);
	border-radius: 20px;
	text-align: center;
	padding: 40px 40px 0;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

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

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

.project-style-2 .project-item-content h3 a{
	color: var(--e-global-color-primary);
}

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

.project-style-2 .project-image a,
.project-style-2 .project-image figure{
	display: block;
	border-radius: 20px 20px 0 0;
	cursor: pointer;
	overflow: hidden;
}

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

.project-style-2 .project-item:hover .project-image img{
	transform: scale(1.06);
}

.ai-image .project-style-1 .project-content h3 a,
.ai-image .project-style-1 .project-content .projects_meta ul li a{
    color: var(--e-global-color-white);
}

.ai-image .project-style-1 .project-btn a{
	background: var(--e-global-color-accent);
}

@media only screen and (max-width: 991px){
	
	.project-style-2 .project-item{
		padding: 20px 20px 0;
	}

	.project-style-2 .project-item-content{
		margin-bottom: 30px;
	}

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

	.project-style-2 .project-image img{
		aspect-ratio: 1 / 0.72;
	}
}

@media only screen and (max-width: 767px){
	
	.project-style-2 .project-item{
		padding: 15px 15px 0;
	}
}
	
/* Project Details CSS ( Ai - Image ) */

.project-category-list-box-nai{
	overflow: hidden;
}

.project-category-list-nai .elementor-icon-list-items .elementor-icon-list-item strong{
	display: inline-block;
	width: 45%;
	font-weight: 600;
}

.project-category-list-nai .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text{
	display: block;
	width: 100%;
}

.project-category-list-nai ul li{
	position: relative;
	background-color: var(--e-global-color-white);
	padding: 18px 19px !important;
	border-radius: 10px;
	overflow: hidden;
}

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

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

.project-category-list-nai ul li .elementor-icon-list-text{
	position: relative;
	z-index: 1;
}

.project-category-list-nai ul li:hover .elementor-icon-list-text{
	color: var(--e-global-color-white) !important;
}

.satisfy-client-content-nai .elementor-counter-number-wrapper{
	flex: 0 !important;	
}

.sidebar-cta-contact-nai{
	backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sidebar-cta-contact-nai{
	overflow: hidden !important;
}

.page-single-image-nai img{
	aspect-ratio: 1 / 0.598;
    object-fit: cover;
}

.project-solution-image-nai{
	height: 100%;
}

.project-solution-image-nai img{
	aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

.performance-step-item-nai .elementskit-infobox{
	display: flex !important;
	flex-direction: column-reverse !important;
}

.column-2-nai.column-2 ul{
	gap: 20px 30px;
}

@media only screen and (max-width: 991px){
	
	.project-category-list-nai ul li{
		padding: 12px 14px !important;
	}
	
	.column-2-nai.column-2 ul{
		gap: 10px 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.page-single-image-nai img{
		aspect-ratio: 1 / 0.7;
	}
	
	.project-category-list-nai .elementor-icon-list-items .elementor-icon-list-item strong{
		width: 43%;
	}
}

/* Team Details CSS ( Ai - Image ) */

.team-single-image-nai img{
	aspect-ratio: 1 / 1.353;
	object-fit: cover;
}

.skill-progress-nai .single-skill-bar .content-group{
    width: 100% !important;
}

.skill-progress-nai .skill-bar{
    height: 16px !important;
}

.skill-progress-nai .skill-bar .skill-track::after,
.skill-progress-nai .skill-bar .skill-track::before{
    display: none;
}

.skill-progress-nai .content-group .skill-bar-content{
    margin-bottom: 20px !important;
	line-height: 1em;
}

.skill-progress-nai .single-skill-bar .number-percentage-wraper{
    position: absolute !important;
    top: 0 !important;
    right: 0;
    margin-left: 20px;	
}

.member-experience-btn-nai.elementor-widget-icon .elementor-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 60px;
	border-radius: 50%;
} 

.team-contact-form-nai .wpcf7-submit{
	background: var(--e-global-color-white) !important;
}

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

	.skill-progress-nai .skill-bar{
		height: 14px !important;
	}
	
	.team-single-image-nai img{
		aspect-ratio: 1 / 0.85;
        object-position: top center;
	}
	
	.member-experience-btn-nai.elementor-widget-icon .elementor-icon{
		height: 50px;
		width: 50px;
	} 
}

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

	.skill-progress-nai .content-group .skill-bar-content{
        margin-bottom: 15px !important;
    }
	
	.team-single-image-nai img{
		aspect-ratio: 1 / 1.353;
		object-position: center center;
	}
	
	.member-experience-btn-nai.elementor-widget-icon .elementor-icon{
		height: 40px;
		width: 40px;
	} 
}

/* Testimonials Page CSS ( Ai - Image ) */

.testimonial-item-nai{
	overflow: hidden !important;
}

.testimonial-slider-image-nai{
	height: 100%;
}

.testimonial-slider-image-nai img{
	aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

/* Image Gallery CSS ( Ai - Image ) */

.page-gallery-nai img{
	aspect-ratio: 1 / 0.829;
    object-fit: cover;
}

.page-gallery-nai .elementor-image-gallery .gallery-item .gallery-icon{
	position: relative;
    overflow: hidden;
	border-radius: 20px;
}

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

.page-gallery-nai .elementor-image-gallery .gallery-item .gallery-icon a:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* Video Gallery CSS ( Ai - Image ) */

.page-video-gallery-nai .ekit-video-item a::before{
	transform: scale(0);
	transition: all 0.4s ease-in-out !important;
}

.page-video-gallery-nai .ekit-video-item a:hover:before{
	opacity: 40% !important;
	transform: scale(1);
	border-radius: 20px;
}

.page-video-gallery-nai .ekit-video-item a i{
	width: 60px;
	height: 60px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: all 0.5s ease-in-out !important;
	color: var(--e-global-color-white) !important;
}

/* Contact Us CSS ( Ai - Image ) */

.contact-info-item-nai .elementskit-infobox .elementskit-info-box-icon{
	background: linear-gradient(90deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
}

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

.contact-form-heading-nai .elementor-heading-title span{
	-webkit-text-fill-color: var(--e-global-color-white) !important;
}

.contact-form.team-contact-form-nai .wpcf7-submit:hover{
	background: var(--e-global-color-primary) !important;
}

/****************************
******** AI - Chatbot *********
****************************/

/* 
 * Theme CSS ( Ai - Chatbot ) 
 * */

.ai-chatbot #ball{
	background: linear-gradient(90deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
}

.ai-chatbot .navbar-brand h1, 
.ai-chatbot .navbar-brand h2{
	font-weight: 300 !important;
	letter-spacing: -0.03em;
}

.ai-chatbot header.main-header{
	border-bottom: 1px solid var(--e-global-color-divider);
}

.ai-chatbot .main-menu ul li a{
	font-weight: 500;
	padding: 13px 15px !important;
	color: var(--e-global-color-white);
}

.ai-chatbot .main-menu ul ul,
.ai-chatbot .slicknav_btn,
.ai-chatbot .slicknav_menu{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.ai-chatbot .page-header-box h1{
	font-weight: 300 !important;
    letter-spacing: -0.03em;
	line-height: 1.3em;
    margin-bottom: 10px;
}

.ai-chatbot .page-header{
	padding: 215px 0 100px;
}

.blog-style-3 .post-item{
	background: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-divider);
    border-radius: 12px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 30px;
}


.blog-style-3 .post-featured-image a{
	display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

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

.blog-style-3 .post-item-content h2{
    font-size: 20px;
    line-height: 1.4em;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.blog-style-3 .post-item-btn a{
	position: relative;
	font-size: 16px;
	font-weight: 700;
    background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.blog-style-3 .post-item-btn:hover{
	background-position: right center;
}

.blog-style-3 .post-item-btn svg,
.blog-style-3 .post-item-btn i{
	margin-left: 5px;
	width: 12px;
	height: auto;
	transition: all 0.3s ease-in-out;
}

.blog-style-3 .post-item-btn:hover svg{
	transform: rotate(45deg);
}

.ai-chatbot .page-single-post,
.ai-chatbot .error-page,
.ai-chatbot .page-blog-archive{
	padding: 160px 0;
}

.ai-chatbot .pagination .nav-links span.current, 
.ai-chatbot .pagination .nav-links a:hover{
	color: var(--e-global-color-primary);
}

.ai-chatbot .post-single-image figure, 
.ai-chatbot .post-single-image img{
	border-radius: 12px;
}

.ai-chatbot .post-single-meta ul li,
.ai-chatbot .post-single-meta ul li i,
.ai-chatbot .post-tags .tag-links a,
.ai-chatbot .btn-default{
	color: var(--e-global-color-primary);
}

.ai-chatbot .footer-logo h4{
	font-weight: 300;
	letter-spacing: -0.03em;
}

.ai-chatbot aside.widget ul li a,
.ai-chatbot aside.widget ul li{
	color: var(--e-global-color-text);
}

@media only screen and (max-width: 991px){
	
	.ai-chatbot .page-header{
		padding: 150px 0 60px;
	}
	
	.blog-style-3 .post-item{
        padding: 20px;
    }
	
	.ai-chatbot .page-single-post,
	.ai-chatbot .error-page,
	.ai-chatbot .page-blog-archive{
		padding: 80px 0;
	}
}

@media only screen and (max-width: 767px){
	
	.blog-style-3 .post-featured-image a{
		margin-bottom: 15px;
	}
	
	 .blog-style-3 .post-item-content h2{
        font-size: 18px;
    }
	
     .ai-chatbot .post-entry blockquote p{
        font-size: 16px !important;
    }
}

/* Elementor Button CSS ( Ai - Chatbot ) */

.ai-chatbot .elementor-button .elementor-button-icon svg{
	height: 10px;
	width: 10px;
	transition: all 0.3s ease-in-out;
}

.ai-chatbot .elementor-button:hover .elementor-button-icon svg{
	transform: rotate(45deg);
}

/* Project Widget CSS */

.layout-style-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__categories a{
	display: none;
}

.layout-style-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__categories a:first-child{
	display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.357em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
    background: var(--e-global-color-divider);
    border: 1px solid var(--e-global-color-divider);
    border-radius: 100px;
    padding: 9px 24px;
    margin-bottom: 20px;
}

.layout-style-3 .awaiken-portfolio-grid{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	--portfolio-gap: 30px;
	column-gap: var(--portfolio-gap);
	width: 100%;
}

.layout-style-3 .awaiken-portfolio-grid-item{
	background-color: var(--e-global-color-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--e-global-color-divider);
    border-radius: 12px;
	padding: 40px;
}

.layout-style-3 .awaiken-portfolio-grid-item:has(:not .awaiken-portfolio-grid-item__img) .awaiken-portfolio-grid-item__content{
	margin-bottom: 0;
}

.layout-style-3 .awaiken-portfolio-grid-item:has(.awaiken-portfolio-grid-item__img) .awaiken-portfolio-grid-item__content{
	margin-bottom: 40px;
}

.layout-style-3 .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
	font-size: 20px;
    line-height: 1.4em;
}

.layout-style-3 .awaiken-portfolio-grid-item__content p{
	margin: 0;
}

.layout-style-3 .awaiken-portfolio-grid-item__img{
	position: relative;
	display: block;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
}

.layout-style-3 .awaiken-portfolio-grid-item__img img{
	width: 100%;
    aspect-ratio: 1 / 0.63;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

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

.layout-style-3 .awaiken-portfolio-grid-item__img:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.layout-style-3 .awaiken-portfolio-grid-item:hover .awaiken-portfolio-grid-item__img img{
	transform: scale(1.06);
}

.layout-style-3 .awaiken-portfolio-grid.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__excerpt p{
	display: none;
}

.layout-style-3 .awaiken-portfolio-grid.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__excerpt p{
	display: block;
	margin-top: 20px;
}

@media only screen and (max-width: 991px){
	
	.layout-style-3 .awaiken-portfolio-grid-item{
		padding: 20px
	}
	
	.layout-style-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item__categories a:first-child{
		font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
	}
	
	.layout-style-3 .awaiken-portfolio-grid-item__content .awaiken-portfolio-grid-item__title{
		font-size: 18px;
	}
	
	.layout-style-3 .awaiken-portfolio-grid-item:has(:not .awaiken-portfolio-grid-item__img) .awaiken-portfolio-grid-item__content{
		margin-bottom: 0;
	}

	.layout-style-3 .awaiken-portfolio-grid-item:has(.awaiken-portfolio-grid-item__img) .awaiken-portfolio-grid-item__content{
		margin-bottom: 30px;
	}
	
	.layout-style-3 .awaiken-portfolio-grid-item__img img{
		aspect-ratio: 1 / 0.67;
	}
	
	.layout-style-3 .awaiken-portfolio-grid.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__excerpt p{
		margin-top: 15px;
	}
}

/* Header CSS ( Ai - Chatbot ) */

.header-social-icon-nac ul li a,
.header-serarch-icon-nac .ekit_navsearch-button,
.header-serarch-icon-nac .ekit_offcanvas-sidebar,
.header-canvas-icon-nac .ekit-offcanvas-toggle-wraper a{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
}

.header-social-icon-nac ul li a:hover,
.header-serarch-icon-nac .ekit_navsearch-button:hover,
.header-serarch-icon-nac .ekit_offcanvas-sidebar:hover,
.header-canvas-icon-nac .ekit-offcanvas-toggle-wraper a:hover{
	background-position: right center;
}

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

	.main-menu-nac .elementor-widget-container .elementskit-menu-hamburger,
	.main-menu-nac .elementor-widget-container .elementskit-menu-container{
		background: linear-gradient(110deg, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);	
	}

	.main-menu-nac .elementskit-menu-hamburger .icon:before{
		font-weight: 600;
	}
}

/* Footer CSS ( Ai - Chatbot ) */

.footer-header-title-nac h2 span{
    color: var(--e-global-color-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--e-global-color-primary);
	background: transparent;
}

.footer-header-nac .hero-btn-nac .elementor-button{
	height: 80px;
	width: 80px;
}

.footer-header-nac .hero-btn-nac .elementor-button .elementor-button-icon svg{
	height: 45px !important;
	width: 45px !important;
}

.footer-form-nac .form-group{
	display: flex;
}

.footer-form-nac .email-field{
	width: 95%;
} 

.footer-form-nac .wpcf7-not-valid-tip,
.footer-form-nac .wpcf7-response-output{
	display: none;
}

.footer-form-nac .newsletter-btn input[type="submit"]{
	background: url("assets/images/arrow-gradiant-nac.svg") no-repeat center center;
	background-size: 16px auto !important;
	height: 16px;
	width: 16px;
}

.footer-links-nac ul li:last-child a{
		padding-bottom: 0 !important;
}

@media only screen and (max-width: 991px){
	
	.footer-header-nac .hero-btn-nac .elementor-button{
		height: 70px;
		width: 70px;
	}
	
	.footer-header-nac .hero-btn-nac .elementor-button .elementor-button-icon svg{
		height: 40px !important;
		width: 40px !important;
	}

	.footer-links-nac ul li a{
		padding-bottom: 10px !important;
	}
}

@media only screen and (max-width: 767px){
	
	.footer-header-nac .hero-btn-nac .elementor-button{
		height: 60px;
		width: 60px;
	}
	
	.footer-header-nac .hero-btn-nac .elementor-button .elementor-button-icon svg{
		height: 35px !important;
		width: 35px !important;
	}
}

/* Home Page CSS ( Ai - Chatbot ) */

.hero-nac{
	overflow: hidden !important;
}

.hero-btn-nac .elementor-button{
	height: 100px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-btn-nac .elementor-button .elementor-button-icon svg{
	height: 54px !important;
	width: 54px !important;
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.hero-btn-nac .elementor-button:hover .elementor-button-icon svg{
	transform: rotate(0);
}

.hero-icon-boxes-nac{
	position: initial;
}

.hero-icon-box-1-nac,
.hero-icon-box-2-nac{
	transform: translateX(-50%);
}

.hero-icon-nac{
	height: var(--container-widget-width);
}

.hero-icon-nac .elementor-icon{
	height: 60px;
	width: 60px;
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out; 
}

.hero-icon-1-nac,
.hero-icon-2-nac{
	animation: iconheroimgdown 6s infinite linear alternate;
}

@keyframes iconheroimgdown{
    50%{
        transform: translateY(50px)
    }
}

.hero-icon-3-nac,
.hero-icon-4-nac{
	animation: iconheroimgup 6s infinite linear alternate;
}

@keyframes iconheroimgup{
    50%{
        transform: translateY(-50px)
    }
}

.hero-icon-2-nac,
.hero-icon-4-nac{
    animation-delay: 1s;
}

.hero-image-1-nac img,
.hero-image-2-nac img,
.hero-image-3-nac img{
    aspect-ratio: 1 / 1.182;
    object-fit: cover;
}

.hero-image-2-nac img{
	transform: translateX(-50%);
}

.scrolling-content-nac .ticker-item img{
	max-width: 176px;
}

.scrolling-content-nac .ticker:before,
.scrolling-content-nac .ticker:after{
	display:none;
}

.container-backdrop-filter-nac{
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.counter-text-item-nac .elementor-counter-number-wrapper{
	display: inline-block;
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-text-item-nac .elementor-counter{
	align-items: flex-start;
}

.info-icon-box-nac .elementskit-infobox .elementskit-info-box-icon{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 100%);
}

.about-us-body-nac .elementskit-infobox .elementskit-info-box-icon:hover{
    transform: rotate(0) !important;
}

.service-item-nac .elementskit-infobox:before{
	border-radius: 999px 999px 0 0;
	height:0 !important;
}

.service-item-nac:hover .elementskit-infobox:before{
	border-radius: 0;
	height: 100% !important;
}

.service-image-nac img{
	object-fit: cover;
	aspect-ratio: 1 / 1.045;
}

.service-contact-box-nac{
	overflow: hidden !important;
}

.why-choose-nac:before{
	top: -24%;
}

.why-choose-img-nac img{
    aspect-ratio: 1 / 1.6;
    object-fit: cover;
}

.ai-chatbot .column-2 .elementor-icon-list-items{
	gap: 20px 30px;
} 
 
.get-started-circle-nac{
    width: 100%;
    max-width: 160px;
    border-radius: 50%;
    animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	0%{
		transform: rotate(0deg);
    }
	100%{
		transform: rotate(360deg);
	}
}

.how-work-image-nac{
	height: 100%;
}

.how-work-image-nac img{
	object-fit: cover;
	aspect-ratio: 1 / 0.53;
}

.our-testimonials-nac .testimonial-item{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.our-testimonials-nac .elementskit-commentor-content{
	margin-bottom: 0;
}

.our-testimonials-nac .elementskit-commentor-content p{
	padding-bottom: 100px;
	border-bottom: 1px solid var(--e-global-color-divider);
}

.our-testimonials-nac .swiper-navigation-button{
	transition: all 0.3s ease-in-out;
	bottom: 0;
	top: auto;
}

.faq-accordion-nac .elementskit-card{
	overflow: hidden;
}

.faq-accordion-nac .elementskit-card .elementskit-btn-link{
	border-radius: 0 !important;
}

.faq-accordion-nac .elementskit-accordion .elementskit-card .number{
    margin-right: 5px;
}

.cta-box-btn-nac{
	transform: translateX(100%);
	animation: ctaarrowmove-sc 2s infinite linear alternate;
}

@keyframes ctaarrowmove-sc{
	50% {
		right: -55px;
	}
}

.cta-box-nac:before{
	top: -60px;
}

.cta-box-img-nac img{
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
}

.latest-blog-nac .elementskit-entry-header img{
	aspect-ratio: 1 / 0.735;
    object-fit: cover;
    transition: all 0.5s ease-in-out !important;
}

.latest-blog-nac .elementskit-post-image-card:hover img{
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.latest-blog-nac .elementskit-entry-header a{
    position: relative;
    overflow: hidden;
}

.latest-blog-nac .elementskit-post-image-card .elementskit-entry-header a:after{
	content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.latest-blog-nac .elementskit-post-image-card .elementskit-entry-header a:hover:after{
	height: 250%;
	transition: all 0.4s linear !important;
	background-color: transparent;	
}

.latest-blog-nac .btn-wraper{
	line-height: 0;
}

.latest-blog-nac .btn-wraper a{
	text-transform: capitalize;
    background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.latest-blog-nac .btn-wraper a svg{
	margin-left: 8px;
	transition: all 0.4s ease-in-out;
}

.latest-blog-nac .btn-wraper a:hover svg{
	transform: rotate(50deg);
}

@media only screen and (max-width: 991px){
	
	.hero-btn-nac .elementor-button{
		height: 80px;
		width: 80px;
	}
	
	.hero-btn-nac .elementor-button .elementor-button-icon svg{
		height: 40px !important;
		width: 40px !important;
	}
	
	.hero-icon-nac .elementor-icon{
        height: 50px;
        width: 50px;
	}
	
	.why-choose-nac:before{
		top: -13%;
	}
	
	.ai-chatbot .column-2 .elementor-icon-list-items{
		gap: 15px 30px;
	}
	
	.ai-chatbot .column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: calc(50% - 15px);
	}
	
	.how-work-image-nac img{
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonials-nac .elementskit-commentor-content p{
		padding-bottom: 50px;
	}
	
	.cta-box-nac:before{
		top: -20px;
	}
}

@media only screen and (max-width: 767px){
	
	.hero-btn-nac .elementor-button{
		height: 60px;
		width: 60px;
	}

	.hero-btn-nac .elementor-button .elementor-button-icon svg{
		height: 32px !important;
		width: 32px !important;
	}
	
   .hero-icon-nac .elementor-icon{
        height: 45px;
        width: 45px;
	}

	.why-choose-nac:before{
		top: -13%;
	}

	.ai-chatbot .column-2 .elementor-icon-list-items{
		gap: 10px;
	}

	.ai-chatbot .column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: 100%;
	}

	.our-testimonials-nac .elementskit-commentor-content p{
		padding-bottom: 30px;
	}

	.our-testimonials-nac .ekit-main-swiper .swiper-navigation-button{
		display: inline-flex !important;
	}
}

/* About Us CSS ( Ai - Chatbot ) */

.ai-chatbot .trail-items li a,
.ai-chatbot .trail-items span span{
	font-size: 18px;
	font-weight: 400;
}

.ai-chatbot .breadcrumb-trail{
	line-height: normal;
}

.approach-item-nac{
	overflow: hidden !important;
}

.approach-item-nac:before{
	left: 0;
    right: 0;
    top: 100%;
	height: 0;
	border: none;
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out; 
}

.approach-item-nac:hover::before{
	top: 0;
	height: 100%; 
	bottom: auto !important;
	border-radius: 0;
}

.approach-item-nac .approach-item-box-nac .elementskit-infobox{
	display: flex;
	flex-direction: column-reverse;
}

.approach-item-nac .approach-item-box-nac .elementskit-infobox p{
	transition: all 0.4s ease-in-out;
}

.approach-item-nac:hover .approach-item-box-nac .elementskit-infobox p{
	color: var(--e-global-color-primary) !important;
}

.approach-item-img-nac img{
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.value-image-nac img{
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.what-drives-img-nac{
	height: 100%;
}

.what-drives-img-nac img{
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

@media only screen and (max-width: 991px){
	
	.value-image-nac img{
		aspect-ratio: 1 / 0.65;
	}
}

@media only screen and (max-width: 767px){
	
	.ai-chatbot .trail-items li a,
	.ai-chatbot .trail-items span span{
		font-size: 16px;
		font-weight: 400;
	}
	
	.value-image-nac img {
		aspect-ratio: 1 / 0.8;
	}
	
	.what-drives-img-nac img {
		aspect-ratio: 1 / 0.75;
		object-fit: cover;
	}
}

/*  Service Details CSS ( Ai - Chatbot ) */

.service-catagery-list-nac .elementor-icon-list-items li,
.service-catagery-list-nac .elementor-icon-list-items li a{
    flex-direction: row-reverse;
    justify-content: space-between;
}

.service-catagery-list-nac .elementor-icon-list-items li .elementor-icon-list-icon svg,
.service-catagery-list-nac .elementor-icon-list-items li a .elementor-icon-list-icon svg{
    margin: 0 !important;
	transition: all 0.4s ease-in-out !important;
}

.service-catagery-list-nac .elementor-icon-list-items li:hover .elementor-icon-list-icon svg{
	transform: rotate(45deg);
}

.service-catagery-list-nac .elementor-icon-list-text{
	padding-inline-start: 0 !important;
}

.page-single-img-nac img{
    aspect-ratio: 1 / 0.581;
    object-fit: cover;
}

.data-driven-item-list-nac.column-2 .elementor-icon-list-items{
	row-gap: 15px;
}

.data-driven-item-nac .elementskit-info-box-icon{
	background: linear-gradient(to right, var(--e-global-color-accentsecondary) 0%, var(--e-global-color-accent) 50%, var(--e-global-color-accentsecondary) 100%);
	background-size: 200% auto;
}

.service-decision-img-nac img{
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.service-insight-img-nac img{
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
}

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

	.data-driven-item-list-nac.column-2 .elementor-icon-list-items{
		gap: 10px 20px;
	}

	.data-driven-item-list-nac.column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: calc(50% - 10px);
	}
}

@media only screen and (max-width: 767px){
	
	.page-single-img-nac img{
		aspect-ratio: 1 / 0.72;
	}
	
	.data-driven-item-list-nac.column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: 100%;
	}
}

/* project CSS ( Ai - Chatbot ) */

.project-style-3 .project-item{
    background-color: var(--e-global-color-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--e-global-color-divider);
    border-radius: 12px;
    padding: 40px;
	margin-bottom: 30px;
}

.project-style-3 .project-item-content .projects_meta{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
	line-height: 1.357em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
	background: var(--e-global-color-divider);
	border: 1px solid var(--e-global-color-divider);
	border-radius: 100px;
	padding: 9px 24px;
    margin-bottom: 20px;
}

.project-style-3 .project-item-content .projects_meta ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.project-style-3 .project-item-content h3{
    font-size: 20px !important;
    line-height: 1.4em !important;
}

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

.project-style-3 .project-image a{
	margin-top: 40px;
}

.project-style-3 .project-image a,
.project-style-3 .project-image a figure{
    display: block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.project-style-3 .project-image figure img{
    width: 100%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.project-style-3 .project-item:hover .project-image figure img{
    transform: scale(1.05);
}

@media only screen and (max-width: 991px){
	
	.project-style-3 .project-item{
		 padding: 20px;
	}
	
	 .project-style-3 .project-item-content .projects_meta{
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
	
	.project-style-3 .project-item-content h3{
		font-size: 18px !important;
	}
	
	.project-style-3 .project-image a{
		margin-top: 30px;
	}
}

/* Projects Details CSS ( Ai - Chatbot ) */

.project-category-list-nac{
	overflow: hidden !important;
}

.project-integration-image-nai img{
	aspect-ratio: 1 / 0.613;
    object-fit: cover;
}

.project-demand-image-nac img{
	aspect-ratio: 1 / 0.95;
    object-fit: cover;
}

.project-category-list-nac .elementor-icon-list-items .elementor-icon-list-item strong{
	display: inline-block;
	width: 45%;
	font-weight: 700;
	color: var(--e-global-color-primary);
}

.project-category-list-nac .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text{
	display: block;
	width: 100%;
}

@media only screen and (max-width: 767px){
	
	.how-work-item-nac .elementskit-infobox{
		display: flex;
		gap: 15px;
	}
	
	.project-demand-image-nac img{
		aspect-ratio: 1 / 0.65;
	}
}

/* Team Details CSS ( Ai - Chatbot ) */

.skill-progress-nac .single-skill-bar .content-group{
    width: 100% !important;
}

.skill-progress-nac .skill-bar{
    height: 16px !important;
	border: solid 1px var(--e-global-color-divider);
}

.skill-progress-nac .skill-bar .skill-track::after,
.skill-progress-nac .skill-bar .skill-track::before{
    display: none;
}

.skill-progress-nac .content-group .skill-bar-content{
    margin-bottom: 20px !important;
	line-height: 1em;
}

.skill-progress-nac .single-skill-bar .number-percentage-wraper{
    position: absolute !important;
    top: 5px !important;
    right: 0;
    margin-left: 20px;
}

@media only screen and (max-width: 767px){
	
	.skill-progress-nac .content-group .skill-bar-content{
		margin-bottom: 10px !important;
	}
}

/* Image Gallery CSS ( Ai - Chatbot ) */

.photo-gallery-nac img{
	aspect-ratio: 1 / 0.829;
    object-fit: cover;
}

.photo-gallery-nac .elementor-image-gallery .gallery-item .gallery-icon{
	position: relative;
    overflow: hidden;
	border-radius: 12px;
}

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

.photo-gallery-nac .elementor-image-gallery .gallery-item .gallery-icon a:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* Video Gallery CSS ( Ai - Chatbot ) */

.page-video-gallery-nac .ekit-video-item a::before{
	transform: scale(0);
	transition: all 0.4s ease-in-out !important;
}

.page-video-gallery-nac .ekit-video-item a:hover:before{
	opacity: 40% !important;
	transform: scale(1);
	border-radius: 12px;
}

.page-video-gallery-nac .ekit-video-item a i{
	width: 60px;
	height: 60px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: all 0.5s ease-in-out !important;
	color: var(--e-global-color-primary) !important;
}

/* Testimonials Page CSS ( Ai - Chatbot ) */

.testimonial-item-nac{
	position: relative;
	overflow: hidden !important;
}

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

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

.testimonial-item-nac:hover .elementskit-infobox p,
.testimonial-item-nac.active .elementskit-infobox p{
	color: var(--e-global-color-primary) !important;
}

.testimonial-author-img-nac .elementskit-info-box-icon img{
    border-radius: 50%;
}