.article1_wrapper {
    padding: 120px 0;
}
.article1_container {
    max-width: 1200px;
    margin: 0 auto;
}
.article1_title {
    text-align: center;
}
.article1_title > div {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.article1_title > h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.article1_nav_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.article1_nav_flex > ul {
    display: flex;
    align-items: center;
}
.article1_nav_flex > ul > li a {
    padding: 8px 16px;
    color: black;
    text-decoration: underline;
    font-size: 18px;
}
a:hover {
    color: black;
}
.article1_hvr-float-shadow {
    display: inline-block;
    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);
}
.article1_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;
}
.article1_hvr-float-shadow:hover,
.article1_hvr-float-shadow:focus,
.article1_hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: black;
    /* move the element up by 5px */
}
.article1_hvr-float-shadow:hover:before,
.article1_hvr-float-shadow:focus:before,
.article1_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) */
}
.article1_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article1_content > div {
    box-shadow: 0 0 10px #ccc;
}

.article1_content > div > a > img {
    width: 380px;
    height: 538px;
    object-fit: cover;
}
.article1_content_2 {
    display: none;
}
.article1_content_3 {
    display: none;
}
.article1_getMore_hide{
    display: none;
}

@media (max-width: 768px) {
    .article1_nav_flex {
        padding-left: 10px;
        padding-right: 10px;
        display: block;
        text-align: right;
    }
    .article1_nav_flex > ul {
        margin-bottom: 10px;
    }
    .article1_content {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
    }
    .article1_content > div > a > img {
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }
}
