@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.heroSectionHome {
    padding: 0 20vw 0 5vw;
    position: sticky;
    top: 0;
    z-index: 1;
    background-image: url('../images/home/2260-31_PALE_WEBCAM_BACKGROUND_VF_A.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heroSectionHome h3 {
    font-size: 5vw!important;
    z-index: 999;
}

.heroSectionHome .heroSectionHomeText {
    z-index: 999;
}

.heroSectionHome .heroSectionHomeText h4 {
    font-size: 1.5vw!important;
}

.circleHeroSectionHome {
    height: 100vh;
    width: 100vh;
    position: absolute;
    opacity: 0.25;
    right: -10%;
    background-image: url('../images/logo/PICTO_QM_250X250_AVEC_FOND.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
    .heroSectionHome {
        padding: 0 5vw;
        background-position: left;
    }

    .heroSectionHome h3 {
        font-size: 6vw!important;
    }

    .heroSectionHome .heroSectionHomeText h4 {
        font-size: 3vw!important;
    }

    .circleHeroSectionHome {
        display: none;
    }

    .heroSectionHome a {
        padding: 10px 40px;
        font-size: 1.5em;
    }
}

@media screen and (max-width: 600px) {
    .heroSectionHome h3 {
        font-size: 10vw!important;
    }

    .heroSectionHome .heroSectionHomeText h4 {
        font-size: 5vw!important;
    }
}


/*--------------------------------*/
/* OVER THE OTHER 1 SECTION */
/*--------------------------------*/

.overTheOther1 {
    position: relative;
    background-color: var(--grey-light-full);
    background-image: url('../images/home/homeSolabs.svg');
    background-size: 160%;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 10;
    padding: 100px 0;
}

@media screen and (max-width: 900px) {
    .overTheOther1 {
        background-repeat: repeat-y;
    }
}


/*--------------------------------*/
/* OUR BELIEFS SECTION */
/*--------------------------------*/

.ourBeliefs > div {
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1200px) {
    .ourBeliefs > div {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------*/
/* INDEX DESCRIPTION - WHY SOLABS? */
/*--------------------------------*/

.indexDescTitle h2 {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .indexDescTitle h2 {
        text-align: left;
        padding: 0 10vw;
        font-size: 10vw;
    }
}

.indexDesc {
    grid-template-columns: 1fr 1fr; 
    gap: 80px;
}

@media screen and (max-width: 1300px) {
    .indexDesc {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.indexDescription {
    grid-template-columns: 150px 1fr;
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .indexDescription {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.indexDescription i,
.indexDescriptionOffice365 i {
    font-size: 5em;
    filter: drop-shadow(1px 4px 6px var(--blue-dark-twenty));
}


/*--------------------------------*/
/* DISCOVER QM10 SECTION */
/*--------------------------------*/

.discoverQM10 {
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1400px) {
    .discoverQM10 {
        grid-template-columns: 1fr;
    }
}

.discoverQM10 img {
    height: 50vh;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 1000px) {
    .discoverQM10 img {
        height: 30vh;
    }
}


/*--------------------------------*/
/* CLIENT MARQUEE SECTION */
/*--------------------------------*/

.clientMarquee {
    overflow: hidden;
    position: relative;
}

.clientMarquee::before,
.clientMarquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clientMarquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.clientMarquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 150px;
    animation: marquee 150s linear infinite;
    width: fit-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .clientMarquee {
        padding: 40px 0;
    }
    
    .marquee-track {
        gap: 40px;
        animation: marquee 150s linear infinite;
    }
    
    .marquee-track img {
        height: 50px;
    }
    
    .clientMarquee::before,
    .clientMarquee::after {
        width: 100px;
    }
}


/*--------------------------------*/
/* CLIENT CITATIONS SECTION */
/*--------------------------------*/

.clientCit {
    grid-template-columns: 1fr 1fr;
    width: calc(100vw - 20vw);
}

@media screen and (max-width: 1100px) {
    .clientCit {
        grid-template-columns: 1fr;
    }
}

.clientCit .clientCitItem {
    font-size: 1.2em;
}

.clientCit .clientCitItem img {
    max-width: 200px;
    max-height: 80px;
}

.clientCit .clientCitItemAuthor {
    font-weight: 700;
}