#single_blog_section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#single_blog_section .common_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_blog_post_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single_post_top_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.single_post_overlay_box {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: linear-gradient(0deg, #5d5d5d66 14%, #ffffff00 30%, #ffffff00 80%, #5d5d5d66 92%);
}


.single_post_thumbnail {
    width: 100%;
    height: 85vh;
}

.single_post_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author_date_box {
    width: 88%;
    max-width: 1366px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 3%;
}

.single_author_details {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.single_author_details img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px 0px #000;
}

.single_author_details span {
    font-size: 14px;
    color: #E0E0E0;
    font-family: 'Inter 18pt';
}

.single_author_details span strong {
    color: #fff;
    font-weight: 600;
}

.single_post_date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'Inter 18pt';
    padding: 10px;
    background: #3e3e3e85;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

span.post_date_span {
    display: flex;
    align-items: center;
    color: white;
}

span.post_date_span img, span.post_day_span img {
    width: 20px;
    margin-right: 8px;
}

span.post_day_span {
    display: flex;
    align-items: center;
    color: white;
    margin-left: 20px;
}


.single_title_cat_box {
    width: 88%;
    max-width: 1366px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    bottom: 3%;
}


.single_post_head_box {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.single_post_head_box h3.single_post_title {
    font-size: 36px;
    color: #FFF;
    font-weight: 600;
    font-family: 'Playfair Display';
    margin: 0px 0 20px 0;
}

.single_post_head_box p {
    font-size: 16px;
    line-height: 24px;
    color: #DEDEDE;
    font-weight: 400;
    font-family: 'Inter 18pt';
}

.single_post_cat_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: #FFF;
    font-family: 'Inter 18pt';
    padding: 10px;
    background: #3e3e3e85;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

span.single_post_cat_name img {
    width: 24px;
    margin-right: 10px;
}



/* Single Blog Section Min 1535px  and Max 1780px */
@media only screen and (min-width: 1535px) and (max-width: 1780px) {
    .single_post_head_box {
        width: 50%;
    }
}


/* Single Blog Section Min 1400px  and Max 1534px */
@media only screen and (min-width: 1400px) and (max-width: 1534px) {

    .single_author_details {
        top: 3%;
        left: 5%;
    }

    .single_post_date {
        top: 3%;
        right: 5%;
    }

    .single_post_head_box {
        width: 60%;
        left: 5%;
    }

    .single_post_cat_name {
        bottom: 3%;
        right: 5%;
    }

}



/* Single Blog Section Min 1280px  and Max 1399px */
@media only screen and (min-width: 1280px) and (max-width: 1399px) {

    .single_author_details {
        top: 3%;
        left: 5%;
    }

    .single_post_date {
        top: 3%;
        right: 5%;
    }

    .single_post_head_box {
        width: 60%;
        left: 5%;
    }

    .single_post_cat_name {
        bottom: 3%;
        right: 5%;
    }

}



/* Single Blog Section Min 1025px  and Max 1279px */
@media only screen and (min-width: 1025px) and (max-width: 1279px) {

    .single_author_details {
        top: 3%;
        left: 5%;
    }

    .single_post_date {
        top: 3%;
        right: 5%;
    }

    .single_post_head_box {
        width: 70%;
        left: 5%;
    }

    .single_post_cat_name {
        bottom: 3%;
        right: 5%;
    }


}


/* Single Blog Section Max 1024px */
@media only screen and (max-width: 1024px) { 

    .single_post_top_box {
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: unset;
}

    .single_post_thumbnail {
        width: 100%;
        height: 400px;
    }

    .single_post_thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


        .single_post_overlay_box {
        width: 100%;
        height: auto;
        display: flex
;
        flex-direction: column;
        align-items: center;
        justify-content: unset;
        position: unset;
        background: #002537;
        padding: unset;
    }

    .author_date_box {
        width: 88%;
        max-width: 1366px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        position: unset;
        margin-top: 30px;
    }



    span.post_date_span {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: white;
    }

    span.post_day_span {
        display: flex;
        align-items: center;
        color: white;
        font-size: 14px;
        margin-left: 20px;
    }


    .single_title_cat_box {
        width: 88%;
        max-width: 1366px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: unset;
        margin-bottom: 30px;
    }

    .single_post_head_box {
        width: 80%;
        display: flex;
        flex-direction: column;
        position: unset;
        margin: 50px 0 50px 0;
    }

    .single_post_head_box h3.single_post_title {
        font-size: 36px;
        color: #FFF;
        font-weight: 600;
        text-align: center;
        font-family: 'Inter 18pt';
        margin: 0px 0 20px 0;
    }

    .single_post_head_box p {
        font-size: 16px;
        color: #AAA;
        font-weight: 400;
        text-align: center;
        font-family: 'Inter 18pt';
    }

    .single_post_cat_name {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        color: #FFF;
        font-family: 'Inter 18pt';
        position: absolute;
        bottom: 10%;
        right: 5%;
    }

    .single_post_cat_name {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        color: #FFF;
        font-family: 'Inter 18pt';
        position: unset;
        bottom: 10%;
        right: 5%;
    }


    span.single_post_cat_name img {
        width: 20px;
        margin-right: 10px;
    }
}



/* Single Blog Section Min 768px  and Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_post_head_box {
        width: 90%;
    }

    .single_post_head_box h3.single_post_title {
        font-size: 30px;
        margin: 0px 0 20px 0;
    }

}


/* Single Blog Section Min 600px  and Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {

    .single_post_head_box {
        width: 90%;
    }

    .single_post_head_box h3.single_post_title {
        font-size: 28px;
        margin: 0px 0 20px 0;
    }
}


/* Single Blog Section Min 420px  and Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    .single_post_head_box {
        width: 100%;
    }

    .author_date_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .single_post_head_box h3.single_post_title {
        font-size: 26px;
        margin: 0px 0 20px 0;
    }

}


/* Single Blog Section Max 419px */
@media only screen and (max-width: 419px) { 
    .single_post_head_box {
        width: 100%;
    }

    .author_date_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .single_post_head_box h3.single_post_title {
        font-size: 24px;
        margin: 0px 0 20px 0;
    }

}





/* Single Blog Content Section */
#s_blog_content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


#s_blog_content .common_container {
    width: 88%;
    max-width: 1366px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}


