/** Shopify CDN: Minification failed

Line 122:65 Expected ":"

**/
    .image-grid{
        text-align: center;
        padding: 20px;
        position: relative;
    }

    .background-video{
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .background-image{
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .background-video video{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .background-video::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(49, 63, 112, 0.85); 
        z-index: 0;
    }

    .overflow-hidden{
        overflow: hidden;
    }

    ul.image-grid-collage {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        list-style-type: none;
        gap: 20px;
        padding-left: 0;
    }
    li.image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    }
        li.image-item:nth-child(1) img,
    li.image-item:nth-child(3) img,
    li.image-item:nth-child(4) img,
    li.image-item:nth-child(5) img {
        aspect-ratio: 1/1;
    }

    li.image-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 2;
    }

    li.image-item:nth-child(4) {
        grid-column-start: 1;
        grid-row-start: 2;
    }

    li.image-item:nth-child(5) {
        grid-column-start: 4;
        grid-row-start: 2;
    }

    .text-container{
        max-width: 50%;
        margin: 0 auto;
        margin-bottom: 35px;
    }

    .text-container > * + *{
        margin-top: 1rem;
    }

    @media screen and (max-width: 749px) {
        .overflow-scroll{
            overflow: scroll;
        }
        ul.image-grid-collage{
            width: 150%;

        }
        .text-container{
            max-width: 90%;
        } 
    }

    .audio-section{
        margin: 0 auto;
        padding: 50px;
        max-width: 85%;
        gap: 2rem;
        z-index: 2;
        position:relative;
    }

.image-grid h2 {
    font-size: 44px;
    font-weight: 300;
    font-family: 'Volte';
}

.image-item{position:relative; background:black; background-color 0.3s ease, transform 0.3s ease;}
.image-item:hover img{opacity:.5;}
.music_desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  display:none;
  padding:10px;
}


    @media screen and (max-width: 749px) {

        .image-grid h2{
            font-size: 33px;
        }
        .audio-section{
        max-width: 100%;
        width: 100%;
        padding: 0 10px 25px 10px;
        }
    }

    .bg-black{
        background-color: #1C1C1C ;
    }

    .mt-0{
        margin-top: 0;
    }

    .py-50{
        padding-top: 50px;
        padding-bottom: 50px
    }

    .aspect-square{
        aspect-ratio: 1/1;
    }