html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", serif !important;
    overflow-x: hidden;
}
.flash_wrap-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-85px);
    -ms-transform: translateX(-85px);
    transform: translateX(-85px);
    -webkit-animation-name: btnflash;
    animation-name: btnflash;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.flash_effects {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, .4)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    background: -o-linear-gradient(left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}
@-webkit-keyframes btnflash {
    20% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes btnflash {
    20% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    top: auto;
    bottom: 5px;
    left: auto;
    right: auto;
    gap: 20px;
}
.swiper-pagination {
    bottom: 35px;
}
.swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 12px;
    background: #EEF2F5;
    width: 8px;
    height: 8px;
    margin: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-radius: 12px;
    background: #B829A0;
    transform: scale(1.2);
    transition: 0.15s all;
}
@media (max-width: 550px) {
    .swiper-pagination {
        gap: 5px
    }
}