/* Buttons */

.dl-slider .swiper-slide .dl-btn-group {
	margin-top: 25px;
	display: flex;
	align-items: center;
	column-gap: 20px;
	overflow: inherit;
}

.dl-slider .slider-btn {
	background-color: #00c16e;
	color: #fff;
	font-size: 12px;
	font-family: "Work Sans", sans-serif;
	letter-spacing: 0;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	padding: 0 30px;
	line-height: 45px;
	column-gap: 10px;
}

.dl-slider .slider-btn:hover {
	text-decoration: none;
	background-color: #fff;
	color: #000;
	transition: all 0.3s ease-in-out;
}

/* Play Button */

.dl-slider .dl-play-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 20px;
}

.dl-slider .dl-play-btn .play-icon {
	width: 55px;
	height: 55px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	color: #54a6d5;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-animation: ripple_white 2s linear infinite;
	animation: ripple_white 2s linear infinite;
}

.dl-slider .dl-play-btn:hover {
	text-decoration: none;
}

.dl-slider .dl-play-btn:hover .play-icon {
	background-color: #54a6d5;
	color: #ffffff;
}

.dl-slider .dl-play-btn .play-icon svg {
	width: 13px;
}

.dl-slider .dl-play-btn small {
	font-size: 12px;
	position: relative;
	color: #fff;
	display: inline-block;
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
}

.dl-slider .dl-play-btn:hover small {
	color: #fff;
}

/* Play Button Ripple Effect */

@-webkit-keyframes ripple_colored {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
		box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
	}
}

@keyframes ripple_colored {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
		box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
	}
}

/* Ripple White */

@-webkit-keyframes ripple_white {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
		box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
	}
}

@keyframes ripple_white {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
		box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
	}
}

.dl-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 650px;
}

.slider-content-wrap {
	height: 650px;
	display: flex;
	align-items: center;
}

