/*home-news*/


.dy-news-list-wrapper .dy-news-list {
    margin: 3rem 0;
}

.dy-news-list-wrapper .news-item {
    position: relative;
    padding: 8px;
    background-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width:991px) {
    .dy-news-list-wrapper .news-item {
        margin-bottom: 2rem;
    }
}

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

.dy-news-list-wrapper .news-item .img-div {
    width: 100%;
    flex: 0 0 250px;
    margin-right: 1rem;
}

@media screen and (max-width:991px) {
    .dy-news-list-wrapper .news-item .img-div {
        flex: 1;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.dy-news-list-wrapper .news-item .img-div .news-img {
    position: relative;
    background-size: cover;
}

.dy-news-list-wrapper .news-item:hover .img-div .news-img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.3s ease-in;
}

.dy-news-list-wrapper .news-item .img-div .news-img::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}

.dy-news-list-wrapper .news-item .news-info .date {
    color: #FF9B05;
    font-weight: bold;
}

.dy-news-list-wrapper .news-item a {
    text-decoration: none;
}

.dy-news-list-wrapper .news-item .news-info .title {
    padding-bottom: 0.5rem;
    border-bottom: 1px #d5d5d5 solid;
}

.dy-news-list-wrapper .news-item .news-info .title a {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.dy-news-list-wrapper .news-item:hover .news-info .title a {
    color: #dd6b0b;
    transition: all 0.3s ease-in-out;
}

.dy-news-list-wrapper .news-item .news-info .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 60px;
    overflow: hidden;
    transition: 0.2s all linear;
    line-height: 185%;
    color: #696969;
    margin: 0.5rem 0;
}

.dy-news-list-wrapper .news-item .news-info .news-more {
    background-color: #FF9B05;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.dy-news-list-wrapper .news-item .news-info .news-more i {
    margin-left: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.dy-news-list-wrapper .news-item:hover .news-info .news-more {
    background-color: #dd6b0b;
}

.dy-news-list-wrapper .about-box .more-btn {
    margin: 50px 0 20px;
}


.dy-news-list-wrapper .btn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    transition: 0.3s all linear;
    color: #fff;
    background-color: #FFC267;
    min-width: 180px;
    padding: 0;
    line-height: 40px;
    padding-left: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.dy-news-list-wrapper .btn-more .icon {
    flex: 0 0 50px;
    padding-left: 15px;

}

.dy-news-list-wrapper .btn-more .icon i {
    position: relative;
    z-index: 1;
}

.dy-news-list-wrapper .btn-more {
    position: relative;
}

.dy-news-list-wrapper .btn-more::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background-color: #FF9B05;
    clip-path: polygon(80% 0px, 180px 0, 180px 180px, 60% 180px);
    z-index: 0;
    transition: 0.3s all linear;
}

.dy-news-list-wrapper .btn-more .text {
    position: relative;
    z-index: 1;
}

.dy-news-list-wrapper .btn-more:hover::after {
    clip-path: polygon(0% 0px, 180px 0, 180px 180px, 0% 180px);
    transition: 0.3s all linear;
}

.dy-news-list-wrapper .btn-more:hover {
    transition: 0.3s all linear;
}