
.interactive-card {
	position: relative;
	width: 100%;
	height: 600px;
	display: block;
	display: flex;
	z-index: 0;
	-webkit-display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

.add-shadow {
	-webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
	box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
}

.interactive-card .front-content {
	position: relative;
	display: block;
	-webkit-border-radius: 0;
	border-radius: 0;
	z-index: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.interactive-card .front-content:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	background-color: rgba(255, 255, 255, .4);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
	opacity: .2;
	-webkit-animation: eaelZoomOut;
	-o-animation: eaelZoomOut;
	animation: eaelZoomOut;
	animation-delay: .8s;
}

.interactive-card .front-content:after {
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, .4);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: -1;
	opacity: .1;
	-webkit-animation: eaelZoomOut;
	-o-animation: eaelZoomOut;
	animation: eaelZoomOut;
}

.interactive-card .front-content .image-screen {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 11;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	transition: .5s;
}

.interactive-card .front-text-content {
	width: 100%;
	height: 100%;
	-webkit-display: flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

.interactive-card .front-text-content .image-screen {
	background: #4d4d4d;
	width: 100%;
	height: 100%;
	padding: 30px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	-webkit-transition: .5s;
	transition: .5s;
}

.interactive-card .front-text-content .image-screen:hover {
	background: rgba(77, 77, 77, .6);
}

.interactive-card .front-text-content .header .card-number {
	font-size: 2em;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.interactive-card .front-text-content .header .title {
	font-size: 1.1em;
	line-height: 1.5;
	margin-bottom: 1em;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.interactive-card .front-text-content .front-text-body {
	font-size: .85em;
	color: #e9e9e9;
}

.interactive-card .front-text-content .footer {
	margin-top: 1em;
}

.interactive-card .front-text-content .footer a.interactive-btn {
	display: inline-block;
	padding: 8px 25px;
	font-size: .85em;
	letter-spacing: .15em;
	-webkit-transition: .4s;
	transition: .4s;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.interactive-card .front-text-content .footer a.interactive-btn:hover {
	background: #02cc7b;
}

.interactive-card .content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	z-index: -100;
	opacity: 0;
	transition: 1s;
}

.interactive-card .content .content-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.interactive-card .content-show {
	z-index: 100;
	opacity: 1;
}

.interactive-card .content .content-inner .image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .7;
	-webkit-transition: .4s;
	transition: .4s;
}

.interactive-card .content .text {
	display: block !important;
}

.interactive-card .text-inner {
	display: block;
	max-width: 100%;
	max-height: 100%;
	padding: 20px;
}

.interactive-card .content .image img {
	max-height: 100%;
}

.interactive-card .content:hover .image {
	opacity: 1;
}

.interactive-card .content .text {
	width: 100%;
	font-size: 14px;
	line-height: 27px;
	display: flex;
	-webkit-display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
}

.interactive-card .content .text.center-text {
	text-align: center;
}

.interactive-card .content .text .title {
	font-size: 28px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1;
	color: #313131;
	margin-top: 0;
}

.interactive-card .content iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.interactive-card .content .content-overflow {
	width: 100%;
	height: 100%;
	padding: 30px;
	overflow-y: scroll;
}

.interactive-card .close-me {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 15px;
	right: 15px;
	z-index: 100;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	font-size: 13px;
	cursor: pointer;
}

.interactive-card .interactive-btn {
	display: inline-block;
	padding: 8px 25px;
	background: #e9e9e9;
	background: #e91e63;
	color: #fff;
	border-radius: 4px;
	transition: .5s;
}

.interactive-card .interactive-btn:hover {
	color: #fff;
	text-decoration: none;
	background: #c2185b;
}

.interactive-card .carousel-container {
	overflow: hidden;
}

.interactive-card .carousel {
	padding: 0;
	margin: 0;
	list-style: none;
}

.interactive-card .carousel li {
	float: left;
}

.interactive-card .carousel li img {
	max-width: 100%;
}

.interactive-card .navigation {
	position: absolute;
	width: 100%;
	width: 100%;
	height: auto;
	height: auto;
	padding: 15px;
	bottom: 15px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
}

.interactive-card .navigation a {
	display: inline-block;
	padding: 8px 15px;
	background: #f9f9f9;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	color: #4d4d4d;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: .4s;
	transition: .4s;
}

.interactive-card .navigation a:hover {
	background: #ededed;
}

.interactive-card .interactive-button {
	display: inline-block;
	padding: 15px 22px;
	background: #00c853;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.interactive-card .interactive-button:hover {
	background: #03b048;
}

.interactive-card .fade-out {
	-webkit-animation: eaelFadeOut .5s;
	-o-animation: eaelFadeOut .5s;
	animation: eaelFadeOut .5s;
	transition: .5s;
	opacity: 0;
}

@keyframes eaelFadeOut {
	0% {
		opacity: 1;
		transition: .5s;
	}
	
	100% {
		opacity: 0;
		transition: .5s;
	}
}

.interactive-card .fade-in {
	-webkit-animation: eaelFadeIn .5s;
	-o-animation: eaelFadeIn .5s;
	animation: eaelFadeIn .5s;
	transition: .5s;
	opacity: 1;
}

@keyframes eaelFadeIn {
	0% {
		opacity: 0;
		transition: .5s;
	}
	
	100% {
		opacity: 1;
		transition: .5s;
	}
}

.interactive-card .zoom-out {
	-webkit-animation: eaelZoomOut 1.5s;
	-o-animation: eaelZoomOut 1.5s;
	animation: eaelZoomOut 1.5s;
	opacity: 0;
}

@keyframes eaelZoomOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		transition: .5s;
		opacity: 1;
	}
	
	25% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
		transition: .5s;
	}
	
	100% {
		-webkit-transform: scale(6);
		transform: scale(6);
		transition: 1.4s;
		opacity: 0;
	}
}

