
 #content-wrap1,
    .container1,
    .wpex-clr1,
    .sticky-wrapper1 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .container1 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section1 {
        width: 100%;
        height: 65vh;
        position: sticky;
        top: 0;
        z-index: 10;
        margin: 0;
        padding: 15px 0;
        background: url("https://img.freepik.com/premium-photo/black-white-texture-background-paper-vintage-design_213524-624.jpg") center/cover no-repeat;
    } 

    .section2 {
        position: sticky;
        width: 100%;
        top: 0;
        z-index: 10;
        background: #fff;
        padding: 20px 0;
        background-color: black;
    } 

    .section2 p {
        color: black;
        font-size: 5rem !important;
        letter-spacing: 0.15em !important;
        font-weight: 400 !important;
        text-transform: uppercase;
        margin-bottom: 60px;
        font-family: "Playfair Display", serif !important;
        text-align: center;
        background: url("https://img.freepik.com/premium-photo/black-white-texture-background-paper-vintage-design_213524-624.jpg") center/cover no-repeat;
        margin-top: -22px;
    }

    /* .collage1-wrapper1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    } */

    .collage1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;

        margin: 0 auto;
    }

    .sticky-wrapper1 {
        position: relative;

    }

    .image-collage {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 5px;
        max-width: 1100px;
        margin: 0 auto;
    }


    .collage1 img {
        width: 220px;
        height: 150px;
        object-fit: cover;
        background: #fff;
        border-radius: 3px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
        transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .image-collage img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .collage1 img:hover,
    .image-collage img:hover {
        transform: scale(1.05);
    }


    .sticky-fixed {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 20;
    }

@media (max-width: 1024px) {
    .section1 {
        height: auto;
        padding: 20px 10px;
    }

    .section2 p {
        font-size: 3rem !important;
        margin-bottom: 30px;
    }

    .image-collage {
        max-width: 90%;
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .section1 {
        height: auto;
        padding: 15px 0;
        position: relative;
    }

    .section2 {
        padding: 15px 0;
        position: relative;
    }

    .section2 p {
        font-size: 2.2rem !important;
        letter-spacing: 0.08em !important;
       margin-top: -16px;
        margin-bottom: 25px;
    }

    .collage1 {
        flex-direction: column;
        gap: 10px;
    }

    .collage1 img {
        width: 90%;
        height: auto;
    }

    .image-collage {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 8px;
        max-width: 95%;
        padding: 0 10px;
    }

    .image-collage img {
        height: auto;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {

    .section2 p {
        font-size: 1.6rem !important;
        letter-spacing: 0.05em !important;
        margin-bottom: 20px;
        margin-top: -16px;
    }

    .collage1 img {
        width: 100%;
    }

    .image-collage {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .image-collage img {
        width: 100%;
        height: auto;
    }
}

