/* ###### GALLERYVIEW ####### */
.card-text-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    top: 282px;
    margin-left: 12px;
    padding: 3px 15px;
    width: -webkit-fill-available;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
    cursor: pointer;
    outline: 0;
}

.section-padding {
    padding-top: 0px;
}

.gallery-section {
    position: relative;
    z-index: 1;
}

.title {
    font-size: 46px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #0aaaa0;
}

.filter {
    text-align: center;
    width: 100%;
    margin: auto;
}

.btn {
    padding: 10px 20px;
    margin: 5px 4px 4px 0;
    display: inline-block;
    color: #003;
    background: #eee;
    border: 1px solid #0aaaa0;
    transition: all 0.4s;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}

.btn:hover,
.btn-active {
    background: #0aaaa0;
    color: #fff;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.gallery {
    display: flex;
    justify-content: center;
    /* width: fit-content; */
    width: 112%;
    flex-wrap: wrap;
    /* margin: 25px auto; */
    /* gap: 14px; */
}

.gallery a {
    display: flex;
}

.gallery img {
    width: 200px;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 10px;
}

.gallery img:hover {
    transform: scale(1.1);
}

.gallery img:hover+.card-text-overlay {
    transform: scale(1.2);
    top: 288px;
    margin-left: 15px;
}

.sets .hide,
.sets .pophide {
    width: 0%;
    opacity: 0;
}

.closeBtn {
    position: absolute;
    font-size: 22px;
    font-weight: 500;
    right: 25px;
    top: 25px;
    color: white;
    transition: 0.5s linear;
    padding: 8px 40px;
    border-radius: 25px;
    background: #0aaaa0;
    outline-offset: -6px;
    outline: 2px solid #fff;
}

.closeBtn:hover {
    cursor: pointer;
    background: white;
    color: black;
    outline: 2px solid #000;
}

.openDiv {
    width: 100%;
    height: 100vh;
    background: #000000e7;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 9999;
}

.imgPreview {
    width: 70%;
    object-fit: scale-down;
    max-height: 40vw;
    height: auto;
}

.prevButton,
.nextButton {
    transition: 1s linear;
    padding: 10px 35px;
    font-size: 18px;
    border: none;
    color: white;
    background: #0005;
    border-radius: 10px;
    border: 1px solid white;
    margin: 10px;
}

.prevButton:hover,
.nextButton:hover {
    background: #fff;
    color: black;
}

/* resposive CSS Code */

@media (max-width: 1199px) {
    .section-padding {
        padding-top: 0px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding-top: 0px;
    }
}

@media (max-width: 767px) {
    .title {
        font-size: 36px;
    }

    .gallery img {
        margin: 8px 8px;
        width: 175px;
    }

    .closeBtn {
        padding: 6px 25px;
    }

    .prevButton,
    .nextButton {
        font-size: 18px;
        padding: 8px 25px;
    }
}

@media (max-width: 540px) {
    .section-padding {
        padding-top: 0px;
    }

    .gallery img {
        margin: 8px 6px;
        width: 155px;
    }

    .closeBtn {
        font-size: 18px;
        border-radius: 15px;
    }

    .prevButton,
    .nextButton {
        font-size: 18px;
        padding: 6px 20px;
        border-radius: 10px;
        margin: 5px;
    }

    .imgPreview {
        width: 90%;
        max-height: 50vh;
        height: auto;
    }
}