.interactive-card .zoom-in {
	-webkit-animation: eaelZoomIn 1.5s;
	-o-animation: eaelZoomIn 1.5s;
	animation: eaelZoomIn 1.5s;
	opacity: 1;
}

@keyframes eaelZoomIn {
	0% {
		-webkit-transform: scaleX(4) scaleY(2);
		transform: scaleX(4) scaleY(2);
		transition: .5s;
		opacity: 0;
	}
	
	25% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
		transition: .5s;
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		transition: 1.4s;
		opacity: 1;
	}
}

.interactive-card .slide-in-left {
	transition: .5s;
	-webkit-animation: eaelSlideInLeft 1.5s;
	-o-animation: eaelSlideInLeft 1.5s;
	animation: eaelSlideInLeft 1.5s;
	transform: translateX(0);
	opacity: 1;
	z-index: 100;
}

@keyframes eaelSlideInLeft {
	0% {
		transform: translateX(-100%);
		transition: .3s;
	}
	
	50% {
		transform: translateX(10%);
		transition: .4s;
	}
	
	100% {
		transform: translateX(0);
		transition: .5s;
	}
}

.interactive-card .slide-in-swing-left {
	transition: .5s;
	-webkit-animation: eaelSlideInSwingLeft 1.2s;
	-o-animation: eaelSlideInSwingLeft 1.2s;
	animation: eaelSlideInSwingLeft 1.2s;
	transform: translateX(0);
	opacity: 1;
	z-index: 100;
}

@keyframes eaelSlideInSwingLeft {
	0% {
		transform: translateX(-100%) scale(0);
		transition: .3s;
	}
	
	50% {
		transform: translateX(30%) scale(1.2);
		transition: .4s;
	}
	
	100% {
		transform: translateX(0) scale(1);
		transition: .5s;
	}
}

.interactive-card .slide-in-right {
	transition: .5s;
	-webkit-animation: eaelSlideInRight 1.5s;
	-o-animation: eaelSlideInRight 1.5s;
	animation: eaelSlideInRight 1.5s;
	transform: translateX(0);
	opacity: 1;
	z-index: 100;
}

@keyframes eaelSlideInRight {
	0% {
		transform: translateX(100%);
		transition: .3s;
	}
	
	50% {
		transform: translateX(-10%);
		transition: .4s;
	}
	
	100% {
		transform: translateX(0);
		transition: .5s;
	}
}

.interactive-card .slide-in-swing-right {
	transition: .5s;
	-webkit-animation: eaelSlideInSwingRight 1.2s;
	-o-animation: eaelSlideInSwingRight 1.2s;
	animation: eaelSlideInSwingRight 1.2s;
	transform: translateX(0);
	opacity: 1;
	z-index: 100;
}

@keyframes eaelSlideInSwingRight {
	0% {
		transform: translateX(100%) scale(0);
		transition: .3s;
	}
	
	50% {
		transform: translateX(-30%) scale(1.2);
		transition: .4s;
	}
	
	100% {
		transform: translateX(0) scale(1);
		transition: .5s;
	}
}

