.article4_wrapper {
    padding: 120px 0;
}
.article4_container {
    max-width: 1200px;
    margin: 0 auto;
}
.article4_title {
    text-align: center;
}
.article4_title > div {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.article4_title > h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.article4_nav_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 2px dashed #ccc;
    margin-bottom: 40px;
}
.article4_nav_flex > ul {
    display: flex;
    align-items: center;
}
.article4_nav_flex > ul > li a {
    padding: 8px 16px;
    color: black;
    text-decoration: underline;
    font-size: 18px;
}

a:hover {
    color: black;
}
.article4_hvr-float-shadow {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 1);
}
.article4_hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(
        center,
        ellipse,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.article4_hvr-float-shadow:hover,
.article4_hvr-float-shadow:focus,
.article4_hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: black;
    /* move the element up by 5px */
}
.article4_hvr-float-shadow:hover:before,
.article4_hvr-float-shadow:focus:before,
.article4_hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
.article4_getMore_hide {
    display: none;
}
.article4_content_list {
    border-bottom: 1px solid #ececec;
    padding: 30px;
}
.article4_content_list:hover {
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.12);
    background-color: #fff;
}

.article4_content_list > h4 {
    font-size: 18px;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 20px;
}
.article4_content_list > p {
    color: #666;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
    .article4_container {
        padding: 0 20px;
    }
    .article4_content_list{
        padding: 30px 0px;
    }
}
