.highlight-text {
    color: #01d099;
}

.item-slider {
    background: url('../img/index-page/slide-1.png') no-repeat center center;
    background-size: cover;
}

.head-player {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
}

.head-player img {
    width: 100%;
    height: 100%;
    margin-top: 5px; /* Adjust as needed */
    object-fit: contain;
}

.head-player .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.head-player:hover .overlay {
    opacity: 1;
}


/* Player container */
.w5p-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15px; /* Adjust padding as needed */

}

.custom-width {
    width: 18%; /* Adjust the width as needed */
    margin: 1%; /* Add some margin for spacing */
}

@media (max-width: 1200px) {
    .custom-width {
        width: 23%; /* Adjust the width for medium screens */
    }
}

@media (max-width: 992px) {
    .custom-width {
        width: 31%; /* Adjust the width for smaller screens */
    }
}

@media (max-width: 768px) {
    .custom-width {
        width: 48%; /* Adjust the width for small screens */
    }
}

@media (max-width: 576px) {
    .custom-width {
        width: 98%; /* Full width for extra small screens */
    }
}


.widget-wide-font {
    font-size: 1rem; /* Adjust the size as needed to match the widget wide font size */
}

/* static/assets/css/index.css */
.btn-end-row {
    margin-bottom: 20px; /* Adjust the value as needed */
    display: block;

}