@media only screen and (max-width:480px) {
	.interactive-card .front-content.front-text-content {
		width: 100%;
	}
	
	.interactive-card .front-content.front-text-content .image-screen:hover {
		background: 0 0;
	}
	
	.interactive-card .content .text {
		padding: 15px;
	}
	
	.interactive-card .content .text .title {
		font-size: 18px;
		line-height: 27px;
	}
	
	.interactive-card .content .image {
		width: 60%;
	}
}

.eael-interactive-card-rear-img-align-left .interactive-card .content .content-inner {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.eael-interactive-card-rear-img-align-top .interactive-card .content .content-inner {
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
	justify-content: baseline;
}

.clearfix::before, .clearfix::after {
	content: " ";
	display: table;
	clear: both;
}

.eael-testimonial-slider.nav-top-left, .eael-testimonial-slider.nav-top-right, .eael-team-slider.nav-top-left, .eael-team-slider.nav-top-right, .eael-logo-carousel.nav-top-left, .eael-logo-carousel.nav-top-right, .eael-post-carousel.nav-top-left, .eael-post-carousel.nav-top-right, .eael-product-carousel.nav-top-left, .eael-product-carousel.nav-top-right {
	padding-top: 40px;
}

.eael-contact-form input[type=text], .eael-contact-form input[type=email], .eael-contact-form input[type=url], .eael-contact-form input[type=tel], .eael-contact-form input[type=date], .eael-contact-form input[type=number], .eael-contact-form textarea {
	background: #fff;
	box-shadow: none;
	-webkit-box-shadow: none;
	float: none;
	height: auto;
	margin: 0;
	outline: 0;
	width: 100%;
}

.eael-contact-form input[type=submit] {
	border: 0;
	float: none;
	height: auto;
	margin: 0;
	padding: 10px 20px;
	width: auto;
	-webkit-transition: all .25s linear 0s;
	transition: all .25s linear 0s;
}

.eael-contact-form.placeholder-hide input::-webkit-input-placeholder, .eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input::-moz-placeholder, .eael-contact-form.placeholder-hide textarea::-moz-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input:-ms-input-placeholder, .eael-contact-form.placeholder-hide textarea:-ms-input-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input:-moz-placeholder, .eael-contact-form.placeholder-hide textarea:-moz-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-custom-radio-checkbox input[type=checkbox], .eael-custom-radio-checkbox input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	border-style: solid;
	border-width: 0;
	outline: none;
	min-width: 1px;
	width: 15px;
	height: 15px;
	background: #ddd;
	padding: 3px;
}

.eael-custom-radio-checkbox input[type=checkbox]:before, .eael-custom-radio-checkbox input[type=radio]:before {
	content: "";
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}

.eael-custom-radio-checkbox input[type=checkbox]:checked:before, .eael-custom-radio-checkbox input[type=radio]:checked:before {
	background: #999;
	-webkit-transition: all .25s linear 0s;
	transition: all .25s linear 0s;
}

.eael-custom-radio-checkbox input[type=radio] {
	border-radius: 50%;
}

.eael-custom-radio-checkbox input[type=radio]:before {
	border-radius: 50%;
}

.eael-post-elements-readmore-btn {
	font-size: 12px;
	font-weight: 500;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	display: inline-block;
}

.elementor-lightbox .dialog-widget-content {
	width: 100%;
	height: 100%;
}

.eael-contact-form-align-left, .elementor-widget-eael-weform.eael-contact-form-align-left .eael-weform-container {
	margin: 0 auto 0 0;
	display: inline-block;
	text-align: left;
}

.eael-contact-form-align-center, .elementor-widget-eael-weform.eael-contact-form-align-center .eael-weform-container {
	float: none;
	margin: 0 auto;
	display: inline-block;
	text-align: left;
}

.eael-contact-form-align-right, .elementor-widget-eael-weform.eael-contact-form-align-right .eael-weform-container {
	margin: 0 0 0 auto;
	display: inline-block;
	text-align: left;
}

.eael-force-hide {
	display: none !important;
}

.eael-d-none {
	display: none !important;
}

.eael-d-block {
	display: block !important;
}

.eael-h-auto {
	height: auto !important;
}

.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating {
	display: none;
}

.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating~.count {
	display: none;
}

.sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.rtl .interactive-card .close-me {
	left: 15px;
	right: unset !important;
}

.interactive-card {
	height: 600px;
}

.interactive-card.eael-vimeo-content {
	height: 650px;
}

.eael-vimeo-conatiner {
	position: relative;
	padding-bottom: 56.25%;
	height: auto;
	overflow: hidden;
}

.eael-vimeo-conatiner .eael-ic-vimeo-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
