@import url("../app/site-variables.css");
/*€──────────────────────────────────────────────────────────────────────────────────────────────*/
/*€--- Fichier S030-chantier1.css ===> STYLE appliqué sur fichier V030-chantier1.php ( Dossier VIEW )*/
/*€──────────────────────────────────────────────────────────────────────────────────────────────*/


/*:___ DEBUT - 01 ______________________________________________________________________________:*/

#iContainerBtnGalerie {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 14px 0;
}

.cBtnGalerie {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cBtnGalerie a {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.05px;
    text-align: center;
    text-decoration: none;
    color: var(--clr_10);
    background-color: var(--clr_20);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all .35s;
}

.cBtnGalerie a span {
    position: relative;
    z-index: 100;
}

.cBtnGalerie a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background-color: var(--clr_10);
    border-radius: 50px;
    transition: all .35s;
}

.cBtnGalerie a:hover {
    color: var(--clr_20);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.3);
    transition: all .35s;
}

.cBtnGalerie a:hover:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/*:________________ FIN - 01 ___________________________________________________________________:*/


/*:___ DEBUT - 02 ______________________________________________________________________________:*/

section {
    position: relative;
    width: 94%;
    height: 71vh;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: #ccc;
    border-radius: 14px;
    border: 5px solid var(--clr_00);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

/*?__________________________________*/

#iBtn {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.up, .down {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
}

.up {
    top: 0;
    right: 0;
    color: #2c3e50;
    background-color: #fff;
    visibility: hidden;
}

.down {
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: #2c3e50;
}

#iContenu {
    display: flex;
    height: 100vh;
}

#iContenu .avant, #iContenu .apres {
    width: 50%;
}

.avant div, .apres div {
    height: 100%;
    box-sizing: border-box;
}

.avant div img, .apres div img {
    width: 100%;
    height: 71vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/*?__________________________________*/

#iSpecification {
    display: flex;
    width: 94%;
    margin: 20px auto 0;
}
#iSpecification div {
    width: 50%;
    font-size: 28px;
    text-align: center;
    color: var(--clr_31);
}
/*:________________ FIN - 02 ___________________________________________________________________:*/