/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');

/*Basic Settings*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}


/**********BlogPage***************/

.BlogPage p{
    margin-bottom: 0 !important;
}

/*Banner Section*/

.BlogPage section.banner_section {
    height: 600px;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.BlogPage .banner_section .title{
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 4em;
}
.BlogPage .banner_section .title > div{
    width: 100%;
    max-width: 700px;
}

/*Trending Posts*/

.BlogPage .trendingPosts{
    background-color: #ffffff;
    text-align: center;
}
.BlogPage .trendingPosts .title_box{
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.BlogPage .trendingPosts .heading{
    font-size: 50px;
    font-weight: 700;
    color: #172C54;
    margin-bottom: 10px;
}
.BlogPage .trendingPosts .content_row .article_row{
    border: 1px solid #707070;
    margin-bottom: 20px;
}
.BlogPage .trendingPosts .content_row .article_row .img_column{
    padding: 0;
}
.BlogPage .trendingPosts .content_row .article_row .text_column{
    text-align: left;
    padding: 15px;
}
.BlogPage .trendingPosts .content_row .article_row .text_column .heading{
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}
.BlogPage .trendingPosts .content_row .article_row .text_column .description{
    font-size: 14px;
    font-weight: 500;
}
.BlogPage .trendingPosts .content_row .article_row .text_column .btns_groups{
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.BlogPage .trendingPosts .content_row .article_row .text_column .btns_groups .btn_readMore{
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 15px;
    border-radius: 20px 20px 20px 20px;
    border: none;
    outline: 0;
    margin-right: 20px;
}
.BlogPage .trendingPosts .content_row .article_row .text_column .btns_groups .timing{
    font-size: 12px;
}
.h-60{
    max-height: 300px;
}