@-webkit-keyframes shadow-drop-br {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
        box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
    }
}

@keyframes shadow-drop-br {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
        box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
    }
}

@-webkit-keyframes scale-up-hor-left {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }
}

@keyframes scale-up-hor-left {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }
}

.news-listing .load-more.loading {
    background: url('../gif/loadmore.gif');
    height: 50px;
    background-size: cover;
    width: 50px;
}

.news-listing .entry-title .title-link:focus {
    text-decoration: none;
    color: #ef730f;
}

.news-listing .load-more.loading a {
    display: none;
}

.news-listing .load-more.loading::before {
    content: none;
}

.news-detail-banner .detail-banner img {
    display: none;
}

.news-detail-banner .detail-banner {
    height: 565px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.single-post #content {
    padding-top: 91px;
}

body #site-content.news-listing {
    padding-top: 108px;
    padding-bottom: 149px;
    width: 76%;
}

.news-listing a.img-link {
    padding-bottom: 58%;
    display: block;
    position: relative;
    overflow: hidden;
}

.news-listing .img-link img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-listing h2.entry-title a {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.78125px;
    text-transform: initial;
    color: #000000;
}

.news-listing h2.entry-title a:hover {
    color: #ef730f;
    text-decoration: none;
}

.news-listing .entry-title.post-title {
    font-size: 0;
    line-height: 0;
    margin: 6px 0 13px 0;
}

.news-listing .news-post-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 44px;
    font-size: initial;
}

.news-listing .feature-image {
    display: inline-block;
    width: 27%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    vertical-align: middle;
}

.news-listing .news-content {
    display: inline-block;
    width: 72%;
    padding: 0 0 0 42px;
    vertical-align: middle;
}

.news-listing .short-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.5333334px;
    margin: 0;
}

.news-listing .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    float: right;
    position: relative;
    top: 4px;
    left: 3px;
}

.news-listing .read-more .read-more-link {
    text-decoration: none;
    color: #ef730f;
    padding-left: 35px;
}

.news-listing .date-text {
    margin: 0;
    color: #ef730f;
    letter-spacing: 0.64px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

.news-listing .read-more::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #ef730f;
    position: absolute;
    left: 0;
    top: 6px;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.news-listing .read-more:hover::before {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.news-listing .feature-image:hover {
    -webkit-animation: shadow-drop-br 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-drop-br 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    position: relative;
}

.news-listing .load-more {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.5625px;
    text-align: center;
    margin: auto;
    margin-top: 60px;
}

.news-listing .click_loadpost::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 17px solid #11bcc2;
    position: absolute;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: -8px;
    top: 4px;
}

.news-listing .click_loadpost:hover::before {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.news-listing .load-more a {
    color: #11bcc2;
    position: relative;
    padding-left: 40px;
}

.news-listing .pagination-wrapper.section-inner {
    display: none;
}

/* .banner-slogan {
    -webkit-animation: scale-up-hor-left 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-left 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

@media (max-width:767px) {
    body #site-content.news-listing {
        padding: 44px 20px 50px 20px;
        width: 100%;
    }

    .news-listing a.img-link {
        padding-bottom: 58%;
    }

    .news-listing .load-more {
        margin-top: 5px;
    }

    .news-listing .entry-title.post-title {
        margin-bottom: 0;
    }

    .news-listing .news-post-item {
        margin-bottom: 48px;
    }

    .news-listing .read-more {
        top: 6px;
        right: 2px;
    }

    .news-listing .feature-image {
        width: 100%;
        float: none;
    }

    .news-listing .news-content {
        float: none;
        width: 100%;
        padding: 17px 0 0 0;
    }

    .news-listing .img-link img {
        max-height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
    }

    .news-listing .date-text {
        font-size: 15px;
        letter-spacing: 0.6px;
    }

    .news-listing h2.entry-title a {
        font-size: 20px;
        letter-spacing: 0.625px;
    }
}


/* New Detail */
#new-detail.container {
    max-width: 1920px;
    padding: 40px 64px 142px 70px;
}

#new-detail .full-content {
    display: inline-block;
    width: 100%;
}

#new-detail .sidebar-left {
    float: left;
    width: 30%;
    padding-left: 93px;
}

#new-detail .main-content {
    float: left;
    width: 70%;
    padding-left: 58px;
    padding-right: 65px;
    padding-top: 5px;
}

