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

.elementor-widget-eael-adv-tabs .eael-tab-content-item, .elementor-widget-eael-adv-accordion .eael-accordion-content, .elementor-widget-eael-data-table .td-content, .elementor-widget-eael-info-box .eael-infobox-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-expiry-template, .elementor-widget-eael-countdown .eael-countdown-container, .elementor-widget-eael-cta-box .eael-cta-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-primary-wrap, .elementor-widget-eael-toggle .eael-toggle-secondary-wrap, .elementor-widget-eael-protected-content .eael-protected-content-message, .elementor-widget-eael-protected-content .protected-content, .eael-offcanvas-content-visible .eael-offcanvas-body, .elementor-widget-eael-stacked-cards .eael-stacked-cards__item {
	position: relative;
}

.elementor-widget-eael-adv-tabs .eael-tab-content-item:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-adv-accordion .eael-accordion-content:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-data-table .td-content:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-info-box .eael-infobox-template-wrapper:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-expiry-template:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-container:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-cta-box .eael-cta-template-wrapper:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-primary-wrap:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-secondary-wrap:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-protected-content .eael-protected-content-message:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-protected-content .protected-content:hover .eael-onpage-edit-template-wrapper, .eael-offcanvas-content-visible .eael-offcanvas-body:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-stacked-cards .eael-stacked-cards__item:hover .eael-onpage-edit-template-wrapper {
	display: block;
}

.eael-widget-otea-active .elementor-element:hover>.elementor-element-overlay, .eael-widget-otea-active .elementor-empty-view, .eael-widget-otea-active .elementor-add-section-inline, .eael-widget-otea-active .elementor-add-section {
	display: initial !important;
}

.eael-onpage-edit-template-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	border: 2px solid #5eead4;
}

.eael-onpage-edit-template-wrapper::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: #5eead4;
	opacity: .3;
}

.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate {
	display: block;
}

