J/* Custom CSS for carousel and captions */
.carousel-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px); /* Adjust height as needed */
}
.carousel-image {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}
.carousel-image.active {
    opacity: 1;
}
.carousel-caption {
    position: absolute;
    bottom: 150px;
    left: 80%;
    transform: translateX(-50%);
    color: white;
    background-color: #06883370;
    padding: 30px 20px;
    font-size: 24px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    height: 87px;
    text-align: center;
    border-radius: 1vw;
    width: 550px;
}

.img-box {
    height: 495px;
    position: absolute;
    width: 35%;
    display: block;
    overflow: hidden;
    border-radius: 1vw;
}

/* Custom CSS for the footer */
.footer {
    color: #000;
    padding: 20px 0;
    position: absolute;
    width: 100%;
}



@media (min-width: 320px) and (max-width: 480px) {
  
      #default-block {
        margin-top: 275px;
    }

    .carousel-caption {
        left: 50%;
        transform: translateX(-50%);
    }

    
  
}
