.ArticleSlider .SliderEachItem {
        min-height: fit-content;
        overflow: hidden;
        margin: 0 5px 5px 5px;
        padding: 0;
        /*width: 100%;*/
        position: relative;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
}
.ArticleSlider .SliderEachItem .Header{
        order: -1;
        text-transform: uppercase;
        padding: 8px;
        font-weight: 600;
        color: #0054a6;
        border-bottom: 2px solid;
        border-bottom-color: #6981fc;
        margin-bottom: 5px;
        display: none;
}

.ArticleSlider .SliderEachItem .Header span{
		font-size: 18px;
}

.ArticleSlider .SliderEachItem .Header a {
        color: rgb(0, 100, 188);
        text-transform: uppercase;
        font-weight: 400;
        display: block;
        padding: 7px;
}
.ArticleSlider .SliderEachItem .ArticleContent {
        display: block;
        list-style: none outside none;
        margin: 0;
        padding: 0;
        /* position: relative; */
        width: 100%;
}
.ArticleSlider .SliderEachItem .ImageContainer {
        /* float: left; */
        height: 330px;
        /* right: 0; */
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
}
.ArticleSlider .SliderEachItem .ImageContainer .Image {
        height: 100%;
        width: 100%;
        right: 0;
        object-fit: cover;
        /* border-radius: 4px; */
}
.ArticleSlider .SliderEachItem .ArticleItem {
        display: flex;
        left: 0;
        margin-left: 0;
        margin-right: 0;
        top: 0;
        width: 100%;
        flex-direction: row;
        gap: 20px;
}
.ArticleSlider .SliderEachItem .ArticleItem .Summary {
        font-size: 14px;
        font-weight: normal;
        line-height: 1.4;
        color: #333;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
        text-align: left;
        -webkit-line-clamp: 6;
        text-align: justify;
}
.ArticleSlider .SliderEachItem .ButtonList {
        display: none;
        position: static;
        font-size: 0;
        text-align: center;
        padding: 0 10px;
        width: 100%;
}
.ArticleSlider .SliderEachItem .ButtonList .ButtonBar {
        display: inline-block;
        /* float: left; */
        /* width:100%; */
}
.ArticleSlider .SliderEachItem .ButtonList .Button {
        background: #6c757d;
        text-align: center;
        width: 24px;
        height: 3px;
        margin: 5px;
        display: inline-block;
        color: transparent;
}
.ArticleSlider .SliderEachItem .ButtonList .ButtonActive {
        background: none repeat scroll 0 0 #AE0002;
        text-align: center;
        width: 24px;
        height: 3px;
        margin: 5px;
        display: inline-block;
        color: transparent;
}
.ArticleSlider .SliderEachItem .ArticleItem .Title {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        /* Grey 1 */
        color: #031739;
        /* Inside auto layout */
        flex: none;
        order: 0;
        flex-grow: 0;
}
.ArticleSlider .SliderEachItem .ArticleItem .Title a {
        font-size: 16px;
        color: #202122;
        margin: 0;
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
        line-height: 1.4;
        -webkit-line-clamp: 6;
        text-align: justify;
}
.ArticleSlider .ItemContent {
        /* position: absolute; */
        /* background: rgba(0, 0, 0, 0.7); */
        max-width: 100%;
        width: 100%;
        text-align: left;
}
.ArticleSlider .prev, .ArticleSlider .next {
        width: 45px;
        height: 45px;
        position: absolute;
        top: 50%;
        transform: translateY(calc(-50% - 80px));
        color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.6;
        cursor: pointer;
        transition: 300ms;
}
.ArticleSlider .prev:hover, .ArticleSlider .next:hover{
        opacity: 1;
}
.ArticleSlider .prev {
        left: 0;
        background-image: url(images/ico_left.png);
}
.ArticleSlider .next {
        right: 0;
        background-image: url(images/ico_right.png);
}
@-webkit-keyframes myfirst {
        0% {
                top: 290px;
        }
        10% {
                top: 235px;
        }
        90% {
                top: 235px;
        }
}
@keyframes myfirst {
        0% {
                top: 290px;
        }
        10% {
                top: 235px;
        }
        90% {
                top: 235px;
        }
}
@media only screen and (min-width: 769px){
        .ArticleSlider .SliderEachItem .ArticleContent {
                display: inline-block;
                list-style: none outside none;
                margin: 0;
                padding: 0;
                /* position: relative; */
                width: 100%;
        }
}
@media only screen and (max-width: 768px){
        div.ArticleSlider {
                padding: 0 10px !important;
                margin-bottom: 20px;
        }
        .ArticleSlider .SliderEachItem .ImageContainer {
                height: 55vw;
        }
        .ArticleSlider .SliderEachItem .ArticleContent {
                /* height: 100vw; */
        }
        .ArticleSlider .ItemContent{
                padding: 0 10px;
        }
        .ArticleSlider .SliderEachItem .ButtonList{
                max-width: 100%;
                padding: 0;
        }
}