.dl-slider .overlay {
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.dl-slider .content-width {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}

.dl-slider .element {
	animation-duration: 800ms;
}

.dl-slider .slide-img, .dl-slider .slide-img-wrap {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	z-index: -1;
}

.dl-slider .slide-img {
	object-fit: cover;
	object-position: center;
	animation-duration: 12000ms;
	animation-delay: 1000ms;
}

.dl-slider .text-right {
	text-align: left !important;
}

.dl-slider .text-right .content-width {
	display: flex;
	justify-content: flex-end;
}

.dl-slider.swiper-container-rtl .text-left, .dl-slider.swiper-container-rtl .text-right {
	text-align: right!important;
}

.dl-slider .text-right .slider-content {
	width: 50%;
}

.dl-slider .text-center .slider-content {
	padding: 0;
}

.dl-slider .text-center .dl-btn-group {
	justify-content: center;
}

.dl-slider .dl-caption {
	color: #fff;
	font-family: "Poppins", sans-serif;
}

.dl-slider .dl-caption mark{
	background-color: transparent;
	color: inherit;
}

.dl-slider .dl-caption .inner-layer {
	display: inline-block;
	overflow: hidden;
	padding: 3px 0;
}

.dl-slider .dl-caption.sub-heading {
	white-space: nowrap;
	font-size: 12px;
	font-family: "Work Sans", sans-serif;
	letter-spacing: 0;
	line-height: 26px;
	min-height: 26px;
	font-weight: 600;
	color: rgb(255, 255, 255, 0.8);
	letter-spacing: 1px;
	text-transform: uppercase;
	visibility: inherit;
	transition: none 0s ease 0s;
	text-align: inherit;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	min-height: 0px;
	min-width: 0px;
	max-height: none;
	max-width: none;
	opacity: 1;
	margin-bottom: 15px;
}

.dl-slider .dl-caption.heading {
	white-space: nowrap;
	font-size: 42px;
	line-height: 50px;
	font-weight: 600;
	color: rgb(255, 255, 255);
	letter-spacing: -1px;
	min-height: 50px;
}

.dl-slider .slider-content {
	position: relative;
	z-index: 1;
}

.dl-slider .dl-caption.desc {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.2px;
	line-height: 26px;
	color: #fff;
	margin-top: 15px;
}

/* Reveal Text */

.dl-slider .reveal-text, .dl-slider .reveal-text span {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.dl-slider .clip-text, .dl-slider .reveal-text {
	position: relative;
	-webkit-animation-name: clip-text;
	animation-name: clip-text;
}

.dl-slider .reveal-text span {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	pointer-events: none;
	-webkit-animation-name: text-revealer;
	animation-name: text-revealer;
}

/* Layers */

.slider-layer {
	background: #5056ac;
	display: block;
	width: 500px;
	height: 100%;
	clip-path: polygon(0 0, 80% 0%, 100% 100%, 0 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.dl-slider.swiper-container-rtl .slider-layer {
	left: auto;
	right: 0;
	clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0 100%);
}

/* Border Layer */

.border-layers {
	position: absolute;
	width: 280px;
	height: 400px;
	left: 150px;
	top: 50%;
	opacity: 1;
	z-index: 1;
	transform: translateY(-50%);
}

.border-layers span {
	background-color: #5056ac;
	position: absolute;
	display: block;
}

.swiper-slide-active .border-layers span:nth-child(1) {
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
	animation: bar-top 3.2s linear 0s;
}

.swiper-slide-active .border-layers span:nth-child(2) {
	width: 5px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: left top;
	animation: bar-right 3.2s linear 0s;
}

.swiper-slide-active .border-layers span:nth-child(3) {
	width: 100%;
	height: 5px;
	position: absolute;
	right: 0;
	bottom: 0;
	transform-origin: right top;
	animation: bar-bottom 3.2s linear 0s;
}

.swiper-slide-active .border-layers span:nth-child(4) {
	width: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: left bottom;
	animation: bar-left 3.2s linear 0s;
}

/* Border Keyframes Animation */
@keyframes bar-top {
	0% {
		transform: scale(0, 1);
	}
	12.5% {
		transform: scale(1, 1);
	}
	87.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-right {
	0% {
		transform: scale(1, 0);
	}
	12.5% {
		transform: scale(1, 0);
	}
	25% {
		transform: scale(1, 1);
	}
	75% {
		transform: scale(1, 1);
	}
	87.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-bottom {
	0% {
		transform: scale(0, 1);
	}
	25% {
		transform: scale(0, 1);
	}
	37.5% {
		transform: scale(1, 1);
	}
	62.5% {
		transform: scale(1, 1);
	}
	75% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-left {
	0% {
		transform: scale(1, 0);
	}
	37.5% {
		transform: scale(1, 0);
	}
	50% {
		transform: scale(1, 1);
	}
	62.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

/*=======================
    Character Animation
=========================*/

.swiper-slide-active .char-top .char {
	-webkit-animation: bfadeInTop 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: bfadeInTop 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(100ms * var(--char-index));
	animation-delay: calc(100ms * var(--char-index));
}

.swiper-slide-active .char-right .char {
	-webkit-animation: bfadeInRight 0.5s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: bfadeInRight 0.5s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(100ms * var(--char-index));
	animation-delay: calc(100ms * var(--char-index));
}

.swiper-slide-active .char-expand .char {
	-webkit-animation: char-expand-fwd 0.8s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: char-expand-fwd 0.8s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(100ms * var(--char-index));
	animation-delay: calc(100ms * var(--char-index));
}

.swiper-slide-active .char-bottom .char {
	-webkit-animation: bfadeInBottom 0.8s cubic-bezier(0.3, 0, 0.7, 1) both;
	animation: bfadeInBottom 0.8s cubic-bezier(0.3, 0, 0.7, 1) both;
	-webkit-animation-delay: calc(100ms * var(--char-index));
	animation-delay: calc(100ms * var(--char-index));
}

/* Swiper Controls */

.swiper-container {
	height: 300px;
}

.slider-preloader {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.slider-preloader .dot-flashing {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
}

.slider-preloader .dot-flashing::before, .slider-preloader .dot-flashing::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.slider-preloader .dot-flashing::before {
    left: -15px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.slider-preloader .dot-flashing::after {
    left: 15px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.5;
    }
}

.slider-preloader .dot-flashing, .slider-preloader .dot-flashing::before, .slider-preloader .dot-flashing::after {
	background-color: #6c7a87;
}

.swiper-initialized,
.swiper-container-initialized {
	height: auto;
}

.swiper-initialized .slider-preloader,
.swiper-container-initialized .slider-preloader {
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s linear;
}

.dl-slider .dl-slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 99;
}

.swiper-container-rtl .dl-slider-controls.style-1 {
	flex-direction: row-reverse;
}

.dl-slider-button-prev, .dl-slider-button-next {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	color: #fff;
}

.dl-slider-button-prev:hover, .dl-slider-button-next:hover {
	color: #4154f1;
	transition: all 0.2s ease-in-out;
}

.dl-slider-button-prev svg, .dl-slider-button-next svg {
	width: 20px;
}

/* Style 2 */

.nav-2.dl-slider-button-prev, .nav-2.dl-slider-button-next {
	background-color: #fff;
	color: #0b2238;
	border: 1px solid #eee;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	z-index: 1;
}

.nav-2.dl-slider-button-next {
	left: auto;
	right: 0;
}

.nav-2.dl-slider-button-prev:hover, .nav-2.dl-slider-button-next:hover {
	background-color: #4154f1;
	color: #fff;
}
.hover-on-visible .nav-2{
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.hover-on-visible:hover .nav-2{
	visibility: visible;
	opacity: 1;
	left: 5px;
}
.hover-on-visible:hover .nav-2.dl-slider-button-next{
	left: auto;
	right: 5px;
}

/* Bullets */

.dl-swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0;
}

.swiper-horizontal>.dl-swiper-pagination.swiper-pagination-bullets, 
.dl-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal, 
.dl-swiper-pagination.swiper-pagination-custom, .swiper-pagination-fraction{
	width: auto;
}

.dl-swiper-pagination .swiper-pagination-bullet {
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: inherit;
	border-radius: inherit;
	background: transparent;
	opacity: 1;
}

.dl-swiper-pagination .swiper-pagination-bullet svg {
	width: 100%;
	height: 100%;
}

.dl-swiper-pagination .swiper-pagination-bullet .path {
	stroke: #eee;
	stroke-width: 1px;
	display: none;
}

.dl-swiper-pagination .swiper-pagination-bullet .solid-fill {
	fill: #eee;
}

.dl-swiper-pagination .swiper-pagination-bullet-active .path {
	stroke: #4154f1;
	display: inline-block !important;
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	animation: dash ease-in 3s;
	animation-iteration-count: unset;
}

.dl-swiper-pagination .swiper-pagination-bullet-active .solid-fill {
	fill: #4154f1;
}

@-webkit-keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}
	to {
		stroke-dashoffset: 0;
	}
}

/*  All Kenburns Effects
    ==================== */

.kenburns {
	animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	animation-fill-mode: both;
}

/* Kenburns Top */

.swiper-slide-active .kenburns-top {
	-webkit-animation-name: kenburns-top;
	animation-name: kenburns-top;
}

@-webkit-keyframes kenburns-top {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
		-webkit-transform-origin: 50% 16%;
		transform-origin: 50% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translateY(-15px);
		transform: scale(1.08) translateY(-15px);
		-webkit-transform-origin: top;
		transform-origin: top;
	}
}

@keyframes kenburns-top {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
		-webkit-transform-origin: 50% 16%;
		transform-origin: 50% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translateY(-15px);
		transform: scale(1.08) translateY(-15px);
		-webkit-transform-origin: top;
		transform-origin: top;
	}
}

/* Kenburns Top Right */

.swiper-slide-active .kenburns-top-right {
	-webkit-animation-name: kenburns-top-right;
	animation-name: kenburns-top-right;
}

@-webkit-keyframes kenburns-top-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 16%;
		transform-origin: 84% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(20px, -15px);
		transform: scale(1.08) translate(20px, -15px);
		-webkit-transform-origin: right top;
		transform-origin: right top;
	}
}

@keyframes kenburns-top-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 16%;
		transform-origin: 84% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(20px, -15px);
		transform: scale(1.08) translate(20px, -15px);
		-webkit-transform-origin: right top;
		transform-origin: right top;
	}
}

