﻿/* Ensure the swiper container and slides have fixed dimensions */
/* Ensure the swiper container and slides have fixed dimensions */
.bannersContainer {
    max-width: 100%;
    max-height: 700px;
    overflow: hidden;
    position: relative;
}

.mobileBannersContainer {
    display: none;
}

.desktopBannerContainer {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: inherit;
}


.secondaryBannerContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.secondaryBannerMobileContainer {
    display: none;
}

#bannerContain .swiper {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    max-height: 700px;
}

#bannerContain .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bannerContain .swiper-slide img {
    max-width: 2400px;
    object-fit: contain;
}

.swiper-pagination-bullet {
    background: #dc9e34;
}

.swiper-button-next,
.swiper-button-prev {
    color: #294235;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#desktopImage {
    display:flex;
}

#mobileImage {
    display:none;
}

#menuNavigationContainer .mobile {
    display: none;
}

.aboutUs img {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 2px;
    max-width:700px;
}


.borderLines {
    position: absolute;
    bottom: 0;
    left: 80%;
    top: 98px;
    width: 20%;
    border-top: 3px solid orange;
    border-left: 3px solid orange;
    opacity: 0.8;
    transform: translate(-132%, 111%);
}
.overflowImg {
    position: absolute;
    left: -50%;
    top: 50%;
}

.aboutImages {
    overflow: hidden;
    min-height: 400px;
}

.aboutUs {
    background: rgb(198,198,198);
    background: linear-gradient(180deg, rgb(229 229 229) 0%, rgb(243 243 243) 40%, rgba(246, 246, 246, 1) 100%);
}

#brands .swiper-wrapper {
    cursor: grab;
}

#brands img {
    width: 200px;
    height: auto;
}

.categories {
    background-color: #f7f4e3;
}
.categories img {
    max-width:400px;
}

.imgText {
    position:absolute;
    top:5%;
    right:0;
    left:0;
    text-align:center;
    font-size:2.5rem;
    color:white;
}

.contactForm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 750px;
}

.contactForm button {
    border-radius: 2px;
    border: none;
    background-color: #dc9e34;
}

@media(max-width:990px) {
    #menuNavigationContainer {
        flex-direction: column;
        text-align: center;
    }

    #menuNavigationContainer ul {
        justify-content: center;
    }

    #menuNavigationContainer .desktop {
        display: none;
    }

    #menuNavigationContainer .mobile {
        display: flex;
        justify-content: center;
    }

    .bannersContainer {
        display: none;
    }

    .mobileBannersContainer {
        display: block;
    }

    .desktopBannerContainer {
        display: none;
    }

    .swiper-slide img {
        max-width: 100%;
        max-height: 600px;
        object-fit: cover;
        height: auto;
    }

    .buttonContainer button {
        position: relative;
    }
}

@media(max-width:767px) {

    .brandContainer {
        display: flex;
        justify-content: start;
    }

    .brandImage {
        max-width: 350px;
    }

    .secondaryBannerContainer {
        display: none;
    }

    .secondaryBannerMobileContainer {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
    }

    #desktopImage {
        display: none;
    }

    #mobileImage {
        display: flex;
    }

    .aboutImages {
        min-height:200px;
    }

    .aboutUs img {
        width: 100%;
        margin-bottom: 20px;
    }

}

@media(max-width:650px) {

    .swiper-slide img {
        max-width: 100%;
        max-height: 500px;
        object-fit: cover;
        height: auto;
    }
}