#new-detail .detail-page-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0.9375px;
    margin: 0;
    text-transform: none;
    padding-bottom: 35px;
}

#new-detail .full-article {
    float: right;
    position: relative;
    /*! width: 229px; */
    text-align: right;
    margin-right: 15px;
    padding-left: 47px;
}

#new-detail .full-article a {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ef730f;
    letter-spacing: 1.5625px;
    line-height: 30px;
}

#new-detail .full-article::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 17px solid #ef730f;
    position: absolute;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0;
    top: 3px;
}

#new-detail .full-article:hover::before {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

#new-detail .back-box .back-button {
    color: #014391;
    text-transform: uppercase;
    line-height: 19px;
    padding-left: 32px;
    font-weight: 700;
    position: relative;
}

#new-detail .back-box .back-button::before {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #014391;
    position: absolute;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0;
    top: 2px;
}

#new-detail .back-box .back-button:hover::before {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -ms-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

#new-detail .date-text,
#new-detail .by-text,
#new-detail .from-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #9a9999;
    letter-spacing: 0.64px;
    padding-bottom: 3px;
}

#new-detail .date-time,
#new-detail .author-text,
#new-detail .from-who {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #014391;
    letter-spacing: 0.64px;
}

#new-detail .sidebar-left .sidebar-box {
    padding-bottom: 23px;
}

#new-detail .back-box.sidebar-box {
    padding-top: 13px;
}

#new-detail .main-text p {
    margin-bottom: 25px;
}

#new-detail .main-text {
    padding-bottom: 37px;
}

#new-detail .main-content .date-time,
#new-detail .main-content .author-box,
#new-detail .main-content .from-box {
    display: none;
}

.news-detail-banner .feature-img-banner img {
    display: none;
}

.news-detail-banner .feature-img-banner {
    height: 565px;
    background-size: cover;
    background-position: center;
}

@media (max-width:767px) {
    .single-post #content {
        padding-top: 76px;
    }

    #new-detail.container {
        max-width: 1920px;
        padding: 20px 20px 93px 20px;
    }

    #new-detail .sidebar-left {
        width: 100%;
        padding-left: 0;
    }

    #new-detail .main-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    #new-detail .sidebar-left {
        display: none;
    }

    #new-detail .main-content .date-time,
    #new-detail .main-content .author-box,
    #new-detail .main-content .from-box {
        display: inline-block;
    }

    .news-detail-banner .detail-banner img,
    .news-detail-banner .feature-img-banner img {
        display: none;
    }

    .news-detail-banner .detail-banner,
    .news-detail-banner .feature-img-banner {
        background-size: cover;
        height: 230px;
        background-position: center;
    }

    #new-detail .detail-page-title {
        text-align: center;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.625px;
        padding-top: 3px;
        padding-bottom: 36px;
    }

    #new-detail .main-content .date-time {
        text-align: center;
        display: block;
    }

    #new-detail .main-content .by-text {
        padding-bottom: 9px;
    }

    #new-detail .full-article {
        margin-right: 2px;
        margin-top: -2px;
        padding-left: 39px;
    }

    #new-detail .main-content .author-box {
        padding-bottom: 3px;
    }

    #new-detail .main-content .author-text,
    #new-detail .main-content .from-who {
        padding-left: 10px;
        padding-bottom: 9px;
    }

    #new-detail .main-text {
        padding-top: 21px;
        padding-bottom: 23px;
    }

    #new-detail .full-article a {
        font-size: 20px;
        letter-spacing: 1.25px;
        line-height: 24px;
    }

    #new-detail .full-article::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 16px solid #ef730f;
        top: 3px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    body #site-content.news-listing {
        padding-top: 50px;
        width: 95%;
        padding-bottom: 30px;
    }

    .news-listing .feature-image {
        width: 35%;
        vertical-align: top;
    }

    .news-listing .news-content {
        width: 64%;
        vertical-align: top;
    }

    .news-listing .img-link img {
        max-height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
    }

    #new-detail .sidebar-left {
        padding-left: 0;
    }

    #new-detail .main-content {
        padding: 0;
    }

    #new-detail.container {
        padding-bottom: 50px;
    }

    .news-detail-banner .feature-img-banner {
        height: 339px;
    }
}