.single_post_content_box {
    width: 100%;
    columns: 2;
    gap: 100px;
}



.single_post_content_box p {
        font-size: 16px;
        color: #474747;
        line-height: 1.6;
        font-family: 'Inter 18pt';
        margin-bottom: 15px;
    }


    .single_post_content_box p strong {
        font-weight: 600;
    }


    .single_post_content_box img {
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
        margin: 20px 0;
        cursor: default;
    }

    .single_post_content_box a {
        text-decoration: none;
        color:#819067;
    }



    .single_post_content_box h1, .single_post_content_box h2, .single_post_content_box h3, .single_post_content_box h4, .single_post_content_box h5, .single_post_content_box h6 {
        margin-bottom: 15px;
        color: #819067 !important;
    }



    .single_post_content_box h1 {
        font-weight: 700;
        font-size: 32px;
        line-height: 42px;
        font-family: 'Playfair Display';
    }

    .single_post_content_box h2 {
        font-weight: 700;
        font-size: 28px;
        line-height: 38px;
        font-family: 'Playfair Display';
    }

    .single_post_content_box h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        font-family: 'Playfair Display';
    }

    .single_post_content_box h4 {
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        font-family: 'Playfair Display';
    }

    .single_post_content_box h5 {
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        font-family: 'Playfair Display';
    }

    .single_post_content_box h6 {
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        font-family: 'Playfair Display';
    }


    .single_post_content_box li {
        font-size: 16px;
        font-family: 'Inter 18pt';
        font-weight: 400;
        color: #474747;
        margin-bottom: 15px;
    }

    .single_post_content_box li a {
        font-weight: 400;
    }

    .single_post_content_box li p {
        margin: 0;
    }

    .single_post_content_box ul {
        display: flex;
        flex-direction: column;
        margin-left: 18px;
    }

    .single_post_content_box ul li {
        font-size: 16px;
        font-family: 'Inter 18pt';
        font-weight: 400;
        color: #474747;
        margin-bottom: 15px;
    }

    .single_post_content_box ul li a {
        font-weight: 400;
    }

    .single_post_content_box ul li p {
        margin: 0;
    }


    .single_post_content_box ol {
        display: flex;
        flex-direction: column;
        margin-left: 18px;
    }

    .single_post_content_box ol li {
        font-size: 16px;
        font-family: 'Inter 18pt';
        font-weight: 400;
        color: #474747;
        margin-bottom: 15px;
    }

    .single_post_content_box ol li a {
        font-size: 16px;
        font-family: 'Inter 18pt';
        font-weight: 400;
        color: #819067;
        margin-bottom: 15px;
    }

    .single_post_content_box ol li p {
        margin: 0;
    }

    .single_post_content_box small {
		display: block;
    margin: 20px 0;
}


.pro_extra_info_box  table p {
    font-style: normal;
}



.pro_extra_info_box  table th {
    font-weight: 600 !important;
}


