@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}
.swiper-pagination{
    top: auto;
    bottom: -0.875rem;
}
.swiper-pagination-bullet { 
    opacity: 0.35;
    width: 0.625rem;
    height: 0.625rem;
    background-color: #303030;
    margin-left: 0.3125rem !important; margin-right: 0.3125rem !important;
  }
.swiper-pagination-bullet-active {
    background-color: #0079C2;  opacity: 1;
  }

#back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: #282828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

#back-to-top {
    display: none;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #back-to-top.visible {
        display: flex;
        opacity: 1;
        transform: scale(1);
    }

.circular-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #282828;
    stroke-width: 2;
}

.progress {
    fill: none;
    stroke: #0079C2;
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.2s linear;
}

.arrow {
    color: #fff;
    width: 35px;
    height: 35px;
    z-index: 1;
}