/* Kenburns Right */

.swiper-slide-active .kenburns-right {
	-webkit-animation-name: kenburns-right;
	animation-name: kenburns-right;
}

@-webkit-keyframes kenburns-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 50%;
		transform-origin: 84% 50%;
	}
	100% {
		-webkit-transform: scale(1.08) translateX(20px);
		transform: scale(1.08) translateX(20px);
		-webkit-transform-origin: right;
		transform-origin: right;
	}
}

@keyframes kenburns-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 50%;
		transform-origin: 84% 50%;
	}
	100% {
		-webkit-transform: scale(1.08) translateX(20px);
		transform: scale(1.08) translateX(20px);
		-webkit-transform-origin: right;
		transform-origin: right;
	}
}

/* Kenburns Bottom Right */

.swiper-slide-active .kenburns-bottom-right {
	-webkit-animation-name: kenburns-bottom-right;
	animation-name: kenburns-bottom-right;
}

@-webkit-keyframes kenburns-bottom-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 84%;
		transform-origin: 84% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(20px, 15px);
		transform: scale(1.08) translate(20px, 15px);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}
}

@keyframes kenburns-bottom-right {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 84% 84%;
		transform-origin: 84% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(20px, 15px);
		transform: scale(1.08) translate(20px, 15px);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}
}

