/* General styles for Custom Widget Elementor */

.cwe-slideshow {
    position: relative;
    overflow: hidden;
}

.cwe-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.slide-overlay{
	background: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.3;
	z-index: 1;
}

.cwe-slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
	height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
	z-index: 9;
}

.cwe-slide-content .slide-content{
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.content-text{
	width: 80%;
}
.cwe-slide-desc{
	width: 50%;
}
.cwe-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cwe-slide-btn i {
    font-size: 1em;
    line-height: 1;
}
/* Navigation buttons */
.cwe-slideshow .swiper-button-prev, .cwe-slideshow .swiper-button-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.cwe-slideshow .swiper-button-next::after, .cwe-slideshow .swiper-button-prev::after {
	font-size: 14px !important;
}

/* Pagination */
.cwe-slideshow .swiper-pagination{
	bottom: 0 !important;
}
.cwe-slideshow .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.6;
}
.cwe-slideshow .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ipad */
@media (max-width: 1024.98px) {
	.content-text{
		width: 90%;
	}
	.cwe-slide-desc{
		width: 70%;
	}
}
/* mobile */
@media (max-width: 767.98px) {
	.content-text{
		width: 100%;
	}
	.cwe-slide-desc{
		width: 100%;
	}
	.cwe-slideshow .swiper-button-prev, .cwe-slideshow .swiper-button-next{
		display: none !important;
	}
}