.gallery-container {
    margin-bottom: 9.25rem;
}

.gallery-section {
    margin: 0 auto;
    max-width: 88%;
    margin-bottom: 3.15rem;
}

.gallery-section hr {
    border: none;
    border-bottom: 1px solid var(--clr-primary-100) ;
}

.gallery-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0.8rem auto;
    margin-bottom: 3.15rem;
}

.gallery-section-info {
    font-family: var(--ff-body);
    font-size: var(--fs-500);
    color: var(--clr-primary-100);
} 

.gallery-section-title {
    text-transform: uppercase;
}

.gallery-section-year {
    color: var(--clr-accent-300);
}

.gallery-images-stripe {
    margin-bottom: 3.15rem;

    width: 100%;
    display: flex;
    justify-content: space-between;
    
    overflow: scroll;
    scroll-behavior: smooth;
	scrollbar-width: none;

    &::-webkit-scrollbar {
		display: none;
	}
}

.gallery-img {
    margin: 0 0.5rem;  
}

.gallery-images-container {
    width: 100%;
    min-height: 100vw;
    display: flex;
    justify-content: center;

    padding: 1.8rem;
}

@media (max-width: 850px) {
    .gallery-section-info {
        font-size: var(--fs-300);
        margin: 1em auto;
    } 
    .gallery-section-head{
        flex-direction: column;
        
    }



}