:root {
    --accent-color: #F5F5F5;
    --accent-light-yellow: #E2CB7A;
    --accent-yellow: #FFC260;
    --accent-green: #027F3F;

    --lightgrey-FAFAFA: #FAFAFA;
    --lightgrey-E9EBEC: #E9EBEC;
    --lightgrey-DEE2E4: #DEE2E4;
    --lightgrey-C2C6CA: #C2C6CA;
    --grey-9B9FA5: #9B9FA5;
    --darkgrey-878B92: #878B92;
    --darkgrey-5E636A: #5E636A;
    --darkgrey-3D444E: #3D444E;
    --darkgrey-222222: #222222;
}

.home-main-c {
    display: flex;
    justify-content: center;
}

.home-main-c > div {
    max-width: 1200px;
}

.image-container-home {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
}

.image-container-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-home-hero {
    position: absolute;
    bottom: 8%;
    background-color: var(--accent-color);
    padding: 0.75rem 2.5rem;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}



.overlay-text {
    bottom: 100px;
    position: absolute;
    color: white;
    text-shadow: 1px 1px 0px black;
    z-index: 10;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

.overlay-text > p:first-child,
.overlay-text > p:nth-child(3) {
    font-size: max(2.5vw, 1.5rem);
    line-height: 1;
}

.overlay-text > p:nth-child(2) {
    font-size: max(6vw, 3rem);
    line-height: 1.3;
}

@media (min-width: 1600px) {
    .overlay-text > p:first-child,
    .overlay-text > p:nth-child(3) {
        font-size: max(2vw, 1.5rem);
        line-height: 1;
    }
    
    .overlay-text > p:nth-child(2) {
        font-size: max(5vw, 3rem);
        line-height: 1.3;
    }
}

@media (max-width: 1200px) {
    .overlay-text > p:first-child,
    .overlay-text > p:nth-child(3) {
        font-size: max(3vw, 1.5rem);
        line-height: 1;
    }
    
    .overlay-text > p:nth-child(2) {
        font-size: max(6vw, 3rem);
        line-height: 1.3;
    }
}

.image-container-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
}

.image-container-home-grid  .image-container-home-grid-c {
    aspect-ratio: 2 / 3;
}

.image-container-home-grid .image-container-home-grid-c > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .image-container-home {
        aspect-ratio: 16 / 9;
    }
   
}

@media (max-width: 700px) {
    .image-container-home {
        margin-bottom: 2.5rem;
    }

    .image-container-home img {
        min-height: 500px;
    }
}




.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 2rem;
    margin-top: 2rem;
}




@media (max-width: 700px) {
    .brand-story-grid {
        grid-template-columns: 1fr;
    }
    
}

.brand-story-grid p {
    font-size: 13px;
}

.brand-story-grid h3 {
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}



.collection-featured-c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
}

.collection-featured-c,
.image-container-home-grid {
    text-align: center;
}

.collection-featured-c h2,
.collection-featured-c h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.image-container-home-grid h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .image-container-home-grid {
        width: calc(100vw - 2rem);
        overflow-x: auto;
        grid-template-columns: repeat(3, 40%);
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }
}
@media (max-width: 768px) {
    .image-container-home-grid {
        grid-template-columns: repeat(3, 60%);
    }
}


.collection-featured-cta {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    text-decoration: underline;

}

.collection-featured-img-c {
    aspect-ratio: 0.82 / 1;
}

.collection-featured-img-c > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .collection-featured-c {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 1rem;
        row-gap: 1rem;
        max-width: 550px;
        margin: auto;
    }
}

.border-divider-margintop-3rem {
    border-top: 1px solid var(--lightgrey-DEE2E4);
    width: 100%;
    margin-top: 3rem;
}

.border-divider {
    border-top: 1px solid var(--lightgrey-DEE2E4);
    width: 100%;
}

.home-grid-h2-title {
    padding: 0 12px;

}

@media (max-width: 768px) {
    .home-grid-h2-title {
        font-size: 16px!important;
        line-height: 1!important;
        padding: 0 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%; 
    }
}