/* Home */
#arrow-down {
    position: absolute;
    bottom: 0px;
    left: 0px;

    padding: 50px;
    animation: upDown 1.5s ease-in-out infinite;
}

#arrow-down img {
    width: 50px;
    height: auto;
    filter: drop-shadow(1px 1px 1px rgba(37, 37, 37, 0.4));
}


/* Agence */
#arrow-left, #arrow-right {
    width: 20px;
    height: auto;
    z-index: 3;
}
#arrow-left:hover, #arrow-right:hover {
    cursor: pointer;
}
#arrow-left {
    grid-column: 2 / span 1;
    transform: rotate(180deg);

    animation: leftRight 1.5s ease-in-out infinite;
}
#arrow-right {
    grid-column: 23 / span 1;

    animation: rightLeft 1.5s ease-in-out infinite;
}