/* Single Blog Contents Max-width 991px */
@media only screen and (max-width: 991px) {
    .single_post_content_box {
        width: 100%;
        columns: 1;
    }
}



/* Related Blog  */
#related_blog_section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #faeedc, transparent);
}

#related_blog_section .common_container {
    width: 88%;
    max-width: 1366px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.related_blog_main_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.related_blog_head_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.related_blog_head_wrap h3 {
    width: 100%;
    font-size: 42px;
    color: #0A400C;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}


.related_blog_head_wrap p {
    font-size: 18px;
    line-height: 26px;
    color: #819067;
    text-align: center;
    font-family: 'Inter 18pt';
}

.related_blog_cards_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.related_blog_card {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px 0px #d7d9db;
    border-radius: 20px;
    border: 6px solid #FFF;
    overflow: hidden;
}

.related_blog_image_wrap {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.related_blog_image_wrap img {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.related_blog_content_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px;
}

.related_blog_content_wrap h4 {
    font-size: 24px;
    line-height: 34px;
    color: #474747;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_blog_author_info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}

.related_blog_author_info .author_name,
.related_blog_author_info .post_date {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.related_blog_author_info .author_name i,
.related_blog_author_info .post_date i {
    font-size: 16px;
    color: #9fb89b;
    margin-right: 10px;
}

.related_blog_author_info .author_name small,
.related_blog_author_info .post_date time {
    font-size: 15px;
    color: #474747;
    font-family: 'Inter 18pt';
}

.related_blog_excerpt {
    font-size: 16px;
    line-height: 24px;
    color: #474747;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_blog_readmore {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    color: #8A9C87;
    font-weight: 500;
    font-family: 'Inter 18pt';
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.related_blog_readmore span.left_dots {
    margin-top: -5px;
    letter-spacing: 3px;
    margin-right: 8px;
    transition: all 0.3s ease-in-out;
}

.related_blog_readmore span.right_dots {
    margin-top: -5px;
    letter-spacing: 3px;
    margin-left: 8px;
    transition: all 0.3s ease-in-out;
}

.related_blog_readmore:hover {
    color: #0A400C;
}

.related_blog_readmore:hover span.left_dots,
.related_blog_readmore:hover span.right_dots {
    letter-spacing: 5px;
}

/* Responsive */
@media only screen and (min-width: 992px) and (max-width: 1023px),
       only screen and (min-width: 768px) and (max-width: 991px),
       only screen and (min-width: 600px) and (max-width: 767px) {
    .related_blog_card {
        width: 44%;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px),
       only screen and (max-width: 419px) {
    .related_blog_card {
        width: 100%;
    }

    .related_blog_content_wrap h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .related_blog_excerpt {
        font-size: 15px;
        line-height: 23px;
    }

    .related_blog_head_wrap {
        margin-bottom: 35px;
    }
}





h3.section_title {
    width: 50%;
    font-size: 52px !important;
    line-height: normal;
}


/* Heading Title Font size  */
@media only screen and (min-width: 1536px) and (max-width: 1768px) {
    h3.section_title {
        width: 50%;
        font-size: 52px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1535px) {
    h3.section_title {
        width: 60%;
        font-size: 52px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    h3.section_title {
        width: 70%;
        font-size: 48px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    h3.section_title {
        width: 75%;
        font-size: 44px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
    h3.section_title {
        width: 75%;
        font-size: 40px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3.section_title {
        width: 75%;
        font-size: 36px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    h3.section_title {
        width: 80%;
        font-size: 32px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {
    h3.section_title {
        width: 95%;
        font-size: 28px !important;
        line-height: normal;
    }
}

@media only screen and (max-width: 419px) { 
    h3.section_title {
        width: 100%;
        font-size: 24px !important;
        line-height: normal;
    }
}




/* Heading Description Font Size */
p.section_description {
    width: 50%;
    font-size: 20px !important;
    line-height: 30px;
}

@media only screen and (min-width: 1536px) and (max-width: 1768px) {

    p.section_description {
        width: 50%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1535px) {
    p.section_description {
        width: 60%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    p.section_description {
        width: 70%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    p.section_description {
        width: 75%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
    p.section_description {
        width: 75%;
        font-size: 16px !important;
        line-height: 26px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    p.section_description {
        width: 75%;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    p.section_description {
        width: 80%;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {
    p.section_description {
        width: 95%;
        font-size: 15px !important;
        line-height: 23px !important;
    }
}

@media only screen and (max-width: 419px) { 
    p.section_description {
        width: 100%;
        font-size: 14px !important;
        line-height: 22px !important;
    }
}