.catalog-animation__scroll-container {
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.catalog-animation__section {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.catalog-animation__svg {
    width: 80%;
    font-size: 5rem;
    fill: #414141;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.catalog-animation__scroll-arrow {
    position: absolute;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    outline: none;
    padding: 8px;
}

.catalog-animation__arrow-icon {
    font-size: 2.5rem;
    color: #414141;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.catalog-animation__scroll-arrow:hover .catalog-animation__arrow-icon {
    transform: translateY(5px);
    opacity: 1;
}

@media (max-width: 480px) {
    .catalog-animation__svg{
        font-size: 8rem;
    }

    .catalog-animation__scroll-arrow {
      bottom: 70px;
    }
    
    .catalog-animation__arrow-icon {
      font-size: 2rem;
    }
}
  