@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
    font-family: poppins;
}

.news-top-banner {
    background-image: url('../assets/images/Stock-images/product-banner.jpg');
    /* height: 63vh; */
    height: 30vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*------main content section----*/
.news-section .news-wrapper p{
    line-height: 1.8;
}

.news-section .news-wrapper .header-text h1 {
    font-size: 2.25rem;
    font-weight: 600;
    padding: 5px 0px 30px 0px !important;
}

.news-section .news-wrapper .card {
    margin-bottom: 16px;
    border: none;
}

.news-section .news-wrapper .card-body {
    padding: 1rem;
}

.news-section .news-wrapper a {
    text-decoration: none;
    color: #212121;
}

.news-section .news-wrapper .card:hover {
    box-shadow: 0 1px 20px 1px rgba(0, 0, 0, .1);
    transition: 0.3s;
    cursor: pointer;
}

.news-section .news-wrapper .card:hover .card-title {
    transition: 0.3s;
    color: #0056B7;
}

.news-section .news-wrapper .card .card-img-top {
    height: 160px;
    object-fit: cover;
}

.news-section .news-wrapper .card .card-title {
    font-size: 1rem;
    color: #212121;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.news-section .news-wrapper .card .date {
    color: #616161;
    font-size: 12px;
}

.news-section .news-wrapper .card .card-text {
    margin-bottom: 1rem;
    min-height: 100px;
    font-size: .9rem;
    color: #616161;
}

.news-section .news-wrapper .card p {
    font-size: 1rem;
    color: #616161;
    padding-top: 16px;

}

/*------Media Query-----*/
@media (max-width: 600px) {
    /* .news-top-banner {
        height: 200px;
    } */

    .news-section .news-wrapper .header-text h1 {
        font-size: 1.8rem;
    }

    .news-section .news-wrapper .card p {
        font-size: .9rem;
    }

}

@media (max-width: 768px) {
    .news-section .news-wrapper .header-text h1 {
        font-size:1.8rem;
      
    }
}