#homeMain {
    z-index: 0;
    background-color: #e0e0e0;

    #homeMainContairer {
        #homeNewsSection {
            width: 100%;
            position: relative;

            @media (min-width: 1600px) {
                padding: 0 12rem;
            }
            
            #homeNewsSectionImagesContainer {
                width: 100%;
                height: 150px;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.8);
                position: relative;
                overflow: hidden;

                @media (min-width: 1024px) {
                    /* height: 600px; */
                    height: 100%;
                    box-shadow: unset;
                }

                #autoSlideBtn {
                    display: none;

                    @media (min-width: 1024px) {
                        display: block;
                        position: absolute;
                        right: 1rem;
                        top: 1rem;
                        font-size: 0.6rem;
                        text-transform: uppercase;
                        font-weight: bolder;
                        color: white;
                        z-index: 10000;
                        padding: 0.5rem;                    
                        border: solid white 2px;
                        border-radius: 0.5rem;
                    }
                }

                #sliderTrack {
                    display: flex;
                    transition: transform 0.5s ease-in-out;
                    width:100%;

                    .slide {
                        flex: 0 0 100%;
                        width: 100%;
                        display: block;
                        object-fit: cover;
                        box-sizing: border-box;
                        border-bottom-left-radius: 0.25rem;
                        border-bottom-right-radius: 0.25rem;
                    }
                }

                .homeNewsSectionArrowsContainer {
                    display: none;

                    @media (min-width: 1600px) {
                        display: flex;
                        padding: 0 12rem;
                        justify-content: center;
                        align-items: center;
                        position: absolute;
                        top: 30%;
                        transform: translateY(-50%);
                        z-index: 10000;
                    }

                    .homeNewsSectionArrows2 {
                        width: 3rem;
                        filter: invert(100%);
                        
                        &:hover {
                            cursor: pointer;
                        }
                    }
                    
                    .homeNewsSectionArrows {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-48%);
                        width: 3rem;
                    }
                }

                .homeNewsSectionLeftArrowContainer {
                    left: -8rem;

                    img {
                        transition: 0.3s;
                        
                        &:hover {
                            transition: 0.3s;
                            transform: translateX(-0.25rem);
                        }
                    }
                }

                .homeNewsSectionRightArrowContainer {
                    right: -8rem;

                    img {
                        transition: 0.3s;

                        &:hover {
                            transition: 0.3s;
                            transform: translateX(0.25rem);
                        }
                    }
                }

                .newsImgBottomFilter {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    height: 100px;
                    background: linear-gradient(to bottom, rgba(224, 224, 224, 0.1) 0%, #e0e0e0 100%);
                }
            }

            #homeTimelessContainer {
                width: 100%;
                padding: 1rem;

                @media (min-width: 1600px) {
                    padding: 0 12rem;
                    position: absolute;
                    top: 45%;
                    left: 0;
                    right: 0;
                }

                h2 {
                    text-transform: uppercase;
                    background-color: #232F3E;
                    color: white;
                    padding: 0.25rem;
                    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.8);
                    font-size: 1rem;
                    border-radius: 0.25rem;
                    width: fit-content;
                    margin-bottom: 1rem;

                    @media (min-width: 1024px) {
                        display: none;
                        /* padding: 0 12rem;
                        font-size: 2rem;
                        margin-right: auto;
                        margin-top: 1rem;
                        padding: 0.5rem; */
                    }
                }

                .homeTimelessCardContainer {
                    /* margin-top: 2rem; */
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    @media (min-width: 1024px) {
                        flex-direction: row;
                        justify-content: space-around;
                        gap: 0;
                    }

                    .card {
                        display: flex;
                        flex-direction: column;
                        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                        background-color: white;
                        
                        h3 {
                            text-transform: uppercase;
                            background-color: #232F3E;
                            color: white;
                            padding: 0.5rem;
                            font-size: 0.9em;
                            width: 100%;
                            text-align: center;

                            @media (min-width: 1024px) {
                                font-size: 1rem;
                            }
                        }
                        
                        .cardContent {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            padding: 0.5rem;
                            gap: 1rem;
                            
                            .cardImgContainer {
                                background-color: white;

                                img {
                                    width: 100%;
                                    height: 100px;
                                    /* transform: scale(0.9); */
                                    box-sizing: border-box;
                                    display: block;
                                    position: relative;
                                    object-fit: contain;
                                    margin: 0 auto;

                                    @media (min-width: 1024px) {
                                        height: 160px;
                                        width: 150px;

                                        &:hover {
                                            cursor: pointer;
                                        }
                                    }
                                }

                                h4 {
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    font-size: 0.8rem;
                                    text-align: center;
                                    width: 100px;
                                    margin: 0 auto;
                                }
                            }
                        }

                        .cardBottomCta {
                            padding: 0.5rem;
                            text-transform: uppercase;
                            color: white;
                            background-color: #232F3E;
                            font-size: 0.8rem;
                            text-decoration: none;
                            width: 100%;
                            margin-top: auto;

                            @media (min-width: 1024px) {
                                transition: 0.3s;
                                
                                &:hover {
                                    background-color: #004eb4;
                                    transition: 0.3s;
                                    cursor: pointer;
                                }
                            }
                        }
                    }
                }
            }
        }

        .homeSection {
            background-color: white;
            margin: 1rem;
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);

            @media (min-width: 1600px) {
                margin: 2rem 12rem;
            }

            .homeSectionTopContentContainer {
                display: flex;
            }

            h2 {
                text-transform: uppercase;
                width: fit-content;
                margin-right: auto;
                background-color: #232F3E;
                border-bottom-right-radius: 0.25rem;
                color: white;
                padding: 0.5rem;
                box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                font-size: 1rem;

                @media (min-width: 1600px) {
                    font-size: 1.5rem;
                }
            }

            .carouselScrollHintIconContainer {
                margin-left: auto;
                width: fit-content;
                
                img {
                    margin-right: 0.5rem;
                    margin-top: 0.5rem;
                    width: 32px;
                    transform: rotate(90deg);
                }

                @media (min-width: 1600px) {
                    display: none;
                }
            }

            .sectionMainContainer {
                display: flex;
                justify-content: space-around;
                position: relative;

                &:hover .arrows {
                    opacity: 1;
                    transition: 0.3s;
                }

                .arrows {
                    transition: 0.3s;
                    background-color: whitesmoke;
                    opacity: 0;
                    margin: auto 0;
                    padding: 0 1rem;
                    height: 200px;
                    display: grid;
                    align-content: center;
                    border: solid rgba(0, 0, 0, 0.6) 1px;
                    
                    img {
                        width: 2rem;
                    }
                }

                .rightArrow {
                    right: 0.5rem;
                    border-right: none;
                    border-top-left-radius: 0.25rem;
                    border-bottom-left-radius: 0.25rem;
                    
                    &:hover {
                        transition: 0.3s;

                        img {
                            transition: 0.3s;
                            transform: translateX(0.25rem);
                        }
                    }
                }

                .leftArrow {
                    left: 0.5rem;
                    border-left: none;
                    border-top-right-radius: 0.25rem;
                    border-bottom-right-radius: 0.25rem;

                    &:hover {
                        transition: 0.3s;
                        
                        img {
                            
                            transform: translateX(-0.25rem);
                            transition: 0.3s;
                        }
                    }
                }
                
                .carouselContainer {
                    position: relative;
                    overflow: hidden;
                    width: 100%;
                    max-width: 1200px;
                    margin: auto;
                    overflow-x: auto;
                    overflow-y: hidden;
                    white-space: nowrap;

                    @media (min-width: 1024px) {
                        overflow: hidden;
                        overflow-y: unset;
                        white-space: unset;
                    }

                    .carouselTrack {
                        display: flex;
                        gap: 2rem;
                        transition: transform 0.4s ease-in-out;
                        margin: 1rem;

                        .carouselItem {
                            flex: 0 0 100%;
                            border-radius: 0.25rem;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            box-sizing: border-box;
                            border-radius: 0.25rem;
                            font-size: 0.8rem;
                            background-color: white;
                            
                            @media (min-width: 1024px) {
                                width: 200px;
                            }

                            h3 {
                                width: 100%;
                                text-align: center;
                                font-size: 0.8rem;
                            }

                            a {
                                width: 100;

                                img {
                                    width: 100%;
                                    box-sizing: border-box;
                                    display: block;
                                    height: 200px;
                                    object-fit: contain;

                                    &:hover {
                                        cursor: pointer;
                                    }
                                }
                            }

                            h4 {
                                text-transform: uppercase;
                                font-weight: bold;
                                text-align: center;
                                background-color: #232F3E;
                                color: white;
                                width: 100%;
                                padding: 0.5rem 0;
                                border-bottom-left-radius: 0.25rem;
                                border-bottom-right-radius: 0.25rem;
                            }
                        }

                        @media (min-width: 576px) {
                            .carouselItem { flex: 0 0 50%; }
                        }
    
                        @media (min-width: 768px) {
                            .carouselItem { flex: 0 0 33.3333%; }
                        }
    
                        @media (min-width: 992px) {
                            .carouselItem { flex: 0 0 25%; }
                        }
    
                        @media (min-width: 1200px) {
                            .carouselItem { flex: 0 0 15%; }
                        }
                    }
                }
            }
        }

        #homeBottomContainer {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            background-color: white;

            .homeFrenchFlagContainer {
                width: 100%;
                display: flex;
                /* border: solid rgba(0, 0, 0, 0.2) 1px; */
                /* box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6); */

                .homeFrenchFlagColor {
                    height: 8px;
                    width: 100%;
                }

                .blue {
                    background-color: #135fc2;
                }

                .white {
                    background-color: white;
                }

                .red {
                    background-color: rgb(252, 47, 47);
                }
            }

            .homeDisfraContainer {
                margin: 0 auto;
                text-align: center;
                
                @media (min-width: 1024px) {
                    width: fit-content;
                    margin-left: auto;
                    padding: 1rem;
                    text-align: right;
                    margin-right: 1rem;
                    border-radius: 0.25rem;
                    box-shadow: 0px 1px 0px 1px rgba(0, 0, 0, 0.6);
                    border: solid rgba(0, 0, 0, 0.6) 1px;
                }

                h1 {
                    color: #002B5C;
                    font-size: 1.5rem;
                }
    
                h2 {
                    text-transform: uppercase;
                    font-size: 1rem;
                }

            }

            #homeThumbnailContainer {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                padding: 2rem;
                gap: 1rem;
                
                @media (min-width: 1024px) {
                    flex-direction: row;
                }
                
                img {
                    max-width: 600px;
                    border-radius: 0.25rem;
                    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
                }
            }
        }

        #homeSellerBottomCta {
            color: white;
            background-color: #002B5C;
            padding: 0.5rem;
            border-radius: 0.25rem;
            width: fit-content;
            text-transform: uppercase;
            border: solid black 2px;
            transition: 0.3s;
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.6);
            margin: 0 auto;
            font-size: 1rem;
            margin-bottom: 2rem;
            
            &:hover {
                transition: 0.3s;
                cursor: pointer;
                background-color: #004eb4;
            }
        }
    }
}