/* ========================================
PARALLAX EFFECT - To be removed
======================================== */
.wk__wrapper-parallax {
	position: relative;
	transform-style: inherit;
	width: 100%;
}
.wk__hero-wrapper {	z-index: -1 }
.wk__hero-parallax {
	left: 0;
	position: fixed;
	top: 0;
	z-index: -2;
}
.wk__hero-parallax-blog{
	left: 0;
	position: fixed;
	top: 0;
	z-index: -2;
}
.wl__method-wrapper {
	z-index: 3;
}

/* ========================================
FIXED COLUMN - To be removed
======================================== */
.fixed-column,
.fixed-other-column {
	position: fixed;
	width: calc(50% - 10px); 
	background-color: #ffffff;
	padding: 15px;
	z-index: 1000;
}
.fixed-column { left: 0 }
.fixed-other-column { right: 0 }


/* ========================================
ASL PLUGIN - To be removed
======================================== */
.asl-cont .sl-main-cont{
	box-shadow: none!important;
}

/* ========================================
ANIMATED ARROWS - To be removed
======================================== */
.arrow-wrapper {
	display: flex;
}
.arrow-container {
	font-family: var(--font-primary);
	font-size: 28px;
	color: var(--color-accent);
	opacity: 0;
	animation: arrowLoad 2s linear infinite;
}
.arrow-title {
	font-family: var(--font-secondary);
	color: var(--color-text-light);
	font-size: clamp(22px, 2.33vw, 28px);
	line-height: 1em;
	margin-left: 10px;
}
@keyframes arrowLoad {0% {
	opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* ========================================
ANIMATED BUTTONS - To be removed
========================================*/
.btn-transition-hover {
	position: relative;
	display: inline-block;
	padding: 13px 15px;
	width: 199px;
	border-radius: 40px;
	background: var(--bluesweat, #00A0DF);
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.5s ease;
}
.btn-tow { background: #ffff }
.btn-transition-hover:hover { background-color: #00FFC2 }
.icon {
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
	width: 46px;
	height: 45px;
	background-color: #00A0DF;
	border-radius: 50%;
	transition: transform 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.arrow {
	font-size: 10px !important;
	color: white;
	transition: color 0.5s ease;
	font-family: 'ALS Hauss - Regular' !important;
	padding-top: 4px;
}
.text {
	color: var(--white, #FFF);
	text-align: center;
	font-family: 'ALS Hauss - Regular' !important;
	font-size: 14px;
	font-style: bold;
	font-weight: 500;
	line-height: normal;
	transition: color 0.5s ease;
}
.text-tow { color: #000 }
.black-icon {
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
	width: 46px;
	height: 45px;
	background-color: #000;
	border-radius: 50%;
	transition: transform 0.5s ease, opacity 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	opacity: 0;
}
.btn-transition-hover:hover .icon {
	transform: translateX(-241px) translateY(-50%);
	background-color: #00FFC2;
}
.btn-transition-hover:hover .arrow { color: #000 }
.icon-tow {	background-color: #00FFC2!important }
.icon-tow {	background-color: #fff!important }
.btn-transition-hover:hover .text {	color: #000 }
.btn-transition-hover:hover .black-icon {
	transform: translateX(-241px) translateY(-50%);
	opacity: 1;
}
.black-icon-svg { display: none }
