@charset "UTF-8";
@charset "UTF-8";



.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

@-webkit-keyframes flash {

	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

@keyframes flash {

	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes shake {

	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

@keyframes shake {

	0%,
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}

.headShake {
	transform-origin: top center;
	animation-name: headShake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		-ms-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}

	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}

	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}

	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}

	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}

	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}

	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}

	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}

	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}

	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}

	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}

	100% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
		-ms-transform: scale(.9);
		transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px);
		-ms-transform: translateY(-100px);
		transform: translateY(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}

	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
		-ms-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}

	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		-ms-transform: translateX(100px);
		transform: translateX(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-ms-transform: translateY(100px);
		transform: translateY(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-webkit-transform: scale(.95);
		-ms-transform: scale(.95);
		transform: scale(.95);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		-ms-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(70px);
		transform: translateX(70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		-ms-transform: translateY(70px);
		transform: translateY(70px);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		transform: translateX(-70px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		-ms-transform: translateX(-70px);
		transform: translateX(-70px);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		-ms-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-200px);
		transform: translateY(-200px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-200px);
		-ms-transform: translateY(-200px);
		transform: translateY(-200px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}
@-webkit-keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(200px);
		-ms-transform: translateY(200px);
		transform: translateY(200px);
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-200px);
		transform: translateX(-200px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-200px);
		-ms-transform: translateX(-200px);
		transform: translateX(-200px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(200px);
		transform: translateX(200px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(200px);
		-ms-transform: translateX(200px);
		transform: translateX(200px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-200px);
		transform: translateX(-200px);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-200px);
		-ms-transform: translateX(-200px);
		transform: translateX(-200px);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(200px);
		transform: translateX(200px);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(200px);
		-ms-transform: translateX(200px);
		transform: translateX(200px);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-200px);
		transform: translateY(-200px);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-200px);
		-ms-transform: translateY(-200px);
		transform: translateY(-200px);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	100% {
		-webkit-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		-ms-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}


.dtZoom {
	-webkit-animation-name: dtZoom;
	animation-name: dtZoom;
}

@keyframes dtZoom {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	50% {
		opacity: 0.2;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	50% {
		opacity: 0.2;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
	}
}

@keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
	}
}

@keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
	}
}

@keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
	}
}

@keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes bounce {

	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

@keyframes bounce {

	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce
}

.bounce {
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-ms-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8; }

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden; }

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box; }

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle; }

.mfp-align-top .mfp-container:before {
	display: none; }

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto; }

.mfp-ajax-cur {
	cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out; }

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
	cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none; }

.mfp-loading.mfp-figure {
	display: none; }

.mfp-hide {
	display: none !important; }

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044; }
.mfp-preloader a {
	color: #CCC; }
.mfp-preloader a:hover {
	color: #FFF; }

.mfp-s-ready .mfp-preloader {
	display: none; }

.mfp-s-error .mfp-content {
	display: none; }

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation; }

button::-moz-focus-inner {
	padding: 0;
	border: 0; }

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
	opacity: 1; }
.mfp-close:active {
	top: 1px; }

.mfp-close-btn-in .mfp-close {
	color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%; }

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap; }

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
	margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent; }
.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px; }
.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7; }

.mfp-arrow-left {
	left: 0; }
.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px; }
.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
	right: 0; }
.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px; }
.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px; }
.mfp-iframe-holder .mfp-close {
	top: -40px; }

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000; }

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
	line-height: 0; }
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444; }
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px; }
.mfp-figure figure {
	margin: 0; }

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto; }

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px; }

.mfp-image-holder .mfp-content {
	max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
		 * Remove all paddings around the image on small screen
		 */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0; }
	.mfp-img-mobile img.mfp-img {
		padding: 0; }
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0; }
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px; }
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box; }
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0; }
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px; }
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0; } }

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75); }
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0; }
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%; }
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px; } }


/*--------------------------------------------------------------
# Import Modules
--------------------------------------------------------------*/
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

p {
  margin: 0 0 20px;
}

