.wwec-slider-container {
     width: 550px;
     overflow: hidden;
     margin: 0 auto;
     position: relative;
}
 .wwec-slider {
     display: flex;
     width: 100%;
     transition: transform 0.3s ease-in-out;
     height: 400px;
}
 .wwec-slider img {
     flex: 0 0 100%;
     height: auto;
     object-fit: cover;
}
 .wwec-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     cursor: pointer;
	 color: #fff;
	 font-size: 33px;
	 font-weight: 900;
	 background: rgba(0, 0, 0, 0.6);
	 border-radius: 50%;
	 padding: 0px 15px 5px 15px;
}
 .wwec-arrow-left {
     left: 10px;
}
 .wwec-arrow-right {
     right: 10px;
}
 .wwec-dots {
     display: flex;
     justify-content: center;
     margin-top: 10px;
}
 .wwec-dot {
     width: 10px;
     height: 10px;
     background-color: #888;
     border-radius: 50%;
     margin: 0 5px;
     cursor: pointer;
}
 .wwec-dot.active {
     background-color: #333;
}

.wwec-listing-footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

.wwec-agent-info {
    font-size: 18px;
    margin-bottom: 10px;
}

.wwec-agent-name {
    font-weight: bold;
}

.wwec-agent-contact {
    margin-top: 10px;
}

.wwec-agent-contact a {
    color: #333;
    text-decoration: none;
}

 @media screen and (max-width: 768px) {
     .wwec-slider-container {
         width: 100%;
    }
     .wwec-slider img {
         width: 100%;
         min-width: auto;
    }
     .wwec-arrow {
         display: none;
    }
     .wwec-dots {
         margin-top: 5px;
    }
	.wwec-agent-info {
        font-size: 16px;
    }
}