/* Container for the image and overlay */
.custom-overlay-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin: 10px 0;
}

/* Style the image */
.custom-image {
    width: 100%;
    display: block;
}

/* Overlay text styling */
.custom-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    width: 80%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title and subtitle styling */
.overlay-title {
    font-size: 14px;
    color: #8B8B8B;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.overlay-subtitle {
    font-size: 20px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Button styling */
.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
}

/* Individual button colors */
.custom-overlay-container:nth-child(1) .learn-more {
    background-color: #5D4037; /* Brown */
}

.custom-overlay-container:nth-child(2) .learn-more {
    background-color: #D32F2F; /* Red */
}

.custom-overlay-container:nth-child(3) .learn-more {
    background-color: #388E3C; /* Green */
}


.custom-color {
    background-color:#75b7af;
    color:75b7af;
}