@media (min-width: 1281px) {
    /* body #site-content.news-listing {
        padding-top: 8.4375vw;
        padding-bottom: 11.640625VW;
    }

    .news-listing .news-content {
        padding: 0 0 0 3.28125vw;
    }*/

    .news-listing .date-text {
        /*letter-spacing: 0.05vw;*/
        font-size: 18px;
        /*line-height: 1.484375vw;*/
    }

    /*.news-listing .entry-title.post-title {
        margin: 0.46875vw 0 1.015625vw 0;
    }
*/
    .news-listing h2.entry-title a {
        font-size: 27px;
        line-height: 35px;
        /*letter-spacing: 0.06103515625vw;*/
    }

    .news-listing .news-post-item {
        font-size: 18px;
    }

    /*.news-listing .news-post-item {
        margin-bottom: 3.4375000000000004vw;
    }*/

    /*.news-listing .read-more {
        font-size: 18px;
        top: 0.3125vw;
        left: 0.234375vw;
    }*/

    .news-listing .read-more::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 15px solid #ef730f;
    }

    .news-listing .read-more .read-more-link {
        padding-left: 40px;
    }

    .news-listing .load-more {
        font-size: 27px;
        /*
        line-height: 2.34375vw;
        letter-spacing: 0.1220703125vw;
        margin-top: 4.6875vw*/
        ;
    }

    .news-listing .load-more a {
        padding-left: 45px;
    }

    .news-listing .click_loadpost::before {
        border-left: 15px solid transparent;
        border-right: 18px solid transparent;
        border-bottom: 19px solid #11bcc2;
        /*left: -0.625vw;
        top: 0.3125vw;*/
    }

    /* .news-listing .load-more.loading {
        height: 3.90625vw;
        width: 3.90625vw;
    }*/

    /*.news-listing .short-text p {
        font-size: 1.25vw;
        line-height: 1.953125vw;
        letter-spacing: 0.04166667187499999vw;
    }*/

    .news-detail-banner .detail-banner {
        height: 44.140625vw;
    }

    /*#new-detail.container {
        max-width: 150vw;
        padding: 3.125vw 5vw 11.09375vw 5.46875vw;
    }*/

    #new-detail .date-text,
    #new-detail .by-text,
    #new-detail .from-text {
        font-size: 18px;
        /*
        line-height: 1.484375vw;
        letter-spacing: 0.05vw;
        padding-bottom: 0.234375vw;*/
    }

    #new-detail .date-time,
    #new-detail .author-text,
    #new-detail .from-who {
        font-size: 18px;
        /*
        line-height: 1.484375vw;
        letter-spacing: 0.05vw;
        padding-bottom: 0.234375vw;*/
    }

    #new-detail .detail-page-title {
        font-size: 32px;
        /*
        line-height: 2.8125vw;
        letter-spacing: 0.0732421875vw;
        padding-bottom: 2.734375vw;*/
    }

    /*#new-detail .main-text {
        padding-bottom: 2.890625vw;
    }*/

    #new-detail .main-text p {
        /*margin-bottom: 1.953125vw;*/
        font-size: 18px;
    }

    /* #new-detail .sidebar-left {
        padding-left: 7.265625000000001vw;
    }

    #new-detail .sidebar-left .sidebar-box {
        padding-bottom: 1.7968749999999998vw;
    }*/

    /*  #new-detail .back-box.sidebar-box {
        padding-top: 1.015625vw;
    }
*/
    #new-detail .back-box .back-button {
        /*line-height: 1.484375vw;*/
        padding-left: 35px;
        font-size: 18px;
    }

    #new-detail .back-box .back-button::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 14px solid #014391;
        /*top: 0.15625vw;*/
    }

    #new-detail .full-article a {
        font-size: 27px;
        /*
        letter-spacing: 0.1220703125vw;
        line-height: 2.34375vw;*/
    }

    #new-detail .full-article::before {
        border-left: 15px solid transparent;
        border-right: 18px solid transparent;
        border-bottom: 19px solid #ef730f;
        /*top: 0.46875vw;*/
    }

    /* #new-detail .full-article {
        margin-right: 1.171875vw;
        padding-left: 55px;
    }*/

    /*#new-detail .main-content {
        padding-left: 4.53125vw;
        padding-right: 5.078125vw;
        padding-top: 0.390625vw;
    }*/
}

@media (min-width: 1899px) {
    .single-post #content {
        padding-top: 120px;
    }
}

.single-post .site-header .primary-menu>li.news-menu a {
    color: #ef730f;
    text-decoration: none;
}

@media (min-width:1920px) {
    .news-detail-banner .detail-banner {
        height: 815px;
    }
}