/* Kenburns Bottom */

.swiper-slide-active .kenburns-bottom {
	-webkit-animation-name: kenburns-bottom;
	animation-name: kenburns-bottom;
}

@-webkit-keyframes kenburns-bottom {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
		-webkit-transform-origin: 50% 84%;
		transform-origin: 50% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translateY(15px);
		transform: scale(1.08) translateY(15px);
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
	}
}

@keyframes kenburns-bottom {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
		-webkit-transform-origin: 50% 84%;
		transform-origin: 50% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translateY(15px);
		transform: scale(1.08) translateY(15px);
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
	}
}

/* Kenburns Bottom Left */

.swiper-slide-active .kenburns-bottom-left {
	-webkit-animation-name: kenburns-bottom-left;
	animation-name: kenburns-bottom-left;
}

@-webkit-keyframes kenburns-bottom-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 84%;
		transform-origin: 16% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-20px, 15px);
		transform: scale(1.08) translate(-20px, 15px);
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
	}
}

@keyframes kenburns-bottom-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 84%;
		transform-origin: 16% 84%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-20px, 15px);
		transform: scale(1.08) translate(-20px, 15px);
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
	}
}

/* Kenburns Left */

.swiper-slide-active .kenburns-left {
	-webkit-animation-name: kenburns-left;
	animation-name: kenburns-left;
}

@-webkit-keyframes kenburns-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 50%;
		transform-origin: 16% 50%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-20px, 15px);
		transform: scale(1.08) translate(-20px, 15px);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

@keyframes kenburns-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 50%;
		transform-origin: 16% 50%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-20px, 15px);
		transform: scale(1.08) translate(-20px, 15px);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

/* Kenburns Top Left */

.swiper-slide-active .kenburns-top-left {
	-webkit-animation-name: kenburns-top-left;
	animation-name: kenburns-top-left;
}

@-webkit-keyframes kenburns-top-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 16%;
		transform-origin: 16% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-15px, -10px);
		transform: scale(1.08) translate(-15px, -10px);
		-webkit-transform-origin: top left;
		transform-origin: top left;
	}
}

@keyframes kenburns-top-left {
	0% {
		-webkit-transform: scale(1) translate(0, 0);
		transform: scale(1) translate(0, 0);
		-webkit-transform-origin: 16% 16%;
		transform-origin: 16% 16%;
	}
	100% {
		-webkit-transform: scale(1.08) translate(-15px, -10px);
		transform: scale(1.08) translate(-15px, -10px);
		-webkit-transform-origin: top left;
		transform-origin: top left;
	}
}

@-webkit-keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@-webkit-keyframes text-revealer {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@keyframes text-revealer {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@-webkit-keyframes text-revealer-vartical {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
	60% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	100% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
}

@keyframes text-revealer-vartical {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
	60% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	100% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
}

/*
 * ----------------------------------------
 * Border Animation
 * ----------------------------------------
 */

@keyframes bar-top {
	0% {
		transform: scale(0, 1);
	}
	12.5% {
		transform: scale(1, 1);
	}
	87.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-right {
	0% {
		transform: scale(1, 0);
	}
	12.5% {
		transform: scale(1, 0);
	}
	25% {
		transform: scale(1, 1);
	}
	75% {
		transform: scale(1, 1);
	}
	87.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-bottom {
	0% {
		transform: scale(0, 1);
	}
	25% {
		transform: scale(0, 1);
	}
	37.5% {
		transform: scale(1, 1);
	}
	62.5% {
		transform: scale(1, 1);
	}
	75% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes bar-left {
	0% {
		transform: scale(1, 0);
	}
	37.5% {
		transform: scale(1, 0);
	}
	50% {
		transform: scale(1, 1);
	}
	62.5% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}

/*--rotation--*/

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(90deg);
	}
	50% {
		transform: rotate(180deg);
	}
	75% {
		transform: rotate(270deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Char Expand */

@-webkit-keyframes char-expand-fwd {
	0% {
		letter-spacing: -0.5em;
		-webkit-transform: translateZ(-700px);
		transform: translateZ(-700px);
		opacity: 0;
	}
	40% {
		opacity: 0.6;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes char-expand-fwd {
	0% {
		letter-spacing: -0.5em;
		-webkit-transform: translateZ(-700px);
		transform: translateZ(-700px);
		opacity: 0;
	}
	40% {
		opacity: 0.6;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}