.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate::after {
	display: none;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template {
	background: #5eead4;
	color: #000;
	width: 150px;
	text-align: center;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
	cursor: pointer;
	position: relative;
	z-index: 3;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::before {
	content: "";
	border-top: 30px solid #5eead4;
	border-right: 0;
	border-bottom: 0;
	border-left: 14px solid rgba(0, 0, 0, 0);
	right: 100%;
	position: absolute;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::after {
	content: "";
	border-top: 0;
	border-right: 0;
	border-bottom: 30px solid rgba(0, 0, 0, 0);
	border-left: 14px solid #5eead4;
	left: 100%;
	position: absolute;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template>i {
	margin-right: 8px;
}

.eael-elements-flip-box-container {
	position: relative;
	height: 300px;
	width: 100%;
}

.eael-elements-flip-box-container .eaa-svg {
	font-size: 40px;
}

.eael-elements-flip-box-container .eaa-svg svg {
	width: 1em;
	height: 1em;
}

.eael-elements-flip-box-container .flipbox-button {
	display: inline-block;
	-webkit-transition: all 400ms;
	transition: all 400ms;
	padding: 14px 18px;
	border-radius: 3px;
	margin-top: 15px;
}

.eael-elements-flip-box-container .flipbox-button .eaa-svg {
	font-size: inherit;
	background: inherit;
	margin: 0;
	padding: 0;
	position: relative;
	top: 2px;
}

.eael-elements-flip-box-container .flipbox-button .eaa-svg svg {
	width: 1em;
	height: 1em;
}

.eael-elements-flip-box-container a {
	display: block;
}

.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	pointer-events: none;
}

.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container {
	pointer-events: none;
}

.eael-elements-flip-box-vertical-align {
	width: 100%;
}

.eael-elements-flip-box-padding {
	padding: 0px 30px 5px 30px;
}

.eael-elements-flip-box-icon-image {
	display: inline-block;
	margin: 0 auto 0px auto;
	line-height: 1;
}

.eael-elements-flip-box-icon-image.eael_eleements_flip_front_icon_style_background {
	background: #ccc;
}

.eael_eleements_flip_front_icon_style_bordered {
	border: 2px solid #fff;
}

.eael_flip_box_icon_border_round {
	border-radius: 100px;
}

.eael_eleements_flip_front_icon_style_background, .eael_eleements_flip_front_icon_style_bordered {
	padding: 15px;
}

.eael-elements-flip-box-icon-image i {
	font-size: 40px;
}

.eael-elements-slider-display-table {
	width: 100%;
}

.eael-elements-flip-box-front-container {
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: #8a35ff;
	background-blend-mode: multiply;
	color: #fff;
	border-color: #000;
	-webkit-display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 5px;
}

.eael-elements-flip-box-content, .eael-elements-flip-box-heading {
	color: #fff;
}

.eael-elements-flip-box-content a {
	display: initial;
}

.eael-elements-flip-box-heading.flipbox-linked-title {
	color: #fff;
	font-size: 1.5em;
	font-weight: 700;
}

.eael-elements-flip-box-rear-container {
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #502fc6;
	background-blend-mode: multiply;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-color: #000;
	border-radius: 5px;
}

.eael-elements-button-floating-container {
	position: fixed;
	z-index: 100;
}

.eael-elements-button-floating-container .eael-elements-button {
	margin-top: 0px;
	font-size: 14px;
	position: relative;
	padding: 14px 20px;
}

.eael-elements-button {
	cursor: pointer;
	display: inline-block;
	background: #077bbe;
	color: #fff;
	line-height: 1;
	padding: 16px 25px;
	margin-top: 15px;
}

.eael-elements-button:hover {
	background: #077bbe;
	color: #fff;
}

.eael-elements-flip-box-container {
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

.eael-elements-flip-box-front-container, .eael-elements-flip-box-rear-container {
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.eael-elements-flip-box-flip-card {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.eael-elements-flip-box-rear-container, .eael-elements-flip-box-front-container {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: rotateX(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateX(0deg);
	transform: rotateY(0deg);
}

.eael-flip-box--3d .eael-elements-flip-box-vertical-align {
	-webkit-transform: translateZ(90px) scale(.91);
	transform: translateZ(90px) scale(.91);
}

.eael-flip-box--3d .eael-elements-slider-display-table {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(.1px);
	transform: translateZ(.1px);
}

.eael-animate-flip.eael-animate-left, .eael-animate-flip.eael-animate-right, .eael-animate-flip.eael-animate-up, .eael-animate-flip.eael-animate-down {
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.eael-animate-flip.eael-animate-left .eael-elements-flip-box-front-container, .eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container, .eael-animate-flip.eael-animate-right .eael-elements-flip-box-front-container, .eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container, .eael-animate-flip.eael-animate-up .eael-elements-flip-box-front-container, .eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container, .eael-animate-flip.eael-animate-down .eael-elements-flip-box-front-container, .eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-flip-card, .eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.eael-animate-push.eael-elements-flip-box-container, .eael-animate-slide.eael-elements-flip-box-container {
	overflow: hidden;
}

.eael-animate-push .eael-elements-flip-box-rear-container, .eael-animate-slide .eael-elements-flip-box-rear-container {
	z-index: 3;
}

.eael-animate-push.eael-animate-up .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-up .eael-elements-flip-box-rear-container {
	top: 100%;
}

.eael-animate-push.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container, .eael-animate-push.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container {
	top: 0;
}

.eael-animate-push.eael-animate-down .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-down .eael-elements-flip-box-rear-container {
	top: auto;
	bottom: 100%;
}

.eael-animate-push.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container, .eael-animate-push.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container {
	top: auto;
	bottom: 0;
}

.eael-animate-push.eael-animate-left .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-left .eael-elements-flip-box-rear-container {
	left: 100%;
}

.eael-animate-push.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container, .eael-animate-push.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container {
	left: 0;
}

.eael-animate-push.eael-animate-right .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-right .eael-elements-flip-box-rear-container {
	left: auto;
	right: 100%;
}

.eael-animate-push.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container, .eael-animate-push.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container, .eael-animate-slide.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container {
	left: auto;
	right: 0;
}

.eael-animate-push.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-push.eael-animate-up.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	top: -100%;
}

.eael-animate-push.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-push.eael-animate-down.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	top: 100%;
}

.eael-animate-push.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-push.eael-animate-left.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	left: -100%;
}

.eael-animate-push.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-push.eael-animate-right.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	left: 100%;
}

.eael-animate-zoom-in .eael-elements-flip-box-rear-container {
	opacity: 0;
	-webkit-transform: scale(.75);
	-ms-transform: scale(.75);
	transform: scale(.75);
	z-index: 3;
}

.eael-animate-zoom-in.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-rear-container, .eael-animate-zoom-in.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-rear-container {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.eael-animate-zoom-out.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-zoom-out.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(.75);
	-ms-transform: scale(.75);
	transform: scale(.75);
}

.eael-animate-fade.eael-elements-flip-box-container.eael-flip-box-hover:hover .eael-elements-flip-box-front-container, .eael-animate-fade.eael-elements-flip-box-container.eael-flip-box-click.--active .eael-elements-flip-box-front-container {
	opacity: 0;
}

.eael-flipbox-content-align-right .eael-elements-flip-box-padding {
	text-align: right;
}

.eael-flipbox-content-align-left .eael-elements-flip-box-padding {
	text-align: left;
}

.eael-flipbox-content-align-center .eael-elements-flip-box-padding {
	text-align: center;
}

.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img, .eael-flipbox-img-circle .flipbox-back-image-icon img {
	border-radius: 50%;
	overflow: hidden;
}

.eael-animate-fade-in.eael-elements-flip-box-container .eael-elements-flip-box-flip-card {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.eael-animate-fade-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
	opacity: 0;
	visibility: hidden;
}

.eael-animate-fade-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
	opacity: 1;
}

.eael-animate-fade-in.eael-elements-flip-box-container .eael-elements-flip-box-front-container, .eael-animate-fade-in.eael-elements-flip-box-container .eael-elements-flip-box-rear-container {
	-webkit-transition: all .6s ease-in-out !important;
	transition: all .6s ease-in-out !important;
}

.eael-animate-fade-in.eael-elements-flip-box-container .eael-elements-flip-box-rear-container {
	opacity: 0;
}

.eael-template .eael-elements-flip-box-front-container>.elementor, .eael-template .eael-elements-flip-box-rear-container>.elementor {
	width: 100%;
}

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