#agence {
    opacity: 0;
    padding-top: 70px;

    transition: opacity 1200ms ease-in-out;
}

/* L'agence */
#agence > div:nth-child(1) h2 {
    font-family: 'Sansita', sans-serif;
    font-size: 96px;
    font-weight: bold;
    color: var(--soft-black);

    text-align: center;
}
#agence #content-agence {
    display: block;
    padding-top: 80px;
}
#agence #photo-grp {
    float: left;

    height: auto;
    width: 600px;
    border-radius: 20px;

    margin-right: 30px;
    margin-bottom: 30px;
    
    filter: grayscale(50%);
    transform: translateX(-250px);

    transition: all 1s ease-in-out;
}
#agence #text-agence {
    min-height: 330px;
    
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--soft-black);

    line-height: 130%;

    transform: translateX(250px);
    transition: transform 1s ease-in-out;
}



/* Nos pôles */
#agence > div:nth-child(2) h3 {
    font-family: 'Sansita', sans-serif;
    font-size: 36px;
    font-weight: normal;
    color: var(--soft-black);
}

#poles {
    height: 500px;
    padding-top: 80px;

    display: grid;
    align-items: center;
    grid-template-columns: repeat(24, 1fr);
}
.slide-content {
    width: 100%;
    grid-column: 3 / 22;
    
    display: none;
    justify-content: center;
    align-items: flex-start;
    grid-template-columns: auto auto;

    opacity: 0;
    transition: opacity 200ms ease-in-out;
}
.slide-content > div:nth-child(1) {
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto auto auto;
}
.slide-content > div:nth-child(2) {
    position: relative;
}
.slide-content p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--soft-black);
}

/* Left side */
.img-card {
    position: relative;
    filter: grayscale(80%);

    transition: all 0.2s ease-in-out;
}
.img-card:hover {
    filter: grayscale(0);
    z-index: 2;

    transition: all 0.2s ease-in-out;
}
.img-card > img {
    width: 250px;
    height: 400px;
    object-fit: cover;

    border-radius: 40px;
    transition: all 300ms ease-in-out;
}
.img-card > img:hover {
    box-shadow: 0px 0px 100px rgba(20, 20, 20, 0.4);

    transition: all 300ms ease-in-out;
}
.img-card p {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: 14px;
    font-weight: 400;

    padding: 15px 20px;
    border-radius: 40px;
    background: rgba(252, 201, 1, 0.9);
}



/* Right side */
.slide-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--soft-black);

    line-height: 130%;

    padding-bottom: 20px;
}
.slide-content > div:nth-child(2) > p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--soft-black);

    line-height: 130%;

    text-align: start;
}




/* ----
MEDIA QUERIES
---- */
@media screen and (max-width: 1200px) {
    #agence #photo-grp {
        display: block;
        float: none;
        width: 80vw;
 
        margin-left: auto;
        margin-right: auto;
    }
    #agence #text-agence {
        min-height: auto;
        text-align: center;
    } 

    #poles {
        height: 600px;
    }
    .slide-content {      
        grid-template-columns: auto;
        height: 500px;
    }
    .img-card > img {
        width: 25vw;
        height: auto;
        max-height: 35vw;
    }
    .slide-content > div:nth-child(2) h4 {
        text-align: center;
    }
    .slide-content > div:nth-child(2) p {
        text-align: center;
    }
}
