/*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;
}

.bannerFeatured {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}


/**********Blog Article***************/
.BlogArticlePage p{
    margin-bottom: 0 !important;
}

/*Banner Section*/

.BlogArticlePage .Banner_section{
    padding: 30px 0;
}

.BlogArticlePage .Banner_section .content_row{
    display: flex;
    align-items: center;
}
.BlogArticlePage .Banner_section .content_row .details_column{
    text-align: center;
    padding: 20px;
}

.BlogArticlePage .Banner_section .content_row .details_column .details_box{
    padding: 20px;
    border: 2px solid #172c5479;
    border-left: 0;
    border-right: 0;
}

.BlogArticlePage .Banner_section .content_row .details_column .details_box p:first-child{
    margin-bottom: 5px !important;
}


/*Article Content*/

.BlogArticlePage .ArticleContent{
    padding: 20px 0;
}

.BlogArticlePage .ArticleContent .main_heading{
    font-size: 30px;
    font-weight: 800;
    color: #172C54;
    margin-bottom: 20px;
}

.BlogArticlePage .ArticleContent .content_row .textContent_column{
    padding-bottom: 30px;
}

.BlogArticlePage .ArticleContent .content_row .textContent_column p{
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 30px !important;
}


.BlogArticlePage .ArticleContent .content_row .textContent_column .sub_content .sub_heading{
    color: #2B2D42;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}


.BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #70707079;
    max-width: 800px;
    margin: 0 auto;
}

.BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel a{
    color: #ffffff;
    width: 180px;
    border-radius: 25px;
    margin: 10px 10px;
}

.BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel a.btn_linkedIn{
    background-color: #065981;
}
.BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel a.btn_twitter{
    background-color: #00ACFF;
}
.BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel a.btn_fb{
    background-color: #2B99CE;
}


/*Article Content > Recent Post*/

.BlogArticlePage .ArticleContent .content_row .recentPost_column{
    background-color: #EBEBEB;
    padding: 20px 10px;
    height: fit-content;
}

.BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_{
    margin: 20px 0;
    cursor: pointer;
}

.BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_:hover{
    opacity: 0.8;
}

.BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_ .description_column{
    font-size: 12px;
    color: #2B2D42;
    display: flex;
    align-items: center;
    /* padding: 10px 0; */
}








/*Leave A Reply Section*/

.BlogArticlePage .leaveReply{
    background-color: #EBEBEB;
    padding: 30px 0 50px 0;
    margin-top: 30px;
}

.BlogArticlePage .leaveReply .form-label.heading{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.BlogArticlePage .leaveReply .form-label{
    color:#2B2D42;
}


.BlogArticlePage .leaveReply input{
    border-radius: 0;
}
.BlogArticlePage .leaveReply textarea{
    border-radius: 0;
}


.BlogArticlePage .leaveReply .btn_postComments{
    padding: 10px 50px;
    border-radius: 30px;
}

.socialMedia_panel.aos-init.aos-animate .btn {
    max-height: 37.6px;
}


/*Responsive*/

@media screen and (max-width:576px) {
    .BlogArticlePage .leaveReply{
        margin-top: unset;
    }
}


@media screen and (max-width:991px) {
    .BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_ .description_column{
        font-size: 14px;
    }

    .BlogArticlePage .ArticleContent .main_heading{
        font-size: 22px;
    }

    .BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_ .description_column{
        padding: 10px 20px;
    }
    .BlogArticlePage .ArticleContent{
        padding: 0;
    }
    .BlogArticlePage .ArticleContent .content_row .textContent_column .socialMedia_panel a{
        margin: 10px 20px;
    }
}

@media screen and (min-width:991px) and (max-width:1200px) {
    .BlogArticlePage .ArticleContent .content_row .recentPost_column .content_row_ .description_column{
        font-size: 16px;
    }
}

@media only screen and (max-width:750px){
.BlogArticlePage .bannerFeatured {
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 100%;
}

.BlogArticlePage  section.banner_section {
    height: 350px !important;
}    
}