.swipslider {
        position: relative;
        left: 0;
        top: 2rem;
        margin: 0;
        overflow: hidden;
        display: block;
        -webkit-user-select: none;
        -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        }
.swipslider .sw-slides {
    display: block;
    padding: 0;
    list-style: none;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: absolute;
    bottom: 0;
}
.swipslider .sw-slide {
    width: 100%;
    height: 100%;
    margin: auto;
    display: inline-block;
    position: relative; 
}
.swipslider .sw-slide > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 51%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; 
}
.swipslider .sw-slide .sw-content {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px; 
}

.sw-next-prev {
    font-family: "Courier New", Courier, monospace;
    height: 40px;
    width: 30px;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    line-height: 50px;
    font-size: 30px;
    font-weight: bolder;
    color: rgba(248, 246, 246, 0.53);
    top: 90%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 50%;
    text-decoration: none;
    transition: all .2s ease-out;
    cursor: pointer;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; 
  }
.sw-prev {
    left: 30%; 
}
  .sw-prev::after {
    content: '<';
 }

.sw-next {
    right: 30%;
 }
  .sw-next::after {
    content: '>';
 }

.sw-bullet {
    position: absolute;
    bottom: 0.3rem;
    left: 2.5rem;
    list-style: none;
    display: block;
    width: 50%;
    height: 0.7rem;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.sw-bullet li {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all .2s ease-out; 
}
/* .sw-bullet li:hover {
    background-color: rgba(252, 6, 6, 0.74); 
} */
.sw-bullet li.active {
    background-color: red;
    box-shadow: 0 0 2px rgba(248, 246, 246, 0.53); 
}
.sw-bullet li:not(:last-child) {
    margin-right: 5px; 
}
