.carousel-content {
    position: relative;
    width: 100%;
    text-align: center;
}
.carousel-content::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, 0.5);*/
    
}
.carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.16);
}

.overlay-content {
    position: absolute;
    top: -50px;
    left: 16px;
    width: 100%;
    height: 500px;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;
}
.overlay-content p, .overlay-content .btn-group {
    pointer-events: auto; /* allows buttons to be clickable */
}

.overlay-content p {
    color: #d9e901;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.32);
    letter-spacing: .03em;
    z-index: 11;
}

.btn-group {
    display: flex;
    gap: 29px;
    z-index: 11;
}

.btn {
    padding: 12px 45px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    font-weight: 500;
}

.btn.contact {
    background: #1e3a8a;
    color: #fff;
}
.btn.contact a {
    text-decoration: none;
        color: #fff;
}
.btn.contact:hover {
    background: #b2d104;
    color: rgb(8, 8, 189);
}

.btn.pickup {
    background: #fbbf24;
    color: #fff;
}

.btn.pickup:hover {
    background: #043899;
    color: #fbbf24;
}

@media (max-width: 768px) {
       .carousel-img {
        height: 500px;
    }
    .overlay-content p {
        font-size: 20px;
    }
    .btn-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 11;
    margin-bottom: 12px;
}
.btn {
    padding: 12px 85px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    font-weight: 500;
}
.btn.pickup {
    background: #fbbf24;
    color: #fff;
      padding: 12px 35px;
}
}
.owl-carousel .owl-stage {
  transition-timing-function: ease-in-out !important;
}
