.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    /* width: 80%; */
    margin: 0 auto;
    padding: 10px;
}

.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 20px;

    cursor: pointer;
}

.gallery-item:hover {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 999;
}

.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
    font-size: 45px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}



.gallery_video {
    padding: 80px 0;
}

.my_video {
    display: flex;
    margin: 0 auto;
    max-width: max-content;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background-color: #E4F6FE;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}
.my_video video{
    width: 100%;
}

@media(max-width:1200px) {
    .gallery-item img {
        height: 200px;
    }
}

@media(max-width:992px) {
    .breadcrumb_heaading h1 {
        font-size: 45px;
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }

    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
    }

    .breadcrumb_wrapper {
        padding:  50px 0 70px 0;
    }

    .breadcrumb_heaading h1 {
        font-size: 34px;
    }

    .breadcrumb_heaading span {
        font-size: 16px;
    }

    .gallery-item img {
        height: auto;
    }
    .gallery_video{
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }

    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}