.paragraph--type--paragraph-first-banner img {
    width: 100%;
    aspect-ratio: 1920 / 730;
}

@media screen and (min-width: 991px) {
    .spacing_banner_home img.unveil-image {
        aspect-ratio: 1920 / 900;
    }
}
.homepage-scroll-down{
    position: relative;
}

.carouselNewIndicators-scroll-down {
    position: absolute;
    left: 50%;
    margin-left: -30px;
    display: none;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    bottom: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.carouselNewIndicators-scroll-down i {
    color: #fff;
    font-size: 36px;
    display: block;
    animation: icon 1s linear infinite;
    cursor: pointer;
    margin-top: 10px;
  }
  /* .fa.fa-angle-left:before {
    content: "\f107";
    content: "";
} */
[class^="icon-"]:before, [class*=" icon-"]:before {
    text-decoration: inherit;
    display: inline-block;
    speak: none;
}
  
  @keyframes icon {
    0% {
        opacity: 0.8;
        transform: translate(0, 0);
    }
  
    50% {
        opacity: 1;
        transform: translate(0, 5px);
    }
  
    100% {
        opacity: 0.8;
        transform: translate(0, 0);
    }
  }