/* SCROLL TO THE TOP */

.scrollTop__img-container {
    width: 3em;
    height: 3em;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.scrollTop__img-container svg {
    object-fit: cover;
}

.scrollTop__img-container svg:hover path {
    fill: #0264b5;
    transition: fill 0.5s ease;
}

/* Scroll to the top responsive */

@media screen and (max-width: 600px) {
    .scrollTop__img-container {
        width: 2em;
        height: 2em;
    }
}