/* animationSpeed: 40s; */

.slider-landing {
	/*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);*/
	height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	
	&::before,
	&::after {
		content: "";
		height: 100px;
		position: absolute;
		width: 200px;
		z-index: 2;
	}
	
	&::after {
		right: 0;
		top: 0;
		transform: rotateZ(180deg);
	}

	&::before {
		left: 0;
		top: 0;
	}
	
	.slide-track {
		animation: scroll 40s linear infinite;
	}
	
	.slide {
		height: 100px;
		width: 250px;
	}
}

.swiper-container{ 
	@keyframes slide {
		0% {
		transform:translateX(-25%);
		}
		100% {
		transform:translateX(25%);
		}
	}
}
  
.swiper-slide .item {
	box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	border-radius: 8px;
	position: relative;
}

.swiper-pagination-bullet {
	width: 16px !important;
	height: 16px !important;
	border-radius: 50% !important;
	background: #0B93E2 !important;
	transition: all 0.3s !important;
	margin-left: 2px !important;
	margin-right: 2px !important;
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}