.banners-animation-myAnimation1 {
    animation: myAnimation1 ease-out;
}
@keyframes myAnimation1 {
    0% {
        transform: scale(1) rotate(0);
    }
    25% {
        transform: scale(1.6) rotate(10deg);
    }
    75% {
        transform: scale(1.6) rotate(-10deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

#slider {
    width: 1201px;
    height: 226px;
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hide;
}

#slider-nav {
    width: 1201px;
    height: 20px;
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hide;
}

.banners-pagination {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
}

.banners-pagination span {
    vertical-align: middle;
    text-align: center;
    font-size: 6px;
    border: 1px solid #cccccc;
    background-color: #dddddd;
    color: #dddddd;
    width: 10px;
    height: 10px;
    line-height: 10px;
    border-radius: 5px;
    opacity: 0.4;
    cursor: pointer;
    padding: 0 1px;
    margin: 0 2px;
}

.banners-pagination span.active {
    justify-content: center;
    align-items: center;
    border: 1px solid #ff5050;
    background-color: #ff5050;
    color: #ff5050;
    font-weight: bold;
    opacity: 0.5;
    cursor: pointer;
}

