/* Gallery Pages (Artworks/Sculpture) Specific Styles */

.sec1 {
    background: white;
    height: auto;
    /* padding-top: 20px; */
}

.sec2 {
    padding: 100px 0 0 0;
}

/* Bootstrap grid customization */
.row {
    --bs-gutter-x: 3vw;
    --bs-gutter-y: 3vw;
}

/* Gallery images for sculpture/other-work pages */
img.imgBx {
    width: 100%;
    height: 380px;
    padding-top: 50px;
    object-position: 50% 50%;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

img.imgBx:hover {
    transform: scale(1.02);
    opacity: 0.7;
}

/* Gallery captions */
.caption {
    color: var(--text-color);
    text-align: center;
    font-size: calc(1.5 * 1rem);
    margin: 0.5em 0;
}

.caption p {
    font-size: calc(1.5 * 1rem);
}

/* Responsive gallery styles */
@media (max-width: 992px) {
    .sec1 {
        padding-top: 40px;
    }

    .sec2 {
        padding-top: 105px;
    }
}

@media (max-width: 768px) {
    .headerText h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--text-color);
    }
}

@media (max-width: 767px) {
    img.imgBx {
        height: calc(100% - 5vh);
    }

    img.imgBx.v {
        height: calc(50% - 5vh);
    }
}

@media (min-width: 320px) {
    .container {
        max-width: calc(100% - 6vw);
    }
}

@media (min-width: 992px) {
    img.imgBx {
        height: 500px;
    }
}
