.home-news {
    background-position: center;
    background-image: url('/assets/template/2a2445b7edc5904015f0fde1994a2281/img/bg.png');
    background-repeat: repeat;
    background-size: 105px 141px;
}

.home-news .wrapper {
    display: flex;
    align-items: center;
    padding-top: 115px;
    padding-bottom: 105px;
}

.home-news .header {
    flex: 0 0 260px;
}

@media (max-width: 991px) {
    .home-news .wrapper {
        flex-direction: column;
    }

    .home-news .header {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1rem;
    }
}

.home-news .header .en {
    font-size: 20px;
    font-weight: bold;
    color: #AEC0C6;
    margin-left: 8px;
}

.home-news .header .title {
    font-size: 28px;
    font-weight: bold;
    color: #548691;
    margin-bottom: 8px;
    margin-left: 8px;
}

.home-news .btn-more {
    background: #8EB7C4;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 0;
    transition: 0.3s all linear;
    color: #fff;
    border-radius: 50px;
    margin-top: 5rem;
    flex-direction: row;
    max-width: 150px;
}

.home-news .btn-more:hover::before {
    border-radius: 50px;
    background: #548691;
}

@media (max-width: 991px) {
    .home-news .btn-more {
        margin-top: 0;
    }
}

.home-news .btn-more .text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.home-news .btn-more .arrow {
    width: 35px;
    height: 35px;
    background-position: center;
    background-image: url('/assets/template/2a2445b7edc5904015f0fde1994a2281/img/btn-arrow.svg');
    background-repeat: no-repeat;
    z-index: 1;
}

.home-news .news-list {
    flex: 1;
    padding-right: 8px;
}

@media (max-width: 991px) {
    .home-news .news-list {
        width: 100%;
    }
}

.home-news .news-list .item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 10px;
    border-bottom: dashed 1px #8EB7C4;
}

.home-news .news-list .item:hover {
    background-color: #eef6f8;
    transition: all 0.3s ease-in-out;
}

.home-news .news-list .item:first-child {
    border-top: dashed 1px #8EB7C4;
}

.home-news .news-list .item i {
    color: #548691;
}

.home-news .news-list .item .date {
    color: #8A8A8A;
    padding-left: 4px;
    padding-right: 14px;
}

.home-news .news-list .item .text {
    flex: 1;
    padding-right: 8px;
}

.home-news .news-list .item .text a {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 30px;
    overflow: hidden;
}

.home-news .news-list .item .arrow {
    width: 30px;
    height: 15px;
    background-position: center;
    background-image: url('/assets/template/2a2445b7edc5904015f0fde1994a2281/img/arrow.svg');
    background-repeat: no-repeat;
    position: relative;
    left: -10px;
}

.home-news .news-list .item:hover .arrow {
    left: 0;
    transition: all 0.3s ease-in-out;
}

/*home-btn-style*/

.btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 2rem;
    line-height: 35px;
    border-radius: 50px;
    max-width: 300px;
    width: 100%;
}

.btn-more::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transition: transform .48s cubic-bezier(.895, .03, .685, .22), border-radius .35s cubic-bezier(.55, .085, .68, .53) 40ms;
    transform: scale(1, 0);
    transform-origin: 50% 100%;
    z-index: 0;
}

.btn-more:hover::before {
    border-radius: 50% 50% 0 0 / 0 0 0 0;
    transition: transform .48s cubic-bezier(.165, .84, .44, 1), border-radius .35s cubic-bezier(.55, .085, .68, .53) 20ms;
    transform: scale(1, 1);
}

.btn-more .text {
    margin-right: 23px;
    z-index: 1;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

.btn-more i {
    z-index: 1;
}