main {
  display: block;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

embed,
iframe,
object {
  max-width: 100%;
}

/* Text-level semantics
======================== */
a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

code, kbd, tt, var, samp {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
.elementor-invisible {
  visibility: visible !important;
}

hr {
  background-color: #eaeaea;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul ul,
ol ul {
  list-style: disc;
}

ul li {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 20px;
}

li > ul, li > ol {
  margin-bottom: 0;
  padding-left: 20px;
}

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}
@keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes toptobottom {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes bottomtotop {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes Rtdraw {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 770;
  }
}
@keyframes scale-up-one {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.move {
  animation: move 3s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.move1 {
  animation: move1 2s linear infinite;
}

@keyframes move1 {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(30px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
.move2 {
  animation: move2 2s linear infinite;
}

@keyframes move2 {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
/*------------------- Pulse border Animation -------------------*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
  }
}
@keyframes dash-animation {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 100%;
  }
}
@keyframes rt-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rt-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes marquee_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee_right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes marquee_top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marquee_bottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.spin {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes showPrice {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hidePrice {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes rtDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes kariz-up-text {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes kariz-down-text {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*------------------- Phone Ring -------------------*/
@keyframes phone-ring-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/*------------------- Move Forward  -------------------*/
@keyframes move-forward-right {
  50% {
    transform: translate(100%);
  }
  51% {
    transform: translate(-100%);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
/*------------------- Fade In Bottom Left  -------------------*/
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*------------------- Fade In Bottom Left  -------------------*/
@keyframes pulsekm {
  0% {
    box-shadow: 0 0 0 0 var(--rt-primary-color);
  }
  70% {
    box-shadow: 0 0 0 20px var(--rt-primary-color);
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 var(--rt-primary-color);
    opacity: 0;
  }
}
/*------------------- Opacity -------------------*/
@keyframes rt-opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.animation-scale-x {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.animation-scale-x.animate__animated {
  animation: qodef-image-fade-in 0.8s forwards cubic-bezier(0.57, 0.57, 0, 0.97);
}

@keyframes qodef-image-fade-in {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

:focus-visible {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0 0 20px;
}

pre {
  background: #f1f1f1;
  line-height: 1.2;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 32px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

mark, ins {
  background: #006D5B;
  text-decoration: none;
  color: #ffffff;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: 600;
}

kbd {
  color: #041b16;
  padding: 3px 5px 2px 5px;
  margin: 0 1px;
  background: #f1f1f1;
}

.wp-block-code {
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  font-family: Menlo, Consolas, monaco, monospace;
  padding: 0.8em 1em;
}

a {
  color: var(--rt-title-color);
}

a:hover {
  color: var(--rt-primary-color);
}

* {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}

table th,
table td,
.wp-block-table td,
.wp-block-table th {
  border: 1px solid #e7e7e7;
  padding: 8px;
  text-align: center;
}

td,
th {
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--rt-primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--rt-primary-color);
}

.container,
.container-fluid,
.rt-container,
.rt-container-fluid,
.container-narrow {
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}
.container::after,
.container-fluid::after,
.rt-container::after,
.rt-container-fluid::after,
.container-narrow::after {
  content: "";
  display: table;
  clear: both;
}

.rt-container-fluid,
.container-fluid {
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1140px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .rt-container,
  .container {
    max-width: var(--rt-container-width, 1320px);
  }
}
.row {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  margin-right: -12px;
  margin-left: -12px;
  flex: 0 1 auto;
  flex-wrap: wrap;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}

.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > * {
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}

.row.g-1 {
  margin-right: -2px;
  margin-left: -2px;
  margin-top: -4px;
}
.row.g-1 > * {
  padding-right: 2px;
  padding-left: 2px;
  margin-top: 4px;
}

.row.g-2 {
  margin-right: -4px;
  margin-left: -4px;
  margin-top: -8px;
}
.row.g-2 > * {
  padding-right: 4px;
  padding-left: 4px;
  margin-top: 8px;
}

.row.g-3 {
  margin-right: -8px;
  margin-left: -8px;
  margin-top: -16px;
}
.row.g-3 > * {
  padding-right: 8px;
  padding-left: 8px;
  margin-top: 16px;
}

.row.g-4 {
  margin-right: -12px;
  margin-left: -12px;
  margin-top: -24px;
}
.row.g-4 > * {
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 24px;
}

.row.g-5 {
  margin-right: -24px;
  margin-left: -24px;
  margin-top: -48px;
}
.row.g-5 > * {
  padding-right: 24px;
  padding-left: 24px;
  margin-top: 48px;
}

.nowrap {
  flex-wrap: nowrap;
}

.reverse {
  flex-direction: row-reverse;
}

.flex-item {
  flex: 0 0 auto;
}
.flex-item.grow {
  flex-grow: 1;
}

[class^=col-],
[class*=" col-"] {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 1px;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 auto;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-1 {
  max-width: 8.3333333333%;
  flex: 0 0 8.3333333333%;
}

.col-2 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}

.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.col-4 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}

.col-5 {
  max-width: 41.6666666667%;
  flex: 0 0 41.6666666667%;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.col-7 {
  max-width: 58.3333333333%;
  flex: 0 0 58.3333333333%;
}

.col-8 {
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%;
}

.col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.col-10 {
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%;
}

.col-11 {
  max-width: 91.6666666667%;
  flex: 0 0 91.6666666667%;
}

.col-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1140px) {
  .col-xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-xl-pull-0 {
    right: auto;
  }
  .col-xl-pull-1 {
    right: 8.3333333333%;
  }
  .col-xl-pull-2 {
    right: 16.6666666667%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-4 {
    right: 33.3333333333%;
  }
  .col-xl-pull-5 {
    right: 41.6666666667%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-7 {
    right: 58.3333333333%;
  }
  .col-xl-pull-8 {
    right: 66.6666666667%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-10 {
    right: 83.3333333333%;
  }
  .col-xl-pull-11 {
    right: 91.6666666667%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-push-0 {
    left: auto;
  }
  .col-xl-push-1 {
    left: 8.3333333333%;
  }
  .col-xl-push-2 {
    left: 16.6666666667%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-4 {
    left: 33.3333333333%;
  }
  .col-xl-push-5 {
    left: 41.6666666667%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-7 {
    left: 58.3333333333%;
  }
  .col-xl-push-8 {
    left: 66.6666666667%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-10 {
    left: 83.3333333333%;
  }
  .col-xl-push-11 {
    left: 91.6666666667%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
}
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.d-none {
  display: none;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.p-0 {
  padding: 0px;
}

.m-0 {
  margin: 0px;
}

.p-5 {
  padding: 5px;
}

.m-5 {
  margin: 5px;
}

.p-8 {
  padding: 8px;
}

.m-8 {
  margin: 8px;
}

.p-10 {
  padding: 10px;
}

.m-10 {
  margin: 10px;
}

.p-15 {
  padding: 15px;
}

.m-15 {
  margin: 15px;
}

.p-16 {
  padding: 16px;
}

.m-16 {
  margin: 16px;
}

.p-20 {
  padding: 20px;
}

.m-20 {
  margin: 20px;
}

.p-30 {
  padding: 30px;
}

.m-30 {
  margin: 30px;
}

.p-40 {
  padding: 40px;
}

.m-40 {
  margin: 40px;
}

.p-50 {
  padding: 50px;
}

.m-50 {
  margin: 50px;
}

.p-60 {
  padding: 60px;
}

.m-60 {
  margin: 60px;
}

.p-80 {
  padding: 80px;
}

.m-80 {
  margin: 80px;
}

.p-100 {
  padding: 100px;
}

.m-100 {
  margin: 100px;
}

.p-120 {
  padding: 120px;
}

.m-120 {
  margin: 120px;
}

.p-150 {
  padding: 150px;
}

.m-150 {
  margin: 150px;
}

.p-180 {
  padding: 180px;
}

.m-180 {
  margin: 180px;
}

.p-200 {
  padding: 200px;
}

.m-200 {
  margin: 200px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-200 {
  padding-top: 200px;
}

@media (min-width: 992px) {
  .pt-lg-30 {
    padding-top: 30px;
  }
  .pt-lg-50 {
    padding-top: 50px;
  }
  .pt-lg-80 {
    padding-top: 80px;
  }
  .pt-lg-100 {
    padding-top: 100px;
  }
  .pt-lg-120 {
    padding-top: 120px;
  }
  .pt-lg-150 {
    padding-top: 150px;
  }
}
@media (min-width: 768px) {
  .pt-md-30 {
    padding-top: 30px;
  }
  .pt-md-50 {
    padding-top: 50px;
  }
  .pt-md-80 {
    padding-top: 80px;
  }
  .pt-md-100 {
    padding-top: 100px;
  }
  .pt-md-120 {
    padding-top: 120px;
  }
  .pt-md-150 {
    padding-top: 150px;
  }
}
@media (min-width: 576px) {
  .pt-sm-30 {
    padding-top: 30px;
  }
  .pt-sm-50 {
    padding-top: 50px;
  }
  .pt-sm-80 {
    padding-top: 80px;
  }
  .pt-sm-100 {
    padding-top: 100px;
  }
  .pt-sm-120 {
    padding-top: 120px;
  }
  .pt-sm-150 {
    padding-top: 150px;
  }
}
.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-200 {
  padding-right: 200px;
}

@media (min-width: 992px) {
  .pr-lg-30 {
    padding-right: 30px;
  }
  .pr-lg-50 {
    padding-right: 50px;
  }
  .pr-lg-80 {
    padding-right: 80px;
  }
  .pr-lg-100 {
    padding-right: 100px;
  }
  .pr-lg-120 {
    padding-right: 120px;
  }
  .pr-lg-150 {
    padding-right: 150px;
  }
}
@media (min-width: 768px) {
  .pr-md-30 {
    padding-right: 30px;
  }
  .pr-md-50 {
    padding-right: 50px;
  }
  .pr-md-80 {
    padding-right: 80px;
  }
  .pr-md-100 {
    padding-right: 100px;
  }
  .pr-md-120 {
    padding-right: 120px;
  }
  .pr-md-150 {
    padding-right: 150px;
  }
}
@media (min-width: 576px) {
  .pr-sm-30 {
    padding-right: 30px;
  }
  .pr-sm-50 {
    padding-right: 50px;
  }
  .pr-sm-80 {
    padding-right: 80px;
  }
  .pr-sm-100 {
    padding-right: 100px;
  }
  .pr-sm-120 {
    padding-right: 120px;
  }
  .pr-sm-150 {
    padding-right: 150px;
  }
}
.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-200 {
  padding-bottom: 200px;
}

@media (min-width: 992px) {
  .pb-lg-30 {
    padding-bottom: 30px;
  }
  .pb-lg-50 {
    padding-bottom: 50px;
  }
  .pb-lg-80 {
    padding-bottom: 80px;
  }
  .pb-lg-100 {
    padding-bottom: 100px;
  }
  .pb-lg-120 {
    padding-bottom: 120px;
  }
  .pb-lg-150 {
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .pb-md-30 {
    padding-bottom: 30px;
  }
  .pb-md-50 {
    padding-bottom: 50px;
  }
  .pb-md-80 {
    padding-bottom: 80px;
  }
  .pb-md-100 {
    padding-bottom: 100px;
  }
  .pb-md-120 {
    padding-bottom: 120px;
  }
  .pb-md-150 {
    padding-bottom: 150px;
  }
}
@media (min-width: 576px) {
  .pb-sm-30 {
    padding-bottom: 30px;
  }
  .pb-sm-50 {
    padding-bottom: 50px;
  }
  .pb-sm-80 {
    padding-bottom: 80px;
  }
  .pb-sm-100 {
    padding-bottom: 100px;
  }
  .pb-sm-120 {
    padding-bottom: 120px;
  }
  .pb-sm-150 {
    padding-bottom: 150px;
  }
}
.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-200 {
  padding-left: 200px;
}

@media (min-width: 992px) {
  .pl-lg-30 {
    padding-left: 30px;
  }
  .pl-lg-50 {
    padding-left: 50px;
  }
  .pl-lg-80 {
    padding-left: 80px;
  }
  .pl-lg-100 {
    padding-left: 100px;
  }
  .pl-lg-120 {
    padding-left: 120px;
  }
  .pl-lg-150 {
    padding-left: 150px;
  }
}
@media (min-width: 768px) {
  .pl-md-30 {
    padding-left: 30px;
  }
  .pl-md-50 {
    padding-left: 50px;
  }
  .pl-md-80 {
    padding-left: 80px;
  }
  .pl-md-100 {
    padding-left: 100px;
  }
  .pl-md-120 {
    padding-left: 120px;
  }
  .pl-md-150 {
    padding-left: 150px;
  }
}
@media (min-width: 576px) {
  .pl-sm-30 {
    padding-left: 30px;
  }
  .pl-sm-50 {
    padding-left: 50px;
  }
  .pl-sm-80 {
    padding-left: 80px;
  }
  .pl-sm-100 {
    padding-left: 100px;
  }
  .pl-sm-120 {
    padding-left: 120px;
  }
  .pl-sm-150 {
    padding-left: 150px;
  }
}
.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-200 {
  margin-top: 200px;
}

@media (max-width: 992px) {
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-50 {
    margin-top: 50px;
  }
  .mt-lg-80 {
    margin-top: 80px;
  }
  .mt-lg-100 {
    margin-top: 100px;
  }
  .mt-lg-120 {
    margin-top: 120px;
  }
  .mt-lg-150 {
    margin-top: 150px;
  }
}
@media (max-width: 768px) {
  .mt-md-30 {
    margin-top: 30px;
  }
  .mt-md-50 {
    margin-top: 50px;
  }
  .mt-md-80 {
    margin-top: 80px;
  }
  .mt-md-100 {
    margin-top: 100px;
  }
  .mt-md-120 {
    margin-top: 120px;
  }
  .mt-md-150 {
    margin-top: 150px;
  }
}
@media (max-width: 576px) {
  .mt-sm-30 {
    margin-top: 30px;
  }
  .mt-sm-50 {
    margin-top: 50px;
  }
  .mt-sm-80 {
    margin-top: 80px;
  }
  .mt-sm-100 {
    margin-top: 100px;
  }
  .mt-sm-120 {
    margin-top: 120px;
  }
  .mt-sm-150 {
    margin-top: 150px;
  }
}
.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-200 {
  margin-right: 200px;
}

@media (max-width: 992px) {
  .mr-lg-30 {
    margin-right: 30px;
  }
  .mr-lg-50 {
    margin-right: 50px;
  }
  .mr-lg-80 {
    margin-right: 80px;
  }
  .mr-lg-100 {
    margin-right: 100px;
  }
  .mr-lg-120 {
    margin-right: 120px;
  }
  .mr-lg-150 {
    margin-right: 150px;
  }
}
@media (max-width: 768px) {
  .mr-md-30 {
    margin-right: 30px;
  }
  .mr-md-50 {
    margin-right: 50px;
  }
  .mr-md-80 {
    margin-right: 80px;
  }
  .mr-md-100 {
    margin-right: 100px;
  }
  .mr-md-120 {
    margin-right: 120px;
  }
  .mr-md-150 {
    margin-right: 150px;
  }
}
@media (max-width: 576px) {
  .mr-sm-30 {
    margin-right: 30px;
  }
  .mr-sm-50 {
    margin-right: 50px;
  }
  .mr-sm-80 {
    margin-right: 80px;
  }
  .mr-sm-100 {
    margin-right: 100px;
  }
  .mr-sm-120 {
    margin-right: 120px;
  }
  .mr-sm-150 {
    margin-right: 150px;
  }
}
.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-200 {
  margin-bottom: 200px;
}

@media (max-width: 992px) {
  .mb-lg-30 {
    margin-bottom: 30px;
  }
  .mb-lg-50 {
    margin-bottom: 50px;
  }
  .mb-lg-80 {
    margin-bottom: 80px;
  }
  .mb-lg-100 {
    margin-bottom: 100px;
  }
  .mb-lg-120 {
    margin-bottom: 120px;
  }
  .mb-lg-150 {
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .mb-md-50 {
    margin-bottom: 50px;
  }
  .mb-md-80 {
    margin-bottom: 80px;
  }
  .mb-md-100 {
    margin-bottom: 100px;
  }
  .mb-md-120 {
    margin-bottom: 120px;
  }
  .mb-md-150 {
    margin-bottom: 150px;
  }
}
@media (max-width: 576px) {
  .mb-sm-30 {
    margin-bottom: 30px;
  }
  .mb-sm-50 {
    margin-bottom: 50px;
  }
  .mb-sm-80 {
    margin-bottom: 80px;
  }
  .mb-sm-100 {
    margin-bottom: 100px;
  }
  .mb-sm-120 {
    margin-bottom: 120px;
  }
  .mb-sm-150 {
    margin-bottom: 150px;
  }
}
.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-200 {
  margin-left: 200px;
}

@media (max-width: 992px) {
  .ml-lg-30 {
    margin-left: 30px;
  }
  .ml-lg-50 {
    margin-left: 50px;
  }
  .ml-lg-80 {
    margin-left: 80px;
  }
  .ml-lg-100 {
    margin-left: 100px;
  }
  .ml-lg-120 {
    margin-left: 120px;
  }
  .ml-lg-150 {
    margin-left: 150px;
  }
}
@media (max-width: 768px) {
  .ml-md-30 {
    margin-left: 30px;
  }
  .ml-md-50 {
    margin-left: 50px;
  }
  .ml-md-80 {
    margin-left: 80px;
  }
  .ml-md-100 {
    margin-left: 100px;
  }
  .ml-md-120 {
    margin-left: 120px;
  }
  .ml-md-150 {
    margin-left: 150px;
  }
}
@media (max-width: 576px) {
  .ml-sm-30 {
    margin-left: 30px;
  }
  .ml-sm-50 {
    margin-left: 50px;
  }
  .ml-sm-80 {
    margin-left: 80px;
  }
  .ml-sm-100 {
    margin-left: 100px;
  }
  .ml-sm-120 {
    margin-left: 120px;
  }
  .ml-sm-150 {
    margin-left: 150px;
  }
}
.gap-0 {
  gap: 0px;
}

.column-gap-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.row-gap-0 {
  row-gap: 0px;
}

.gap-5 {
  gap: 5px;
}

.column-gap-5 {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.row-gap-5 {
  row-gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.column-gap-8 {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.row-gap-8 {
  row-gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.column-gap-10 {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.row-gap-10 {
  row-gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.column-gap-15 {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.row-gap-15 {
  row-gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.column-gap-16 {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.row-gap-16 {
  row-gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.column-gap-20 {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.row-gap-20 {
  row-gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.column-gap-30 {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.row-gap-30 {
  row-gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.column-gap-40 {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.row-gap-40 {
  row-gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.column-gap-50 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.row-gap-50 {
  row-gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.column-gap-60 {
  -moz-column-gap: 60px;
       column-gap: 60px;
}

.row-gap-60 {
  row-gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.column-gap-80 {
  -moz-column-gap: 80px;
       column-gap: 80px;
}

.row-gap-80 {
  row-gap: 80px;
}

.gap-100 {
  gap: 100px;
}

.column-gap-100 {
  -moz-column-gap: 100px;
       column-gap: 100px;
}

.row-gap-100 {
  row-gap: 100px;
}

.gap-120 {
  gap: 120px;
}

.column-gap-120 {
  -moz-column-gap: 120px;
       column-gap: 120px;
}

.row-gap-120 {
  row-gap: 120px;
}

.gap-150 {
  gap: 150px;
}

.column-gap-150 {
  -moz-column-gap: 150px;
       column-gap: 150px;
}

.row-gap-150 {
  row-gap: 150px;
}

.gap-180 {
  gap: 180px;
}

.column-gap-180 {
  -moz-column-gap: 180px;
       column-gap: 180px;
}

.row-gap-180 {
  row-gap: 180px;
}

.gap-200 {
  gap: 200px;
}

.column-gap-200 {
  -moz-column-gap: 200px;
       column-gap: 200px;
}

.row-gap-200 {
  row-gap: 200px;
}

/* WordPress Core
***************************/
.aligncenter,
div.aligncenter {
  display: block;
  margin: 12px auto 12px auto;
}

.alignright {
  float: right;
  margin: 12px 0 24px 24px;
}

.alignleft {
  float: left;
  margin: 12px 24px 24px 0;
}

a img.alignright {
  float: right;
  margin: 12px 0 48px 48px;
}

a img.alignnone {
  margin: 12px 48px 48px 0;
}

a img.alignleft {
  float: left;
  margin: 12px 48px 48px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.wp-block-query-pagination {
  margin-top: 10px;
}
.wp-block-query-pagination > a {
  color: #000000;
  font-size: 15px;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers > *:not(.dots) {
  display: inline-flex;
  padding: 3px 8px;
  background-color: var(--rt-gray10);
  line-height: 1.3;
  min-width: 30px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 3px;
  color: #111111;
  border: none;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers a:hover {
  background-color: var(--rt-meta-color);
  color: #FFFFFF;
}

/* Gutenberg Style */
.blocks-gallery-grid, .wp-block-gallery {
  margin-bottom: 25px;
  margin-top: 25px;
}

.gallery-caption {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.wp-block-latest-comments__comment-date,
.wp-block-image figcaption,
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date,
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  font-size: 14px;
}

.wp-block-image figcaption {
  color: #70778b;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 10px 10px 0;
  width: calc(50% - 10px);
  border-radius: 4px;
  overflow: hidden;
}

.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  width: calc(33.33333% - 10px);
  margin-right: 10px;
}

.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item {
  width: calc(25% - 10px);
  margin-right: 10px;
}

.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item,
.wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item {
  width: calc(20% - 5px);
  margin-right: 5px;
}

.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child,
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0 !important;
}

.columns-5 .blocks-gallery-image figcaption,
.columns-5 .blocks-gallery-item figcaption,
.columns-6 .blocks-gallery-image figcaption,
.columns-6 .blocks-gallery-item figcaption,
.columns-7 .blocks-gallery-image figcaption,
.columns-7 .blocks-gallery-item figcaption,
.columns-8 .blocks-gallery-image figcaption,
.columns-8 .blocks-gallery-item figcaption {
  font-size: 14px;
}

.single-blog .single-blog-content .post-details .wp-block-rss,
.single-blog .single-blog-content .post-details .wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.single-blog .single-blog-content .post-details > *:last-child {
  margin-bottom: 0;
}

.single-blog .single-blog-content .post-details .wp-block-calendar .wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-block-calendar {
  margin-bottom: 15px;
}

.single-blog .single-blog-content .post-details .wp-block-latest-comments,
.single-blog .single-blog-content .post-details .wp-block-archives {
  padding-left: 0;
}

form.post-password-form label > input {
  background: #FFFFFF;
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
  padding: 10px 8px;
  height: 44px;
}

form.post-password-form input[type=submit] {
  background: var(--rt-primary-color);
  border-radius: 6px;
  color: #FFFFFF;
  font-weight: 500;
  outline: none;
  height: 44px;
  transition: all ease 0.31s;
}

.comment-list .pingback-entry {
  margin-bottom: 30px;
}

.wp-block-search .wp-block-search__label {
  display: none;
}
.wp-block-search .wp-block-search__button {
  margin-left: 0;
  border: none;
  background-color: var(--rt-primary-color);
  border-radius: 0 5px 5px 0;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--rt-title-color);
  transition: 0.4s;
}
.wp-block-search .wp-block-search__button:hover {
  background-color: var(--rt-title-color);
  color: #FFFFFF;
}
.wp-block-search .wp-block-search__input {
  border: none;
  border-radius: 5px;
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #F8F8F8;
  font-size: 16px;
  font-weight: 500;
}
.wp-block-search .wp-block-search__input:focus-visible {
  outline: 0;
  box-shadow: none;
  border-color: #565656;
}

.wp-block-cover {
  margin-bottom: 15px;
  padding: 30px;
  border-radius: 6px;
  overflow: hidden;
}
.wp-block-cover .wp-block-cover__background {
  border-radius: 12px;
}
.wp-block-cover.is-repeated {
  border-radius: 12px;
}
.wp-block-cover a {
  color: #FFFFFF;
}

.has-large-font-size,
.has-x-large-font-size {
  line-height: 1.24;
}

figcaption,
figure.wp-block-image figcaption {
  border-radius: 10px;
}
figcaption img,
figure.wp-block-image figcaption img {
  border-radius: 10px;
}

:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
  color: #FFFFFF;
}

.wp-block-media-text {
  margin-bottom: 15px;
}
.wp-block-media-text figure {
  border-radius: 12px;
  overflow: hidden;
}

.wp-block-button {
  margin-bottom: 12px;
}
.wp-block-button .wp-block-button__link {
  color: var(--rt-button-text-color);
  background-color: var(--rt-primary-color);
  text-align: left;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 16px 30px 15px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 5px;
  font-size: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
}
.wp-block-button .wp-block-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-color: var(--rt-title-color);
  transform: translate(calc(-100% - 2px));
  border-radius: 5px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s;
  z-index: -1;
}
.wp-block-button .wp-block-button__link:hover {
  color: #FFFFFF;
}
.wp-block-button .wp-block-button__link:hover::before {
  transform: translate(0);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--rt-button-text-color);
  border: 2px solid var(--rt-primary-color);
  background-color: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--rt-button-color);
  border-color: var(--rt-secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:before {
  background-color: var(--rt-primary-color);
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button.is-style-squared .wp-block-button__link:before {
  border-radius: 0;
}

.wp-block-button .wp-block-button__link.no-border-radius,
.wp-block-button .wp-block-button__link.no-border-radius:before {
  border-radius: 0;
}

.wp-block-button .has-kariez-primary-background-color:before {
  background-color: #FFCC00;
}

.wp-block-button .has-kariez-secondary-background-color:before {
  background-color: #FFFCEE;
}

.wp-block-button .has-kariez-yellow-background-color:before {
  background-color: #ffb000;
}

.wp-block-button .has-kariez-dark-gray-background-color:before {
  background-color: #edf5f4;
}

.wp-block-button .has-kariez-light-gray-background-color:before {
  background-color: #f8f8f8;
}

.wp-block-button .has-kariez-white-background-color:before {
  background-color: #ffffff;
}

.wp-block-post {
  margin-bottom: 24px;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  padding: 20px 30px 20px 30px;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote.is-style-plain {
  background-color: transparent;
  border: 5px solid #000000;
  color: var(--rt-title-color);
  margin: 30px 0;
  padding: 45px 40px 45px 160px;
  position: relative;
}

.wp-block-pullquote {
  font-size: 1.5em;
  line-height: 1.6;
  border: none;
  border-bottom: 4px solid;
  border-top: 4px solid;
  color: currentColor;
  margin-bottom: 1.75em;
  margin-top: 1.5em;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote__citation {
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 32px;
}

.has-kariez-primary-background-color {
  background-color: var(--rt-primary-color) !important;
}

.has-kariez-secondary-background-color {
  background-color: var(--rt-secondary-color) !important;
}

.has-kariez-yellow-background-color {
  background-color: var(--rt-tertiary-color) !important;
}

.has-kariez-dark-gray-background-color {
  background-color: var(--rt-gray20) !important;
}

.has-kariez-light-gray-background-color {
  background-color: var(--rt-gray10) !important;
}

.has-kariez-white-background-color {
  background-color: #FFFFFF !important;
}

.has-kariez-primary-color {
  color: var(--rt-primary-color) !important;
}

.has-kariez-secondary-color {
  color: var(--rt-secondary-color) !important;
}

.has-kariez-yellow-color {
  color: var(--rt-tertiary-color) !important;
}

.has-kariez-dark-gray-color {
  color: var(--rt-gray20) !important;
}

.has-kariez-light-gray-color {
  color: var(--rt-gray10) !important;
}

.has-kariez-white-color {
  color: #FFFFFF !important;
}

.wp-block-gallery.alignleft.extraclass {
  margin-right: 30px;
}

.wp-block-gallery-1.wp-block-gallery.columns-3 {
  margin-bottom: 15px;
}

/* Form
***************************/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: medium none;
  color: #fff;
  padding: 5px 20px;
  border-radius: 3px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: var(--rt-body-color);
  border: 1px solid var(--rt-border-color);
  transition: all 520ms ease;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=url]:hover,
input[type=url]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=range]:hover,
input[type=range]:focus,
input[type=date]:hover,
input[type=date]:focus,
input[type=month]:hover,
input[type=month]:focus,
input[type=week]:hover,
input[type=week]:focus,
input[type=time]:hover,
input[type=time]:focus,
input[type=datetime]:hover,
input[type=datetime]:focus,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=color]:hover,
input[type=color]:focus,
textarea:hover,
textarea:focus {
  outline: none;
  border-color: rgba(var(--rt-primary-rgb), 0.5);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--rt-primary-rgb), 0.25);
}

select {
  border: 1px solid var(--rt-border-color);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

.content-area {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1200px) {
  .content-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.kariez-breadcrumb-wrapper.no-bg.no-color + div {
  padding-top: 0;
}

.post-edit-link {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  color: #FFFFFF !important;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  line-height: 1;
  max-width: 44px;
  max-height: 24px;
  opacity: 0;
  visibility: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.post-edit-link:hover {
  background: #000000;
}
.post-thumbnail:hover .post-edit-link {
  opacity: 1;
  visibility: visible;
}

/*blend mode*/
.rt-blend img {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg) !important;
}

.tertiaryColor, .kariez-offcanvas-drawer ul li.current-menu-item > a,
.kariez-offcanvas-drawer ul li.current-menu-ancestor > a, .kariez-offcanvas-drawer nav ul li a:hover, .kariez-navigation ul.menu li.current-menu-item > a,
.kariez-navigation ul.menu li.current > a, .kariez-navigation ul.menu > li > a:hover, .kariez-navigation ul li a:hover, .kariez-navigation ul li.current-menu-item > a,
.kariez-navigation ul li.current-menu-ancestor > a {
  color: var(--rt-title-color);
}

/*scroll bar*/
.kariez-offcanvas-drawer::-webkit-scrollbar {
  width: 1px;
}

.kariez-offcanvas-drawer::-webkit-scrollbar {
  background: var(--rt-primary-color);
}

.kariez-offcanvas-drawer::-webkit-scrollbar-thumb {
  background: var(--rt-primary-color);
}

.metaStyleDash, .meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a::before, .meta-style-dash-bg .rt-post-meta li::before, .meta-style-dash .rt-post-meta li::before {
  content: "-----";
  margin-right: 7px;
  letter-spacing: -4px;
  transform: scaleY(0.8);
  width: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.primaryColor, .single-post-pagination .nav-title:hover, .single-post-pagination .link:hover, .above-meta-style-border .separate-meta a, .meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a, .meta-style-dash-bg .rt-post-meta li:not(.category, .tag) a, .meta-style-dash-bg .rt-post-meta li:not(.category, .tag):before, .meta-style-dash-bg .rt-post-meta li:not(.category, .tag), .meta-style-border .rt-post-meta ul li:is(.category, .tag) a, .meta-style-border .rt-post-meta ul li:not(.category, .tag) a, .meta-style-border .rt-post-meta ul li:not(.category, .tag), .widget a:hover, .kariez-widget-area .rt-blog-post .entry-title a:hover, .kariez-breadcrumb-wrapper .breadcrumb li.active .title, .kariez-offcanvas-drawer ul li.current-menu-item > a,
.kariez-offcanvas-drawer ul li.current-menu-ancestor > a, .kariez-offcanvas-drawer nav ul li a:hover, .kariez-navigation ul.menu > li > a:hover, .kariez-navigation ul li a:hover, .site-branding h1 a {
  color: var(--rt-primary-color);
}

.primaryBG, .above-meta-style-border .separate-meta a:hover, .meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a:hover, .meta-style-border .rt-post-meta ul li:is(.category, .tag) a:hover, button,
input[type=button],
input[type=reset],
input[type=submit], button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  background-color: var(--rt-primary-color);
}

.secondaryColor {
  color: var(--rt-secondary-color);
}

.secondaryBG {
  background-color: var(--rt-secondary-color);
}

.tertiaryColor {
  color: var(--rt-tertiary-color);
}

.tertiaryBG, .kariez-navigation ul.menu li ul.dropdown-menu li a:before {
  background-color: var(--rt-tertiary-color);
}

.whiteColor, .single-post.kariez-single-3 .content-top-area .rt-post-meta a,
.single-post.kariez-single-3 .content-top-area .rt-post-meta li:before, .single-post.kariez-single-3 .content-top-area .rt-post-meta, .single-post.kariez-single-3 .content-top-area .entry-title, .above-meta-style-border .separate-meta a:hover, .meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a:hover, .meta-style-border .rt-post-meta ul li:is(.category, .tag) a:hover {
  color: #FFFFFF;
}

.whiteBG {
  background-color: #FFFFFF;
}

.blackColor {
  color: #000000;
}

.blackBG {
  background-color: #000000;
}

@font-face {
  font-family: "rt-fontello";
  src: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.eot?48093402);
  src: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.eot?48093402#iefix) format("embedded-opentype"), url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.woff2?48093402) format("woff2"), url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.woff?48093402) format("woff"), url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.ttf?48093402) format("truetype"), url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/fonts/fontello-icon/rt-fontello.svg?48093402#rt-fontello) format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "rt-fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
  content: "\e800";
} /* '' */
.icon-map-pin:before {
  content: "\e801";
} /* '' */
.icon-phone:before {
  content: "\e802";
} /* '' */
.icon-pinterest:before {
  content: "\e803";
} /* '' */
.icon-play:before {
  content: "\e804";
} /* '' */
.icon-plus-1:before {
  content: "\e805";
} /* '' */
.icon-pricing:before {
  content: "\e806";
} /* '' */
.icon-quote:before {
  content: "\e807";
} /* '' */
.icon-quote-big:before {
  content: "\e808";
} /* '' */
.icon-railway:before {
  content: "\e809";
} /* '' */
.icon-request-a-quote:before {
  content: "\e80a";
} /* '' */
.icon-security:before {
  content: "\e80b";
} /* '' */
.icon-send:before {
  content: "\e80c";
} /* '' */
.icon-ship:before {
  content: "\e80d";
} /* '' */
.icon-storage:before {
  content: "\e80e";
} /* '' */
.icon-support:before {
  content: "\e80f";
} /* '' */
.icon-track:before {
  content: "\e810";
} /* '' */
.icon-tracking:before {
  content: "\e811";
} /* '' */
.icon-truck:before {
  content: "\e812";
} /* '' */
.icon-twitter:before {
  content: "\e813";
} /* '' */
.icon-user:before {
  content: "\e814";
} /* '' */
.icon-air:before {
  content: "\e815";
} /* '' */
.icon-arrow-left:before {
  content: "\e816";
} /* '' */
.icon-arrow-right:before {
  content: "\e817";
} /* '' */
.icon-calendar:before {
  content: "\e818";
} /* '' */
.icon-check:before {
  content: "\e819";
} /* '' */
.icon-clock:before {
  content: "\e81a";
} /* '' */
.icon-minus:before {
  content: "\e81b";
} /* '' */
.icon-comment:before {
  content: "\e81c";
} /* '' */
.icon-delivery:before {
  content: "\e81d";
} /* '' */
.icon-down-arrow:before {
  content: "\e81e";
} /* '' */
.icon-facebook:before {
  content: "\e81f";
} /* '' */
.icon-instagram:before {
  content: "\e820";
} /* '' */
.icon-linkdin:before {
  content: "\e821";
} /* '' */
.icon-logo-shape:before {
  content: "\e822";
} /* '' */
.icon-mail:before {
  content: "\e823";
} /* '' */
.icon-minus-1:before {
  content: "\e825";
} /* '' */
.icon-star:before {
  content: "\e82b";
} /* '' */
.icon-eye:before {
  content: "\e82d";
} /* '' */
.icon-tag:before {
  content: "\e82e";
} /* '' */
.icon-tiktok:before {
  content: "\e82f";
} /* '' */
.icon-youtube:before {
  content: "\e830";
} /* '' */
.icon-back-top:before {
  content: "\e831";
} /* '' */
.icon-home:before {
  content: "\e832";
} /* '' */
.icon-skype:before {
  content: "\e833";
} /* '' */
.icon-arrow-right-circle:before {
  content: "\e834";
} /* '' */
.icon-search:before {
  content: "\e835";
} /* '' */
.icon-whatsapp:before {
  content: "\e836";
} /* '' */
.icon-vimeo:before {
  content: "\e837";
} /* '' */
.icon-twitter-sm:before {
  content: "\e838";
} /* '' */
.icon-round-check:before {
  content: "\e839";
} /* '' */
body {
  font-family: var(--rt-body-font, "DM Sans"), sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  background-color: var(--rt-body-bg-color);
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: var(--rt-title-color);
}

h1,
.h1 {
  font-size: 44px;
  line-height: 54px;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 42px;
}

h3,
.h3 {
  font-size: 28px;
  line-height: 36px;
}

h4,
.h4 {
  font-size: 22px;
  line-height: 28px;
}

h5,
.h5 {
  font-size: 18px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 18px;
}

small,
.small {
  font-size: 15px;
  line-height: 28px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

.no-line-height {
  line-height: 1em !important;
}

button {
  transition: all 520ms ease;
  cursor: pointer;
}

.btn {
  background-color: #F9F9F9;
  text-align: left;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 10px 7px 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  text-transform: capitalize;
  height: 55px;
  border: 0;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
}
.btn:active {
  box-shadow: none;
}
.btn:focus {
  outline: none;
}
.btn.btn-xl {
  padding: 24px 32px;
  font-size: 24px;
  line-height: 24px;
}
.btn.btn-lg {
  padding: 18px 24px;
  font-size: 18px;
  line-height: 18px;
}
.btn.btn-sm {
  padding: 12px 20px;
  font-size: 13px;
  line-height: 13px;
}
.btn.btn-xs {
  padding: 11px 18px;
  font-size: 10px;
  line-height: 10px;
}

.btn-primary {
  color: #FFFFFF;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.btn-primary:hover {
  color: #FFFFFF;
  background-color: var(--rt-secondary-color);
  border-color: var(--rt-secondary-color);
}

.btn-secondary {
  color: #FFFFFF;
  background-color: var(--rt-secondary-color);
  border-color: var(--rt-secondary-color);
}
.btn-secondary:hover {
  color: #FFFFFF;
  background-color: rgba(var(--rt-secondary-rgb), 0.8);
  border-color: rgba(var(--rt-secondary-rgb), 0.8);
}

.btn-light {
  color: #FFFFFF;
  background-color: var(--rt-meta-color);
  border-color: var(--rt-meta-color);
}
.btn-light:hover {
  color: #FFFFFF;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}

.btn-gray {
  color: #FFFFFF;
  background-color: var(--rt-meta-color);
  border-color: var(--rt-meta-color);
}
.btn-gray:hover {
  color: #FFFFFF;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}

.rt-button .btn .button-text {
  position: relative;
  color: var(--rt-title-color);
  display: block;
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.1s;
}
.rt-button .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-color: var(--rt-primary-color);
  transform: translate(calc(-100% - 2px));
  border-radius: 30px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s;
  z-index: -1;
}
.rt-button .btn .btn-round-shape {
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.1s;
  height: 45px;
  width: 45px;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.rt-button .btn .btn-round-shape i {
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  left: 50%;
}
.rt-button .btn .btn-round-shape:before {
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.2s;
  margin: 0;
  width: auto;
  display: block;
}
.rt-button .btn:hover {
  color: var(--rt-title-color);
}
.rt-button .btn:hover::before {
  transform: translate(0);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
}
.rt-button .btn:hover .btn-round-shape {
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.2s;
  background-color: #FFFFFF;
}
.rt-button .btn:hover .btn-round-shape i {
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.2s;
}
.rt-button .btn:hover .btn-round-shape i:before {
  animation: move-forward-right 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s both 1;
}

.rt-button .button-2 {
  background-color: rgba(249, 249, 249, 0.1);
}
.rt-button .button-2 .button-text {
  color: #FFFFFF;
}
.rt-button .button-2:before {
  background-color: #FFFFFF;
}
.rt-button .button-2 i {
  color: var(--rt-button-text-color);
}
.rt-button .button-2:hover .button-text {
  color: var(--rt-title-color);
}
.rt-button .button-2:hover .btn-round-shape {
  background-color: var(--rt-primary-color);
}

.rt-button .button-3 {
  background-color: transparent;
  color: var(--rt-title-color);
  border: 1px solid var(--rt-title-color);
}
.rt-button .button-3:before {
  background-color: var(--rt-primary-color);
}
.rt-button .button-3 i {
  color: var(--rt-button-text-color);
}
.rt-button .button-3:hover {
  border-color: var(--rt-primary-color);
}
.rt-button .button-3:hover .btn-round-shape {
  background-color: #FFFFFF;
}

.rt-button .button-4 {
  color: var(--rt-title-color);
}
.rt-button .button-4:before {
  background-color: var(--rt-title-color);
}
.rt-button .button-4 i {
  color: var(--rt-button-text-color);
}
.rt-button .button-4:hover .button-text {
  color: #FFFFFF;
}
.rt-button .button-4:hover .btn-round-shape {
  background-color: #FFFFFF;
}

.rt-button .button-5 {
  color: var(--rt-title-color);
  background-color: var(--rt-primary-color);
}
.rt-button .button-5 .button-text {
  margin-right: 0;
}
.rt-button .button-5:before {
  background-color: var(--rt-title-color);
}
.rt-button .button-5 i {
  color: var(--rt-button-text-color);
}
.rt-button .button-5:hover .button-text {
  color: #FFFFFF;
}
.rt-button .button-5:hover i {
  color: #FFFFFF;
}

a {
  transition: all 520ms ease;
}
a, a:hover, a:focus {
  text-decoration: none;
  outline: 0;
}

.text-primary {
  color: var(--rt-primary-color);
}

.bg-primary {
  background-color: var(--rt-primary-color);
}

.border-primary {
  border-color: var(--rt-primary-color);
}

.text-secondary {
  color: var(--rt-secondary-color);
}

.bg-secondary {
  background-color: var(--rt-secondary-color);
}

.border-secondary {
  border-color: var(--rt-secondary-color);
}

.text-body {
  color: var(--rt-body-color);
}

.bg-body {
  background-color: var(--rt-body-color);
}

.border-body {
  border-color: var(--rt-body-color);
}

.text-title {
  color: var(--rt-title-color);
}

.bg-title {
  background-color: var(--rt-title-color);
}

.border-title {
  border-color: var(--rt-title-color);
}

.text-meta {
  color: var(--rt-meta-color);
}

.bg-meta {
  background-color: var(--rt-meta-color);
}

.border-meta {
  border-color: var(--rt-meta-color);
}

.text-grey1 {
  color: var(--rt-gray10);
}

.bg-grey1 {
  background-color: var(--rt-gray10);
}

.border-grey1 {
  border-color: var(--rt-gray10);
}

.text-grey2 {
  color: var(--rt-gray20);
}

.bg-grey2 {
  background-color: var(--rt-gray20);
}

.border-grey2 {
  border-color: var(--rt-gray20);
}

.text-white {
  color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.border-white {
  border-color: #FFFFFF;
}

.text-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}

.border-black {
  border-color: #000000;
}

::-moz-selection {
  background: var(--rt-primary-color);
  color: #FFFFFF;
}

::selection {
  background: var(--rt-primary-color);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--rt-primary-color);
  color: #FFFFFF;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-table .display-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.background-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.overlay-dark {
  position: relative;
}
.overlay-dark:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 0.5;
  background-color: var(--rt-title-color);
}

.hide {
  display: none;
  visibility: hidden;
}

.show {
  display: inline-block;
  visibility: visible;
}

.elementor-element.rt-parallax-bg-yes {
  transition: none !important;
}

[class*=rticon] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

[class*=rticon] svg {
  fill: var(--rt-meta-color);
  width: 18px;
  height: 18px;
}

[class*=rticon] svg {
  transition: all 520ms ease;
}

.video-container,
figure.wp-block-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container embed,
.video-container object,
.video-container video,
figure.wp-block-embed iframe,
figure.wp-block-embed embed,
figure.wp-block-embed object,
figure.wp-block-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img, img.img-responsive {
  max-width: 100%;
  height: auto;
}

/*============================
# Review Schema Style
=============================*/
.rtrs-review-wrap {
  border-radius: 4px;
  padding: 25px 30px 30px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
}

.rtrs-review-wrap .rtrs-sorting-bar {
  background-color: #fff;
  padding: 0;
}

.rtrs-review-wrap .rtrs-sorting-bar .rtrs-sorting-select select {
  padding: 7px 32px 5px 13px;
  box-shadow: none;
  border: 1px solid #eaeaea;
}

.rtrs-review-wrap .rtrs-sorting-bar .rtrs-sorting-title {
  font-size: 18px;
  font-weight: 500;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-each-review {
  padding: 23px 25px 24px !important;
  background: transparent !important;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn .rtrs-item-btn {
  background-color: var(--rt-primary-light3, #EAF7F4) !important;
  color: var(--rt-primary-color) !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn .rtrs-item-btn:hover {
  background-color: var(--rt-primary-dark) !important;
  color: #fff !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-review-title {
  margin: 0 0 8px;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body p {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn {
  padding: 0 !important;
}

body .rtrs-review-form {
  background-color: transparent !important;
  padding: 0 !important;
}

.rtrs-review-wrap .rtrs-paginate {
  margin: 0 0 10px !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-rating-category li {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-rating-category li {
  line-height: 2 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group {
  margin-bottom: 20px !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group.rtrs-submit-button {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group input[submit] {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group .rtrs-submit-btn {
  background-color: var(--rt-primary-color) !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group .rtrs-submit-btn:hover {
  background-color: var(--rt-primary-dark) !important;
}

.rtrs-review-box .rtrs-review-body .rtrs-review-meta li {
  margin-bottom: 0 !important;
}

.rtrs-summary {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
}

.rtrs-summary .rtrs-progress-wrap .rtrs-progress {
  margin-bottom: 10px !important;
}

.rtrs-summary .rtrs-progress-wrap .rtrs-progress label {
  margin-bottom: 0 !important;
}

.rtrs-summary .rtrs-progress-wrap {
  padding: 20px 30px 10px !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-webkit-progress-value {
  background: var(--rt-primary-color) !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-moz-progress-bar {
  background: var(--rt-primary-color) !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-webkit-progress-bar {
  background: #C7E6DE !important;
}

.rtrs-summary .rtrs-progress-wrap progress {
  color: var(--rt-primary-dark) !important;
}

.rtrs-review-box .rtrs-review-body .rtrs-review-meta .rtrs-review-date i:before {
  color: var(--rt-primary-color) !important;
}

/* Back to top
======================*/
.kariez-bc-totop {
  position: fixed;
  z-index: 15;
  bottom: 46px;
  right: 40px;
  text-decoration: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--rt-title-color);
  border-radius: 5px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(120px);
  overflow: hidden;
}
.kariez-bc-totop .progress-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: block;
}
.kariez-bc-totop .progress {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  width: calc(100% - 6px);
  height: 0;
  background-color: var(--rt-primary-color);
  border-radius: 5px;
}
.kariez-bc-totop .bc-svg {
  color: var(--rt-title-color);
  font-size: 18px;
}
.kariez-bc-totop .bc-svg:before {
  width: auto;
  margin: 0;
}
.kariez-bc-totop.active {
  transform: translateY(0);
}
.kariez-bc-totop.active .bc-svg {
  transform: rotate(0deg) translateX(0px);
  transition: all 0.3s ease;
}

/*-------------------
#. Preloader css
--------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  z-index: 999999999;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
}

.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  background: #FFFFFF;
}

.loader .cssload-loader {
  width: 65px;
  height: 65px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.loader .cssload-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%;
}

.loader .cssload-inner.cssload-one {
  left: 0;
  top: 0;
  animation: cssload-rotate-one 1.15s linear infinite;
  border-bottom: 5px solid var(--rt-tertiary-color);
}

.loader .cssload-inner.cssload-two {
  right: 0;
  top: 0;
  animation: cssload-rotate-two 1.15s linear infinite;
  border-right: 5px solid var(--rt-tertiary-color);
}

.loader .cssload-inner.cssload-three {
  right: 0;
  bottom: 0;
  animation: cssload-rotate-three 1.15s linear infinite;
  border-top: 5px solid var(--rt-tertiary-color);
}

@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@media (min-width: 1025px) {
  .rt-mobile-logo,
  .light-logo,
  .mobile-hamburg {
    display: none;
  }
}
@media (min-width: 1200px) {
  .site-header .rt-container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 1024px) {
  .rt-site-logo,
  .desktop-hamburg {
    display: none;
  }
}
.main-header-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-branding {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
}
.site-branding h1 {
  margin: 0;
}
.site-branding h1 a {
  display: flex;
  padding: 10px 0;
  font-weight: bold;
  transition: color 0.4s;
}
.site-branding h1 a:hover {
  color: var(--rt-secondary-color);
}

.site-header {
  position: relative;
  background-color: var(--rt-body-bg-color);
  z-index: 9;
}
.site-header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.menu-icon-wrapper .menu-icon-action {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .menu-icon-wrapper .menu-icon-action {
    justify-content: center;
  }
}
.menu-icon-wrapper a {
  display: flex;
  justify-content: center;
}
.menu-icon-wrapper a:hover svg {
  color: var(--rt-primary-color);
}
.menu-icon-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-icon-wrapper ul li {
  list-style: none;
  margin-bottom: 0;
  position: relative;
}
.menu-icon-wrapper .menu-search-bar {
  font-size: 18px;
  position: relative;
  z-index: 1;
  height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.menu-icon-wrapper .menu-search-bar:hover::after {
  transform: scale(1);
}
.menu-icon-wrapper .menu-search-bar:hover i {
  color: var(--rt-title-color);
}
.menu-icon-wrapper .menu-search-bar::after {
  content: "";
  transform: scale(0);
  background-color: var(--rt-primary-color);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  transition: 0.4s;
}
.menu-icon-wrapper .menu-search-bar i {
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.menu-icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.menu-icon-wrapper .has-separator li:not(:last-child) {
  padding-right: 15px;
}
.menu-icon-wrapper .has-separator li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 23px;
  background: var(--rt-meta-color);
  top: 50%;
  transform: translateY(-50%);
}
.menu-icon-wrapper .has-button li:nth-last-child(1) {
  padding-right: 0;
}
.menu-icon-wrapper .has-button li:nth-last-child(1)::after,
.menu-icon-wrapper .has-button li:nth-last-child(2)::after {
  content: none;
}
@media (max-width: 767px) {
  .menu-icon-wrapper .rt-button {
    display: none;
  }
}
.menu-icon-wrapper .rt-button .btn {
  padding: 13px 20px;
  height: 50px;
  width: 160px;
}

.header-search {
  position: fixed;
  top: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.3);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  transition: all ease 0.31s;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search .header-search-wrap {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 345px;
  background-color: #FFFFFF;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  transition-duration: 1.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search .close {
  position: absolute;
  top: 100px;
  right: 30px;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  opacity: 0;
  visibility: visible;
  padding: 0;
  font-size: 30px;
  cursor: pointer;
  color: var(--rt-button-color);
  background: var(--rt-primary-color);
  border-radius: 0;
  z-index: 1;
}
.header-search .header-search-form {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1176px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(-50%);
  transition: all 0s ease-in-out;
}
.header-search .header-search-form input[type=search] {
  width: 90%;
  height: 60px;
  color: var(--rt-title-color);
  font-size: 16px;
  text-align: left;
  border: none;
  border-radius: 0;
  margin: 0 auto;
  padding: 15px 35px 15px 0;
  outline: none;
  background: transparent;
  border-bottom: 1px solid var(--rt-border-color);
  line-height: 28px;
  transition: all 0s ease-in-out;
}
.header-search .header-search-form input[type=search]:focus {
  box-shadow: none;
}
.header-search .header-search-form .search-btn {
  padding: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  color: var(--rt-primary-color);
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-left: -24px;
  background: transparent;
  line-height: 29px;
  transition: all 0s ease-in-out;
}
.header-search.open {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-search.open .header-search-wrap {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-search.open .close {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1660px) {
  .page-id-100 .site:after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #D2E2E0;
    position: absolute;
    top: 0;
    left: 115px;
    z-index: 9;
  }
}
@media (min-width: 1440px) and (max-width: 1660px) {
  .home-four-hero.elementor-element:before {
    background-size: 750px 877px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .home-four-hero.elementor-element:before {
    background-size: cover !important;
    opacity: 0.2;
  }
}
/* Main Navigation
***************************/
@media (min-width: 1350px) {
  .navigation-menu-wrap {
    position: relative;
  }
}
@media (max-width: 1024px) {
  .navigation-menu-wrap {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .navigation-menu-wrap {
    justify-content: space-between;
    gap: 12px;
  }
  .navigation-menu-wrap .menu-icon-wrapper > ul {
    justify-content: center;
  }
}

.kariez-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  /* #. Submenu */
  /*Menu hover effect*/
}
@media (max-width: 1024px) {
  .main-header-section .kariez-navigation {
    display: none;
  }
}
.kariez-navigation ul.kariez-navbar {
  padding: 0;
  margin: 0;
}
.kariez-navigation ul li {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.kariez-navigation ul li:not(:last-child) {
  margin-right: 40px;
}
.kariez-navigation .dropdown-menu li {
  margin-right: 0;
}
.kariez-navigation .dropdown-menu li:not(:last-child) {
  margin-right: 0;
}
.kariez-navigation ul li a {
  font-size: 16px;
  line-height: 22px;
  color: var(--rt-title-color);
  text-decoration: none;
  padding: 36px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .kariez-navigation ul li a {
    padding: 26px 15px;
  }
}
.kariez-navigation ul li ul li > a:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--rt-title-color);
  bottom: 2px;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  pointer-events: none;
  left: 0;
}
.kariez-navigation ul li ul li:hover > a:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0% 50%;
  transition-timing-function: ease;
}
.kariez-navigation ul li ul li:hover > a svg {
  color: var(--rt-title-color);
}
.kariez-navigation ul li.current-menu-item > a svg,
.kariez-navigation ul li.current-menu-ancestor > a svg {
  color: var(--rt-title-color);
}
.kariez-navigation ul li.current-menu-item > a,
.kariez-navigation ul li.current-menu-ancestor > a {
  color: var(--rt-title-color);
}
.kariez-navigation ul li a:hover svg {
  color: var(--rt-title-color);
}
.kariez-navigation ul.menu > li > a:hover svg {
  color: var(--rt-title-color);
}
.kariez-navigation ul.menu li.current-menu-item > a,
.kariez-navigation ul.menu li.current > a {
  color: var(--rt-title-color);
}
.kariez-navigation ul > li > ul {
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  width: 215px;
  list-style: none;
  margin: 0;
  box-shadow: 0 13px 48px 0 rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 200ms ease, visibility 200ms ease, transform 500ms ease;
  padding-left: 0;
  border-radius: 5px;
}
.kariez-navigation ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.kariez-navigation ul li ul li ul {
  left: 100%;
  top: 0;
  width: 240px;
}
.kariez-navigation ul li ul li {
  display: block;
  padding: 0 35px;
}
.kariez-navigation ul li ul li a {
  position: relative;
  display: inline-block;
  color: var(--rt-body-color);
  padding: 0;
  z-index: 2;
  font-size: 15px;
  font-weight: 500 !important;
  margin-bottom: 10px;
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.kariez-navigation ul li ul > li:last-child > a {
  border-bottom: none;
  margin-bottom: 0;
}
.kariez-navigation ul li ul li:hover > a {
  color: var(--rt-title-color);
  margin-left: 15px;
}
.kariez-navigation ul.menu li ul.dropdown-menu li:last-child:after {
  border-bottom: none;
}
.kariez-navigation ul.menu li ul.dropdown-menu li a:hover {
  color: var(--rt-tertiary-color);
}
.kariez-navigation ul.menu li ul.dropdown-menu li a:before {
  position: absolute;
  z-index: 1;
  content: "";
  height: 0.0625rem;
  width: 0;
  right: 0;
  left: inherit;
  bottom: 0;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.kariez-navigation ul.menu li ul.dropdown-menu li a:hover:before {
  width: 100%;
  left: 0;
  right: inherit;
}
.kariez-navigation > ul li.page_item_has_children > a:after,
.kariez-navigation > ul li.menu-item-has-children > a:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--rt-title-color);
  display: inline-block;
  transform: rotate(45deg) translate(1px, -4px);
  border-left: none;
  border-top: none;
  margin-left: 8px;
  transition: all 520ms ease;
}
.kariez-navigation .caret svg {
  position: relative;
  top: -1px;
  transition: all 520ms ease;
}
.kariez-navigation .dropdown-menu .caret {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.kariez-navigation .dropdown-menu .caret svg {
  transform: rotate(-90deg) scale(0.9);
}

.kariez-navbar li > .dropdown-menu li.dropdown-inverse .dropdown-menu {
  left: auto;
  min-width: 195px;
  transition: all 0.2s;
}
.kariez-navbar li > .dropdown-menu li.dropdown-inverse:hover .dropdown-menu {
  margin-right: -5px;
}

/* Mega-menu CSS
***************************/
.mega-menu-wrap .e-con-inner {
  position: relative;
}
.mega-menu-wrap .elementor-element,
.mega-menu-wrap .elementor-widget-container {
  position: unset;
}

.kariez-navigation {
  /*start mega menu two column*/
  /*start mega menu three column*/
  /*end mega menu three column*/
}
.kariez-navigation ul.menu li.mega-menu ul.dropdown-menu li a:before,
.kariez-navigation ul.menu li.mega-menu ul.dropdown-menu li:after,
.kariez-navigation ul.menu li.mega-menu ul.dropdown-menu li.menu-item-has-children:before {
  display: none;
}
.kariez-navigation ul.menu li.mega-menu ul.dropdown-menu li a {
  padding: 0 0 8px;
}
.kariez-navigation ul.menu li.mega-menu .dropdown-menu .dropdown-toggle {
  padding-bottom: 0 !important;
}
.kariez-navigation ul li.mega-menu {
  position: static;
}
.kariez-navigation ul li.mega-menu:hover ul {
  opacity: 1;
  visibility: visible;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu {
  justify-content: flex-start;
  display: flex;
  background-color: var(--rt-body-bg-color);
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.kariez-navigation ul li > ul.dropdown-menu {
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 200ms ease, visibility 200ms ease, transform 500ms ease;
  pointer-events: none;
  padding-top: 30px;
  padding-bottom: 30px;
}
.kariez-navigation ul > li:hover > ul.dropdown-menu {
  transform: scaleY(1) translateZ(0px);
  pointer-events: all;
}
.kariez-navigation ul li.mega-menu.two-column {
  position: relative;
}
.kariez-navigation ul li.mega-menu.two-column > ul.dropdown-menu {
  background-color: #FFFFFF !important;
  width: 520px !important;
}
.kariez-navigation ul li.mega-menu.two-column {
  position: relative;
}
.kariez-navigation ul li.mega-menu.three-column > ul.dropdown-menu {
  background-color: #FFFFFF !important;
  width: 780px !important;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li {
  display: inline-block;
  width: 100%;
  border: none;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li > ul.dropdown-menu {
  transform: unset;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li ul {
  position: relative;
  width: inherit;
  left: inherit;
  box-shadow: none;
  border-top: none;
  padding: 0;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li .sub-menu li {
  padding: 0;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li > a {
  font-weight: 600 !important;
  font-size: 19px;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
  color: var(--rt-title-color);
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li > a:before {
  content: "";
  height: 2px;
  width: 10px;
  background-color: var(--rt-title-color);
  position: absolute;
  top: 10px;
  left: 0;
  visibility: visible;
  opacity: 1;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li > a:hover {
  margin-left: 0;
}
.kariez-navigation ul li.mega-menu > ul.dropdown-menu > li > a:after {
  display: none;
}
.kariez-navigation ul li.mega-menu .dropdown-menu .dropdown-submenu:hover .dropdown-toggle {
  color: var(--rt-title-color);
  margin-left: 0;
}
.kariez-navigation ul li.mega-menu.hide-header > ul.dropdown-menu > li > a {
  display: none;
}
.kariez-navigation ul li.mega-menu > ul .caret {
  display: none !important;
}
.kariez-navigation ul li.mega-menu.mega-menu-col-2 > ul {
  width: 50%;
}
.kariez-navigation ul li.mega-menu.mega-menu-col-3 > ul {
  width: 65%;
}

/* Header search
***************************/
.rt-search-popup.show .rt-search-form {
  visibility: visible;
  opacity: 1;
  top: 51px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 520ms ease;
}
.rt-search-popup .rt-search-form {
  position: absolute;
  top: 70px;
  right: -12px;
  width: 300px;
  padding: 5px 12px 6px 14px;
  background: var(--rt-title-color);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  font-size: var(--rt-body-font, "DM Sans"), sans-serif-1;
}
.rt-search-popup .rt-search-form::before {
  content: "";
  position: absolute;
  background: var(--rt-title-color);
  width: 14px;
  height: 14px;
  top: -6px;
  right: 26px;
  transform: rotate(-45deg);
}
.rt-search-popup .rt-search-form .search-box {
  position: relative;
  border: none;
}
.rt-search-popup .rt-search-form .search-box svg {
  fill: var(--rt-meta-color);
}
.rt-search-popup .rt-search-form input[type=text] {
  width: 100%;
  height: 40px;
  padding: 5px;
  border: none;
  background: none;
  transition: 0.4s;
  color: var(--rt-meta-color);
}
.rt-search-popup .rt-search-form input[type=text]:hover, .rt-search-popup .rt-search-form input[type=text]:focus {
  outline: none;
}
.rt-search-popup .rt-search-form input[type=text]:focus + button {
  opacity: 1;
}
.rt-search-popup .rt-search-form button {
  position: absolute;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  background: none;
  border: none;
  outline: none;
  height: 100%;
  padding: 3px 8px 0;
  opacity: 0;
}

/* Off canvas drawer */
.kariez-offcanvas-drawer {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  height: 100vh;
  justify-content: space-between;
  padding: 40px;
  width: 350px;
  margin-left: -350px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--rt-body-bg-color);
  color: var(--rt-body-color);
  z-index: 99999;
  box-sizing: border-box;
  transition: 0.4s ease-in-out;
  max-width: 100%;
  overflow: auto;
}
.kariez-offcanvas-drawer.is-open {
  margin-left: 0;
}
.kariez-offcanvas-drawer .offcanvas-logo .rt-site-logo {
  display: none !important;
}
.kariez-offcanvas-drawer .offcanvas-logo .rt-mobile-logo {
  display: block !important;
}
.kariez-offcanvas-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kariez-offcanvas-drawer nav ul li a {
  padding: 8px 40px 8px 0;
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--rt-title-color);
  line-height: 1.3;
}
.kariez-offcanvas-drawer nav ul li ul a {
  font-size: 15px;
  font-weight: 600;
}
.kariez-offcanvas-drawer .caret {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--rt-title-color);
}
.kariez-offcanvas-drawer .caret svg {
  color: #FFFFFF;
}
.kariez-offcanvas-drawer ul > li.is-open > a > .caret > svg {
  transform: rotate(180deg);
}
.kariez-offcanvas-drawer ul ul {
  padding-left: 30px;
}
.kariez-offcanvas-drawer .offcanvas-navigation li > ul {
  display: none;
}
.kariez-offcanvas-drawer .offcanvas-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kariez-offcanvas-drawer .offcanvas-logo .trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 26px;
  cursor: pointer;
  color: var(--rt-button-color);
  background: var(--rt-primary-color);
  z-index: 1;
}

.kariez-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99990;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.kariez-offcanvas-drawer.is-open + .kariez-body-overlay {
  opacity: 1;
  visibility: visible;
}

.offcanvas-address label {
  display: block;
  color: var(--rt-title-color);
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  width: 100%;
}
.offcanvas-address .offcanvas-info {
  margin-bottom: 24px;
}
.offcanvas-address .offcanvas-info li {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 10px;
  color: var(--rt-body-color);
}
.offcanvas-address .offcanvas-info li i {
  color: var(--rt-title-color);
  font-size: 16px;
}
.offcanvas-address .offcanvas-info a {
  color: var(--rt-title-color);
  font-size: 18px;
  font-weight: 500;
}
.offcanvas-address .offcanvas-info a:hover {
  color: var(--rt-primary-color);
}
.offcanvas-address .offcanvas-info svg {
  width: 14px;
  height: 14px;
  fill: var(--rt-title-color);
}
.offcanvas-address .offcanvas-social-icon {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.offcanvas-address .offcanvas-social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  border-radius: 38px;
  border: 1px solid var(--rt-title-color);
  color: var(--rt-meta-color);
  overflow: hidden;
  position: relative;
}
.offcanvas-address .offcanvas-social-icon a svg {
  fill: var(--rt-title-color);
  width: 15px;
  height: 15px;
}
.offcanvas-address .offcanvas-social-icon a:hover {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.offcanvas-address .offcanvas-social-icon a:hover svg {
  fill: var(--rt-title-color);
}

/* Topbar Navigation
***************************/
.kariez-topbar {
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
@media (max-width: 768px) {
  .kariez-topbar {
    display: none;
  }
}
@media (max-width: 650px) {
  .kariez-topbar .topbar-right {
    padding: 5px 0;
  }
}
.kariez-topbar .topbar-row {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .kariez-topbar .topbar-row {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .kariez-topbar .topbar-left {
    justify-content: center;
  }
}
.kariez-topbar .topbar-left span {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 767px) {
  .kariez-topbar .topbar-left span {
    justify-content: center;
  }
}
.kariez-topbar .topbar-left span:last-child:before {
  display: none;
}
.kariez-topbar .topbar-left span:before {
  content: "";
  height: 55px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -15px;
  display: none;
}
@media (min-width: 1200px) {
  .kariez-topbar .topbar-left span:before {
    display: block;
  }
}
.kariez-topbar .topbar-left span i {
  color: var(--rt-title-color);
}
.kariez-topbar .topbar-left span .text {
  color: var(--rt-title-color);
}
.kariez-topbar .topbar-left span a {
  color: var(--rt-title-color);
}
.kariez-topbar .topbar-left span a:hover {
  color: var(--rt-primary-color);
}
.kariez-topbar .social-icon {
  display: inline-flex;
  align-items: center;
}
.kariez-topbar .social-icon a {
  border: 0;
  position: relative;
  z-index: 1;
}
.kariez-topbar .social-icon a:hover::after {
  transform: scale(1);
}
.kariez-topbar .social-icon a:hover svg {
  fill: var(--rt-primary-color);
}
.kariez-topbar .social-icon a:not(:last-child) {
  margin-right: 20px;
}
.kariez-topbar .social-icon [class*=icon] svg {
  width: 14px;
  height: 14px;
  fill: var(--rt-title-color);
}

.has-trheader .site-header .kariez-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.has-trheader .site-header .kariez-topbar .topbar-left span {
  color: #C5C5C5;
}
.has-trheader .site-header .kariez-topbar .topbar-left span:before {
  background-color: rgba(255, 255, 255, 0.1);
}
.has-trheader .site-header .kariez-topbar .topbar-left span i {
  color: #C5C5C5;
}
.has-trheader .site-header .kariez-topbar .topbar-left span .text {
  color: #C5C5C5;
}
.has-trheader .site-header .kariez-topbar .topbar-left span a {
  color: #C5C5C5;
}
.has-trheader .site-header .kariez-topbar .topbar-left span a:hover {
  color: #FFFFFF;
}
.has-trheader .site-header .kariez-topbar .social-icon a:hover svg {
  fill: #FFFFFF;
}
.has-trheader .site-header .kariez-topbar .social-icon [class*=icon] svg {
  fill: rgba(255, 255, 255, 0.5);
}

/*========================================
//  HeadRoom Sticky
==========================================*/
.site-header.scrolling {
  background-color: var(--rt-body-bg-color);
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.05);
}

.has-trheader .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: transparent;
}

.has-sticky-header .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.has-sticky-header.tr-header-dark .site-header.scrolling {
  background-color: var(--rt-body-bg-color);
}
.has-sticky-header.tr-header-light .site-header.scrolling {
  background-color: var(--rt-title-color);
}

.admin-bar.has-trheader .site-header,
.admin-bar.has-sticky-header .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar.has-trheader .site-header,
  .admin-bar.has-sticky-header .site-header {
    top: 46px;
  }
}

.headroom {
  will-change: transform;
  transition: transform 250ms ease-in-out;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.header--not-top.headroom--pinned {
  transform: translateY(calc(86px - 100%));
}

/* Transparent Header */
.has-trheader.has-menu-shadow .site-header::before {
  content: "";
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  position: absolute;
  width: 100%;
  height: 220px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .has-trheader.has-menu-shadow .site-header::before {
    display: none;
  }
}
.tr-header-light .light-logo {
  display: block;
}
.tr-header-light .dark-logo, .tr-header-light .rt-mobile-logo {
  display: none;
}
.tr-header-light .kariez-navigation .menu-main-menu-container > ul > li > a {
  color: #FFFFFF;
}
.tr-header-light .kariez-navigation .menu-main-menu-container > ul > li > a svg {
  color: #fff;
}
.tr-header-light .ham-burger .btn-hamburger span {
  background-color: #FFFFFF;
}
.tr-header-light .ham-burger .menu-label {
  color: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper .menu-search-bar:hover i {
  color: var(--rt-title-color);
}
.tr-header-light .menu-icon-wrapper .menu-search-bar i {
  color: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper a svg {
  color: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper .ham_burger .line {
  stroke: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper .rt-phone-2 .phone-box .content .phone-label {
  color: #E9E5E5;
}
.tr-header-light .menu-icon-wrapper .rt-phone-2 .phone-box .content .phone-number {
  color: #fff;
}
.tr-header-light .menu-icon-wrapper .rt-phone-2 .phone-box .content .phone-number:hover {
  color: var(--rt-primary-color);
}
.tr-header-light .menu-icon-wrapper .has-separator li:not(:last-child):after {
  background-color: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper .rt-button .button-3 {
  border: 1px solid #fff;
  color: #FFFFFF;
}
.tr-header-light .menu-icon-wrapper .rt-button .button-3:hover {
  border-color: var(--rt-primary-color);
}

.ham-burger .menu-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 0;
  z-index: 1;
  height: 50px;
  width: 50px;
  transition: all 520ms ease;
}
.ham-burger .menu-bar:hover:before {
  transform: scale(1);
}
.ham-burger .menu-bar:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--rt-primary-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  transition: 0.4s;
  z-index: -1;
}
.ham-burger .menu-label {
  color: var(--rt-title-color);
  font-weight: 600;
}
.ham-burger .btn-hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  margin: auto;
  margin-bottom: 10px;
  background-color: var(--rt-title-color);
  border-radius: 12px;
  transition: all 520ms ease;
}
.ham-burger .btn-hamburger span:nth-child(2) {
  width: 40px;
}
.ham-burger .btn-hamburger span:nth-child(3) {
  margin-bottom: 0;
}
.ham-burger:hover .btn-hamburger span {
  width: 40px;
}

.kariez-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .kariez-breadcrumb-wrapper {
    padding: 200px 0 100px;
  }
}
@media (max-width: 991px) {
  .kariez-breadcrumb-wrapper {
    padding: 100px 0;
  }
}
.kariez-breadcrumb-wrapper.has-bg {
  position: relative;
  background-color: var(--rt-secondary-color);
  z-index: 0;
}
.kariez-breadcrumb-wrapper.has-bg::before {
  content: "";
  height: 25%;
  width: 100%;
  background-color: #0D0B12;
  filter: blur(80px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.kariez-breadcrumb-wrapper.has-bg .entry-title {
  color: #FFFFFF;
}
.kariez-breadcrumb-wrapper .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.kariez-breadcrumb-wrapper .breadcrumb {
  display: block;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  color: var(--rt-meta-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  position: relative;
}
.kariez-breadcrumb-wrapper .breadcrumb li {
  display: inline;
  position: relative;
  align-items: center;
  gap: 10px;
}
.kariez-breadcrumb-wrapper .breadcrumb li a i {
  margin-right: 10px;
}
.kariez-breadcrumb-wrapper .breadcrumb .raquo {
  padding: 0 10px;
  position: relative;
}
.kariez-breadcrumb-wrapper .breadcrumb .raquo:after {
  content: "";
  height: 100%;
  width: 3px;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(15deg);
}
.kariez-breadcrumb-wrapper .breadcrumb a {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}
.kariez-breadcrumb-wrapper .container {
  z-index: 1;
}
.kariez-breadcrumb-wrapper .entry-breadcrumb span {
  font-size: 18px;
  font-weight: 400;
}
.kariez-breadcrumb-wrapper .entry-breadcrumb span a {
  color: #FFFFFF;
  font-weight: 400;
}
.kariez-breadcrumb-wrapper .entry-breadcrumb span a:hover {
  color: var(--rt-primary-color);
}
.kariez-breadcrumb-wrapper .entry-breadcrumb .current-item {
  color: #FFFFFF;
  font-weight: 700;
}
.kariez-breadcrumb-wrapper .entry-breadcrumb .dvdr {
  padding: 0 10px;
  position: relative;
}
.kariez-breadcrumb-wrapper .entry-breadcrumb .dvdr:after {
  content: "";
  height: 100%;
  width: 1.5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  right: 7px;
  transform: rotate(15deg);
}
.kariez-breadcrumb-wrapper .entry-title {
  color: var(--rt-title-color);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.kariez-breadcrumb-wrapper .align-items-center .entry-breadcrumb {
  text-align: center;
}
.kariez-breadcrumb-wrapper .align-items-end .entry-breadcrumb {
  text-align: right;
}

.has-trheader .kariez-breadcrumb-wrapper {
  padding-top: 260px;
}
@media (max-width: 1024px) {
  .has-trheader .kariez-breadcrumb-wrapper {
    padding: 200px 0 100px;
  }
}
@media (max-width: 991px) {
  .has-trheader .kariez-breadcrumb-wrapper {
    padding: 100px 0;
  }
}
.has-trheader .kariez-breadcrumb-wrapper.has-bg {
  padding-bottom: 170px;
}
.has-trheader .kariez-breadcrumb-wrapper.has-color {
  padding-bottom: 120px;
}

.has-sticky-header .kariez-breadcrumb-wrapper {
  padding-top: 260px;
}
@media (max-width: 1024px) {
  .has-sticky-header .kariez-breadcrumb-wrapper {
    padding: 200px 0 100px;
  }
}
@media (max-width: 991px) {
  .has-sticky-header .kariez-breadcrumb-wrapper {
    padding: 100px 0;
  }
}
.has-sticky-header .kariez-breadcrumb-wrapper.has-bg {
  padding-bottom: 150px;
}
.has-sticky-header .kariez-breadcrumb-wrapper.has-color {
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .has-sticky-header .kariez-breadcrumb-wrapper.has-bg {
    padding-bottom: 80px;
  }
  .has-sticky-header .kariez-breadcrumb-wrapper.has-color {
    padding-bottom: 80px;
  }
}

.has-sticky-header.has-top-bar .kariez-breadcrumb-wrapper {
  padding-top: 260px;
}
@media (max-width: 1024px) {
  .has-sticky-header.has-top-bar .kariez-breadcrumb-wrapper {
    padding: 200px 0 100px;
  }
}
@media (max-width: 991px) {
  .has-sticky-header.has-top-bar .kariez-breadcrumb-wrapper {
    padding: 100px 0;
  }
}

.kariez-breadcrumb-wrapper,
.has-trheader .kariez-breadcrumb-wrapper {
  text-align: center;
}
.kariez-breadcrumb-wrapper .breadcrumb a,
.has-trheader .kariez-breadcrumb-wrapper .breadcrumb a {
  color: #FFFFFF;
}
.kariez-breadcrumb-wrapper .breadcrumb a:hover,
.has-trheader .kariez-breadcrumb-wrapper .breadcrumb a:hover {
  color: var(--rt-primary-color);
}
.kariez-breadcrumb-wrapper .breadcrumb li.active .title,
.has-trheader .kariez-breadcrumb-wrapper .breadcrumb li.active .title {
  color: #dcdcdc;
  font-weight: 400;
}

.banner-light .entry-title {
  color: #FFFFFF;
}
.banner-light .entry-breadcrumb span a {
  color: #FFFFFF;
}
.banner-light .entry-breadcrumb .dvdr {
  color: #FFFFFF;
}

@media (min-width: 1140px) {
  .layout-left-sidebar .kariez-widget-area {
    padding-right: 40px;
  }
}

@media (min-width: 1140px) {
  .layout-right-sidebar .kariez-widget-area {
    padding-left: 40px;
  }
}

@media (max-width: 1140px) {
  .layout-right-sidebar .kariez-widget-area {
    padding-top: 60px;
  }
  .layout-left-sidebar .kariez-widget-area {
    padding-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  body .sidebar-sticky {
    align-self: flex-start;
    position: sticky;
    top: 32px;
  }
  body .sidebar-sticky-100 {
    align-self: flex-start;
    position: sticky;
    top: 100px;
    transition: all 300ms linear;
  }
  body .sidebar-sticky-200 {
    align-self: flex-start;
    position: sticky;
    top: 200px;
  }
}
.kariez-widget-area .widget:last-child {
  margin-bottom: 0;
}
.kariez-widget-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kariez-widget-area ul > li {
  position: relative;
  margin-bottom: 5px;
  font-size: 16px;
}
.kariez-widget-area ul > li:last-child {
  margin-bottom: 0;
}
.kariez-widget-area ul > li > a {
  position: relative;
}
.kariez-widget-area ul.sub-menu {
  margin-top: 5px;
}
.kariez-widget-area .widget-title, .kariez-widget-area .wp-block-heading {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}
.kariez-widget-area .rt-sidebar, .kariez-widget-area .rt-single-sidebar {
  border: 1px solid #E5E5E5;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 33px;
  border-radius: 10px;
}
.kariez-widget-area .rt-sidebar ul.children, .kariez-widget-area .rt-single-sidebar ul.children {
  margin-top: 10px;
}
.kariez-widget-area .wp-block-categories > li,
.kariez-widget-area .wp-block-archives > li,
.kariez-widget-area .wp-block-page-list > li,
.kariez-widget-area .widget_archive ul > li,
.kariez-widget-area .widget_categories ul > li {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
.kariez-widget-area .wp-block-categories > li:after,
.kariez-widget-area .wp-block-archives > li:after,
.kariez-widget-area .wp-block-page-list > li:after,
.kariez-widget-area .widget_archive ul > li:after,
.kariez-widget-area .widget_categories ul > li:after {
  content: "\e834";
  position: absolute;
  font-family: rt-fontello;
  right: 12px;
  top: 0;
  color: var(--rt-title-color);
  transition: all 320ms ease-in-out;
}
.kariez-widget-area .wp-block-categories > li:before,
.kariez-widget-area .wp-block-archives > li:before,
.kariez-widget-area .wp-block-page-list > li:before,
.kariez-widget-area .widget_archive ul > li:before,
.kariez-widget-area .widget_categories ul > li:before {
  content: "";
  height: 1px;
  width: 0;
  border-bottom: 1px solid var(--rt-title-color);
  position: absolute;
  left: 100%;
  bottom: -1px;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.kariez-widget-area .wp-block-categories > li > a,
.kariez-widget-area .wp-block-archives > li > a,
.kariez-widget-area .wp-block-page-list > li > a,
.kariez-widget-area .widget_archive ul > li > a,
.kariez-widget-area .widget_categories ul > li > a {
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-title-color);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.kariez-widget-area .wp-block-categories > li > a:hover,
.kariez-widget-area .wp-block-archives > li > a:hover,
.kariez-widget-area .wp-block-page-list > li > a:hover,
.kariez-widget-area .widget_archive ul > li > a:hover,
.kariez-widget-area .widget_categories ul > li > a:hover {
  color: var(--rt-primary-color);
}
.kariez-widget-area .wp-block-categories > li:hover:before,
.kariez-widget-area .wp-block-archives > li:hover:before,
.kariez-widget-area .wp-block-page-list > li:hover:before,
.kariez-widget-area .widget_archive ul > li:hover:before,
.kariez-widget-area .widget_categories ul > li:hover:before {
  width: 100%;
  visibility: visible;
  opacity: 1;
  transition: width 0.5s ease;
  left: 0%;
}
.kariez-widget-area .wp-block-categories > li:last-child,
.kariez-widget-area .wp-block-archives > li:last-child,
.kariez-widget-area .wp-block-page-list > li:last-child,
.kariez-widget-area .widget_archive ul > li:last-child,
.kariez-widget-area .widget_categories ul > li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.kariez-widget-area .wp-block-categories > li:last-child:before,
.kariez-widget-area .wp-block-archives > li:last-child:before,
.kariez-widget-area .wp-block-page-list > li:last-child:before,
.kariez-widget-area .widget_archive ul > li:last-child:before,
.kariez-widget-area .widget_categories ul > li:last-child:before {
  display: none;
}
.kariez-widget-area .wp-block-categories.category-layout-2 li a,
.kariez-widget-area .wp-block-archives.category-layout-2 li a,
.kariez-widget-area .widget_archive.category-layout-2 ul li a,
.kariez-widget-area .widget_categories.category-layout-2 ul li a {
  color: var(--rt-meta-color);
}
.kariez-widget-area .wp-block-categories.category-layout-2 li a:before,
.kariez-widget-area .wp-block-archives.category-layout-2 li a:before,
.kariez-widget-area .widget_archive.category-layout-2 ul li a:before,
.kariez-widget-area .widget_categories.category-layout-2 ul li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  opacity: 1;
  visibility: visible;
  border-radius: 50%;
  background-color: var(--rt-border-color);
  transition: all 520ms ease;
}
.kariez-widget-area .wp-block-categories.category-layout-2 li a:hover,
.kariez-widget-area .wp-block-archives.category-layout-2 li a:hover,
.kariez-widget-area .widget_archive.category-layout-2 ul li a:hover,
.kariez-widget-area .widget_categories.category-layout-2 ul li a:hover {
  padding-left: 22px;
  color: var(--rt-primary-color);
}
.kariez-widget-area .wp-block-categories.category-layout-2 li a:hover:before,
.kariez-widget-area .wp-block-archives.category-layout-2 li a:hover:before,
.kariez-widget-area .widget_archive.category-layout-2 ul li a:hover:before,
.kariez-widget-area .widget_categories.category-layout-2 ul li a:hover:before {
  background-color: var(--rt-primary-color);
}
.kariez-widget-area .widget_nav_menu ul > li,
.kariez-widget-area .widget_pages ul > li,
.kariez-widget-area .widget_meta ul > li {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
.kariez-widget-area .widget_nav_menu ul > li:after,
.kariez-widget-area .widget_pages ul > li:after,
.kariez-widget-area .widget_meta ul > li:after {
  content: "\e834";
  position: absolute;
  font-family: rt-fontello;
  right: 12px;
  top: 0;
  color: var(--rt-title-color);
  transition: all 320ms ease-in-out;
}
.kariez-widget-area .widget_nav_menu ul > li:before,
.kariez-widget-area .widget_pages ul > li:before,
.kariez-widget-area .widget_meta ul > li:before {
  content: "";
  height: 1px;
  width: 0;
  border-bottom: 1px solid var(--rt-title-color);
  position: absolute;
  left: 100%;
  bottom: -1px;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.kariez-widget-area .widget_nav_menu ul > li > a,
.kariez-widget-area .widget_pages ul > li > a,
.kariez-widget-area .widget_meta ul > li > a {
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-title-color);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.kariez-widget-area .widget_nav_menu ul > li > a:hover,
.kariez-widget-area .widget_pages ul > li > a:hover,
.kariez-widget-area .widget_meta ul > li > a:hover {
  color: var(--rt-primary-color);
}
.kariez-widget-area .widget_nav_menu ul > li:hover:before,
.kariez-widget-area .widget_pages ul > li:hover:before,
.kariez-widget-area .widget_meta ul > li:hover:before {
  width: 100%;
  visibility: visible;
  opacity: 1;
  transition: width 0.5s ease;
  left: 0%;
}
.kariez-widget-area .widget_nav_menu ul > li:last-child,
.kariez-widget-area .widget_pages ul > li:last-child,
.kariez-widget-area .widget_meta ul > li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.kariez-widget-area .widget_nav_menu ul > li:last-child:before,
.kariez-widget-area .widget_pages ul > li:last-child:before,
.kariez-widget-area .widget_meta ul > li:last-child:before {
  display: none;
}
.kariez-widget-area .wp-block-tag-cloud, .kariez-widget-area .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.kariez-widget-area .wp-block-tag-cloud a, .kariez-widget-area .tagcloud a {
  color: var(--rt-title-color);
  background-color: transparent;
  border: 1px solid var(--rt-border-color);
  border-radius: 5px;
  display: inline-block;
  font-size: 14px !important;
  font-weight: 500;
  margin: 0;
  padding: 10px;
  line-height: 1;
}
.kariez-widget-area .wp-block-tag-cloud a:hover, .kariez-widget-area .tagcloud a:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-title-color);
  border-color: var(--rt-primary-color);
}
.kariez-widget-area .widget_media_image {
  border-radius: 10px;
}
.kariez-widget-area .widget_media_image .wp-block-image {
  margin-bottom: 0 !important;
}
.kariez-widget-area .widget_media_image .wp-block-image img {
  border-radius: 10px;
}
.kariez-widget-area .widget_text .textwidget img {
  border-radius: 10px;
}
.kariez-widget-area .rt-blog-post {
  margin-bottom: 30px;
}
.kariez-widget-area .rt-blog-post:last-child {
  margin-bottom: 0;
}
.kariez-widget-area .rt-blog-post .post-thumbnail {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0;
}
.kariez-widget-area .rt-blog-post .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.kariez-widget-area .rt-blog-post:hover img {
  transform: scale(1.09);
}
.kariez-widget-area .rt-blog-post ul li {
  font-size: 15px;
  border: none;
  margin: 0;
  padding: 0;
}
.kariez-widget-area .rt-blog-post .rt-post-meta {
  padding-top: 20px;
}
.kariez-widget-area .rt-blog-post .entry-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kariez-widget-area .rt-blog-post .entry-title a {
  color: var(--rt-title-color);
}
.kariez-widget-area .rt-blog-post .entry-content {
  padding-top: 12px;
}
.kariez-widget-area .rt-blog-post .post-thumbnail-wrap .posted-on {
  display: none;
}
.kariez-widget-area .blog-list-style .rt-post-meta {
  padding-top: 0;
}
.kariez-widget-area .blog-list-style .article-inner-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.kariez-widget-area .blog-list-style .post-thumbnail-wrap {
  width: 80px;
}
.kariez-widget-area .blog-list-style .entry-wrapper {
  flex: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 30px;
  overflow: hidden;
}

.widget a {
  color: var(--rt-body-color);
}

.widget ul, .widget ol {
  padding-left: 0;
}
.widget ul ul, .widget ul ol, .widget ol ul, .widget ol ol {
  padding-left: 20px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
  margin-left: -10px;
  margin-right: -10px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 0 5px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

@media (max-width: 992px) {
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item {
    max-width: 45.1%;
  }
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 22%;
  }
}
@media (max-width: 550px) {
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 45.1%;
  }
}
/*------------------------
  Sidebar Widget
-------------------------*/
/*------ List ----------*/
.widget_block .wp-block-group__inner-container > ul,
.widget > ul {
  margin-top: 0;
}

.widget_block .wp-block-group__inner-container > ul > li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
  line-height: 1.6;
}

.wp-block-latest-posts__featured-image img {
  float: left;
  width: 100px;
  margin-right: 12px;
  border-radius: 8px;
  display: inline-block;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  color: var(--rt-body-color);
  line-height: 1.2;
  font-weight: 500;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 16px;
}

ol.wp-block-latest-comments {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
}

/*------ Recent Comments ------*/
.widget_recent_comments ul li {
  margin-bottom: 12px;
}
.widget_recent_comments ul li a {
  border-bottom: none;
  padding: 0;
}
.widget_recent_comments ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/*---- RSS ------*/
.widget_rss .widget-heading img {
  margin-top: -3px;
}
.widget_rss ul li {
  margin-bottom: 12px;
}
.widget_rss ul li .rsswidget {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}
.widget_rss ul li:last-child {
  margin-bottom: 0;
}

/*--------- Text Widget ---------*/
.widget_text .widget-heading {
  margin-bottom: 15px;
}

.widget_text select {
  margin-top: 0;
}

/*------ Select ----------*/
.widget select {
  background-color: #FFFFFF;
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
  padding: 16px 13px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-size: 10px;
  background-image: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/images/select-arrow.svg) !important;
  background-repeat: no-repeat;
  background-position: 95%;
  transition: all ease 0.31s;
}

/*------ Calender ----------*/
.wp-calendar-table caption {
  caption-side: top;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1;
  text-align: center;
  background-color: var(--rt-gray10);
}
.wp-calendar-table td {
  padding: 0;
  text-align: center;
  line-height: 32px;
}
.wp-calendar-table td a {
  font-weight: 600;
}
.wp-calendar-table td#today, .wp-calendar-table a {
  color: #fff;
  background-color: var(--rt-primary-color);
}

.widget_kariez_about .about-logo a {
  font-size: 36px;
  font-weight: 600;
}

.widget_kariez_contact ul {
  padding: 0 30px;
}
.widget_kariez_contact ul li.phone-no .phone-box {
  gap: 10px;
  display: flex;
}
.widget_kariez_contact ul li.phone-no .phone-box .phone-icon {
  height: 50px;
  width: 50px;
  background-color: var(--rt-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.widget_kariez_contact ul li.phone-no .phone-box .phone-icon::before {
  content: "";
  height: 60px;
  width: 60px;
  background-color: rgb(255, 204, 0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation: pulse-border 2000ms ease-out infinite;
  z-index: -1;
}
.widget_kariez_contact ul li.phone-no .phone-box .phone-icon::after {
  content: "";
  height: 70px;
  width: 70px;
  background-color: rgb(255, 204, 0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation: pulse-border 2000ms ease-out infinite;
  z-index: -2;
}
.widget_kariez_contact ul li.phone-no .phone-box .phone-icon i {
  color: var(--rt-title-color);
}
.widget_kariez_contact ul li.phone-no .phone-box .content {
  flex: 1;
}
.widget_kariez_contact ul li.phone-no .phone-box .content a {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.widget_kariez_contact ul li.phone-no .phone-box .content a:hover {
  color: var(--rt-primary-color);
}
.widget_kariez_contact ul li .website-box a {
  font-weight: 500;
  font-size: 20px;
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.widget_kariez_contact ul li .website-box a:hover {
  color: var(--rt-primary-color);
}
.widget_kariez_contact ul li .address-box .rt-sm-footer-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 27px;
  color: var(--rt-title-color);
  text-transform: capitalize;
}
.widget_kariez_contact li [class*=rticon-] {
  flex: 0 0 30px;
  padding-top: 4px;
  justify-content: start;
}
.widget_kariez_contact li svg {
  fill: var(--rt-primary-color);
}
.widget_kariez_contact li p {
  margin: 0;
}

.rt-sm-footer-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
}

.download-widget .rt-download .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 6px;
  padding: 20px 30px;
  color: var(--rt-button-text-color);
  background-color: var(--rt-tertiary-color);
}
.download-widget .rt-download .link:hover .icon i {
  animation: rtDown 2s linear infinite;
}
.download-widget .rt-download .text {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.download-widget .rt-download i {
  display: block;
  font-size: 24px;
}

/* Site Footer
***************************/
.site-footer {
  position: relative;
  z-index: 1;
}
.site-footer .footer-container {
  position: relative;
  z-index: 1;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sidebar ul li {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.footer-sidebar ul li:last-child {
  padding-bottom: 0;
}

/* Footer Menu Wrapper
***************************/
.site-footer .footer-menu-wrapper {
  border-top: 1px solid var(--rt-gray20);
}
.kariez-footer-1 .site-footer .footer-menu-wrapper .align-default {
  justify-content: center;
}
.site-footer .kariez-navigation ul > li > ul.depth_0 {
  bottom: 100%;
  top: auto;
}
.site-footer .kariez-navigation ul li ul li ul {
  left: 100%;
  top: auto;
  bottom: 0;
}

/* Footer Widget wrapper
***************************/
.site-footer {
  overflow: hidden;
  z-index: 2;
}

.footer-widgets-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 15px;
}
.footer-widgets-wrapper .footer-widgets {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.footer-widgets-wrapper .footer-widgets .widget-title, .footer-widgets-wrapper .footer-widgets .widgettitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 15px;
}
.footer-widgets-wrapper .footer-widgets > .widget {
  flex-grow: 25;
}
.footer-widgets-wrapper .footer-widgets ul {
  list-style: none;
  padding-left: 0;
}
.footer-widgets-wrapper .footer-widgets ul ul {
  padding-left: 20px;
}

.site-footer .footer-shortcode {
  margin-top: 24px;
}
.site-footer .footer-widget-logo img {
  margin-bottom: 15px;
}
.site-footer .footer-social:not(:has(*)) {
  background: red;
  padding: 15px;
}
.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.site-footer .footer-social a {
  height: 35px;
  width: 35px;
  border: 1px solid var(--rt-title-color);
  border-radius: 100%;
  background-color: transparent;
  color: var(--rt-title-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.site-footer .footer-social a svg {
  fill: var(--rt-title-color);
}
.site-footer .footer-social a:hover {
  background-color: var(--rt-title-color);
}
.site-footer .footer-social a:hover svg {
  fill: var(--rt-primary-color);
}
.site-footer .footer-social svg {
  width: 14px;
  height: 14px;
}
.site-footer .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.site-footer .tagcloud a {
  color: var(--rt-title-color);
  background-color: transparent;
  border: 1px solid var(--rt-border-color);
  display: inline-block;
  font-size: 14px !important;
  font-weight: 500;
  margin: 0;
  padding: 10px;
  line-height: 1;
  border-radius: 5px;
}
.site-footer .tagcloud a:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-title-color);
  border-color: var(--rt-primary-color);
}
.site-footer .widget_nav_menu ul li,
.site-footer .widget_archive ul li,
.site-footer .widget_categories ul li,
.site-footer .widget_pages ul li,
.site-footer .widget_meta ul li {
  padding-bottom: 0;
  position: relative;
}
.site-footer .widget_nav_menu ul li:after,
.site-footer .widget_archive ul li:after,
.site-footer .widget_categories ul li:after,
.site-footer .widget_pages ul li:after,
.site-footer .widget_meta ul li:after {
  background-color: #7e7e7e;
  position: absolute;
  content: "";
  top: 18px;
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 100%;
}
.site-footer .widget_nav_menu ul li a,
.site-footer .widget_archive ul li a,
.site-footer .widget_categories ul li a,
.site-footer .widget_pages ul li a,
.site-footer .widget_meta ul li a {
  position: relative;
  font-size: 18px;
  color: #7e7e7e;
  margin-left: 15px;
  line-height: 40px;
  transition: all 0.4s ease;
  display: inline-block;
}
.site-footer .widget_nav_menu ul li a:before,
.site-footer .widget_archive ul li a:before,
.site-footer .widget_categories ul li a:before,
.site-footer .widget_pages ul li a:before,
.site-footer .widget_meta ul li a:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--rt-title-color);
  bottom: 10px;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  pointer-events: none;
  left: 0;
}
.site-footer .widget_nav_menu ul li a:hover,
.site-footer .widget_archive ul li a:hover,
.site-footer .widget_categories ul li a:hover,
.site-footer .widget_pages ul li a:hover,
.site-footer .widget_meta ul li a:hover {
  color: var(--rt-title-color);
}
.site-footer .widget_nav_menu ul li a:hover:before,
.site-footer .widget_archive ul li a:hover:before,
.site-footer .widget_categories ul li a:hover:before,
.site-footer .widget_pages ul li a:hover:before,
.site-footer .widget_meta ul li a:hover:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0% 50%;
  transition-timing-function: ease;
}

/* Footer Copyright
***************************/
.footer-copyright-wrapper {
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--rt-body-color);
  font-size: 16px;
}
.footer-copyright-wrapper .copyright-text {
  text-align: center;
  font-size: 15px;
}
.footer-copyright-wrapper .copyright-text a {
  color: var(--rt-title-color);
  font-weight: 500;
}
.footer-copyright-wrapper .copyright-text a:hover {
  color: var(--rt-primary-color);
}
.footer-copyright-wrapper .social-icon {
  align-items: center;
}
.footer-copyright-wrapper .social-icon a {
  height: 38px;
  width: 38px;
  border-radius: 38px;
  background-color: transparent;
  color: var(--rt-button-text-color);
  border: 1px solid var(--rt-title-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-copyright-wrapper .social-icon a::after {
  content: "";
  transform: scale(0);
  background-color: var(--rt-title-color);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: 0.4s;
  border-radius: 100%;
}
.footer-copyright-wrapper .social-icon a svg {
  fill: var(--rt-title-color);
}
.footer-copyright-wrapper .social-icon a:hover::after {
  transform: scale(0.9);
}
.footer-copyright-wrapper .social-icon a:hover svg {
  fill: var(--rt-primary-color);
}
.footer-copyright-wrapper .social-icon svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 1400px) {
  .has-sticky-footer .site-footer {
    position: sticky;
    bottom: 0;
    top: 0;
    z-index: 0;
  }
  .has-sticky-footer .site-content {
    position: relative;
    background-color: var(--rt-body-bg-color);
    z-index: 1;
  }
}
.kariez-footer-1 .footer-copyright-wrapper {
  border-top: 1px solid #d9d9d9;
}

.kariez-search-form .search-box {
  position: relative;
  overflow: hidden;
}
.kariez-search-form .search-box input {
  font-size: 16px;
  font-weight: 500;
  height: 60px;
  padding: 0 55px 0 20px;
  border: none;
  border-radius: 5px;
  width: 100%;
  background-color: #F8F8F8;
}
.kariez-search-form .search-box button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  border-radius: 0 5px 5px 0;
  color: var(--rt-meta-color);
  background-color: var(--rt-primary-color);
  padding: 0 20px;
}
.kariez-search-form .search-box button:hover {
  background-color: var(--rt-title-color);
}
.kariez-search-form .search-box button:hover svg {
  fill: var(--rt-primary-color);
}
.kariez-search-form .search-box button svg {
  fill: var(--rt-title-color);
  width: 20px;
  height: 20px;
  margin-top: 1.5px;
}
.kariez-search-form .search-box button .btn-label {
  display: none;
}

.comments-area {
  margin-top: 50px;
}
.comments-area .comment-list-wrapper {
  margin-top: 50px;
  margin-bottom: 45px;
}
.comments-area .comments-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}
.comments-area dd {
  margin-bottom: 15px;
}
.comments-area .comments-content ul,
.comments-area .comments-content ol {
  padding-left: 15px;
}
.comments-area .comment-content ul,
.comments-area .comment-content ol {
  padding-left: 15px;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.comment-author .vcard {
  flex: 0 0 100px;
}
@media (max-width: 767px) {
  .comment-author .vcard {
    flex: 0 0 50px;
  }
}
.comment-author .vcard img {
  border-radius: 5px;
}
.comment-author .author-info {
  margin-top: -4px;
  flex: auto;
}
.comment-author .author-info cite {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
.comment-author .author-info cite a {
  color: var(--rt-title-color);
}
.comment-author .author-info cite a:hover {
  color: var(--rt-primary-color);
}
.comment-author .comment-meta {
  font-size: 15px;
  margin-bottom: 5px;
}
.comment-author .comment-meta a {
  color: var(--rt-title-color);
}
.comment-author .comment-meta .comment-edit-link {
  color: var(--rt-primary-color);
}

.comment-metadata {
  margin-left: 50px;
}

.comment-reply-link {
  padding: 0 8px;
  height: 30px;
  color: var(--rt-primary-color);
  border: 1px solid var(--rt-title-color);
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .comment-reply-link {
    position: relative;
    margin-top: 12px;
  }
}
.comment-reply-link svg {
  fill: var(--rt-title-color);
}
.comment-reply-link:hover {
  background: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.comment-reply-link:hover svg {
  fill: var(--rt-button-color);
}

#cancel-comment-reply-link {
  padding-left: 12px;
}

.comment-list li {
  font-size: 16px;
  position: relative;
}
.comment-list .comment-body {
  margin-bottom: 35px;
}
.comment-list > li ol,
.comment-list > li ul {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.comment-list li ol.children {
  padding-left: 30px;
  margin: 0;
  list-style: none;
  margin-top: 25px;
}
.comment-list li.comment:last-child {
  border-bottom: 0 solid;
  padding-bottom: 0;
  margin-bottom: 0;
}

.comment-respond .comment-reply-title {
  font-size: 30px;
  font-weight: 600;
}
.comment-respond .comment-notes, .comment-respond .logged-in-as {
  color: var(--rt-title-color);
  font-size: 16px;
}
.comment-respond .comment-notes a, .comment-respond .logged-in-as a {
  color: var(--rt-title-color);
}
.comment-respond .comment-notes a:hover, .comment-respond .logged-in-as a:hover {
  color: var(--rt-primary-color);
}

@media (min-width: 768px) {
  .comment-form .comment-form-author {
    width: 50%;
    float: left;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .comment-form .comment-form-email {
    width: 50%;
    padding-left: 12px;
  }
}
.comment-form label {
  color: var(--rt-title-color);
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}
.comment-form input,
.comment-form textarea {
  border: 0;
  background-color: #F5F5F5;
  width: 100%;
  padding: 14px 15px;
  line-height: 1.3;
  color: #878787;
  border-radius: 10px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  box-shadow: unset;
  border: 1px solid var(--rt-primary-color);
}
.comment-form textarea {
  resize: vertical;
}
.comment-form input[type=submit] {
  width: auto;
  background: var(--rt-primary-color);
  color: #281D00;
  border: none;
  padding: 16px 26px;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 30px;
  transition: all 520ms ease;
}
.comment-form input[type=submit]:hover {
  color: var(--rt-button-color);
  background-color: var(--rt-title-color);
}
.comment-form .form-submit {
  margin-bottom: 0;
}
.comment-form .required {
  color: #FF0000;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
.comment-form .comment-form-author input,
.comment-form .comment-form-email input,
.comment-form .comment-form-url input {
  flex: 1;
}

.comment-notes {
  font-size: 90%;
  margin-bottom: 30px;
}

p.comment-form-cookies-consent {
  display: flex;
  margin-bottom: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}
p.comment-form-cookies-consent input {
  width: auto;
}
p.comment-form-cookies-consent * {
  margin: 0;
}

.comment-navigation {
  margin-top: 26px;
  border-top: 1px solid var(--rt-border-color);
  padding-top: 30px;
}
.comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.comment-navigation .nav-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--rt-title-color);
  border: 1px solid var(--rt-gray20);
  padding: 6px 15px;
}
.comment-navigation .nav-links a:hover {
  background: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.comment-navigation .nav-links a:hover svg {
  fill: var(--rt-button-color);
}

/* Blog Card CSS
===============================*/
.layout-left-sidebar #sidebar {
  order: -1;
}

.rt-post-meta {
  color: var(--rt-body-color);
}
.rt-post-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.rt-post-meta ul li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  text-transform: capitalize;
}
.rt-post-meta ul li .bypostauthor {
  margin-right: 4px;
}
.rt-post-meta ul li.edit-link {
  opacity: 0;
  visibility: hidden;
}
.rt-post-meta ul li i {
  padding-right: 5px;
}
article:hover .rt-post-meta ul li.edit-link {
  opacity: 1;
  visibility: visible;
}
.rt-post-meta ul li a {
  color: var(--rt-body-color);
  padding-bottom: 0;
}
.rt-post-meta ul li a:hover {
  color: var(--rt-primary-color);
}
.meta-style-default .rt-post-meta ul {
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: block;
}
.meta-style-default .rt-post-meta ul li {
  display: inline;
}
.meta-style-default .rt-post-meta ul li:not(:last-child) {
  margin-right: 15px;
}
.meta-style-default .rt-post-meta ul li:not(:last-child):after {
  content: "-";
  color: #484848;
  margin-left: 15px;
}
.meta-style-border .rt-post-meta ul {
  gap: 5px;
}
.meta-style-border .rt-post-meta ul li:not(.category, .tag) {
  color: var(--rt-title-color);
  border: 1px solid var(--rt-border-color);
  min-height: 32px;
  padding: 0 12px;
}
.meta-style-border .rt-post-meta ul li:not(.category, .tag) a:hover {
  color: var(--rt-title-color);
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) {
  padding: 0;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .tag-links,
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .sp {
  display: none;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) a {
  color: var(--rt-title-color);
  border: 1px solid var(--rt-border-color);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
}
.meta-style-pipe .rt-post-meta li:not(:last-child)::after {
  content: " | ";
  transform: scaleY(0.9);
  margin: 0 1px 0 10px;
}
.meta-style-dash2 .rt-post-meta li:not(:last-child)::after {
  content: " - ";
  transform: translateX(5px);
}
.meta-style-dash-bg .rt-post-meta ul {
  gap: 6px;
}
.meta-style-dash-bg .rt-post-meta li {
  padding: 0;
}
.meta-style-dash-bg .rt-post-meta .tag-links,
.meta-style-dash-bg .rt-post-meta .category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag) {
  background: var(--rt-gray20);
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  margin: 0;
  transition: all 520ms ease;
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag) a:hover {
  color: var(--rt-title-color);
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) .sp {
  display: none;
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a {
  display: inline-block;
  height: 100%;
  padding: 7px 12px;
  line-height: 1;
  position: relative;
  background-color: var(--rt-gray10);
  border-radius: 6px;
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag)::before {
  content: none;
}

.widget .rt-post-meta {
  margin-bottom: 6px;
}

.separate-meta {
  margin-bottom: 10px;
}
.separate-meta a {
  background-color: var(--rt-primary-color);
  color: var(--rt-title-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 4px 4px 0;
  line-height: 1;
  border-radius: 5px;
}
.separate-meta a:hover {
  background: var(--rt-title-color);
  color: var(--rt-primary-color);
}
.separate-meta .sp {
  display: none;
}
.above-meta-style-border .separate-meta a {
  height: 100%;
  border: 1px solid var(--rt-primary-color);
  padding: 4px 10px;
  line-height: 1.2;
  background: #FFFFFF;
}
/* Post Block
===================================*/
.kariez-post-card .article-inner-wrapper {
  transition: all 520ms ease;
}
.kariez-post-card .article-inner-wrapper .entry-content {
  margin-top: 15px;
}
.kariez-post-card .entry-title {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 12px;
  text-transform: capitalize;
  transition: all 0.4s ease-out;
  font-weight: 600;
}
.kariez-post-card .entry-title a {
  color: var(--rt-title-color);
  transition: all 0.4s ease-out;
  color: inherit;
  display: inline;
  padding-bottom: 0;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  line-height: 1;
}
.kariez-post-card .entry-title a:hover {
  background-size: 100% 2px;
  transition: all 0.4s ease-out;
}
.kariez-post-card .entry-footer {
  margin-top: 22px;
}
.kariez-post-card .entry-footer .btn {
  width: auto;
}
.kariez-post-card:hover .article-inner-wrapper .post-thumbnail img {
  transform: scale(1.1);
}

.post-thumbnail-wrap {
  position: relative;
}
.post-thumbnail-wrap .post-thumbnail {
  overflow: hidden;
  margin-bottom: 0;
  line-height: 0;
  border-radius: 10px;
}
.post-thumbnail-wrap .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
  width: 100%;
  border-radius: 10px;
}
.post-thumbnail-wrap .swiper-slide {
  line-height: 0;
}

.blog-default .entry-wrapper {
  padding: 22px 0 0 0;
}
.blog-default .article-inner-wrapper {
  position: relative;
  overflow: hidden;
}
.blog-default .rt-post-meta ul li:not(:last-child) {
  margin-right: 15px;
}
.blog-default .rt-post-meta ul li:not(:last-child):after {
  content: "-";
  color: #484848;
  margin-left: 15px;
}

.blog-list .entry-wrapper {
  padding: 22px 0 0 0;
}
.blog-list .entry-wrapper .entry-title {
  font-size: 30px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .blog-list .entry-wrapper .entry-title {
    font-size: 40px;
    line-height: 55px;
  }
}
.blog-list .rt-button {
  margin-top: 20px;
}

.blog-list-2 .entry-wrapper {
  flex: 1 0 50%;
}
.blog-list-2 .entry-wrapper .entry-title {
  font-size: 30px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .blog-list-2 .entry-wrapper .entry-title {
    font-size: 40px;
    line-height: 55px;
  }
}
.blog-list-2 .article-inner-wrapper {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .blog-list-2 .article-inner-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .blog-list-2 .post-thumbnail-wrap .post-thumbnail {
    margin-bottom: 30px !important;
  }
  .blog-list-2 .post-thumbnail-wrap .post-thumbnail img {
    width: 100%;
  }
}

.blog-grid-2 .post-thumbnail-wrap {
  margin-bottom: 20px;
}
.blog-grid-2 .post-thumbnail-wrap .posted-on {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 15px;
  color: #FFFFFF;
  text-align: center;
  width: 65px;
  height: 65px;
  font-size: 14px;
  line-height: 1.1;
}
.blog-grid-2 .post-thumbnail-wrap .posted-on .day {
  display: block;
  font-size: 26px;
  font-weight: 700;
}
.blog-grid-2 .rt-post-meta {
  margin-bottom: 12px;
}
.blog-grid-2 .rt-post-meta ul li {
  display: inline-flex;
}

@media (max-width: 1199px) {
  .blog-grid-2.is-above-meta .post-thumbnail {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.blog-grid-3 .article-inner-wrapper {
  position: relative;
  overflow: hidden;
}
.blog-grid-3 .article-inner-wrapper:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}
.blog-grid-3 .entry-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px 26px;
  color: #FFFFFF;
  z-index: 1;
}
.blog-grid-3 .entry-wrapper .entry-title a {
  color: #FFFFFF;
}
.blog-grid-3 .entry-wrapper .entry-title a:hover {
  color: var(--rt-primary-color);
}
.blog-grid-3 .rt-post-meta {
  color: #FFFFFF;
}
.blog-grid-3 .rt-post-meta ul li:after {
  color: #fff !important;
}
.blog-grid-3 .rt-post-meta a {
  color: #FFFFFF;
}
.blog-grid-3 .rt-post-meta a:hover {
  color: var(--rt-primary-color);
}

.blog-grid-4 .is-image .post-thumbnail-wrap {
  margin-bottom: 34px;
}
.blog-grid-4 .is-image .separate-meta {
  position: absolute;
  left: 24px;
  bottom: -24px;
  z-index: 1;
}
.blog-grid-4.no-above-meta .entry-wrapper {
  margin-top: 20px;
}

.sticky .article-inner-wrapper {
  background-color: rgba(var(--rt-primary-rgb), 0.08);
  border-color: var(--rt-primary-color);
  padding: 0 20px 45px 20px;
  border-radius: 10px;
}

.blog-grid-2.sticky .entry-wrapper {
  padding: 0 24px 24px;
}

.blog-grid-4.sticky .entry-wrapper {
  padding: 0 24px 24px;
}

.pagination-list {
  list-style: none;
  margin: 90px 0 0;
  padding: 0;
  display: flex;
}
.pagination-list li i {
  font-size: 15px;
}
.pagination-list li:first-child i {
  transform: rotate(-180deg);
}
.pagination-list li.active a {
  background-color: var(--rt-primary-color);
  color: var(--rt-title-color);
}
.pagination-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 20px;
  font-weight: 500;
  color: var(--rt-primary-color);
  background-color: var(--rt-title-color);
  border-radius: 5px;
}
.pagination-list a:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-title-color);
}

.pagination-area-2 .pagination-list li a {
  border-radius: 50%;
}
.pagination-area-2 .pagination-list li a:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.pagination-area-2 .pagination-list li.active a {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}

.single-content .kariez-post-card .entry-content {
  margin-bottom: 40px;
}
.single-content .kariez-post-card .entry-content > p + :is(h1, h2, h3) {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-content .kariez-post-card .separate-meta {
  margin-bottom: 15px;
}
.single-content .single-inner-wrapper {
  display: inline-block;
  width: 100%;
}

.post-thumbnail-wrap .wp-caption-text {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.entry-content img {
  border-radius: 10px;
}

.entry-video-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
.entry-video-area .embed-responsive-item {
  width: 100%;
  height: 450px;
  border-radius: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 24px;
}

:where(.wp-block-columns) {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rt-related-post {
  margin-top: 60px;
}
.rt-related-post .related-title {
  font-size: 40px;
  margin-bottom: 36px;
  font-weight: 600;
}
.rt-related-post .rt-post-meta {
  margin-bottom: 0 !important;
}

.single-post .single-post-thumbnail {
  margin-bottom: 30px;
}
.single-post .single-post-thumbnail img {
  width: 100%;
}
.single-post .kariez-post-card .entry-header .entry-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.single-post .kariez-post-card .rt-post-meta {
  margin-bottom: 18px;
}
.single-post .entry-footer {
  display: flex;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .single-post .entry-footer {
    flex-direction: column;
    align-items: baseline !important;
    gap: 20px;
  }
}
.single-post .entry-footer .post-tags {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-post .entry-footer .post-tags span {
  color: var(--rt-title-color);
  font-weight: 500;
}
.single-post .entry-footer .tag-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.single-post .entry-footer .tag-links .sp {
  display: none;
}
.single-post .entry-footer .tag-links a {
  color: var(--rt-body-color);
  font-size: 15px;
  position: relative;
  line-height: 1.4;
}
.single-post .entry-footer .tag-links a:hover {
  color: var(--rt-primary-color);
}
.single-post .entry-footer .post-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-post .entry-footer .social-share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.single-post .entry-footer .social-share-list li {
  margin-bottom: 0;
}
.single-post .entry-footer .social-share-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--rt-body-color);
}
.single-post .entry-footer .social-share-list a i {
  display: block;
  font-size: 16px;
}
.single-post .entry-footer .social-share-list a:hover i {
  animation: headShake 1.5s;
}

.author .profile-author {
  margin-bottom: 60px;
  margin-top: 0;
}
@media (min-width: 1199px) {
  .author .profile-author {
    padding: 60px;
  }
}

.profile-author {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rt-border-color);
}
@media (min-width: 1200px) {
  .profile-author .profile-thumb {
    height: 239px;
    width: 205px;
  }
}
.profile-author .profile-thumb img {
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .profile-author .profile-thumb img {
    height: 239px;
    width: 205px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.profile-author .profile-content {
  flex: 1;
  background-color: var(--rt-primary-color);
  padding: 25px 80px 30px 30px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .profile-author .profile-content {
    flex: auto;
  }
}
.profile-author .profile-title {
  margin-bottom: 2px;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 600;
}
.profile-author .profile-title a {
  color: var(--rt-title-color);
}
.profile-author .profile-title a:hover {
  color: #FFFFFF;
}
.profile-author .profile-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--rt-title-color);
}
.profile-author .author-bio {
  margin-bottom: 18px;
  color: var(--rt-title-color);
  font-size: 18px;
}
.profile-author .profile-author-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.profile-author .profile-author-social a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--rt-title-color);
}
.profile-author .profile-author-social a:hover {
  color: #FFFFFF;
}

.wp-block-quote {
  background-color: transparent;
  border: 5px solid #000000;
  color: var(--rt-title-color);
  margin: 30px 0;
  padding: 45px 40px 45px 160px;
  position: relative;
  border-radius: 20px;
}
.wp-block-quote:after {
  content: "\e808";
  font-family: rt-fontello;
  font-size: 50px;
  position: absolute;
  color: var(--rt-title-color);
  left: 70px;
  top: 70px;
  transform: rotate(180deg);
}
.wp-block-quote p {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
}

@media (min-width: 768px) {
  .kariez-single-2 .single-post-container .content-top-area .post-thumbnail {
    height: 640px;
  }
}

.single-post.kariez-single-3 .content-area {
  padding-top: 0;
}
.single-post.kariez-single-3 .content-top-area {
  position: relative;
  padding: 0;
}
.single-post.kariez-single-3 .content-top-area .post-thumbnail-wrap {
  height: 840px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .single-post.kariez-single-3 .content-top-area .post-thumbnail-wrap {
    height: 400px;
  }
}
.single-post.kariez-single-3 .content-top-area .post-thumbnail-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.single-post.kariez-single-3 .content-top-area .single-top-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  right: 0;
  width: 100%;
}
.single-post.kariez-single-3 .content-top-area .separate-meta a {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
  border: none;
}
.single-post.kariez-single-3 .content-top-area .separate-meta a:hover {
  background-color: var(--rt-secondary-color);
  color: var(--rt-button-color);
}
.single-post.kariez-single-3 .content-top-area .wp-caption-text {
  position: absolute;
  right: 24px;
  bottom: 9px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  padding: 5px 16px;
}
.single-post.kariez-single-3 .content-top-area .post-thumbnail {
  position: relative;
}
.single-post.kariez-single-3 .content-top-area .post-thumbnail img {
  border-radius: 0;
  height: 100%;
}
.single-post.kariez-single-3 .content-top-area .entry-title {
  font-weight: 600;
  font-size: 40px;
  text-transform: capitalize;
}
.single-post.kariez-single-3 .content-top-area .rt-post-meta a:hover {
  color: var(--rt-primary-color);
}

.single-post.kariez-single-4 .single-post-container .kariez-widget-area {
  display: none !important;
}
.single-post.kariez-single-4 .single-post-container .content-row {
  justify-content: center;
  margin-top: -90px;
}
.single-post.kariez-single-4 .single-post-container .content-col {
  max-width: 86% !important;
  flex: 0 0 86% !important;
  background-color: var(--rt-body-bg-color);
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .single-post.kariez-single-4 .single-post-container .content-col {
    padding: 70px 80px;
  }
}
.single-post.kariez-single-4 .single-post-container .content-top-area {
  padding: 0;
}
.single-post.kariez-single-4 .single-post-container .content-top-area .post-thumbnail-wrap {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .single-post.kariez-single-4 .single-post-container .content-top-area .post-thumbnail-wrap {
    height: 840px;
  }
}
.single-post.kariez-single-4 .single-post-container .content-top-area .post-thumbnail-wrap .wp-caption-text {
  position: absolute;
  right: 24px;
  bottom: 9px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  padding: 5px 16px;
}
.single-post.kariez-single-4 .single-post-container .content-top-area .post-thumbnail img {
  border-radius: 0;
}

.single-post-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  border-bottom: 1px solid var(--rt-border-color);
  margin-bottom: 50px;
  margin-top: 50px;
  padding-bottom: 50px;
}
.single-post-pagination p {
  margin: 0;
}
.single-post-pagination .post-navigation {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 50%;
}
.single-post-pagination .post-navigation.next {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .single-post-pagination .post-navigation {
    flex: 0 0 100%;
  }
  .single-post-pagination .post-navigation:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.single-post-pagination .post-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex: 0 0 50px;
}
.single-post-pagination .link {
  display: flex;
  flex: 0 0 calc(100% - 50px);
  align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--rt-title-color);
}
.single-post-pagination .nav-title {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 100%;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--rt-title-color);
}
.single-post-pagination .nav-title:hover svg {
  fill: var(--rt-primary-color);
}
.single-post-pagination .nav-title svg {
  width: 12px;
  height: 12px;
}
.single-post-pagination .next .nav-title,
.single-post-pagination .next .link {
  justify-content: flex-end;
}

.service-sidebar-menu .kariez-navigation,
.service-sidebar-menu2 .kariez-navigation {
  display: block;
}

.rt-service-sidebar.widget_block.widget_media_image .wp-block-image {
  margin: 0 !important;
}

.rt-service-sidebar, .service-sidebar-menu, .service-sidebar-menu2 {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 33px;
}
.rt-service-sidebar ul.menu .ff-el-input--label,
.rt-service-sidebar .frm-fluent-form .ff-el-input--label, .service-sidebar-menu ul.menu .ff-el-input--label,
.service-sidebar-menu .frm-fluent-form .ff-el-input--label, .service-sidebar-menu2 ul.menu .ff-el-input--label,
.service-sidebar-menu2 .frm-fluent-form .ff-el-input--label {
  display: none;
}
.rt-service-sidebar ul.menu .ff-el-form-control,
.rt-service-sidebar .frm-fluent-form .ff-el-form-control, .service-sidebar-menu ul.menu .ff-el-form-control,
.service-sidebar-menu .frm-fluent-form .ff-el-form-control, .service-sidebar-menu2 ul.menu .ff-el-form-control,
.service-sidebar-menu2 .frm-fluent-form .ff-el-form-control {
  font-size: 15px;
}
.rt-service-sidebar ul.menu input,
.rt-service-sidebar .frm-fluent-form input, .service-sidebar-menu ul.menu input,
.service-sidebar-menu .frm-fluent-form input, .service-sidebar-menu2 ul.menu input,
.service-sidebar-menu2 .frm-fluent-form input {
  height: 55px;
}
.rt-service-sidebar ul.menu .ff-btn-submit,
.rt-service-sidebar .frm-fluent-form .ff-btn-submit, .service-sidebar-menu ul.menu .ff-btn-submit,
.service-sidebar-menu .frm-fluent-form .ff-btn-submit, .service-sidebar-menu2 ul.menu .ff-btn-submit,
.service-sidebar-menu2 .frm-fluent-form .ff-btn-submit {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 18px 30px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.rt-service-sidebar ul.menu .ff-btn-submit:hover,
.rt-service-sidebar .frm-fluent-form .ff-btn-submit:hover, .service-sidebar-menu ul.menu .ff-btn-submit:hover,
.service-sidebar-menu .frm-fluent-form .ff-btn-submit:hover, .service-sidebar-menu2 ul.menu .ff-btn-submit:hover,
.service-sidebar-menu2 .frm-fluent-form .ff-btn-submit:hover {
  background-color: var(--rt-secondary-color);
  color: var(--rt-button-color);
}
.rt-service-sidebar ul.menu .ff-el-form-check-label,
.rt-service-sidebar .frm-fluent-form .ff-el-form-check-label, .service-sidebar-menu ul.menu .ff-el-form-check-label,
.service-sidebar-menu .frm-fluent-form .ff-el-form-check-label, .service-sidebar-menu2 ul.menu .ff-el-form-check-label,
.service-sidebar-menu2 .frm-fluent-form .ff-el-form-check-label {
  font-size: 15px;
  line-height: 1.6;
}

.kariez-widget-area .rt-service-sidebar.widget_nav_menu ul > li.current-menu-item {
  border-bottom: 1px solid var(--rt-title-color);
}

.kariez-widget-area .rt-service-sidebar.widget_nav_menu ul > li.current-menu-item a {
  color: var(--rt-primary-color);
}

.rt-team-default .team-item {
  position: relative;
  transition: all 520ms ease;
}
.rt-team-default .team-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-team-default .team-item .team-title {
  position: relative;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.4;
}
.rt-team-default .team-item .team-title a {
  color: var(--rt-button-text-color);
}
.rt-team-default .team-item .team-title a:hover {
  color: var(--rt-primary-color);
}
.rt-team-default .team-item .team-designation {
  color: var(--rt-tertiary-color);
}
.rt-team-default .team-item p {
  margin-top: 8px;
}
.rt-team-default .team-item:hover .team-social li {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.rt-team-default .team-item:hover .team-social li:nth-child(1) {
  transition-delay: 0.1s;
}
.rt-team-default .team-item:hover .team-social li:nth-child(2) {
  transition-delay: 0.2s;
}
.rt-team-default .team-item:hover .team-social li:nth-child(3) {
  transition-delay: 0.3s;
}
.rt-team-default .team-item:hover .team-social li:nth-child(4) {
  transition-delay: 0.4s;
}
.rt-team-default .team-item:hover .team-social li:nth-child(5) {
  transition-delay: 0.5s;
}
.rt-team-default .team-item:hover .team-social li:nth-child(6) {
  transition-delay: 0.6s;
}
.rt-team-default .team-item:hover .team-thumbs img {
  transform: scale(1.1);
}
.rt-team-default .team-thumbs {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.rt-team-default .team-thumbs img {
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
  border-radius: 10px;
}
.rt-team-default .team-social {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
}
.rt-team-default .team-social li {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 520ms ease;
  line-height: 1;
}
.rt-team-default .team-social li .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  transition: all 0.21s ease-in-out;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.rt-team-default .team-social li .social-link:hover::after {
  transform: scale(0.9);
}
.rt-team-default .team-social li .social-link i {
  transition: all 0.21s ease-in-out;
  color: #281D00;
}

.rt-team-multi-layout-1 .team-item {
  overflow: hidden;
}
.rt-team-multi-layout-1 .team-item:hover .post-thumbnail a img {
  transform: scale(1.05);
}
.rt-team-multi-layout-1 .team-item:hover .team-content {
  opacity: 1;
}
.rt-team-multi-layout-1 .team-item:hover .team-content .team-title {
  animation: kariz-down-text 0.5s ease 0s 1 forwards;
}
.rt-team-multi-layout-1 .team-item:hover .team-content .team-designation {
  animation: kariz-up-text 0.5s ease 0.1s 1 forwards;
}
.rt-team-multi-layout-1 .team-item .post-thumbnail {
  position: relative;
}
.rt-team-multi-layout-1 .team-item .post-thumbnail a .tooltipLink {
  position: relative;
}
.rt-team-multi-layout-1 .team-item .team-content {
  position: absolute;
  left: 50px;
  right: auto;
  bottom: 50px;
  top: auto;
  margin: auto;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  will-change: scroll-position;
  transition: unset;
}
.rt-team-multi-layout-1 .team-item .team-content .team-info {
  width: 100%;
}
.rt-team-multi-layout-1 .team-item .team-content .team-info .team-title {
  color: var(--rt-primary-color);
  font-size: 22px;
  font-weight: 600;
  background-color: var(--rt-title-color);
  padding: 5px 20px;
  transition: all 0.4s ease-in-out;
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  display: block;
  border-radius: 5px 5px 5px 0;
}
.rt-team-multi-layout-1 .team-item .team-content .team-info .team-title a {
  color: var(--rt-primary-color);
}
.rt-team-multi-layout-1 .team-item .team-content .team-info .team-designation {
  color: var(--rt-title-color);
  font-size: 16px;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  padding: 5px 15px;
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  border-radius: 0px 0px 5px 5px;
}
.rt-team-multi-layout-1 .team-item p {
  color: #FFFFFF;
  position: absolute;
  bottom: 30px;
  left: 50px;
  right: 50px;
}

.rt-team-multi-layout-2 .team-item {
  overflow: hidden;
}
.rt-team-multi-layout-2 .team-item .post-thumbnail:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.44%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.rt-team-multi-layout-2 .team-item .team-title {
  font-weight: 600;
}
.rt-team-multi-layout-2 .team-item .team-title a {
  color: #FFFFFF;
}
.rt-team-multi-layout-2 .team-item .team-title a:hover {
  color: var(--rt-primary-color);
}
.rt-team-multi-layout-2 .team-item .team-content {
  padding: 12px 18px;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.rt-team-multi-layout-2 .team-item p {
  color: #FFFFFF;
  margin-bottom: 0;
}
.rt-team-multi-layout-2 .team-item:hover .post-thumbnail img {
  filter: grayscale(0);
}

.rt-team-multi-layout-3 .team-item {
  text-align: center;
}
.rt-team-multi-layout-3 .team-item .team-thumbs {
  overflow: hidden;
  margin-bottom: 24px;
}
.rt-team-multi-layout-3 .team-item .team-title {
  font-weight: 600;
}
.rt-team-multi-layout-3 .team-item:hover .team-thumbs img {
  filter: grayscale(1);
}

.team-grid-layout-4 .team-item .team-content {
  z-index: 1;
}
.team-grid-layout-4 .team-social {
  z-index: 1;
}
.team-grid-layout-4 p {
  z-index: 1;
}
.team-grid-layout-4 .rt-swiper-slider {
  position: inherit;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 30px;
  transition: all 520ms ease;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button {
  position: relative;
  transform: translateY(0);
  border: 1px solid var(--rt-title-color);
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-title-color);
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button:hover i {
  color: #FFFFFF;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button i {
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-next {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.team-grid-layout-4 .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--rt-title-color);
}
.team-grid-layout-4 .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rt-primary-color);
}

.team-single-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-single-item .team-single-wrap .order-2 {
  order: 2;
}
@media (min-width: 992px) {
  .team-single-item .team-single-wrap .order-2 .team-single-content-wrap {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .team-single-item .team-single-wrap .order-2 .team-single-content-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .team-single-item .team-single-wrap .order-1 .team-single-content-wrap {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .team-single-item .team-single-wrap .order-1 .team-single-content-wrap {
    padding-bottom: 50px;
  }
}
.team-single-item .team-single-image img {
  width: 100%;
  border-radius: 10px;
}
.team-single-item .team-thumb-round {
  text-align: center;
}
.team-single-item .team-thumb-round img {
  border-radius: 1000px;
}
.team-single-item .team-heading {
  margin-top: 20px;
}
.team-single-item .team-heading .team-info {
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 40px;
}
.team-single-item .team-heading .team-info ul li {
  display: block;
  margin-right: 0;
  margin-bottom: 15px;
  color: var(--rt-body-color);
  font-size: 20px;
}
.team-single-item .team-heading .team-info ul li a {
  color: var(--rt-body-color);
}
.team-single-item .team-heading .team-info ul li a:hover {
  color: var(--rt-primary-color);
}
@media (max-width: 575px) {
  .team-single-item .team-heading .team-info ul li {
    float: unset;
    width: 100%;
  }
}
.team-single-item .team-heading .team-info ul li:last-child {
  margin-bottom: 0;
}
.team-single-item .team-heading .team-info ul .team-label {
  color: var(--rt-title-color);
  font-weight: 600;
  font-size: 20px;
}
.team-single-item .entry-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
.team-single-item .designation {
  display: block;
  color: var(--rt-body-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.team-single-item .team-single-content-wrap h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.team-single-item .team-social-social {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.team-single-item .team-social-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  border: 1px solid #281D00;
  transition: all 0.21s ease-in-out;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.team-single-item .team-social-social li a:hover {
  background-color: var(--rt-title-color);
  border-color: var(--rt-title-color);
}
.team-single-item .team-social-social li a:hover i {
  color: var(--rt-primary-color);
}
.team-single-item .team-social-social li a i {
  transition: all 0.41s ease-in-out;
  color: var(--rt-title-color);
}
.team-single-item .rt-skill-wrap {
  margin-top: 40px;
  border-top: 1px solid #D9D9D9;
  padding-top: 40px;
}
.team-single-item .rt-skill-wrap .skill-item-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.team-single-item .rt-skill-wrap .rt-skill-each {
  margin-top: 15px;
  width: 45%;
  flex: 0 0 45%;
}
.team-single-item .rt-skill-wrap .rt-name {
  color: var(--rt-title-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-single-item .rt-skill-wrap .progress {
  position: relative;
  background-color: #eee;
  height: 8px;
  border-radius: 5px;
}
.team-single-item .rt-skill-wrap .progress-bar {
  position: relative;
  height: 8px;
  width: 0;
  background-color: var(--rt-primary-color);
  transition: 2s linear;
  border-radius: 5px;
}
.team-single-item .rt-skill-wrap .progress-bar span {
  font-size: 18px;
  font-weight: 600;
  color: var(--rt-title-color);
  position: absolute;
  right: 0;
  top: -28px;
  padding-bottom: 10px;
  line-height: 1;
}
.team-single-item .rt-skill-wrap .progress-bar:before {
  content: attr(data-per);
  position: absolute;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--rt-title-color);
  bottom: 10px;
  right: 0;
}
.team-single-item .rt-team-qualification-wrap {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}
.team-single-item .team-qualification-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team-single-item .team-qualification-wrapper .rt-qualification-name {
  font-size: 18px;
  font-weight: 700;
}
.team-single-item .team-qualification-wrapper .rt-qualification-name i {
  color: var(--rt-primary-color);
  margin-right: 5px;
}

.rt-related-team {
  margin-top: 60px;
}
.rt-related-team .related-title {
  font-size: 40px;
  margin-bottom: 26px;
  font-weight: 600;
}

.rt-service-default .service-item {
  border-radius: 10px;
  transition: all 520ms ease;
}
.rt-service-default .service-item .service-thumbs {
  margin-bottom: 22px;
}
.rt-service-default .service-item .service-thumbs img {
  transition: all 520ms ease;
}
.rt-service-default .service-item .service-icon {
  display: flex;
  font-size: 40px;
  color: var(--rt-primary-color);
}
.rt-service-default .service-item .service-icon i {
  transition: all 520ms ease;
}
.rt-service-default .service-item .service-title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}
.rt-service-default .service-item .service-title a {
  color: var(--rt-title-color);
}
.rt-service-default .service-item .service-title a:hover {
  color: var(--rt-title-color);
}
.rt-service-default .service-item .service-info p {
  margin-bottom: 0;
}
.rt-service-default .service-item .rt-button {
  margin-top: 28px;
}
.rt-service-default .service-item:hover .service-thumbs img {
  transform: scale(1.08);
}

.rt-service-multi-layout-1 .service-item {
  padding: 45px 40px 35px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.rt-service-multi-layout-1 .service-item:after {
  background-color: var(--rt-primary-color);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 520ms ease;
  content: "";
  height: 100%;
  width: 100%;
}
.rt-service-multi-layout-1 .service-item .service-icon {
  margin-bottom: 20px;
}
.rt-service-multi-layout-1 .service-item .service-icon i {
  font-size: 50px;
  color: var(--rt-title-color);
}
.rt-service-multi-layout-1 .service-item:hover:after {
  transform: translateY(0);
}
.rt-service-multi-layout-1 .service-item:hover .service-icon {
  color: var(--rt-title-color);
}
.rt-service-multi-layout-1 .service-item:hover .service-icon i {
  transform: scale(1.1);
}
.rt-service-multi-layout-1 .service-item:hover p {
  color: var(--rt-title-color);
}
.rt-service-multi-layout-1 .service-content {
  transition: all 520ms ease;
}
.rt-service-multi-layout-1 .service-title {
  margin-bottom: 20px;
}

.rt-service-multi-layout-2 .service-item {
  padding: 45px 20px 35px;
  background-color: #FFFCEE;
  text-align: center;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.rt-service-multi-layout-2 .service-item:after {
  background-color: var(--rt-primary-color);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 520ms ease;
  content: "";
  height: 100%;
  width: 100%;
}
.rt-service-multi-layout-2 .service-item .service-icon {
  margin-bottom: 20px;
  justify-content: center;
}
.rt-service-multi-layout-2 .service-item .service-icon i {
  font-size: 50px;
  color: var(--rt-title-color);
}
.rt-service-multi-layout-2 .service-item:hover:after {
  transform: translateY(0);
}
.rt-service-multi-layout-2 .service-item:hover .service-icon {
  color: var(--rt-title-color);
}
.rt-service-multi-layout-2 .service-item:hover .service-icon i {
  transform: scale(1.1);
}
.rt-service-multi-layout-2 .service-item:hover p {
  color: var(--rt-title-color);
}
.rt-service-multi-layout-2 .service-content {
  transition: all 520ms ease;
}
.rt-service-multi-layout-2 .service-title {
  margin-bottom: 20px;
}

.service-single .service-single-item .entry-title {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 600;
}
.service-single .service-single-item .post-thumbnail {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
}
.service-single .service-single-item .post-thumbnail img {
  border-radius: 10px;
}
.service-single .service-single-item .wp-block-image img {
  border-radius: 12px;
}
.service-single .service-single-item ul.wp-block-list {
  list-style: none;
  margin: 0 0 35px;
  padding: 0;
}
.service-single .service-single-item ul.wp-block-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: var(--rt-title-color);
  font-weight: 500;
}
.service-single .service-single-item ul.wp-block-list li + li {
  margin-top: 10px;
}
.service-single .service-single-item ul.wp-block-list li:before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  content: "\e845";
  font-family: "rt-fontello";
  transition: all ease 0.31s;
  color: var(--rt-primary-color);
}

.rt-related-service {
  margin-top: 60px;
}
.rt-related-service .related-title {
  font-size: 40px;
  margin-bottom: 26px;
  font-weight: 600;
}

.rt-project-default .project-item {
  text-align: center;
}
.rt-project-default .project-item .project-thumbs {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
.rt-project-default .project-item .project-thumbs img {
  width: 100%;
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
  border-radius: 10px;
}
.rt-project-default .project-item .project-thumbs.is-blend img {
  filter: grayscale(100%);
}
.rt-project-default .project-item .project-thumbs:hover.is-blend img {
  filter: grayscale(0);
}
.rt-project-default .project-item .project-thumbs:hover .project-thumbs img {
  transform: scale(1.1);
}
.rt-project-default .project-item .project-thumbs:after {
  height: 40%;
  width: 100%;
  background-color: #000;
  filter: blur(100px);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease-in-out;
}
.rt-project-default .project-item:hover .project-thumbs img {
  transform: scale(1);
}
.rt-project-default .project-item:hover .project-content:after {
  height: 100%;
}
.rt-project-default .project-item:hover .project-content .project-subtitle {
  color: #FFFFFF;
}
.rt-project-default .project-item:hover .project-content .project-cat {
  background-color: #FFFFFF;
}
.rt-project-default .project-item .project-thumbs {
  margin-bottom: 0;
}
.rt-project-default .project-item .project-thumbs img {
  transform: scale(1.05);
}
.rt-project-default .project-item .project-thumbs:after {
  display: none;
}
.rt-project-default .project-item .project-content {
  background-color: #FFFFFF;
  padding: 30px;
  margin-right: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  border-radius: 10px;
}
.rt-project-default .project-item .project-content:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: var(--rt-primary-color);
  transition: all 0.3s ease-in-out;
}
.rt-project-default .project-item .project-subtitle {
  font-size: 18px;
  color: #8d8d8d;
  margin-bottom: 5px;
}
.rt-project-default .project-item .project-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.rt-project-default .project-item .project-title a {
  color: var(--rt-title-color);
}
.rt-project-default .project-item .project-cat {
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  border-radius: 500px;
  padding: 8px 15px 7px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 520ms ease;
}
.rt-project-default .project-item .project-excerpt {
  margin-top: 10px;
}
.rt-project-default .project-item .rt-button {
  margin-top: 20px;
}

.rt-project-multi-layout-2 .project-item {
  position: relative;
  text-align: left;
  transition: all 520ms ease;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail:after {
  height: 50%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  filter: blur(100px);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease-in-out;
  border-radius: 10px;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail img {
  width: 100%;
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
  border-radius: 10px;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
  width: 100%;
  background-color: transparent;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-content:after {
  display: none;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-title a {
  color: #FFFFFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(to right, var(--rt-primary-color), var(--rt-primary-color) 50%, var(--rt-secondary-color) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
  word-break: break-word;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-title:before {
  content: "";
  height: 1px;
  background-color: var(--rt-primary-color);
  position: absolute;
  transition: width 0.3s;
  bottom: 0;
  left: 0;
  width: 0;
  opacity: 0;
  display: block;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-title:after {
  height: 1px;
  width: 100%;
  background-color: #d9d9d9;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  display: block;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-title a {
  color: #FFFFFF;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-cat {
  font-size: 15px;
  text-transform: uppercase;
  transition: all 1s ease-in-out;
  letter-spacing: 4.5px;
  display: block;
  background-color: transparent;
  padding: 0;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-cat a {
  color: #FFFFFF;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .project-excerpt {
  margin-top: 12px;
  color: #FFFFFF;
}
.rt-project-multi-layout-2 .project-item .project-thumbs .rt-button {
  margin-top: 20px;
}
.rt-project-multi-layout-2 .project-item .project-thumbs.is-blend img {
  filter: grayscale(100%);
}
.rt-project-multi-layout-2 .project-item .project-thumbs:hover.is-blend img {
  filter: grayscale(0);
}
.rt-project-multi-layout-2 .project-item .project-thumbs:hover .project-thumbs img {
  transform: scale(1.05);
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs img {
  transform: scale(1.1);
  filter: grayscale(100%);
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs .project-content .project-title a {
  background-position: 0%;
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs .project-content .project-title:before {
  width: 100%;
  opacity: 1;
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs .project-content .project-title:after {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs .project-content .project-cat {
  background-color: transparent;
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs .project-content .project-cat a {
  color: var(--rt-primary-color);
}

@media (min-width: 1140px) {
  .project-single .project-item-wrap {
    display: flex;
    gap: 24px;
    justify-content: space-between;
  }
  .project-single .project-item-content {
    flex: 1;
  }
  .project-single .project-content-info {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}
@media (max-width: 1139px) {
  .project-single .project-item-content {
    margin-bottom: 48px;
  }
}
.project-single .post-thumbnail-wrap img {
  border-radius: 10px;
}
.project-single .project-item-content .wp-block-image img {
  border-radius: 12px;
}
.project-single .project-item-content ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.project-single .project-item-content ul li {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  color: var(--rt-title-color);
  font-weight: 500;
}
.project-single .project-item-content ul li + li {
  margin-top: 10px;
}
.project-single .project-item-content ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  content: "\e839";
  font-family: "rt-fontello";
  transition: all ease 0.31s;
  color: var(--rt-primary-color);
}
@media (min-width: 1140px) {
  .project-single .project-information {
    padding-right: 60px;
  }
}
@media (max-width: 1139px) {
  .project-single .project-information {
    margin-bottom: 40px;
  }
}
.project-single .project-information ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.project-single .project-information .info-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
}
.project-single .project-information .info-list > li {
  border-bottom: 1px solid var(--rt-border-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.project-single .project-information .info-list > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.project-single .project-information .info-list a {
  color: var(--rt-body-color);
}
.project-single .project-information .info-list a:hover {
  color: var(--rt-primary-color);
}
.project-single .project-information .info-list label {
  color: var(--rt-title-color);
  font-size: 15px;
  width: 110px;
  display: inline-block;
}
.project-single .project-information ul.rating {
  display: inline-flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.project-single .project-information ul.rating li.star-rate i {
  color: var(--rt-tertiary-color);
}
.project-single .project-content {
  margin-top: 30px;
}
.project-single .project-content .entry-title {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.elementor-lightbox .elementor-lightbox-image {
  border-radius: 12px;
}
.elementor-lightbox .elementor-swiper-button > i {
  background-color: #FFFFFF;
  color: var(--rt-button-text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.rt-related-project {
  margin-top: 60px;
}
.rt-related-project .related-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 36px;
}

.error-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .error-404 img {
    max-width: 990px;
    height: auto;
  }
}
.error-404 .error-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 85px;
  text-align: center;
}
@media (min-width: 992px) {
  .error-404 .error-info {
    width: 660px;
    margin-right: auto;
    margin-left: auto;
  }
}
.error-404 .error-info .error-title {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}
.error-404 .error-info p {
  font-size: 20px;
  line-height: 32px;
}

/*===============================
Section Title
================================*/
.elementor-section-wrap {
  overflow: hidden;
}

.section-title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.section-title-wrapper .top-sub-title {
  color: var(--rt-title-color);
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  border: 1px solid #D8D8D8;
  border-radius: 50px;
  line-height: 1;
  padding: 10px 14px 10px 30px;
}
.section-title-wrapper .top-sub-title .round-subtitle-shape:before {
  position: absolute;
  content: "";
  left: 14px;
  top: 14px;
  background-color: var(--rt-primary-color);
  height: 8px;
  width: 8px;
  border-radius: 100%;
  animation: rt-opacity 1.5s ease infinite;
}
.section-title-wrapper .main-title {
  position: relative;
  display: inline-block;
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .section-title-wrapper .main-title {
    font-size: 40px;
    line-height: 52px;
  }
}
.section-title-wrapper .main-title .has-animation {
  width: 0;
  position: absolute;
  top: 40px;
  right: 0;
  line-height: 1;
}
.section-title-wrapper .main-title .active-animation {
  stroke-dasharray: 770;
  animation: Rtdraw 1s reverse;
  width: auto;
}
.section-title-wrapper .main-title path {
  stroke: var(--rt-primary-color);
}
.section-title-wrapper .main-title span {
  font-weight: 400;
}
.section-title-wrapper .main-title img.spin {
  animation: spin 15s linear infinite;
}
.section-title-wrapper .baseline img {
  vertical-align: baseline;
}
.section-title-wrapper .middle img {
  vertical-align: middle;
  padding-left: 6px;
  padding-right: 6px;
}
.section-title-wrapper .bottom img {
  vertical-align: bottom;
}
.section-title-wrapper .description p {
  opacity: 1 !important;
  margin-bottom: 15px;
}
.section-title-wrapper ul.feature-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  text-align: left;
}
@media (min-width: 768px) {
  .section-title-wrapper ul.feature-list.two-column li {
    width: 50%;
    float: left;
  }
}
.section-title-wrapper .list-layout-1 li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--rt-title-color);
}
.section-title-wrapper .list-layout-1 li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  width: 20px;
  height: 20px;
  margin-right: 9px;
  border-radius: 100%;
  color: var(--rt-title-color);
  background-color: var(--rt-primary-color);
  position: relative;
  top: -2px;
}
.section-title-wrapper .list-layout-2 li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--rt-title-color);
}
.section-title-wrapper .list-layout-2 li .icon {
  margin-right: 10px;
  background-color: var(--rt-primary-color);
  height: 25px;
  width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.section-title-wrapper .list-layout-2 li .icon i {
  font-size: 14px;
}
.section-title-wrapper .list-layout-2 li .icon i:before {
  width: auto;
  margin: 0;
}

.section-title-wrapper-layout-2 .title-inner-wrapper .top-sub-title-wrap .top-sub-title {
  color: var(--rt-title-color);
  font-size: 14px;
  text-transform: capitalize;
  background-color: var(--rt-primary-color);
  display: inline-block;
  padding: 10px 20px;
  border: 0;
  font-weight: 700;
}

.section-title-wrapper-layout-3 .title-inner-wrapper .top-sub-title-wrap .top-sub-title {
  color: #7c7c7c;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0;
  border: 0;
  padding: 0;
}

.section-title-wrapper-layout-4 .title-inner-wrapper .top-sub-title-wrap .top-sub-title {
  color: var(--rt-primary-color);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
  border: 0;
  padding: 0;
}
.section-title-wrapper-layout-4 .title-inner-wrapper .top-sub-title-wrap .top-sub-title .arrow-subtitle-shape {
  margin-left: 25px;
}
.section-title-wrapper-layout-4 .title-inner-wrapper .top-sub-title-wrap .top-sub-title .arrow-subtitle-shape:before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  background-color: var(--rt-primary-color);
  height: 1px;
  width: 20px;
}

.section-title-wrapper-layout-5 .title-inner-wrapper .top-sub-title-wrap .top-sub-title {
  color: var(--rt-primary-color);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
  border: 0;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.section-title-wrapper-layout-5 .title-inner-wrapper .top-sub-title-wrap .top-sub-title .double-round-subtitle-shape:before, .section-title-wrapper-layout-5 .title-inner-wrapper .top-sub-title-wrap .top-sub-title .double-round-subtitle-shape:after {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  height: 5px;
  width: 5px;
  animation: rt-opacity 1.5s ease infinite;
}
.section-title-wrapper-layout-5 .title-inner-wrapper .top-sub-title-wrap .top-sub-title .double-round-subtitle-shape:after {
  right: 0;
  left: auto;
  top: 6px;
}

@media (max-width: 991px) {
  .section-title-wrapper .description br,
  .section-title-wrapper .main-title br {
    display: none;
  }
}
/* End Section Title */
.rt-swiper-hero-slider {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .rt-swiper-hero-slider {
    position: static;
  }
}

.rt-hero-slider .slider-content {
  position: relative;
  max-width: 660px;
  z-index: 1;
}
@media (max-width: 767px) {
  .rt-hero-slider .slider-content {
    max-width: 100%;
  }
}
.rt-hero-slider .single-slider {
  background-size: cover;
  background-position: top center;
  padding: 200px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .rt-hero-slider .single-slider {
    padding: 210px 0 120px;
  }
}
@media (min-width: 992px) {
  .rt-hero-slider .single-slider {
    padding: 220px 0 120px;
  }
}
@media (min-width: 1200px) {
  .rt-hero-slider .single-slider {
    min-height: 900px;
    padding: 330px 0 200px;
  }
}
.rt-hero-slider .single-slider:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
}
.rt-hero-slider .sub-title {
  position: relative;
  display: inline-block;
  color: var(--rt-primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  z-index: 1;
}
.rt-hero-slider .slider-title {
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 50px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .rt-hero-slider .slider-title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (min-width: 1200px) {
  .rt-hero-slider .slider-title {
    font-size: 60px;
    line-height: 70px;
  }
}
.rt-hero-slider .slider-text {
  font-size: 16px;
  line-height: 30px;
  color: #C5C5C5;
  margin-bottom: 30px;
}
.rt-hero-slider .rt-thumbnail-area {
  padding: 20px 12px 0;
}
@media (min-width: 1200px) {
  .rt-hero-slider .rt-thumbnail-area {
    width: 810px;
    position: absolute;
    bottom: 52px;
    right: 35px;
    padding: 0;
  }
}
.rt-hero-slider .rt-thumbnail-area .item-thumb {
  position: relative;
}
.rt-hero-slider .rt-thumbnail-area .item-thumb .banner-sm-img img {
  cursor: pointer;
  filter: grayscale(100%);
}
.rt-hero-slider .rt-thumbnail-area .item-thumb .thumb-text-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin-bottom: 0;
  z-index: 1;
}
.rt-hero-slider .rt-thumbnail-area .swiper-slide-thumb-active .item-thumb .banner-sm-img img {
  filter: grayscale(0);
}
.rt-hero-slider .animation .single-slide {
  display: block;
  overflow: hidden;
  perspective: 800px;
}
.rt-hero-slider .animation .single-slide .sub-title {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-hero-slider .animation .single-slide .slider-title {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-hero-slider .animation .single-slide .slider-text {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-hero-slider .animation .single-slide .slider-btn-area {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-hero-slider .animation .single-slide.swiper-slide-active .sub-title {
  transform: translateY(0);
  transition-delay: 0.5s;
  opacity: 1;
  visibility: visible;
}
.rt-hero-slider .animation .single-slide.swiper-slide-active .slider-title {
  transform: translateY(0);
  transition-delay: 0.7s;
  opacity: 1;
  visibility: visible;
}
.rt-hero-slider .animation .single-slide.swiper-slide-active .slider-text {
  transform: translateY(0);
  transition-delay: 0.9s;
  opacity: 1;
  visibility: visible;
}
.rt-hero-slider .animation .single-slide.swiper-slide-active .slider-btn-area {
  transform: translateY(0);
  transition-delay: 1s;
  opacity: 1;
  visibility: visible;
}
.rt-hero-slider .swiper-navigation {
  transition: all 520ms ease;
}
.rt-hero-slider .swiper-navigation .swiper-button {
  border: 0;
  background-color: #FFFFFF;
}
.rt-hero-slider .swiper-navigation .swiper-button:before {
  display: none;
}
.rt-hero-slider .swiper-navigation .swiper-button i {
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.rt-hero-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-primary-color);
}
.rt-hero-slider .swiper-navigation .swiper-button:hover i {
  color: var(--rt-title-color);
}
.rt-hero-slider .swiper-pagination {
  position: absolute;
  margin-top: 0;
  bottom: 30px !important;
}
@media (min-width: 1200px) {
  .rt-hero-slider .swiper-pagination {
    bottom: auto !important;
    left: auto;
    right: 300px;
    top: 50%;
    width: auto;
    transform: rotate(90deg);
    margin-top: 0;
  }
}
.rt-hero-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.9);
}
.rt-hero-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}
@media (max-width: 991px) {
  .rt-hero-slider .slider-title br,
  .rt-hero-slider .slider-text br {
    display: none;
  }
}

.rt-horizontal-slider .single-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 200px 0 120px;
}
@media (min-width: 480px) {
  .rt-horizontal-slider .single-slider {
    padding: 170px 0 120px;
  }
}
@media (min-width: 992px) {
  .rt-horizontal-slider .single-slider {
    padding: 220px 0 120px;
  }
}
@media (min-width: 1200px) {
  .rt-horizontal-slider .single-slider {
    min-height: 900px;
    padding: 330px 0 200px;
  }
}
.rt-horizontal-slider .single-slider:after {
  content: "";
  background: rgba(26, 18, 75, 0.76);
  filter: blur(100px);
  transform: rotate(-49.54deg);
  width: 1161.78px;
  height: 1211.22px;
  position: absolute;
  top: 0;
  left: -150px;
  z-index: -1;
}
.rt-horizontal-slider .single-slider:before {
  display: none;
}
.rt-horizontal-slider .swiper-navigation {
  transition: all 520ms ease;
}
.rt-horizontal-slider .swiper-navigation .swiper-button {
  border: 0;
  background-color: #FFFFFF;
}
.rt-horizontal-slider .swiper-navigation .swiper-button:before {
  display: none;
}
.rt-horizontal-slider .swiper-navigation .swiper-button i {
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.rt-horizontal-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-primary-color);
}
.rt-horizontal-slider .swiper-navigation .swiper-button:hover i {
  color: var(--rt-title-color);
}
.rt-horizontal-slider .swiper-pagination {
  position: absolute;
  margin-top: 0;
  justify-content: start;
  bottom: 100px !important;
  left: calc((100% - 1296px) / 2 + 12px);
  width: 100%;
  top: auto;
  right: auto;
  transform: rotate(0);
}
@media (max-width: 1200px) {
  .rt-horizontal-slider .swiper-pagination {
    display: none;
  }
}
.rt-horizontal-slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: left;
}
.rt-horizontal-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
  height: 12px;
  width: 12px;
}

.home-3-slider .animation .single-slide {
  display: block;
  overflow: hidden;
  perspective: 800px;
}
.home-3-slider .animation .single-slide .sub-title {
  transform: translate3d(60px, 0px, 0px) scale(0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-10deg, 0deg);
  opacity: 0;
}
.home-3-slider .animation .single-slide .slider-title {
  transform: translate3d(60px, 0px, 0px) scale(0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-10deg, 0deg);
  opacity: 0;
}
.home-3-slider .animation .single-slide .slider-text {
  transform: translate3d(60px, 0px, 0px) scale(0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-10deg, 0deg);
  opacity: 0;
}
.home-3-slider .animation .single-slide .slider-btn-area {
  transform: translate3d(60px, 0px, 0px) scale(0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-10deg, 0deg);
  opacity: 0;
}
.home-3-slider .animation .single-slide.swiper-slide-active .sub-title {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}
.home-3-slider .animation .single-slide.swiper-slide-active .slider-title {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}
.home-3-slider .animation .single-slide.swiper-slide-active .slider-text {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}
.home-3-slider .animation .single-slide.swiper-slide-active .slider-btn-area {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}

.home-6-slider .content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home-6-slider .content-wrap {
    display: block;
  }
}
@media (min-width: 1200px) {
  .home-6-slider .single-slider {
    padding: 280px 0 235px 0;
    min-height: auto;
  }
}
.home-6-slider .single-slider:before {
  display: none;
}
.home-6-slider .single-slider .content-slider-img {
  flex: 1;
}
@media (max-width: 991px) {
  .home-6-slider .single-slider .content-slider-img {
    margin-top: 24px;
  }
}
.home-6-slider .animation .single-slide {
  display: block;
  overflow: hidden;
  perspective: 800px;
}
.home-6-slider .animation .single-slide .sub-title {
  transform-origin: 50% 0%;
  transform: translate3d(0px, 49.2404px, -41.3176px) rotateX(80deg);
  opacity: 0;
  transition: transform 1s ease 1s, color 0.2s, opacity 1s ease 1s;
}
.home-6-slider .animation .single-slide .slider-title {
  transform-origin: 50% 0%;
  transform: translate3d(0px, 49.2404px, -41.3176px) rotateX(-80deg);
  opacity: 0;
  transition: transform 1s ease 1s, color 0.2s, opacity 1s ease 1s;
}
.home-6-slider .animation .single-slide .slider-text {
  transform-origin: 50% 0%;
  transform: translate3d(0px, 49.2404px, -41.3176px) rotateX(-80deg);
  opacity: 0;
  transition: transform 1s ease 1s, color 0.2s, opacity 1s ease 1s;
}
.home-6-slider .animation .single-slide .slider-btn-area {
  transform-origin: 50% 0%;
  transform: translate3d(0px, 49.2404px, -41.3176px) rotateX(-80deg);
  opacity: 0;
  transition: transform 1s ease 1s, color 0.2s, opacity 1s ease 1s;
}
.home-6-slider .animation .single-slide.swiper-slide-active .sub-title {
  transform-origin: 255.469px 35px;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.home-6-slider .animation .single-slide.swiper-slide-active .slider-title {
  transform-origin: 255.469px 35px;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.home-6-slider .animation .single-slide.swiper-slide-active .slider-text {
  transform-origin: 255.469px 35px;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.home-6-slider .animation .single-slide.swiper-slide-active .slider-btn-area {
  transform-origin: 255.469px 35px;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.home-6-slider .swiper-pagination {
  position: absolute;
  margin-top: 0;
  justify-content: center;
  width: 100%;
  top: auto;
  right: auto;
  transform: rotate(0);
  bottom: 80px !important;
}
@media (min-width: 1200px) {
  .home-6-slider .swiper-pagination {
    bottom: 220px !important;
    left: calc((100% - 1296px) / 2 + 12px);
  }
}
.home-6-slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: left;
}
.home-6-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
  height: 12px;
  width: 12px;
}

/*===============================
RT Post Grid
================================*/
.blog-grid-5 .separate-meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.blog-grid-5 .separate-meta a {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.blog-grid-5 .separate-meta a:hover {
  background-color: var(--rt-tertiary-color);
  color: var(--rt-button-text-color);
}
.blog-grid-5 .rt-post-meta {
  margin-bottom: 16px;
}
.blog-grid-5 .entry-wrapper {
  padding-top: 24px;
}

@media (min-width: 1025px) {
  .blog-list-2.rt-el-post-wrapper .post-thumbnail-wrap {
    max-width: 286px;
  }
}
.blog-grid-6 .article-inner-wrapper:hover .post-thumbnail img {
  transform: scale(1.07);
}
.blog-grid-6 .article-inner-wrapper .post-thumbnail-wrap {
  margin-bottom: 20px;
}
.blog-grid-6 .article-inner-wrapper .post-thumbnail-wrap .post-thumbnail {
  border-radius: 10px;
}
.blog-grid-6 .article-inner-wrapper .post-thumbnail-wrap .post-thumbnail img {
  border-radius: 10px;
}
.blog-grid-6 .article-inner-wrapper .entry-footer {
  margin-top: 20px;
}
.blog-grid-6 .article-inner-wrapper .entry-title {
  line-height: 34px;
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .blog-grid-6 .article-inner-wrapper .entry-title {
    line-height: 40px;
    font-size: 30px;
  }
}
.blog-grid-6 .article-inner-wrapper .entry-title a {
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.blog-grid-6 .article-inner-wrapper .entry-title a:hover {
  background-size: 100% 2px;
  transition: all 0.4s ease-out;
  color: var(--rt-title-color);
}
.blog-grid-6 .article-inner-wrapper .rt-post-meta ul li:not(:last-child) {
  margin-right: 15px;
}
.blog-grid-6 .article-inner-wrapper .rt-post-meta ul li:not(:last-child):after {
  content: "-";
  color: #484848;
  margin-left: 15px;
}

.rt-post-sm-overlay:hover .article-inner-wrapper .post-thumbnail img {
  transform: scale(1.07);
}
.rt-post-sm-overlay:last-child .article-inner-wrapper {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.rt-post-sm-overlay:nth-child(even) .article-inner-wrapper {
  flex-direction: row;
}
.rt-post-sm-overlay .article-inner-wrapper {
  display: block;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 25px;
  gap: 30px;
}
@media (min-width: 1200px) {
  .rt-post-sm-overlay .article-inner-wrapper {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper {
    display: flex;
    align-items: stretch;
  }
}
.rt-post-sm-overlay .article-inner-wrapper .post-thumbnail-wrap {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper .post-thumbnail-wrap {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper .post-thumbnail-wrap .post-thumbnail {
    max-height: 180px;
    width: 220px;
  }
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper .post-thumbnail-wrap .post-thumbnail a {
    max-height: 180px;
    width: 220px;
  }
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper .post-thumbnail-wrap .post-thumbnail a img {
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 220px;
  }
}
@media (min-width: 768px) {
  .rt-post-sm-overlay .article-inner-wrapper .entry-wrapper {
    flex: 1;
  }
}
.rt-post-sm-overlay .article-inner-wrapper .entry-wrapper .entry-header .entry-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.rt-pricing-box-wrapper {
  border: 1px solid var(--rt-border-color);
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
  z-index: 0;
  position: relative;
}
.rt-pricing-box-wrapper::before, .rt-pricing-box-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper::before {
  background-color: var(--rt-body-bg-color);
}
.rt-pricing-box-wrapper::after {
  opacity: 0;
  visibility: hidden;
}
.rt-pricing-box-wrapper:hover::after {
  opacity: 1;
  visibility: visible;
}
.rt-pricing-box-wrapper .is-featured {
  background: var(--rt-primary-color);
  position: absolute;
  width: 200px;
  text-align: center;
  transform: rotate(41deg);
  right: -58px;
  height: 43px;
  line-height: 43px;
  top: 16px;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .plan-name-wrap .plan-name {
  color: var(--rt-title-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.9px;
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .subtitle {
  padding-bottom: 22px;
}
.rt-pricing-box-wrapper .price-wrap .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--rt-title-color);
  line-height: 1.2;
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .price-wrap .seperator, .rt-pricing-box-wrapper .price-wrap .period {
  font-size: 14px;
  color: var(--rt-meta-color);
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .feature-lists ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-pricing-box-wrapper .feature-lists ul li {
  text-align: left;
  line-height: 1.4;
  margin-bottom: 14px;
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .feature-lists ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  margin-right: 7px;
  font-size: 10px;
  color: var(--rt-primary-color);
  background-color: rgba(var(--rt-primary-rgb), 0.1);
  transition: 0.4s ease-in-out;
}
.rt-pricing-box-wrapper .feature-lists ul li svg {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
.rt-pricing-box-wrapper .rt-button {
  padding-top: 20px;
}
.rt-pricing-box-wrapper .icon-holder {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 50px;
  z-index: -1;
}
.rt-pricing-box-wrapper hr {
  margin: 20px 0;
}

.rt-pricing-layout-2 .price-wrap .price {
  display: block;
}
.rt-pricing-layout-2 .price-wrap .period {
  font-size: 16px;
}
.rt-pricing-layout-2 hr {
  border-bottom: 1px solid var(--rt-border-color);
  margin: 30px 0;
}

.rt-pricing-layout-3 header {
  text-align: center;
}
.rt-pricing-layout-3 .price-wrap .price {
  display: block;
}
.rt-pricing-layout-3 .price-wrap .period {
  font-size: 16px;
}

.rt-pricing-tab .price-switch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}
.rt-pricing-tab .pack-name {
  display: inline-block;
  font-size: 16px;
  color: var(--rt-meta-color);
  font-weight: 600;
  text-transform: capitalize;
}
.rt-pricing-tab .pack-name:last-of-type {
  color: var(--rt-primary-color);
}
.rt-pricing-tab .pricing-switch-container {
  width: 60px;
  height: 30px;
  clear: both;
  text-align: center;
  position: relative;
  border-radius: 100px;
  background-color: #FFFFFF;
  box-shadow: inset 0 0 2px #949494;
}
.rt-pricing-tab .pricing-switch-container .pricing-switch {
  cursor: pointer;
  width: 100%;
  float: left;
  height: 1rem;
  line-height: 1rem;
  position: relative;
  z-index: 888;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.rt-pricing-tab .pricing-switch-container .pricing-switch:nth-child(2).pricing-switch-active ~ .switch-button {
  left: 55%;
}
.rt-pricing-tab .pricing-switch-container .switch-button {
  height: 24px;
  width: 24px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  z-index: 555;
  margin: 0;
  border: none;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
  background-color: var(--rt-primary-color);
}
.rt-pricing-tab .price-switch-box--active .pack-name:first-of-type {
  color: var(--rt-primary-color);
}
.rt-pricing-tab .price-switch-box--active .pack-name:last-of-type {
  color: var(--rt-meta-color);
}
.rt-pricing-tab .price-wrap {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.rt-pricing-tab .price-wrap .price-box {
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
}
.rt-pricing-tab .price-wrap .price-box.price-box-show {
  animation: showPrice 0.7s forwards;
}
.rt-pricing-tab .price-wrap .price-box.price-box-hide {
  animation: hidePrice 0.7s forwards;
}
.rt-pricing-tab .price-note {
  background-color: var(--rt-gray10);
  border-radius: 6px;
  text-align: center;
  margin-top: 12px;
  padding: 12px 24px;
}

.rt-price-tab-box {
  border: 1px solid var(--rt-border-color);
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
  z-index: 0;
  position: relative;
}
.rt-price-tab-box::before, .rt-price-tab-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box::before {
  background-color: var(--rt-body-bg-color);
}
.rt-price-tab-box::after {
  opacity: 0;
  visibility: hidden;
}
.rt-price-tab-box:hover::after {
  opacity: 1;
  visibility: visible;
}
.rt-price-tab-box .is-featured {
  background: var(--rt-primary-color);
  position: absolute;
  width: 200px;
  text-align: center;
  transform: rotate(41deg);
  right: -58px;
  height: 43px;
  line-height: 43px;
  top: 16px;
  font-size: 12px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .rt-title {
  color: var(--rt-title-color);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.9px;
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .sub-title {
  padding-bottom: 22px;
}
.rt-price-tab-box .price-wrap .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--rt-title-color);
  line-height: 1.2;
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .price-wrap .seperator, .rt-price-tab-box .price-wrap .period {
  font-size: 14px;
  color: var(--rt-meta-color);
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .feature-lists ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-price-tab-box .feature-lists ul li {
  text-align: left;
  line-height: 1.4;
  margin-bottom: 14px;
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .feature-lists ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 10px;
  color: var(--rt-primary-color);
  background-color: rgba(var(--rt-primary-rgb), 0.1);
  transition: 0.4s ease-in-out;
}
.rt-price-tab-box .rt-button {
  padding-top: 20px;
}

/*-------------------------------------
#. EL: Logo Slider
---------------------------------------*/
.rt-logo-brand .logo-box.gray img {
  filter: grayscale(1);
  transition: all ease 0.21s;
  opacity: 0.4;
}
.rt-logo-brand .logo-box.gray:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.rt-logo-brand .logo-box.brightness img {
  filter: brightness(0) invert(1);
  transition: all ease 0.21s;
}
.rt-logo-brand .logo-box.brightness:hover img {
  opacity: 1;
}
.rt-logo-brand .logo-box a {
  line-height: 1;
}

.rt-grid-brand-logo .rt-image-layout .rt-image a img {
  filter: grayscale(100%);
  transition: all ease 0.21s;
  opacity: 0.5;
}
.rt-grid-brand-logo .rt-image-layout .rt-image a img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.rt-testimonial-slider .slider-item {
  position: relative;
  z-index: 0;
  background-color: var(--rt-title-color);
  padding: 60px;
}
.rt-testimonial-slider .slider-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-testimonial-slider .slider-item .item-rating {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: 32px;
}
.rt-testimonial-slider .slider-item .item-rating .icon-star-1 {
  font-weight: 900;
}
.rt-testimonial-slider .slider-item .item-rating .active {
  color: var(--rt-primary-color);
}
.rt-testimonial-slider .slider-item .item-rating .deactive {
  color: var(--rt-gray20);
}
.rt-testimonial-slider .slider-item .rt-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}
.rt-testimonial-slider .slider-item .rt-content p {
  margin-bottom: 0;
}
.rt-testimonial-slider .slider-item .rt-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
  color: #FFFFFF;
}
.rt-testimonial-slider .slider-item .rt-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 13px;
}
.rt-testimonial-slider .slider-item .quote {
  margin-bottom: 25px;
  display: block;
  text-align: right;
}
.rt-testimonial-slider .slider-item .quote i {
  font-size: 30px;
}
.rt-testimonial-slider .slider-item .item-author-info {
  gap: 15px;
}

.rt-testimonial-layout-1 {
  text-align: center;
}
.rt-testimonial-layout-1 .slider-item {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 0;
}
.rt-testimonial-layout-1 .slider-item:before {
  content: "";
  background-color: #000;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.rt-testimonial-layout-1 .rt-clip-path {
  padding: 60px;
}
.rt-testimonial-layout-1 .rt-clip-path:before {
  content: "";
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 99%, 51% 88%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 99%, 51% 88%, 0 100%, 0% 50%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.rt-testimonial-layout-1 .testimonial-content .quote {
  text-align: center;
}
.rt-testimonial-layout-1 .testimonial-content .item-rating .has-rating i {
  color: rgb(255, 255, 255);
}
.rt-testimonial-layout-1 .testimonial-content .item-author-info .rt-title {
  color: rgb(255, 255, 255);
}
.rt-testimonial-layout-1 .testimonial-img {
  margin-bottom: 0;
  text-align: center;
  position: relative;
  bottom: -40px;
}
.rt-testimonial-layout-1 .testimonial-img img {
  max-width: 60px;
  max-height: 60px;
}

.rt-testimonial-layout-2 .slider-item {
  background-color: transparent;
  padding: 0;
}
.rt-testimonial-layout-2 .slider-item .testimonial-img img {
  max-width: 60px;
  max-height: 60px;
}
.rt-testimonial-layout-2 .slider-item .item-rating {
  margin-bottom: 15px;
}
.rt-testimonial-layout-2 .slider-item .testimonial-content {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 42px 47px 90px;
}
.rt-testimonial-layout-2 .slider-item .testimonial-content:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.rt-testimonial-layout-2 .slider-item .testimonial-content.rt-clip-path {
  padding: 42px 47px 90px;
  position: relative;
}
.rt-testimonial-layout-2 .slider-item .testimonial-content.rt-clip-path:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-clip-path: polygon(0% 83.669%, 0% 0%, 100% 0%, 100% 83.669%, 25.89% 83.669%, 10.205% 100%, 10.205% 83.669%, 0% 83.669%);
          clip-path: polygon(0% 83.669%, 0% 0%, 100% 0%, 100% 83.669%, 25.89% 83.669%, 10.205% 100%, 10.205% 83.669%, 0% 83.669%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.rt-testimonial-layout-2 .slider-item .testimonial-content.rt-clip-path:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -23px;
  right: 0;
  background: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/images/testimonial-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  display: none;
}
@media (min-width: 1200px) {
  .rt-testimonial-layout-2 .slider-item .testimonial-content.rt-clip-path:after {
    display: block;
  }
}
.rt-testimonial-layout-2 .slider-item .rt-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (min-width: 576px) {
  .rt-testimonial-layout-2 .slider-item .rt-content p {
    font-size: 22px;
    line-height: 35px;
    font-weight: 300;
  }
}
.rt-testimonial-layout-2 .slider-item .quote {
  margin-bottom: 0;
  text-align: right;
  display: block;
}
.rt-testimonial-layout-2 .slider-item .quote i {
  color: #FFFFFF;
  font-size: 50px;
}
.rt-testimonial-layout-2 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (min-width: 1200px) {
  .rt-testimonial-layout-2 .item-author-info {
    margin-top: 45px;
  }
}
.rt-testimonial-layout-2 .item-author-info .rt-subtitle {
  font-size: 15px;
  font-style: italic;
  color: #FFFFFF;
}
.rt-testimonial-layout-2 .item-author-info .rt-title {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
}
.rt-testimonial-layout-2.rt-testimonial-slider:hover .swiper-button-prev {
  left: 0;
}
@media (min-width: 1200px) {
  .rt-testimonial-layout-2.rt-testimonial-slider:hover .swiper-button-prev {
    left: 250px;
  }
}
.rt-testimonial-layout-2.rt-testimonial-slider:hover .swiper-button-next {
  right: 0;
}
@media (min-width: 1200px) {
  .rt-testimonial-layout-2.rt-testimonial-slider:hover .swiper-button-next {
    right: 250px;
  }
}

.rt-testimonial-layout-4 .slider-item {
  background-color: #FFFFFF;
  padding: 40px;
}
.rt-testimonial-layout-4 .slider-item .item-rating {
  justify-content: center;
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.rt-testimonial-layout-4 .slider-item .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-4 .slider-item .testimonial-img img {
  max-width: 60px;
  max-height: 60px;
}
.rt-testimonial-layout-4 .slider-item .rt-content {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 25px;
  text-align: center;
}
.rt-testimonial-layout-4 .item-author-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rt-testimonial-layout-4 .item-author-info-wrap .quote {
  margin-bottom: 0;
}
.rt-testimonial-layout-4 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.rt-testimonial-layout-4 .item-author-info .rt-subtitle {
  color: var(--rt-primary-color);
}
.rt-testimonial-layout-4 .item-author-info .rt-title {
  color: var(--rt-title-color);
  margin-bottom: 0;
}

.rt-service-slider .rt-swiper-slider .swiper-navigation {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  gap: 0;
  position: relative;
  transition: all 520ms ease;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button {
  height: 80px;
  width: 80px;
  background-color: var(--rt-title-color);
  border: 0;
  border-radius: 0;
  position: relative;
  transform: translateY(0);
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button:before {
  display: none;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-title-color);
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button:hover i {
  color: var(--rt-primary-color);
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button i {
  font-size: 22px;
  -webkit-text-stroke: 1px var(--rt-primary-color);
  color: transparent;
  transition: all 520ms ease;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button i:before {
  width: auto;
  margin: 0;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button.active {
  background-color: var(--rt-primary-color);
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button.active i {
  -webkit-text-stroke: 1px var(--rt-title-color);
  color: transparent;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.rt-service-slider .rt-swiper-slider .swiper-navigation .swiper-button-next {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.rt-service-slider .rt-swiper-slider .swiper-pagination {
  margin-top: 0;
}
.rt-service-slider .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--rt-title-color);
}
.rt-service-slider .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rt-primary-color);
}
.rt-service-slider .swiper-slide-active .slider-item .service-slider-content .service-slider-img .rt-icon {
  transform: translateY(0);
  transition-delay: 0.5s;
  opacity: 1;
  visibility: visible;
}
.rt-service-slider .swiper-slide-active .slider-item .service-slider-content .rt-content .stroke-title {
  transform: translateY(0);
  transition-delay: 0.5s;
  opacity: 1;
  visibility: visible;
}
.rt-service-slider .swiper-slide-active .slider-item .service-slider-content .rt-content p {
  transform: translateY(0);
  transition-delay: 0.7S;
  opacity: 1;
  visibility: visible;
}
.rt-service-slider .swiper-slide-active .slider-item .service-slider-content .rt-content .rt-button {
  transform: translateY(0);
  transition-delay: 0.9s;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .rt-service-slider .slider-item {
    margin: 40px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .rt-service-slider .slider-item .service-slider-content {
    display: flex;
    align-items: stretch;
  }
}
.rt-service-slider .slider-item .service-slider-content .service-slider-img {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .rt-service-slider .slider-item .service-slider-content .service-slider-img {
    height: 600px;
  }
}
.rt-service-slider .slider-item .service-slider-content .service-slider-img img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 1200px) {
  .rt-service-slider .slider-item .service-slider-content .service-slider-img img {
    height: 600px;
    border-radius: 10px 0 0 10px;
  }
}
.rt-service-slider .slider-item .service-slider-content .service-slider-img .rt-icon {
  height: 100px;
  width: 100px;
  background-color: var(--rt-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  right: 50px;
  border-radius: 10px;
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-service-slider .slider-item .service-slider-content .service-slider-img .rt-icon:hover {
  background-color: #FFFFFF;
}
.rt-service-slider .slider-item .service-slider-content .service-slider-img .rt-icon i {
  font-size: 40px;
  color: var(--rt-title-color);
}
.rt-service-slider .slider-item .service-slider-content .rt-content {
  background-color: var(--rt-secondary-color);
  padding: 40px;
  flex: 1;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .rt-service-slider .slider-item .service-slider-content .rt-content {
    height: 600px;
    padding: 60px 75px 90px 75px;
    border-radius: 0 10px 10px 0;
  }
}
.rt-service-slider .slider-item .service-slider-content .rt-content .stroke-title {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-service-slider .slider-item .service-slider-content .rt-content p {
  margin-bottom: 20px;
  color: var(--rt-title-color);
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.rt-service-slider .slider-item .service-slider-content .rt-content .rt-button {
  transform: translateY(70px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.stroke-title {
  display: inline-block;
  position: relative;
  color: transparent;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  -webkit-text-stroke: 1px var(--rt-title-color);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .stroke-title {
    font-size: 100px;
    line-height: 1.1;
  }
}
.stroke-title:hover {
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
  color: var(--rt-primary-color);
}

/*----------------------------------*/
/* Service Accordion */
/*----------------------------------*/
.rt-service-accordion-wrap {
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .rt-service-accordion-wrap {
    flex-direction: row;
  }
}
.rt-service-accordion-wrap .item {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  flex: 1;
  transition: flex 0.4s ease;
  margin-right: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .rt-service-accordion-wrap .item {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.rt-service-accordion-wrap .item:hover {
  flex: 2;
}
.rt-service-accordion-wrap .item:hover .content {
  transition: all 0.4s 0.4s;
  transform: none;
}
.rt-service-accordion-wrap .item:hover .content .inner .accordion-title {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition: all 0.4s 0.4s;
}
.rt-service-accordion-wrap .item .content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.rt-service-accordion-wrap .item .content .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rt-service-accordion-wrap .item .content .inner .rt-accordion-icon {
  height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .rt-service-accordion-wrap .item .content .inner .rt-accordion-icon {
    height: 50px;
    width: 50px;
  }
}
.rt-service-accordion-wrap .item .content .inner .rt-accordion-icon i {
  color: var(--rt-title-color);
  font-size: 24px;
}
@media (max-width: 767px) {
  .rt-service-accordion-wrap .item .content .inner .rt-accordion-icon i {
    font-size: 18px;
  }
}
.rt-service-accordion-wrap .item .content .inner .accordion-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: translate3d(30%, 0, 0);
  transition: all 0.6s ease;
  margin-bottom: 0;
}
.rt-service-accordion-wrap .item .content .inner .accordion-title a {
  color: #FFFFFF;
}

/*----------------------------------*/
/* Creative service */
/*----------------------------------*/
.rt_creative-service_wrapper.creative-service-style-01 {
  position: relative;
  overflow: hidden;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-images {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-images .service-img-box {
  background-size: cover;
  background-position: center;
  position: absolute;
  display: block;
  width: 100%;
  height: 700px;
  top: 0;
  left: 0;
  animation: box-animation-out 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 12;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 2;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 700px;
  width: 25%;
  transition: all 1s ease;
  padding: 40px 50px;
  overflow: hidden;
  background-color: rgba(1, 2, 16, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder {
  margin-top: 0;
  width: 100%;
  transform: translateY(40px);
  gap: 0;
  transition: 0.5s ease-in-out;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .service-title {
  margin-bottom: 10px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder p {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button {
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button .rt-view-btn {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 400;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button .rt-view-btn .button-text {
  position: relative;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button .rt-view-btn .button-text:before {
  content: "";
  height: 1.5px;
  width: 0;
  background-color: rgb(255, 255, 255);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button .rt-view-btn .button-text:hover:before {
  width: 100%;
  transition: width 0.4s ease;
}
.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button .rt-view-btn i {
  margin-left: 5px;
  font-size: 14px;
  transition: all 0.4s ease;
}

.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .service-image-mobile {
  display: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rt_creative-service_wrapper.creative-service-style-01 .service-images .service-img-box.service-img-active {
  animation: box-animation-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 6;
}

.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item.item-active {
  border-right: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item.item-active .info-content-holder {
  transform: translateY(0);
}

.rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item.item-active .info-content-holder .rt-view-button {
  visibility: visible;
  opacity: 1;
}

@keyframes box-animation-in {
  0% {
    transform: scale(1);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes box-animation-out {
  0% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
/*---------------------------------------------*/
/* Responsive View */
/*---------------------------------------------*/
@media (max-width: 1399px) {
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item {
    padding: 40px 25px;
  }
}
@media (max-width: 991px) {
  .rt_creative-service_wrapper.creative-service-style-01 .service-images {
    display: none;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items {
    flex-wrap: wrap;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item {
    width: 50%;
    height: 370px;
    position: relative;
    border-right: 0;
    padding: 25px;
    z-index: 2;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .service-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder {
    position: relative;
    z-index: 3;
    transform: translateY(30px);
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item .info-content-holder .rt-view-button {
    margin-top: 10px;
  }
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item.item-active:before {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 575px) {
  .rt_creative-service_wrapper.creative-service-style-01 .service-items .service-item {
    width: 100%;
  }
}
.rt-counter-layout .rt-counter-box {
  position: relative;
  display: inline-block;
}
.rt-counter-layout .rt-counter-box:hover:after {
  visibility: hidden;
  opacity: 0;
}
.rt-counter-layout .rt-counter-box:hover:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
  left: 0%;
}
.rt-counter-layout .rt-counter-box:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #D9D9D9;
  position: absolute;
  top: 64%;
  left: 0;
  visibility: visible;
  opacity: 1;
  transition: width 0.8s;
}
.rt-counter-layout .rt-counter-box:before {
  content: "";
  height: 1px;
  width: 0;
  background-color: var(--rt-primary-color);
  position: absolute;
  top: 64%;
  left: 100%;
  visibility: hidden;
  opacity: 0;
  transition: width 0.8s;
}
.rt-counter-layout .rt-counter-box .counter-number {
  display: inline-flex;
  font-size: 50px;
  font-weight: 700;
  color: var(--rt-title-color);
  line-height: 1.2;
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 15px;
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
}
.rt-counter-layout .rt-counter-box .counter-number .counter {
  position: relative;
}
.rt-counter-layout .rt-counter-box .counter-number .counter:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--rt-primary-color);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
.rt-counter-layout .rt-counter-box .counter-number .counter-unit {
  position: relative;
}
.rt-counter-layout .rt-counter-box .counter-number .counter-unit:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--rt-primary-color);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
@media (min-width: 1200px) {
  .rt-counter-layout .rt-counter-box .counter-number {
    font-size: 60px;
  }
}
.rt-counter-layout .rt-counter-box .counter-label {
  font-size: 24px;
  font-weight: 500;
  color: var(--rt-title-color);
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .rt-counter-layout .rt-counter-box .counter-label {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .rt-counter-layout .rt-counter-box .counter-label {
    font-size: 22px;
    line-height: 1;
  }
}
.rt-counter-layout .rt-counter-box:hover .counter-number {
  color: transparent;
  -webkit-text-stroke: 2px var(--rt-primary-color);
}
.rt-counter-layout .rt-counter-box:hover .counter-number .counter::before {
  width: 100%;
}
.rt-counter-layout .rt-counter-box:hover .counter-number .counter-unit::before {
  width: 100%;
}

.rt-counter-layout-1 .rt-counter-box .counter-number {
  text-decoration: none;
  -webkit-background-clip: text;
          background-clip: text;
  letter-spacing: 1.6px;
  -webkit-text-stroke: 1px var(--rt-title-color);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 15px;
}
.rt-counter-layout-1 .rt-counter-box .counter-label {
  letter-spacing: 0.3px;
  color: var(--rt-title-color);
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
}

.rt-counter-layout-2 .rt-counter-box .counter-number {
  color: transparent;
  text-decoration: none;
  -webkit-background-clip: text;
          background-clip: text;
  letter-spacing: 1.6px;
}
.rt-counter-layout-2 .rt-counter-box .counter-label {
  letter-spacing: 1.6px;
  color: #FFFFFF;
}

.rt-rating-layout .rating-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1;
}
.rt-rating-layout .rating-wrap {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.rt-rating-layout .item-rating {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 20px;
}
.rt-rating-layout .item-rating .active {
  color: var(--rt-tertiary-color);
}
.rt-rating-layout .item-rating .deactive {
  color: var(--rt-gray10);
}

.rt-image-layout {
  position: relative;
}
.rt-image-layout .rt-image {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.rt-image-layout .rt-image .rt-img {
  display: block;
}
.rt-image-layout .rt-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .rt-image-layout .rt-image img {
    width: 100%;
  }
}
.rt-image-layout .rt-content {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rt-image-layout-1 .rt-image {
  position: relative;
  z-index: 1;
}

.rt-image-layout-3 .rt-image .img-scale-animation {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: transform 0.9s cubic-bezier(0.34, 0.17, 0.24, 0.94), -webkit-clip-path 0.7s cubic-bezier(0.34, 0.17, 0.24, 0.94);
  transition: transform 0.9s cubic-bezier(0.34, 0.17, 0.24, 0.94), clip-path 0.7s cubic-bezier(0.34, 0.17, 0.24, 0.94);
  transition: transform 0.9s cubic-bezier(0.34, 0.17, 0.24, 0.94), clip-path 0.7s cubic-bezier(0.34, 0.17, 0.24, 0.94), -webkit-clip-path 0.7s cubic-bezier(0.34, 0.17, 0.24, 0.94);
  transform: translateX(20px);
}
.rt-image-layout-3 .rt-image .img-scale-animation.active-animation {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

.rt-gallery-item .image-link {
  position: relative;
  overflow: hidden;
  background-color: var(--rt-title-color);
}
.rt-gallery-item .image-link i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.31s;
}
.rt-gallery-item .image-link img {
  opacity: 1;
  transition: all ease 0.31s;
}
.rt-gallery-item:hover .image-link i {
  visibility: visible;
  opacity: 1;
}
.rt-gallery-item:hover .image-link img {
  opacity: 0.5;
}

.rt-blur-shape ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-blur-shape ul li {
  position: absolute;
  z-index: -1;
}

.rt-blur-shape-layout-1 li {
  height: 536px;
  width: 536px;
  border-radius: 536px;
  background-color: #EDFBF3;
  filter: blur(150px);
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.rt-blur-shape-layout-2 li {
  width: 431px;
  height: 431px;
  border-radius: 431px;
  background: #EAE8FF;
  filter: blur(100px);
}
.rt-blur-shape-layout-2 li:nth-child(1) {
  top: 0;
  left: 0;
}
.rt-blur-shape-layout-2 li:nth-child(2) {
  top: 0;
  right: 0;
}

.rt-blur-shape-layout-3 li {
  height: 529px;
  width: 529px;
  border-radius: 529px;
  filter: blur(100px);
}
.rt-blur-shape-layout-3 li:nth-child(1) {
  background-color: #E5E6FF;
  top: -200px;
  left: 0;
}
.rt-blur-shape-layout-3 li:nth-child(2) {
  background-color: #FAECE8;
  top: -300px;
  right: 0;
}
.rt-blur-shape-layout-3 li:nth-child(3) {
  background-color: #EBF8FF;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.rt-tab-block .tab-block-tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-tab-block .tab-block-tab {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 24px;
  position: relative;
  color: var(--rt-primary-color);
  transition: all 520ms ease;
}
.rt-tab-block .tab-block-tab.is-active {
  color: var(--rt-tertiary-color);
}
@media (max-width: 575px) {
  .rt-tab-block .tab-block-tab {
    width: 100%;
  }
}
.rt-tab-block .tab-block-content p:last-child {
  margin: 0;
}
.rt-tab-block .tab-block-content .rt-button {
  margin-top: 35px;
}
.rt-tab-block .tab-block-content .feature-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 7px;
}
@media (max-width: 991px) {
  .rt-tab-block .tab-block-content .feature-wrap {
    flex-direction: column;
  }
}
.rt-tab-block .tab-block-content .content-wrap {
  flex: 1;
}
.rt-tab-block .tab-block-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-tab-block .tab-block-content ul li {
  position: relative;
  padding-left: 32px;
  color: var(--rt-title-color);
}
.rt-tab-block .tab-block-content ul li:before {
  position: absolute;
  left: 0;
  font-size: 11px;
  content: "\e825";
  font-family: "rt-fontello";
  transition: all ease 0.31s;
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.rt-tab-block .tab-block-content ul li + li {
  margin-top: 10px;
}

.rt-tab-layout-1 .tab-block-tab {
  background-color: var(--rt-body-bg-color);
  border-color: var(--rt-border-color);
  border-left-style: solid;
  border-top: solid;
  border-width: 1px;
}
.rt-tab-layout-1 .tab-block-tab:last-of-type {
  border-right-style: solid;
}
.rt-tab-layout-1 .tab-block-tab::before,
.rt-tab-layout-1 .tab-block-tab::after {
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  transition: 0.1s ease-in-out;
}
.rt-tab-layout-1 .tab-block-tab::before {
  background-color: var(--rt-primary-color);
  left: 0;
  right: 0;
  top: -2px;
}
.rt-tab-layout-1 .tab-block-tab::after {
  background-color: transparent;
  bottom: -2px;
  left: 0;
  right: 0;
}
.rt-tab-layout-1 .tab-block-tab.is-active::before {
  background-color: var(--rt-tertiary-color);
}
.rt-tab-layout-1 .tab-block-tab.is-active::after {
  background-color: #fff;
}
.rt-tab-layout-1 .tab-block-content {
  border: 1px solid var(--rt-border-color);
  border-radius: 0 12px 12px 12px;
  padding: 24px;
}

.rt-tab-layout-2 .tab-block-tabs {
  gap: 10px;
  margin-bottom: 30px;
}
.rt-tab-layout-2 .tab-block-tab {
  background-color: var(--rt-body-bg-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
}
.rt-tab-layout-2 .tab-block-tab.is-active {
  background-color: var(--rt-tertiary-color);
  color: var(--rt-button-text-color);
}
.rt-tab-layout-2 .tab-block-content {
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 24px;
}

.rt-tab-layout-3 .tab-block {
  display: flex;
  gap: 30px;
}
.rt-tab-layout-3 .tab-block-tabs {
  gap: 10px;
}
@media (min-width: 1025px) {
  .rt-tab-layout-3 .tab-block-tabs {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .rt-tab-layout-3 .tab-block {
    flex-direction: column;
  }
}
.rt-tab-layout-3 .tab-block-tab {
  background-color: var(--rt-body-bg-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
}
.rt-tab-layout-3 .tab-block-tab.is-active {
  background-color: var(--rt-tertiary-color);
  color: var(--rt-button-text-color);
}
.rt-tab-layout-3 .tab-block-content {
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
}

.project-wrap-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-wrap-1:after {
  content: "";
  height: 50%;
  width: 88%;
  background-color: var(--rt-primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  border-radius: 0 0 50px 0;
  display: none;
}
@media (min-width: 1200px) {
  .project-wrap-1:after {
    display: block;
  }
}
.project-wrap-1:before {
  content: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/images/project-bg.svg);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .project-wrap-1:before {
    display: block;
  }
}

.project-grid-layout-1 .project-item {
  text-align: center;
}
.project-grid-layout-1 .project-item:hover .project-thumbs img {
  transform: scale(1);
}
.project-grid-layout-1 .project-item:hover .project-content:after {
  height: 100%;
}
.project-grid-layout-1 .project-item:hover .project-content .project-subtitle {
  color: #FFFFFF;
}
.project-grid-layout-1 .project-item:hover .project-content .project-cat {
  background-color: #FFFFFF;
}
.project-grid-layout-1 .project-item .project-thumbs {
  margin-bottom: 0;
}
.project-grid-layout-1 .project-item .project-thumbs img {
  transform: scale(1.1);
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.project-grid-layout-1 .project-item .project-thumbs:after {
  display: none;
}
.project-grid-layout-1 .project-item .project-content {
  background-color: #FFFFFF;
  padding: 30px;
  margin-right: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  border-radius: 10px;
}
.project-grid-layout-1 .project-item .project-content:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: var(--rt-primary-color);
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.project-grid-layout-1 .project-item .project-subtitle {
  font-size: 18px;
  color: #8d8d8d;
  margin-bottom: 5px;
}
.project-grid-layout-1 .project-item .project-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.project-grid-layout-1 .project-item .project-title a {
  color: var(--rt-title-color);
}
.project-grid-layout-1 .project-item .project-cat {
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  border-radius: 500px;
  padding: 8px 15px 7px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 520ms ease;
}
.project-grid-layout-1 .project-item .project-excerpt {
  margin-top: 10px;
}

.project-grid-layout-3 .project-item {
  display: block;
  text-align: left;
}
@media (min-width: 992px) {
  .project-grid-layout-3 .project-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.project-grid-layout-3 .project-item .project-date {
  font-size: 22px;
  font-weight: 500;
  color: var(--rt-title-color);
}
@media (min-width: 992px) {
  .project-grid-layout-3 .project-item .project-flex-item {
    flex: 0 0 80%;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
.project-grid-layout-3 .project-item .project-content {
  margin-top: 25px;
  position: unset;
  padding: 0;
}
@media (min-width: 992px) {
  .project-grid-layout-3 .project-item .project-content {
    margin-top: 0;
  }
}
.project-grid-layout-3 .project-item .project-content:after {
  display: none;
}
.project-grid-layout-3 .project-item .project-content .project-cat {
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  border-radius: 500px;
  padding: 8px 15px 7px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 520ms ease;
}
.project-grid-layout-3 .project-item .project-content .project-cat:hover {
  background-color: var(--rt-title-color);
}
.project-grid-layout-3 .project-item .project-content .project-info .button-3 {
  margin-top: 40px;
}

.project-slider-layout-4 .project-item {
  text-align: center;
}
.project-slider-layout-4 .project-item:hover .project-thumbs img {
  transform: scale(1);
}
.project-slider-layout-4 .project-item:hover .project-content:after {
  height: 100%;
}
.project-slider-layout-4 .project-item:hover .project-content .project-subtitle {
  color: #FFFFFF;
}
.project-slider-layout-4 .project-item:hover .project-content .project-cat {
  background-color: #FFFFFF;
}
.project-slider-layout-4 .project-item .project-thumbs {
  margin-bottom: 0;
}
.project-slider-layout-4 .project-item .project-thumbs img {
  transform: scale(1.1);
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.project-slider-layout-4 .project-item .project-thumbs:after {
  display: none;
}
.project-slider-layout-4 .project-item .project-content {
  background-color: #FFFFFF;
  padding: 30px;
  margin-right: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  border-radius: 10px;
}
.project-slider-layout-4 .project-item .project-content:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: var(--rt-primary-color);
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.project-slider-layout-4 .project-item .project-subtitle {
  font-size: 18px;
  color: #8d8d8d;
  margin-bottom: 5px;
}
.project-slider-layout-4 .project-item .project-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.project-slider-layout-4 .project-item .project-title a {
  color: var(--rt-title-color);
}
.project-slider-layout-4 .project-item .project-cat {
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  border-radius: 500px;
  padding: 8px 15px 7px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.project-slider-layout-4 .project-item .project-excerpt {
  margin-top: 10px;
}
.project-slider-layout-4 .project-item .rt-button {
  margin-top: 20px;
}
.project-slider-layout-4 .rt-swiper-slider {
  position: inherit;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 60px;
  transition: all 520ms ease;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button {
  position: relative;
  transform: translateY(0);
  border: 1px solid var(--rt-title-color);
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-title-color);
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button:hover i {
  color: var(--rt-primary-color);
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button i {
  color: var(--rt-title-color);
  transition: all 520ms ease;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button:before {
  content: "";
  height: 1px;
  width: 250px;
  background-color: var(--rt-title-color);
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  left: inherit;
  bottom: inherit;
  right: inherit;
  z-index: -1;
  transition: 0.4s;
  border-radius: 0;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-prev::before {
  left: -140px;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-prev.active::before {
  width: 500px;
  left: -265px;
  transition: all 0.6s ease-in-out;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-next {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-next::before {
  right: -390px;
  left: auto;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-navigation .swiper-button-next.active::before {
  width: 500px;
  right: -770px;
  transition: all 0.6s ease-in-out;
}
.project-slider-layout-4 .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rt-title-color);
}

.project-grid-layout-5 .project-item {
  text-align: left;
}
.project-grid-layout-5 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
.project-grid-layout-5 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail:after {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease-in-out;
}
.project-grid-layout-5 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail img {
  width: 100%;
  transition: all 0.11s cubic-bezier(0.3, 0.02, 0, 0.6);
  border-radius: 10px;
}
.project-grid-layout-5 .project-item .project-content {
  background-color: transparent;
  padding: 0;
}
.project-grid-layout-5 .project-item .project-content:after {
  display: none;
}
.project-grid-layout-5 .project-item .project-content .project-number {
  color: #FFFFFF;
  font-size: 30px;
  margin-bottom: 20px;
}
.project-grid-layout-5 .project-item .project-content .project-title {
  font-size: 30px;
}
.project-grid-layout-5 .project-item .project-content .project-title a {
  color: #FFFFFF;
}
.project-grid-layout-5 .project-item .project-content .project-title a:hover {
  color: var(--rt-primary-color);
}
.project-grid-layout-5 .project-item .project-content .project-excerpt {
  color: #FFFFFF;
}
.project-grid-layout-5 .project-item .rt-button .btn {
  justify-content: center;
  padding: 0;
}

.project-grid-layout-6 .project-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.project-grid-layout-6 .project-item:hover .project-thumbs .post-thumbnail-wrap .post-thumbnail:after {
  height: 100%;
  transition: height 0.5s ease;
}
.project-grid-layout-6 .project-item:hover .project-content .project-cat {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.project-grid-layout-6 .project-item:hover .project-content .project-cat a {
  color: var(--rt-title-color);
}
.project-grid-layout-6 .project-item:hover .project-hover-content {
  visibility: visible;
  opacity: 1;
  margin-bottom: 0;
}
.project-grid-layout-6 .project-item .project-thumbs {
  border-radius: 0;
}
.project-grid-layout-6 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .project-grid-layout-6 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail {
    height: 560px;
  }
}
.project-grid-layout-6 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail:after {
  position: absolute;
  content: "";
  height: 35%;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0;
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
.project-grid-layout-6 .project-item .project-thumbs .post-thumbnail-wrap .post-thumbnail img {
  width: 100%;
  transition: all 0.11s cubic-bezier(0.3, 0.02, 0, 0.6);
  border-radius: 0;
  transform: scale(1);
  height: 100%;
}
.project-grid-layout-6 .project-item .project-content {
  position: absolute;
  padding: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .project-grid-layout-6 .project-item .project-content {
    padding: 50px 70px;
  }
}
.project-grid-layout-6 .project-item .project-content:after {
  display: none;
}
.project-grid-layout-6 .project-item .project-content .project-cat {
  background-color: transparent;
}
.project-grid-layout-6 .project-item .project-content .project-cat a {
  color: var(--rt-primary-color);
}
.project-grid-layout-6 .project-item .project-content .project-title {
  font-size: 30px;
}
.project-grid-layout-6 .project-item .project-content .project-title a {
  color: #FFFFFF;
}
.project-grid-layout-6 .project-item .project-content .project-title a:hover {
  color: var(--rt-primary-color);
}
.project-grid-layout-6 .project-item .project-content .project-excerpt {
  color: #FFFFFF;
}
.project-grid-layout-6 .project-item .project-hover-content {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  margin-bottom: -180px;
}
.project-grid-layout-6 .project-item .project-btn {
  display: inline-block;
  margin-top: 20px;
  color: #FFFFFF;
  position: relative;
}
.project-grid-layout-6 .project-item .project-btn:hover:before {
  width: 100%;
}
.project-grid-layout-6 .project-item .project-btn:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  bottom: 4px;
  left: 0;
  background-color: #FFFFFF;
  transition: width 0.4s;
}

/*----------------------------------*/
/* Project Accordion */
/*----------------------------------*/
.rt-project-accordion-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .rt-project-accordion-wrap {
    flex-direction: row;
    height: 440px;
  }
}
.rt-project-accordion-wrap .item {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  flex: 1;
  transition: flex 0.5s ease;
  margin-right: 5px;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
}
.rt-project-accordion-wrap .item:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  border-radius: 5px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .rt-project-accordion-wrap .item {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.rt-project-accordion-wrap .item:hover {
  flex: 2;
}
.rt-project-accordion-wrap .item:hover .content .inner {
  opacity: 0;
  width: 0;
}
.rt-project-accordion-wrap .item:hover .content .hover-content {
  opacity: 1;
}
.rt-project-accordion-wrap .item .content {
  position: absolute;
  left: 57px;
  bottom: 65px;
  right: 35px;
}
@media (max-width: 1199px) {
  .rt-project-accordion-wrap .item .content {
    position: unset;
    padding: 30px;
  }
}
.rt-project-accordion-wrap .item .content .inner {
  position: absolute;
  transform: rotate(-90deg);
  width: 350px;
  bottom: 80px;
  left: -120px;
  opacity: 1;
  transition: opacity 0.2s;
}
@media (max-width: 1199px) {
  .rt-project-accordion-wrap .item .content .inner {
    display: none;
  }
}
.rt-project-accordion-wrap .item .content .rt-accordion-category {
  margin-bottom: 10px;
  display: block;
}
.rt-project-accordion-wrap .item .content .rt-accordion-category a {
  background-color: transparent;
  border: 1px solid var(--rt-primary-color);
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  border-radius: 500px;
  color: var(--rt-primary-color);
  padding: 0 15px;
}
.rt-project-accordion-wrap .item .content .accordion-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}
.rt-project-accordion-wrap .item .content .accordion-title a {
  color: #FFFFFF;
}
.rt-project-accordion-wrap .item .content .hover-content {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s;
}
@media (min-width: 1441px) {
  .rt-project-accordion-wrap .item .content .hover-content {
    width: 533px;
  }
}
.rt-project-accordion-wrap .item .content .hover-content .desc {
  color: #FFFFFF;
}
.rt-project-accordion-wrap .item .content .hover-content .accordion-button a {
  display: inline-block;
  margin-top: 20px;
  color: #FFFFFF;
  position: relative;
}
.rt-project-accordion-wrap .item .content .hover-content .accordion-button a:hover:before {
  width: 100%;
}
.rt-project-accordion-wrap .item .content .hover-content .accordion-button a:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  bottom: 4px;
  left: 0;
  background-color: #FFFFFF;
  transition: width 0.4s;
}

.rt-project-scroll .rt-project-multi-layout-2 .project-item .project-content .project-title {
  display: inline-block;
}

.rt-info-box .info-box {
  position: relative;
  background-size: cover;
  transition: all 520ms ease;
  z-index: 1;
}
.rt-info-box .info-box:hover p {
  color: var(--rt-title-color);
}
.rt-info-box .info-box .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 15px;
  transition: all 520ms ease;
}
.rt-info-box .info-box .info-icon i, .rt-info-box .info-box .info-icon svg, .rt-info-box .info-box .info-icon img {
  display: flex;
  transition: all 520ms ease;
  color: var(--rt-title-color);
}
.rt-info-box .info-box:hover .info-icon i, .rt-info-box .info-box:hover .info-icon svg, .rt-info-box .info-box:hover .info-icon img {
  transform: scale(1.05);
}
.rt-info-box .info-icon-holder {
  position: relative;
  margin-bottom: 18px;
  line-height: 0;
}
.rt-info-box .info-icon-holder a {
  display: inline-block;
}
.rt-info-box .content-holder p {
  margin-bottom: 0;
  line-height: 30px;
}
.rt-info-box .rt-info-image {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  line-height: 0;
}
.rt-info-box .rt-button {
  margin-top: 24px;
}
.rt-info-box .info-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.rt-info-box .info-title a {
  color: var(--rt-title-color);
}
@media (max-width: 767px) {
  .rt-info-box .info-title br {
    display: none;
  }
}
.rt-info-box .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 18px;
}
.rt-info-box .feature-list li {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--rt-title-color);
}
.rt-info-box .feature-list li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 100%;
  color: #FFFFFF;
  background-color: var(--rt-primary-color);
}

.rt-info-layout-1 .info-box {
  background-color: var(--rt-secondary-color);
  padding: 70px 45px 60px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.rt-info-layout-1 .info-box:hover p {
  color: var(--rt-title-color);
}
.rt-info-layout-1 .info-icon-holder {
  margin-bottom: 15px;
}
.rt-info-layout-1 .info-title {
  margin-bottom: 0;
}

.rt-info-layout-2 .info-box {
  padding: 45px 20px 35px;
  background-color: #FFFFFF;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.04);
}
.rt-info-layout-2 .info-box .info-icon {
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  .rt-info-layout-2 .info-box {
    display: block;
  }
}

.rt-info-layout-3 .info-box {
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: #FFFFFF;
}
.rt-info-layout-3 .info-box:hover {
  background-color: var(--rt-primary-color);
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, 0.2);
  transform: translateY(5px);
}
.rt-info-layout-3 .info-box:hover .info-icon {
  color: var(--rt-title-color);
}
.rt-info-layout-3 .info-box:hover .info-icon i {
  transform: scale(1.1);
}
.rt-info-layout-3 .info-box:hover p {
  color: var(--rt-title-color);
}

.rt-info-layout-4 .info-box {
  position: relative;
}
.rt-info-layout-4 .info-box .info-icon {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 5px;
}
.rt-info-layout-4 .info-box .info-icon a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.rt-info-layout-4 .info-box .info-icon a:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(255, 204, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
.rt-info-layout-4 .info-box .info-icon a img {
  width: 100%;
  border-radius: 5px;
}
.rt-info-layout-4 .info-box .info-top-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  font-size: 30px;
  color: var(--rt-title-color);
}
.rt-info-layout-4 .info-box .info-content-holder {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 40px;
}
.rt-info-layout-4 .info-box .info-content-holder .rt-button {
  margin-top: 10px;
}
.rt-info-layout-4 .info-box .info-content-holder .rt-button .btn {
  height: 100%;
}
.rt-info-layout-4 .info-box:hover .info-icon a:after {
  background-color: rgb(255, 204, 0);
}

.rt-info-layout-5 {
  position: relative;
  overflow: hidden;
}
.rt-info-layout-5 .info-box .info-icon {
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}
.rt-info-layout-5 .info-box .info-icon a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.rt-info-layout-5 .info-box .info-icon a:after {
  content: "";
  height: 40%;
  width: 100%;
  background-color: var(--rt-title-color);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
  filter: blur(100px);
  border-radius: 10px;
}
.rt-info-layout-5 .info-box .info-icon a img {
  width: 100%;
  border-radius: 10px;
}
.rt-info-layout-5 .info-box .info-icon-holder {
  margin-bottom: 0;
}
.rt-info-layout-5 .info-box .info-content-holder {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  text-align: center;
}
.rt-info-layout-5 .info-box .non-hover-content {
  position: relative;
  bottom: 0;
  transition: all 0.4s ease-in-out;
}
.rt-info-layout-5 .info-box .hover-content {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .rt-info-layout-5 .info-box .hover-content {
    bottom: -30px;
  }
}
.rt-info-layout-5 .info-box .rt-button {
  margin-top: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}
.rt-info-layout-5:hover .non-hover-content {
  bottom: 100px;
}
.rt-info-layout-5:hover .hover-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rt-info-layout-5:hover .hover-content .rt-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.rt-info-layout-5:hover .hover-content .content-holder {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.rt-info-layout-6 .info-box {
  background-color: var(--rt-primary-color);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.rt-info-layout-6 .info-box:hover .info-content-holder {
  opacity: 1;
  bottom: 40px;
}
.rt-info-layout-6 .info-content-holder {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 65px;
  right: 65px;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .rt-info-layout-7 {
    height: 100%;
  }
}
.rt-info-layout-7 .info-box {
  display: block;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .rt-info-layout-7 .info-box {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    height: 100%;
  }
}
.rt-info-layout-7 .info-box:hover .rt-info-image img {
  transform: scale(1.1);
}
.rt-info-layout-7 .rt-info-image {
  height: 100%;
  margin-top: 0;
}
.rt-info-layout-7 .rt-info-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.rt-info-layout-7 .info-content-holder {
  flex: 1;
  padding: 30px;
}
@media (max-width: 575px) {
  .rt-info-layout-7 .info-content-holder {
    padding: 30px 0 0 30px;
  }
}

.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button {
  height: 60px;
  width: 60px;
  background-color: var(--rt-title-color);
  border: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  border-radius: 10px;
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button:before {
  display: none;
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-title-color);
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button:hover i {
  color: var(--rt-primary-color);
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button i {
  font-size: 22px;
  color: var(--rt-primary-color);
  transition: all 520ms ease;
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button i:before {
  width: auto;
  margin: 0;
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button.active {
  background-color: var(--rt-primary-color);
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button.active i {
  color: var(--rt-title-color);
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.rt-info-slider .rt-swiper-slider .swiper-navigation .swiper-button-next {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.rt-info-slider .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--rt-title-color);
}
.rt-info-slider .rt-swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rt-primary-color);
}
.rt-info-slider .rt-info-slider-box {
  background-color: #FFFFFF;
  padding: 60px 38px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rt-info-slider .rt-info-slider-box:hover:after {
  transform: translateY(0);
}
.rt-info-slider .rt-info-slider-box:hover p {
  color: var(--rt-title-color);
}
.rt-info-slider .rt-info-slider-box:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--rt-primary-color);
  position: absolute;
  border-radius: 10px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}
.rt-info-slider .rt-info-slider-box .info-slider-box .rt-icon {
  font-size: 50px;
  color: var(--rt-title-color);
  margin-bottom: 20px;
}
.rt-info-slider .rt-info-slider-box .info-slider-box .rt-icon i:before {
  margin: 0;
  width: auto;
}
.rt-info-slider .rt-info-slider-box .info-slider-box .info-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}
.rt-info-slider .rt-info-slider-box .info-slider-box p {
  transition: all 0.3s ease-in-out;
}

.info-btn {
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
}
.info-btn:hover {
  color: var(--rt-title-color);
}
.info-btn:hover:before {
  width: 100%;
}
.info-btn:before {
  content: "";
  height: 1px;
  width: 0;
  background-color: var(--rt-title-color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.4s ease;
}

.process-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1139px) {
  .process-wrap {
    gap: 30px;
  }
}

.rt-working-process .process-item {
  position: relative;
  text-align: center;
}
@media (max-width: 1139px) {
  .rt-working-process .process-item {
    margin-bottom: 15px;
  }
}
.rt-working-process .process-item.odd {
  margin-top: -40px;
}
@media (max-width: 1139px) {
  .rt-working-process .process-item.odd {
    margin-top: 0;
  }
}
.rt-working-process .process-item.even {
  margin-top: 70px;
}
@media (max-width: 1139px) {
  .rt-working-process .process-item.even {
    margin-top: 0;
  }
}
.rt-working-process .rt-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}
.rt-working-process .right {
  left: auto;
}

.rt-process-layout-1 {
  position: relative;
}
.rt-process-layout-1 .rt-center-line {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #707376;
  height: 1px;
  top: 33%;
  transform: translateY(-33%);
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
@media (max-width: 1139px) {
  .rt-process-layout-1 .rt-center-line {
    display: none;
  }
}
.rt-process-layout-1 .rt-step-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
  border-radius: 100%;
  border: 10px solid #fff;
  background-color: var(--rt-primary-color);
  transition: all 0.7s;
}
.rt-process-layout-1 .has-animation {
  opacity: 0;
  visibility: hidden;
}
.rt-process-layout-1 .active-animation {
  opacity: 1;
  visibility: visible;
}
.rt-process-layout-1 .rt-step-dot-item1 {
  left: -10%;
}
.rt-process-layout-1 .rt-step-dot-item2 {
  left: 21%;
}
.rt-process-layout-1 .rt-step-dot-item3 {
  left: 39%;
}
.rt-process-layout-1 .rt-step-dot-item4 {
  left: 56%;
}
.rt-process-layout-1 .rt-step-dot-item5 {
  left: 75%;
}
.rt-process-layout-1 .active-animation.rt-step-dot-item1 {
  left: 12%;
  transition-delay: 400ms;
}
.rt-process-layout-1 .active-animation.rt-step-dot-item2 {
  left: 31%;
  transition-delay: 800ms;
}
.rt-process-layout-1 .active-animation.rt-step-dot-item3 {
  left: 49%;
  transition-delay: 1200ms;
}
.rt-process-layout-1 .active-animation.rt-step-dot-item4 {
  left: 66%;
  transition-delay: 1600ms;
}
.rt-process-layout-1 .active-animation.rt-step-dot-item5 {
  left: 85%;
  transition-delay: 1600ms;
}

.rt-process-layout-2 .process-item:hover .process-info-img img {
  transform: scale(1.1);
}
.rt-process-layout-2 .process-item:hover .rt-number {
  color: var(--rt-primary-color);
}
.rt-process-layout-2 .process-item:hover .rt-number:before {
  transform: scale(1);
}
.rt-process-layout-2 .process-item .process-info-img {
  height: 180px;
  width: 180px;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 20px;
}
.rt-process-layout-2 .process-item .process-info-img img {
  border-radius: 100%;
  transition: all 0.21s cubic-bezier(0.3, 0.02, 0, 0.6);
}
.rt-process-layout-2 .process-item.odd {
  margin-top: 0;
}
.rt-process-layout-2 .process-item.even {
  margin-top: 50px;
}
.rt-process-layout-2 .rt-number {
  position: absolute;
  right: 80px;
  top: 60px;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rt-button-text-color);
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  transition: all 520ms ease;
  z-index: 1;
  transition: 0.6s;
}
@media (max-width: 992px) {
  .rt-process-layout-2 .rt-number {
    right: 0;
    left: 0;
    margin: auto;
  }
}
.rt-process-layout-2 .rt-number:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--rt-title-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  transform: scale(0);
  transition: 0.3s;
  z-index: -1;
}
.rt-process-layout-2 .process-content .rt-title {
  font-size: 24px;
  font-weight: 600;
}

.rt-opening-hour ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-opening-hour ul li:not(:last-child) {
  border-bottom: 1px solid #17423E;
  padding-bottom: 12px;
  margin-bottom: 13px;
}
.rt-opening-hour ul li.opening-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*===============================
Fluent form style
================================*/
@media (min-width: 768px) {
  .hero-subscribe .frm-fluent-form .ff-t-container {
    gap: 8px;
  }
}

@media (min-width: 768px) {
  .frm-fluent-form .ff-t-container {
    align-items: self-start;
  }
}
.quote-form-1 {
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border-radius: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  .quote-form-1 {
    padding: 55px 50px 40px;
  }
}
@media (max-width: 767px) {
  .quote-form-1 {
    margin-top: 20px;
  }
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group p {
  margin-bottom: 0;
  margin-top: 15px;
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--rt-title-color);
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-t-container .ff-t-cell .ff-el-group .ff-el-input--content .ff-el-form-control {
  height: 50px;
  color: #b0b0b0;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content {
  display: flex;
  gap: 30px;
}
@media (max-width: 575px) {
  .quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content {
    display: block;
  }
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check {
  margin-bottom: 0;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-input {
  position: relative;
  vertical-align: middle;
  top: 0;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-checkbox {
  width: 10px;
  height: 10px;
  display: inline-flex;
  background: #fff;
  border: 1px solid #b0b0b0;
  border-radius: 2px;
  margin-right: 5px;
  margin-top: -1px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-checkbox:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #b0b0b0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-checkbox:checked {
  background-color: #fff;
  border-color: #0b0b0b;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-checkbox:checked:before {
  background: #FFCC00;
}
.quote-form-1 .elementor-widget-container .fluentform-widget-wrapper .frm-fluent-form .ff-el-group .ff-el-input--content .ff-el-form-check .ff-el-form-check-label span {
  font-size: 14px;
  letter-spacing: 1px;
}
.quote-form-1 .ff_submit_btn_wrapper .ff-btn-submit {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.quote-form-1 .ff_submit_btn_wrapper .ff-btn-submit i {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.quote-form-1 .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}
.quote-form-1 .ff_submit_btn_wrapper .ff-btn-submit:hover i {
  color: #000;
  opacity: 1;
}
.quote-form-1 .ff_submit_btn_wrapper .ff-btn-submit:hover i:before {
  animation: fadeInBottomLeft 0.5s forwards;
}

.rt-footer-newsletter .ff_submit_btn_wrapper .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  height: 60px;
}
.rt-footer-newsletter .ff_submit_btn_wrapper .ff-btn-submit i {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.rt-footer-newsletter .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}
.rt-footer-newsletter .ff_submit_btn_wrapper .ff-btn-submit:hover i {
  color: #000;
  opacity: 1;
}
.rt-footer-newsletter .ff_submit_btn_wrapper .ff-btn-submit:hover i:before {
  animation: fadeInBottomLeft 0.5s forwards;
}

.frm-fluent-form select {
  background-color: #FFFFFF;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  padding: 16px 13px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-size: 12px;
  background-image: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/images/selector.svg) !important;
  background-repeat: no-repeat;
  background-position: 90%;
  transition: all ease 0.31s;
}

.rt-contact-form .ff_submit_btn_wrapper .ff-btn-submit {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.rt-contact-form .ff_submit_btn_wrapper .ff-btn-submit i {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.rt-contact-form .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}
.rt-contact-form .ff_submit_btn_wrapper .ff-btn-submit:hover i {
  color: #000;
  opacity: 1;
}
.rt-contact-form .ff_submit_btn_wrapper .ff-btn-submit:hover i:before {
  animation: fadeInBottomLeft 0.5s forwards;
}

.rt-home-3-footer-form .ff_submit_btn_wrapper .ff-btn-submit {
  transition: all 0.3s ease-in-out;
  border: 0;
}
.rt-home-3-footer-form .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .rt-tracking-form .frm-fluent-form {
    background-color: #000;
    border: 1px solid #363636;
    padding: 5px 5px 5px 0;
  }
}
@media (min-width: 1200px) {
  .rt-tracking-form .frm-fluent-form {
    width: 447px;
  }
}
@media (min-width: 768px) {
  .rt-tracking-form .frm-fluent-form .ff-t-container {
    gap: 0;
    align-items: center;
  }
}
.rt-tracking-form .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button {
  margin-bottom: 0;
  font-size: 15px;
}
.rt-tracking-form .frm-fluent-form .ff-t-column-1 .ff-el-group {
  margin-bottom: 0;
}
.rt-tracking-form .ff_submit_btn_wrapper .ff-btn-submit {
  padding: 0;
  transition: all 0.3s ease-in-out;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-tracking-form .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}
.rt-tracking-form .ff_submit_btn_wrapper .ff-btn-submit:hover i:before {
  animation: fadeInBottomLeft 0.5s forwards;
}

.quote-form-2 .frm-fluent-form .ff-custom_html p {
  font-size: 20px;
  font-weight: 500;
  color: var(--rt-title-color);
  font-family: var(--rt-heading-font, "Outfit"), sans-serif;
  margin-bottom: 0;
}
.quote-form-2 .frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.quote-form-2 .frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit i {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 5px;
}
.quote-form-2 .frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit:hover {
  opacity: 1;
}
.quote-form-2 .frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit:hover i {
  color: #000;
  opacity: 1;
}
.quote-form-2 .frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit:hover i:before {
  animation: fadeInLeft 0.5s forwards;
}

/* Start Progressbar style */
.rt-progress-bar .title-bar .title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
.rt-progress-bar .skill-bar {
  position: relative;
  background-color: #EEEEEE;
  border-radius: 5px;
}
.rt-progress-bar .skill-bar .skill-per {
  height: 8px;
  width: 0;
  background: var(--rt-primary-color);
  transition: 2s linear;
  position: relative;
  border-radius: 5px;
}
.rt-progress-bar .is-percentage .skill-per:before {
  content: attr(data-per);
  position: absolute;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--rt-title-color);
  bottom: 25px;
  right: 0;
}

.rt-video-icon.icon-style1 .video-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.rt-video-icon.icon-style1 .video-icon:hover .icon-box .video-popup-icon {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.rt-video-icon.icon-style1 .video-icon:hover .icon-box .video-popup-icon i {
  color: var(--rt-title-color);
}
.rt-video-icon.icon-style1 .icon-box .video-popup-icon {
  height: 60px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #969696;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.rt-video-icon.icon-style1 .icon-box .video-popup-icon i {
  color: #969696;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.rt-video-icon.icon-style1 .button-text {
  margin-left: 15px;
  display: inline-block;
  font-size: 15px;
  color: var(--rt-title-color);
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.rt-video-icon.icon-style1 .button-text:hover {
  color: var(--rt-primary-color);
}

.rt-video-icon.icon-style2 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rt-video-icon.icon-style2 .video-icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  right: auto;
}
@media (min-width: 1200px) {
  .rt-video-icon.icon-style2 .video-icon {
    right: -50px;
    top: 40%;
    transform: translateY(-60%);
    left: auto;
  }
}
.rt-video-icon.icon-style2 .icon-box {
  position: relative;
  z-index: 1;
}
.rt-video-icon.icon-style2 .video-popup-icon {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: var(--rt-primary-color);
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rt-video-icon.icon-style2 .video-popup-icon:hover::before {
  transform: scale(1);
}
.rt-video-icon.icon-style2 .video-popup-icon:hover i {
  color: #FFFFFF;
}
.rt-video-icon.icon-style2 .video-popup-icon::before {
  content: "";
  height: 100%;
  width: 100%;
  transform: scale(0);
  background-color: var(--rt-title-color);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 0.4s;
  border-radius: 100%;
}
.rt-video-icon.icon-style2 .video-popup-icon i {
  font-size: 40px;
  color: var(--rt-title-color);
  position: relative;
  z-index: 1;
}
.rt-video-icon.icon-style2 .about-shape {
  height: 220px;
  width: 220px;
  background-color: #FFFFFF;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.rt-video-icon.icon-style2 .about-shape .shape {
  animation-duration: 15s;
}

.icon-style3 {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.icon-style3 .video-icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  right: auto;
}
.icon-style3 .video-icon .icon-box .video-popup-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-style3 .video-icon .icon-box .video-popup-icon i {
  font-size: 40px;
}

.video-text-wrap .elementor-icon-box-icon .elementor-icon {
  height: 60px;
  width: 60px;
  display: inline-block;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 100%;
  line-height: 22px;
}
.video-text-wrap .elementor-icon-box-icon .elementor-icon i {
  color: var(--rt-title-color);
  width: auto;
  height: auto;
  position: relative;
  display: inline-block;
}
.video-text-wrap .elementor-icon-box-icon .elementor-icon i:before {
  width: auto;
  line-height: inherit;
  margin: 0;
}

.rt-flying-video:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1440px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  background: url(//www.mescioglu.com.tr/wp-content/themes/kariez/assets/images/hero-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
@media (max-width: 2450px) {
  .rt-flying-video:before {
    width: 1200px !important;
  }
}
@media (max-width: 2000px) {
  .rt-flying-video:before {
    width: 1100px;
  }
}

.rt-contact-info .info-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--rt-title-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.rt-contact-info .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-contact-info .contact-list li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-body-color);
  margin-bottom: 10px;
}
.rt-contact-info .contact-list li:last-child {
  margin-bottom: 0 !important;
}
.rt-contact-info .contact-list li span {
  display: block;
}
.rt-contact-info .contact-list li i {
  margin-right: 5px;
}
.rt-contact-info .contact-list li a {
  color: var(--rt-body-color);
}
.rt-contact-info .contact-list li a:hover {
  color: var(--rt-primary-color);
}
.rt-contact-info .list-horizontal {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .rt-contact-info .list-horizontal {
    justify-content: center;
  }
}
.rt-contact-info .list-horizontal li:not(:last-child):after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #8DA4A2;
  position: absolute;
  top: 12px;
  right: -18px;
  border-radius: 50%;
}

.rt-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rt-social-icon .rt-social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rt-social-icon .rt-social-item a {
  height: 35px;
  width: 35px;
  border: 1px solid var(--rt-title-color);
  border-radius: 100%;
  background-color: transparent;
  color: var(--rt-title-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.rt-social-icon .rt-social-item a:hover {
  border-color: var(--rt-primary-color);
  background-color: var(--rt-primary-color);
}
.rt-social-icon .rt-social-item a:hover i {
  color: var(--rt-title-color);
}
.rt-social-icon .rt-social-item a i {
  display: block;
  font-size: 14px;
}

.rt-phone-1 {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.rt-phone-1 .phone-icon {
  padding-right: 8px;
}
.rt-phone-1 .phone-label {
  padding-right: 8px;
}
.rt-phone-1 .content {
  display: flex;
  align-items: center;
}

.rt-phone-2 {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .rt-phone-2 {
    display: none;
  }
}
.rt-phone-2 .phone-icon {
  color: var(--rt-title-color);
  padding-right: 8px;
}
.rt-phone-2 .phone-icon i {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background-color: var(--rt-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: phone-ring-anim 2.5s infinite ease-in-out;
}
.rt-phone-2 .phone-label {
  color: var(--rt-title-color);
  font-size: 14px;
  padding-right: 8px;
  display: block;
}
.rt-phone-2 .phone-number {
  color: var(--rt-title-color);
  font-size: 20px;
  font-weight: 700;
  display: block;
  transition: all 0.3s ease-in-out;
}
.rt-phone-2 .phone-number:hover {
  color: var(--rt-primary-color);
}

.branding-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1200px) {
  .branding-wrap {
    gap: 60px;
  }
}
.branding-wrap ul {
  position: relative;
  z-index: 1;
}
.branding-wrap ul:after {
  content: "";
  height: 92px;
  width: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: -32px;
  right: -30px;
  display: none;
}
@media (min-width: 1200px) {
  .branding-wrap ul:after {
    display: block;
  }
}
.branding-wrap ul .ham-burger {
  list-style: none;
}
.branding-wrap ul .ham-burger:hover .menu-bar {
  background-color: var(--rt-primary-color);
}
.branding-wrap ul .ham-burger .menu-bar {
  position: relative;
  z-index: 1;
  line-height: 100px;
}
.branding-wrap ul .ham-burger .menu-bar:hover:before {
  transform: scale(1);
}
.branding-wrap ul .ham-burger .menu-bar:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--rt-primary-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  transition: 0.4s;
  z-index: -1;
}

.elementor-widget-rt-site-logo .site-branding .rt-mobile-logo, .elementor-widget-rt-site-logo .site-branding .rt-site-logo {
  display: none !important;
}
.elementor-widget-rt-site-logo .site-branding.dark .dark-logo {
  display: block !important;
}
.elementor-widget-rt-site-logo .site-branding.light .light-logo {
  display: block !important;
}

.kariez-footer-builder .kariez-navigation ul li {
  margin-right: 0;
  position: relative;
}
.kariez-footer-builder .kariez-navigation ul li:after {
  background-color: var(--rt-border-color);
  position: absolute;
  content: "";
  top: 18px;
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 100%;
}
.kariez-footer-builder .kariez-navigation ul li a {
  position: relative;
  margin-left: 15px;
}
.kariez-footer-builder .kariez-navigation ul li a:hover:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0% 50%;
  transition-timing-function: ease;
}
.kariez-footer-builder .kariez-navigation ul li a:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--rt-primary-color);
  bottom: 10px;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  pointer-events: none;
}

.rt-copyright-menu .kariez-navbar li:after {
  display: none;
}
.rt-copyright-menu .kariez-navbar li:last-child a:after {
  display: none;
}
.rt-copyright-menu .kariez-navbar li:not(:last-child) {
  margin-right: 30px;
}
.rt-copyright-menu .kariez-navbar li a {
  position: relative;
  font-weight: 500 !important;
  margin-left: 0 !important;
}
.rt-copyright-menu .kariez-navbar li a:after {
  content: "";
  height: 20px;
  width: 1.5px;
  background-color: #8B8B8B;
  position: absolute;
  top: 2px;
  transform: rotate(15deg);
  right: -20px;
}
.rt-copyright-menu .kariez-navbar li a:before {
  display: none;
}

.kariez-header-builder:before {
  display: none;
}

/* Elementor global CSS
===============================*/
.elementor-icon.elementor-social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.mfp-iframe-holder .mfp-iframe {
  border-radius: 0;
}
.mfp-iframe-holder .mfp-close {
  top: -44px;
  right: 0;
  text-align: center;
  width: 44px;
  opacity: 1;
  padding-right: 0;
  background-color: var(--rt-primary-color);
  border-radius: 0;
}

.about-home-1-img .rt-image-layout-2 .rt-img {
  border: 5px solid #FFFFFF;
  border-radius: 10px;
  background-color: #fff;
}
.about-home-1-img .rt-image-layout-2 .rt-img img {
  border-radius: 10px;
}

.rt-support-wrap .elementor-icon-box-wrapper {
  display: flex;
  gap: 20px;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon {
  height: 50px;
  width: 50px;
  display: inline-block;
  text-align: center;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  line-height: 22px;
  z-index: 1;
  position: relative;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon::before {
  content: "";
  height: 60px;
  width: 60px;
  background-color: rgb(255, 204, 0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation: pulse-border 2000ms ease-out infinite;
  z-index: -1;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon::after {
  content: "";
  height: 70px;
  width: 70px;
  background-color: rgb(255, 204, 0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation: pulse-border 2000ms ease-out infinite;
  z-index: -2;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon i {
  width: auto;
  height: auto;
  display: inline-block;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon i:before {
  margin: 0;
}
.rt-support-wrap .elementor-icon-box-wrapper .elementor-icon-box-title a {
  color: #FFFFFF;
}

.rt-phone-support .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon i {
  height: 60px;
  width: 60px;
  background-color: var(--rt-primary-color);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rt-phone-support .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon i:before {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
}

.faq-style-1 .e-n-accordion-item {
  margin-bottom: 30px !important;
}
.faq-style-1 .e-n-accordion-item .e-n-accordion-item-title {
  border: 1px solid #E5E5E5;
  position: relative;
  padding: 15px 0 15px 40px;
  border-radius: 5px;
}
@media (max-width: 425px) {
  .faq-style-1 .e-n-accordion-item .e-n-accordion-item-title {
    padding: 15px 0 15px 15px;
  }
}
.faq-style-1 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-header .e-n-accordion-item-title-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 45px;
}
@media (max-width: 425px) {
  .faq-style-1 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-header .e-n-accordion-item-title-text {
    font-size: 18px;
    line-height: 30px;
    width: 80%;
  }
}
.faq-style-1 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-icon {
  height: 60px;
  width: 60px;
  background-color: var(--rt-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}
@media (max-width: 425px) {
  .faq-style-1 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-icon {
    height: 45px;
    width: 45px;
  }
}
.faq-style-1 .e-n-accordion-item .e-con-full .e-con {
  padding: 0 40px;
}
@media (max-width: 425px) {
  .faq-style-1 .e-n-accordion-item .e-con-full .e-con {
    padding: 0 5px;
  }
}
.faq-style-1 .e-n-accordion-item .e-con-full .e-con .e-con-inner .elementor-widget-text-editor p {
  margin-bottom: 0;
}
.faq-style-1 .e-n-accordion-item .elementor-widget-n-accordion .e-n-accordion-item-title, .faq-style-1 .e-n-accordion-item :where(.elementor-widget-n-accordion .e-n-accordion-item > .e-con) {
  border: 1px solid #E5E5E5;
  border-radius: 0 0 5px 5px;
  border-top: 0;
}
.faq-style-1.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title {
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
  border-radius: 5px 5px 0 0;
}
.faq-style-1.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title .e-n-accordion-item-title-icon {
  background-color: #FFFFFF;
}

.faq-style-2 .e-n-accordion .e-n-accordion-item {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.faq-style-2 .e-n-accordion .e-n-accordion-item .e-n-accordion-item-title {
  padding: 25px 30px;
  transition: all 0.4s linear;
}
.faq-style-2 .e-n-accordion .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-icon {
  transition: all 0.4s linear;
}
.faq-style-2 .e-n-accordion .e-n-accordion-item.e-n-accordion-item[open] .e-n-accordion-item-title {
  background-color: var(--rt-primary-color);
  border-radius: 5px 5px 0 0;
}

.rt-quote-tab-box {
  position: relative;
  z-index: 1;
}
.rt-quote-tab-box .e-n-tabs-heading {
  gap: 20px;
}

@media (max-width: 1199px) {
  .about-box-1 .rt-image-layout-2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-banner-layout-1 .rt-image-layout-2 .rt-image {
    position: unset !important;
  }
}

@media (max-width: 1199px) {
  .rt-service-wrap-1 {
    background-image: none !important;
  }
}

.rt-video-wrap .icon-style3 {
  background-attachment: unset;
}

.rt-header-nine .menu-main-menu-container > ul > li.mega-menu > ul {
  top: 76%;
}

/*-------------------------------------
#. EL: Swiper Slider
---------------------------------------*/
.rt-swiper-slider {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .rt-swiper-slider {
    position: static;
  }
}
.rt-swiper-slider .swiper-wrapper {
  align-items: center;
}

.swiper-navigation .swiper-button-prev {
  left: 12px;
}
.swiper-navigation .swiper-button-next {
  right: 12px;
}
.swiper-navigation .swiper-button {
  height: 60px;
  width: 60px;
  background-color: var(--rt-primary-color);
  border: 1px solid var(--rt-primary-color);
  border-radius: 100%;
  z-index: 1;
  top: 50%;
  margin-top: 0;
  transform: translateY(-50%);
  transition: all 0.4s ease-out;
  transition: all 520ms ease;
}
.swiper-navigation .swiper-button i {
  color: var(--rt-title-color);
}
.swiper-navigation .swiper-button i:before {
  margin: 0;
}
.swiper-navigation .swiper-button:hover i {
  color: var(--rt-title-color);
}
.swiper-navigation .swiper-button:after {
  display: none;
}

.swiper-pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  bottom: 0 !important;
  z-index: 1;
  align-items: center;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  text-align: left;
  font-size: 0;
  background-color: var(--rt-title-color);
  margin: 0 6px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--rt-primary-color);
  height: 12px;
  width: 12px;
}

@media (max-width: 767px) {
  .swiper-navigation {
    display: none;
  }
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.rt-job-apply .job-apply-wrap .apply-item .apply-content .title-box .info-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 10px;
}
.rt-job-apply .job-apply-wrap .apply-item .apply-content .apply-btn {
  color: var(--rt-title-color);
  background-color: var(--rt-primary-color);
  text-align: center;
  display: inline-block;
  padding: 16px 30px 16px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 2;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  transition: all 520ms ease;
}
.rt-job-apply .job-apply-wrap .apply-item .apply-content .apply-btn:hover {
  background-color: var(--rt-title-color);
  color: #FFFFFF;
}

.rt-job-apply-layout-1 .job-apply-wrap {
  border: 1px solid #C8C7C7;
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 40px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .box-list {
    display: none;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--rt-title-color);
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(1) {
  width: 408px;
}
@media (max-width: 767px) {
  .rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(1) {
    width: 100%;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(2) {
  width: 200px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(2) {
    width: 100%;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(3) {
  width: 80px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(3) {
    width: 100%;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(4) {
  width: 160px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .box-list .box-title:nth-child(4) {
    width: 100%;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item {
  border-bottom: 1px solid #D9D9D9;
  padding: 40px 40px 20px;
  transition: all 0.4s ease;
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item:hover {
  background-color: #F9F8F8;
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item:last-child {
  border-bottom: 0;
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content {
    display: block;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .title-box {
  width: 408px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .title-box {
    width: 100%;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-location {
  width: 200px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-location {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-location {
    margin-bottom: 15px;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-type {
  width: 80px;
}
@media (max-width: 1200px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-type {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .rt-type {
    margin-bottom: 15px;
  }
}
.rt-job-apply-layout-1 .job-apply-wrap .apply-item .apply-content .apply-btn {
  width: 160px;
}

.about-round-box {
  position: relative;
  height: 180px;
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rt-secondary-color);
  border: 2px solid var(--rt-title-color);
  border-radius: 100%;
}

.moving-shape-box {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: var(--rt-primary-color);
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moving-shape-box i {
  font-size: 20px;
  color: var(--rt-title-color);
  position: relative;
  z-index: 1;
}
.moving-shape-box .about-shape {
  height: 148px;
  width: 148px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.moving-shape-box .about-shape .shape {
  animation-duration: 15s;
}

.location-map {
  position: relative;
  height: 100%;
}
.location-map .map-image {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  text-align: right;
}
.location-map .map-image img {
  opacity: 0.5;
}

.locations-wrapper {
  position: absolute;
}
.locations-wrapper:hover .location-content {
  opacity: 1;
  z-index: 1;
  transform: translateX(-50%) translateY(0);
}

.location-content {
  min-width: 250px;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  position: absolute;
  border-radius: 500px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  color: var(--rt-title-color);
  padding: 15px 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  opacity: 0;
  z-index: -2;
  transition: all 0.3s ease-out;
}
.location-content:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}

.location-point {
  width: 15px;
  height: 15px;
  background-color: var(--rt-title-color);
  border-radius: 50%;
  position: relative;
}
.location-point .blinking-1 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  color: inherit;
  box-shadow: 0 0 0 15px rgb(255, 204, 0);
  animation: pulsekm 3s infinite cubic-bezier(0.4, 0, 1, 1) both;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cursor.visible {
  opacity: 1;
  visibility: visible;
}
.cursor__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -80%) scale(0.7);
  width: 60px;
  height: 60px;
  border: 1px solid var(--rt-primary-color);
  background-color: var(--rt-primary-color);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--rt-title-color);
}
.visible .cursor__inner {
  transform: translate(-50%, -80%) scale(1.2);
}

.swiper-slide a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.rt-marquee-slider {
  position: relative;
}

.rt-marquee-slider .rt-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px;
  line-height: 1;
}

.rt-marquee-slider .rt-marquee.marquee-left .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_left 40s linear infinite;
}

.rt-marquee-slider .rt-marquee.marquee-right .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_right 40s linear infinite;
}

.rt-marquee-slider .rt-marquee:hover .rt-marquee-item {
  animation-play-state: paused;
}

.rt-marquee-slider .rt-marquee-item .entry-title {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.rt-marquee-slider .rt-marquee-item .entry-title a {
  color: var(--rt-title-color);
}
.rt-marquee-slider .rt-marquee-item .entry-title:hover:before {
  width: 100%;
}
.rt-marquee-slider .rt-marquee-item .entry-title:hover a {
  color: #FFFFFF;
}
.rt-marquee-slider .rt-marquee-item .entry-title:hover .icon-holder svg path {
  fill: #FFFFFF;
}
.rt-marquee-slider .rt-marquee-item .entry-title .icon-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  text-align: center;
}
.rt-marquee-slider .rt-marquee-item .entry-title .icon-holder svg path {
  fill: var(--rt-title-color);
  transition: all 0.3s ease-in-out;
}

.rt-marquee-slider .rt-marquee-item .entry-title:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--rt-primary-color);
  white-space: nowrap;
  content: attr(data-per);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-id-12584 footer {
  display: none;
}

/*-------------------------------------
#. EL: MultiScroll Page
---------------------------------------*/
.multiscroll-wrapper {
  position: relative;
  height: 100vh;
}

@media only screen and (max-width: 991px) {
  .multiscroll-wrapper {
    margin-top: -32px;
  }
}
.multiscroll-wrapper .ms-section {
  background-color: var(--rt-title-color);
}

/*main content*/
.multiscroll-wrapper .ms-content {
  padding-left: 120px;
  padding-right: 15%;
}

@media (max-width: 1666px) {
  .multiscroll-wrapper .ms-content {
    padding-left: 30px;
    padding-right: 5%;
  }
}
@media (max-width: 1366px) {
  .multiscroll-wrapper .ms-content {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/*right nav*/
div#multiscroll-nav.right {
  right: 50px;
  left: auto;
  z-index: 33;
}

div#multiscroll-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

div#multiscroll-nav li {
  width: 14px;
  height: 14px;
  margin: 0;
  margin-bottom: 15px;
}

div#multiscroll-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

div#multiscroll-nav li a span {
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  transition: all 0.4s ease;
}

div#multiscroll-nav li a.active span {
  background: #ffffff;
  width: 20px;
  height: 20px;
  top: -5px;
  left: -5px;
}

@media only screen and (max-width: 991px) {
  div#multiscroll-nav.right {
    right: 15px;
  }
}
.ms-right .ms-section .ms-tableCell .full {
  height: 100%;
}
.ms-right .ms-section .ms-tableCell .full img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media (max-width: 767px) {
  .multiscroll-wrapper .ms-left {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .multiscroll-wrapper .ms-right {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map*/