.story-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.story-modal-image {
    margin: auto;
    max-height: 450px;
}

.story-caption {
    margin-top: 40px;
    text-align: center;
}
.galler-i img {
    cursor: pointer;
}

.story-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: start;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.story-thumbnails::-webkit-scrollbar {
  display: none;
}
.story-video iframe {
    width: 100%;
    height: 400px;
}
.thumb {
    flex: 0 0 auto;
    height: 70px;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 5px;
}

.thumb.active {
    opacity: 1;
}

.close {
    position: absolute;
    top: -50px;
    right: -20px;
    cursor: pointer;
    padding: 12px 20px 20px;
}
.gallery-wrapper {
    width: 800px;
    margin: auto;
    background: var(--color-white);
    padding: 20px 30px;
    position: relative;
}
.latest-exhibitions .page-heading {
    margin-bottom: 60px;
}
.custom-section-desc {
    border-left: 6px solid var(--color-oja-orange);
    padding-left: 50px;
}
.story-image-caption {
    color: var(--color-black);
    text-align: center;
}
/* Responsive */
@media(min-width:768px){
    .story-gallery-modal {
        background: rgb(242 242 242 / 80%);
    }
}
@media(max-width:767px){
    .section-blockquote .container {
        padding: 0px;
    }
    .custom-section-desc {
        padding-left: 24px;
    }
    .middel-container .btn {
        width: 100%;
    }
    .latest-exhibitions .page-heading {
        margin-bottom: 40px;
    }
    .latest-exhibitions .action {
        padding: 40px 0px 24px;
    }
    .section.latest-exhibitions {
        padding-top: 0px;
    }
    .full-gallery .grid-two {
        grid-template-columns: repeat(1, 1fr);
    }
    .story-caption {
        margin-top: 32px;
    }
}