/* Animation fond glissant mobile, style index.html */
.moving-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: #fdfdfd;
    transition: transform 0.4s ease;

}

#content .page-about-title#our-values-title {
    margin-bottom: 1em;
}

#our-value-tabs-desktop {
    display: none;
}

#our-value-tabs-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}



.tab-rod {
    display: flex;
    width: 100%;
    max-height: 70px;
    background-color: #686c7f;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 36px;
    gap: 20px;
}

.tab-rod img {
    object-fit: contain;
    cursor: pointer;
    width: 61px;
    height: 50px;
    margin: 5px;
    filter: invert(1);

}

/* .tab-rod .value-tab:nth-child(3) img,
.tab-rod .value-tab:nth-child(4) img {
    width: 45px;
    height: 40px;
} */


.value-tab {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    height: 72px;
    width: 71px;
    justify-content: center;
}

.value-tab.active {
    background-color: var(--grey-100);
}

.value-tab.active img {
    filter: invert(0);

}


.hide {
    display: none;
}

#value-tab-content-container {
    min-height: 200px;
    background-color: var(--grey-100);
    padding: 3rem calc(10% + 20px);
}

.tab-content {
    display: none;
    margin-bottom: 80px;
    font-size: 0.9rem;
}

#our-values-tabs .tab-content h3 {
    font-weight: 400;
    font-size: var(--font-size-20);
    text-transform: uppercase;
    color: var(--grey-700);
}

.tab-content p {
    margin: 10px 0px;
    font-size: var(--font-size-18);
}

.tab-content.show {
    display: block;
}

.section-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.section-content p,
.section-content h3,
.section-content img {
    margin-bottom: 15px;
    font-weight: normal;
}

@media (min-width: 768px) {
    #value-tab-content-container {
        padding-bottom: 85px;
    }

    .tab-rod {
        gap: 75px
    }

    .tab-content {
        font-size: 1rem;
        margin: 20px auto;
        width: 510px;
    }

}

@media (min-width: 1024px) {
    #our-value-tabs-mobile {
        display: none;
    }

    #our-value-tabs-desktop {
        display: block;
    }

    .tabs-container {
        display: flex;
        padding-bottom: 50px;
        justify-content: center;
    }

    .section-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 17vw;
        row-gap: 6rem;
        max-width: 900px;
    }

    .section-container img {
        width: 60px;
        height: 50px;
        object-fit: contain;
    }

    .container-gray {
        display: block;
    }

    .section-content {
        max-width: 350px;
    }
}