.slicknav_icon .slicknav_icon-bar{
	background-color: var(--black-color) !important;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	color: var(--black-color) !important;
	text-transform: none !important;
}

.btn-default {
	text-transform: none;
}

.btn-default::before{
	background: url('../images/arrow-black.svg') no-repeat;
}

.main-menu ul li a{
	text-transform: none;
}


.sitemap ul li a {
	color: var(--primary-color);
	padding: 6px 20px !important;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.target-group-cta {
	margin-top: 30px;
}

@keyframes pulse-play {
	0% {
		transform: translate(-50%, -50%) scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}
	70% {
		transform: translate(-50%, -50%) scale(1.1);
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


/*******************************************/
/***   05. recommendations         css   ***/
/*******************************************/
.swiper-slide > .row {
	margin-left: 0;
	margin-right: 0;
}

.elewen-recommendations-title {
	margin-top: 50px;
	margin-bottom: 50px;
}

.elewen-recommendations .elewen-recommendations-title h2 {
	font-size: 48px;
	font-weight: 300;
	margin-bottom: 0;
	cursor: none;
}
.elewen-recommendations .elewen-recommendations-title h3 {
	font-size: 38px;
	font-weight: 300;
	margin-bottom: 0;
	cursor: none;
}

.elewen-recommendations .elewen-recommendations-title h1 span,
.elewen-recommendations .elewen-recommendations-title h2 span,
.elewen-recommendations .elewen-recommendations-title h3 span {
	font-weight: 700;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}


.elewen-recommendations-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.elewen-recommendations-slider {
	overflow: hidden;
}

.elewen-recommendations-slider .swiper-wrapper {
	align-items: stretch;
}

.elewen-recommendation-item {
	height: auto;
}

.elewen-recommendations-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.elewen-recommendations-button-prev,
.elewen-recommendations-button-next {
	display: inline-flex;
}


.elewen-recommendations-slider .elewen-recommendations-button-next,
.elewen-recommendations-slider .elewen-recommendations-button-prev{
	position: relative;
	width: 60px;
	height: 60px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.elewen-recommendations-slider .elewen-recommendations-button-next{
	margin-left: 20px;
}

.elewen-recommendations-slider .elewen-recommendations-button-next:hover,
.elewen-recommendations-slider .elewen-recommendations-button-prev:hover{
	background: var(--accent-color);
}

.elewen-recommendations-slider .elewen-recommendations-button-next::before,
.elewen-recommendations-slider .elewen-recommendations-button-prev::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%) rotate(45deg);
	background: url('../images/arrow-white.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.elewen-recommendations-slider .elewen-recommendations-button-prev::before {
	transform: translate(-50%, -50%) rotate(225deg);
}

.service-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
}

.project-demand-content{
	width: 100%;
}

.project-entry-before ul li:before {
	content: '\f00d';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--error-color) 0%, var(--error-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}


.why-choose-us{
	padding: 100px 0 60px 0;
}

.elewen-mystory p {
	font-size: 20px;
}

/*******************************************/
/***   05. elewen-Scrolling Ticker css   ***/
/*******************************************/

.elewen-scrolling-ticker-box{
	padding: 0 0 100px 0;
}

.elewen-scrolling-ticker-item{
	--gap: 30px;
	position: relative;
	top: -25px;
	left: -5px;
	width: 102%;
	background: var(--dark-divider-color);
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	padding: 22px 0;
	transform: rotate(-2.72deg);
}

.elewen-scrolling-ticker-item.scroll-reverse{
	top: 50px;
	background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	transform: rotate(2.72deg);
	z-index: 1;
}

.elewen-scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 30s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.elewen-scrolling-ticker-item.scroll-reverse .elewen-scrolling-content{
	animation-direction: reverse;
}

.elewen-scrolling-content span{
	display: inline-block;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	vertical-align: middle;
}

.elewen-scrolling-content span img{
	width: 100%;
	max-width: 30px;
	margin-right: 30px;
}



/********************************************/
/*** 	 09. ELEWEN How It Work css 	  ***/
/********************************************/

.elewen-how-it-work{
	padding: 80px 0;
}

.elewen-work-step-item{
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.elewen-work-step-image{
	width: 100%;
	max-width: 180px;
	margin: 0 auto;
}

.elewen-work-step-image figure{
	display: block;
	border-radius: 50%;
}

.elewen-work-step-image img{
	width: 100%;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.elewen-work-step-item:hover .elewen-work-step-image img{
	transform: scale(1.08);
}

.elewen-work-step-no{
	position: relative;
	margin: -20px auto 30px;
	z-index: 1;
}

.elewen-work-step-no h3{
	display: inline-block;
	font-size: 14px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	padding: 12px 24px;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.elewen-work-step-item:hover .elewen-work-step-no h3{
	background-position: right center;
}

.elewen-work-step-content h3{
	font-size: 20px;
}

.elewen-work-step-content p{
	margin: 15px 0 0;
}




/************************************/
/*** 	  13. Our Pricing css	  ***/
/************************************/

elewen-pricing-price

.elewen-our-pricing{
	padding: 80px 0;
}

.elewen-pricing-item{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.elewen-pricing-header,
.elewen-pricing-price{
	margin-bottom: 30px;
}

.elewen-pricing-header img{
	display: block;
	width: 100%;
	max-width: 50px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.elewen-pricing-item:hover .elewen-pricing-header img{
	transform: rotateY(180deg);
}

.elewen-pricing-header h3{
	display: inline-block;
	font-size: 14px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	padding: 10px 20px;
	border-radius: 100px;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}

.elewen-pricing-item:hover .elewen-pricing-header h3{
	background-position: right center;
}

.elewen-pricing-header p{
	margin: 0;
}

.elewen-pricing-price {
	border: 1px solid var(--divider-color);
	background-color: var(--secondary-color);
	text-align: center;
	border-radius: 20px;
	padding: 20px;
	display: none !important;
}

.elewen-pricing-price h2{
	font-size: 34px;
}

.elewen-pricing-price h2 sub{
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	bottom: 0;
	opacity: 80%;
}

.elewen-pricing-body{
	margin-bottom: 40px;
}

.elewen-pricing-body h3{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

.elewen-pricing-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.elewen-pricing-body ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

.elewen-pricing-body ul li:last-child{
	margin-bottom: 0;
}

.elewen-pricing-body ul li::before{
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.elewen-pricing-body.xmark ul li::before{
	content: '\f235';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--error-color);
}


.elewen-pricing-btn .btn-default{
	width: 100%;
	padding: 17px;
	text-align: center;
}

.elewen-pricing-btn .btn-default::before{
	display: none;
}

.elewen-pricing-item.highlighted-box{
	background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	transition: all 0.4s ease-in-out;
}

.elewen-pricing-item.highlighted-box:hover{
	background-position: right center;
}

.elewen-pricing-item.highlighted-box .elewen-pricing-header img{
	filter: brightness(0) invert(1);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-header h3,
.elewen-pricing-item.highlighted-box .elewen-pricing-btn .btn-default{
	color: var(--black-color);
	background: var(--white-color);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-header p,
.elewen-pricing-item.highlighted-box .elewen-pricing-body ul li,
.elewen-pricing-item.highlighted-box .elewen-pricing-body ul li::before{
	color: var(--black-color);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-body.xmark ul li::before{
	content: '\f235';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--error-color);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-body.basis ul li::before{
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--success-color);
}

.elewen-pricing-item .elewen-pricing-body.enterprise ul li::before{
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--success-color);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-price{
	background: var(--white-color);
	color: var(--black-color);

}

.elewen-pricing-item.highlighted-box .elewen-pricing-price h2{
	color: var(--black-color);
}
.elewen-pricing-item.highlighted-box .elewen-pricing-price sub{
	color: var(--black-color);
}

.elewen-pricing-item.highlighted-box .elewen-pricing-body h3 {
	color: var(--black-color);
}


.elewen-pricing-item.highlighted-box .elewen-pricing-btn .btn-default:hover{
	color: var(--primary-color);
	background: var(--black-color);
}

.elewen-pricing-benefit-list{
	margin-top: 30px;
}

.elewen-pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px 60px;
}

.elewen-pricing-benefit-list ul li{
	display: flex;
	align-items: center;
	color: var(--primary-color);
}

.elewen-pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}



/************************************/
/***     27. section              ***/
/************************************/

/*.section-row{*/
/*	margin-bottom: 80px;*/
/*}*/

/*.section-row .section-title{*/
/*	margin-bottom: 0;*/
/*}*/

/*.section-title.section-title-center{*/
/*	width: 100%;*/
/*	max-width: 700px;*/
/*	text-align: center;*/
/*	margin: 0 auto;*/
/*}*/

/*.section-btn{*/
/*	text-align: right;*/
/*}*/

/*.section-content-btn .section-btn{*/
/*	margin-top: 30px;*/
/*	text-align: left;*/
/*}*/

/*.section-title-content p{*/
/*	margin-bottom: 20px;*/
/*}*/

/*.section-title-content p:last-child{*/
/*	margin-bottom: 0;*/
/*}*/

/*.section-title{*/
/*	margin-bottom: 40px;*/
/*}*/

/*.section-title h3{*/
/*	display: inline-block;*/
/*	position: relative;*/
/*	font-size: 14px;*/
/*	letter-spacing: 0.2em;*/
/*	text-transform: uppercase;*/
/*	background: url('../images/icon-sparkle-accent.svg') no-repeat;*/
/*	background-position: left center;*/
/*	background-size: 20px auto;*/
/*	padding-left: 30px;*/
/*	margin-bottom: 20px;*/
/*}*/

/*.section-title h1{*/
/*	font-size: 50px;*/
/*	letter-spacing: -0.02em;*/
/*	margin-bottom: 0;*/
/*	cursor: none;*/
/*}*/

/*.section-title h2{*/
/*	font-size: 46px;*/
/*	letter-spacing: -0.02em;*/
/*	margin-bottom: 0;*/
/*	cursor: none;*/
/*}*/

/*.section-title h1 span,*/
/*.section-title h2 span{*/
/*	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);*/
/*	background-size: 200% auto;*/
/*	background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*	transition: all 0.4s ease-in-out;*/
/*}*/

/*.section-title h1:hover span,*/
/*.section-title h2:hover span{*/
/*	background-position: right center;*/
/*}*/

/*.section-title p{*/
/*	margin-top: 20px;*/
/*	margin-bottom: 0;*/
/*}*/

/************************************/
/*** 	   09. Our Facts css 	  ***/
/************************************/

.elewen-our-facts{
	padding: 80px 0;
}

.elewen-our-facts .section-title.section-title-center{
	max-width: 840px;
}

.elewen-fact-item{
	border: 1px solid var(--divider-color);
	background-color: var(--secondary-color);
	background-image: url('../images/section-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	text-align: center;
	align-content: center;
	backdrop-filter: blur(180px);
	-webkit-backdrop-filter: blur(180px);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 60px 40px;
	transition: all 0.3s ease-in-out;
}

.elewen-fact-item:hover{
	transform: translateY(-5px);
}

.elewen-fact-item-counter h2{
	display: inline-block;
	font-size: 80px;
	font-weight: 700;
	line-height: 1em;
	color: var(--bg-color);
	letter-spacing: 0.02em;
	background: linear-gradient(180deg, rgba(6, 6, 6, 0.00) 49.56%, var(--accent-secondary-color) 78.6%), linear-gradient(90deg, var(--accent-color) 15%, var(--accent-secondary-color) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
	transition: all 0.3s ease-in-out;
}

.elewen-fact-item:hover .elewen-fact-item-counter h2{
	color: transparent;
}

.elewen-fact-item-content{
	position: relative;
	margin-top: -15px;
	z-index: 1;
}

.elewen-fact-item-content h3{
	font-size: 20px;
}

.elewen-fact-item-content p,
.elewen-fact-item-content .readmore-btn{
	margin: 20px 0 0;
}



/************************************************/
/*** 	   06. elewen - recommandations  	  ***/
/************************************************/
.elewen-page-testimonials .page-testimonials {
	padding: 50px 0 30px;
}

.elewen-page-testimonials .page-projects {
	padding: 0;
}

.testimonial-content {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.elewen-recommendations {
	padding: 80px 0;
}

.elewen-about-image-box{
	position: relative;
	margin-right: 20px;
}

.elewen-about-image figure{
	display: block;
	border-radius: 20px;
}

.elewen-about-image img{
	width: 100%;
	aspect-ratio: 1 / 1.472;
	object-fit: cover;
	border-radius: 20px;
}

.elewen-review-rating-box {
	position: absolute;
	left: 170px;
	bottom: 40px;
	width: 100%;
	max-width: 150px;
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--secondary-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
}

.elewen-review-images{
	display: inline-flex;
	align-items: center;
}

.elewen-review-image{
	position: relative;
	display: inline-block;
	margin-left: -10px;
	z-index: 1;
}

.elewen-review-image:first-child{
	margin: 0;
}

.elewen-review-image figure{
	display: block;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
}

.elewen-review-image img{
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.elewen-review-rating-star{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.elewen-review-rating-star i{
	color: var(--accent-color);
	margin-right: 5px;
}

.elewen-review-rating-star span{
	font-size: 12px;
	font-weight: 600;
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	color: var(--primary-color);
	line-height: 1.2em;
	padding: 3px 8px;
	border-radius: 100px;
}

.elewen-review-rating-content p{
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0;
}

.elewen-about-body-box{
	display: flex;
	gap: 30px 80px;
	flex-wrap: wrap;
}

.elewen-year-experience-box{
	position: relative;
	width: calc(45% - 40px);
}

.elewen-year-experience-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.elewen-recommendations-button{
	margin-top: 40px;
}

.elewen-recommendations-body{
	width: calc(55% - 40px);
}

.elewen-about-body-item{
	margin-bottom: 40px;
}

.elewen-about-body-item:last-child{
	margin-bottom: 0;
}

.elewen-about-body-item .icon-box{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.elewen-about-body-item:hover .icon-box{
	background-position: right center;
}

.elewen-about-body-item .icon-box img{
	width: 100%;
	max-width: 24px;
}

.elewen-about-body-content h3{
	font-size: 20px;
}

.elewen-about-body-content p{
	margin: 15px 0 0;
}





.elewen-our-benefits{
	padding: 80px 0;
}

.elewen-our-benefit-content{
	margin-right: 30px;
}

.elewen-benefit-body{
	display: flex;
	align-items: center;
	margin-top: 60px;
}

.elewen-benefit-body .contact-us-circle{
	border-right: 1px solid var(--divider-color);
	padding-right: 40px;
	margin-right: 40px;
}

.elewen-benefit-body .contact-us-circle img{
	max-width: 140px;
}

.elewen-benefit-body-list{
	width: calc(100% - 220px);
}

.elewen-benefit-body-list ul{
	list-style: disc;
	margin: 0;
	padding-left: 20px;
}

.elewen-benefit-body-list ul li{
	min-height: 48px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.elewen-benefit-body-list ul li:last-child{
	margin-bottom: 0;
}

.elewen-benefit-body-list ul li::marker{
	color: var(--accent-color);
}

.elewen-benefit-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.elewen-benefit-item-list-1,
.elewen-benefit-item-list-2{
	width: calc(50% - 15px);
}

.elewen-benefit-item{
	position: relative;
	border: 1px solid var(--divider-color);
/*	background: var(--secondary-color) url('../images/benefit-item-bg-img.png') no-repeat; */
	background: var(--secondary-color) url('../images/section-bg-shape.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	backdrop-filter: blur(180px);
	-webkit-backdrop-filter: blur(180px);
	border-radius: 20px;
	padding: 40px 35px;
	margin-bottom: 40px;
	overflow: hidden;
}

.elewen-benefit-item:last-child{
	margin-bottom: 0;
}

.elewen-benefit-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(110deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0%;
	transition: all 0.4s ease-in-out;
}

.elewen-benefit-item:hover:before{
	height: 100%;
	border-radius: 0;
}

.elewen-benefit-item .icon-box,
.elewen-benefit-item-content{
	position: relative;
	z-index: 1;
}

.elewen-benefit-item .icon-box{
	margin-bottom: 40px;
}

.elewen-benefit-item .icon-box img{
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.elewen-benefit-item:hover .icon-box img{
	filter: brightness(0) invert(1);
	transform: rotateY(180deg);
}

.elewen-benefit-item-content h3{
	font-size: 18px;
}

.elewen-benefit-item-content p{
	margin: 15px 0 0;
	transition: all 0.3s ease-in-out;
}

.elewen-benefit-item:hover .elewen-benefit-item-content p{
	color: var(--primary-color);
}

.elewen-benefit-item-list-2{
	margin-top: 40px;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-secondary-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	/*-webkit-text-fill-color: transparent;*/
	transition: all 0.4s ease-in-out;
}

.elewen-video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.elewen-video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.elewen-video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-color);
	border-radius: 12px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.elewen-video-gallery-image:hover a::before{
	opacity: 40%;        /* Von 0% auf 40% geändert */
	visibility: visible; /* Von hidden auf visible geändert */
	transform: scale(1);
}

.elewen-video-gallery-image a::after{
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 2.01%, var(--accent-color) 97.82%);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;           /* Von 0 auf 1 geändert */
	visibility: visible;  /* Von hidden auf visible geändert */
	transition: all 0.5s ease-in-out;
	z-index: 1;
	animation: pulse-play 1.5s infinite ease-in-out;
}

.elewen-video-gallery-image:hover a::after{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1.1); /* Button wird 10% größer */
	filter: brightness(1.2); /* Wird etwas heller */
}

.elewen-video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 12px;
}

.elewen-home-hero-video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.elewen-home-hero-video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.elewen-home-hero-video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-color);
	border-radius: 12px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.elewen-home-hero-video-gallery-image:hover a::before{
	opacity: 40%;        /* Von 0% auf 40% geändert */
	visibility: visible; /* Von hidden auf visible geändert */
	transform: scale(1);
}

.elewen-home-hero-video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 2.01%, var(--accent-color) 97.82%);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;           /* Von 0 auf 1 geändert */
	visibility: visible;  /* Von hidden auf visible geändert */
	transition: all 0.5s ease-in-out;
	z-index: 1;
	animation: pulse-play 1.5s infinite ease-in-out;
}

.elewen-home-hero-video-gallery-image:hover a::after{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1.1); /* Button wird 10% größer */
	filter: brightness(1.2); /* Wird etwas heller */
}

.elewen-home-hero-video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.629;
	object-fit: cover;
	border-radius: 12px;
}


.target-group-icons {
	font-size:38px;
	font-weight: lighter;
	color: var(--accent-color);
}

.elewen-benefit-item:hover .target-group-icons {
	font-size:38px;
	font-weight: lighter;
	color: var(--primary-color);
}

.elewen-icon-accent-color {
	font-size:38px;
	font-weight: lighter;
	color: var(--accent-color);
}

.elewen-icon-white-color {
	font-size:30px;
	font-weight: lighter;
	color: var(--primary-color);
}

.elewen-icon-black-color {
	font-size:30px;
	font-weight: lighter;
	color: var(--black-color);
}








.elewen-services.page-services {
	padding: 160px 0 0px;
}













/*********************************************/
/***      31. elewen - HERO SECTION        ***/
/*********************************************/
.hero.hero-bg-image {
	background: url('../images/panikfrei/hero/panikfrei_hero.webp') no-repeat !important;
	background-attachment: scroll !important;
	background-size: cover !important;
	background-position: center center !important;
	padding: 370px 0 125px;
	/*border: 1px solid red;*/
}

/* - TABLE HOCHFORMAT NOTWENDIG! */
@supports (-webkit-touch-callout: none) {
	.hero.hero-bg-image.parallaxie {
		background-attachment: scroll !important;
		background-size: cover !important;
		background-position: center center !important;
		padding: 160px 0 125px;
		/*border: 1px solid green;*/
	}
}
/* - TABLE QUERFORMAT NOTWENDIG! */
@media (hover: none) and (pointer: coarse) and (min-width: 992px) {
	.hero.hero-bg-image.parallaxie {
		position: relative;
		background-attachment: scroll !important;
		background-position: center center !important;
		background-size: cover !important;
		padding: 160px 0 125px;
		/*border: 1px solid aqua;*/
	}
}
/* - PHONE */
@media (hover: none) and (pointer: coarse) and (max-width: 991px) {
	.hero.hero-bg-image.parallaxie {
		position: relative;
		background-position: center center !important;
		background-size: cover !important;
		background-attachment: scroll !important;
		padding: 120px 0 30px;
		/*border: 1px solid yellow;*/
	}
}

/*********************************************/
/***      31. elewen - Responsive css      ***/
/*********************************************/
@media only screen and (max-width: 991px) {
	/*.hero .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {*/
	/*	padding-top: 10px;*/
	/*}*/

	.hero-cta-button {
		padding-bottom: 20px;
	}

	.page-header {
		padding: 0 0 10px;
	}

	.scrolling-ticker-box{
		padding: 40px 0;
	}

	.scrolling-ticker-item{
		--gap: 15px;
		top: -25px;
		padding: 15px 0;
		transform: rotate(-3.72deg);
	}

	.scrolling-ticker-item.scroll-reverse{
		top: 30px;
		transform: rotate(3.72deg);
	}

	.scrolling-content span{
		font-size: 22px;
	}

	.scrolling-content span img{
		max-width: 22px;
		margin-right: 15px;
	}


	.elewen-our-pricing{
		padding: 40px 0;
	}

	.elewen-pricing-item{
		padding: 20px;
	}

	.elewen-pricing-header,
	.elewen-pricing-price{
		margin-bottom: 20px;
	}

	.elewen-pricing-header h3{
		padding: 8px 16px;
		margin-bottom: 30px;
	}

	.elewen-pricing-price{
		padding: 15px;
	}

	.elewen-pricing-price h2{
		font-size: 30px;
	}

	.elewen-pricing-body{
		margin-bottom: 30px;
	}

	.elewen-pricing-body h3{
		margin-bottom: 15px;
	}

	.elewen-pricing-body ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.elewen-pricing-body ul li::before{
		font-size: 16px;
	}

	.elewen-pricing-benefit-list{
		margin-top: 10px;
	}

	.elewen-pricing-benefit-list ul{
		gap: 15px 30px;
	}

	.elewen-pricing-benefit-list ul li img{
		max-width: 18px;
		margin-right: 10px;
	}


	.elewen-our-benefits{
		padding: 40px 0;
	}

	.elewen-our-benefit-content{
		margin: 0 0 30px;
	}

	.elewen-benefit-body{
		margin-top: 0;
	}

	.elewen-benefit-body .contact-us-circle{
		padding-right: 30px;
		margin-right: 30px;
	}

	.elewen-benefit-body .contact-us-circle img{
		max-width: 120px;
	}

	.elewen-benefit-body-list{
		width: calc(100% - 180px);
	}

	.elewen-benefit-body-list ul li{
		margin-bottom: 15px;
	}

	.elewen-benefit-item{
		padding: 20px;
		margin-bottom: 30px;
	}

	.elewen-benefit-item .icon-box{
		margin-bottom: 30px;
	}

	.benefit-item-content p{
		margin: 10px 0 0;
	}


	.our-facts{
		padding: 40px 0;
	}

	.fact-item{
		padding: 40px 20px;
	}

	.fact-item-counter h2{
		font-size: 62px;
	}

	.fact-item-content p,
	.fact-item-content .readmore-btn{
		margin: 15px 0 0;
	}

	.elewen-recommendations {
		padding: 40px 0;
	}

	.elewen-about-image-box {
		margin: 0 0 30px;
	}

	.elewen-about-image img{
		aspect-ratio: 1 / 1;
	}

	.elewen-review-rating-box{
		left: 30px;
		bottom: 30px;
		padding: 15px;
	}

	.elewen-recommendations-button{
		margin-top: 30px;
	}

	.elewen-about-body-item{
		margin-bottom: 30px;
	}

	.elewen-about-body-item .icon-box{
		margin-bottom: 15px;
	}

	.elewen-about-body-content p{
		margin: 10px 0 0;
	}

	.navbar-brand {
		margin: 0 0 0 -25px;
	}

	.responsive-menu, .navbar-toggle {
		display: block;
	}

	.elewen-scrolling-ticker-box {
		margin: -120px 0 0 0;
	}

}


@media only screen and (max-width: 767px) {
	.scrolling-ticker-item {
		--gap: 10px;
		transform: rotate(-6deg);
	}

	.scrolling-ticker-item.scroll-reverse {
		top: 25px;
		transform: rotate(6deg);
	}

	.scrolling-content span {
		font-size: 18px;
	}

	.scrolling-content span img {
		max-width: 18px;
		margin-right: 10px;
	}

}
