/*single post*/
nav.main_menu>ul>li>a{
    color: white !important;
}
body[class*='single'] .header_top_bottom_holder{
    margin-top: 40px;
}

/* Read More Circle Button */
.read-more-wrapper {
    position: relative;
    bottom: -25em;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.read-more-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.circle-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.circle-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.3), rgba(0, 119, 182, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arrow-icon {
    color: #0a1628;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.read-more-circle:hover .circle-icon {
    transform: translateY(5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.read-more-circle:hover .circle-icon::before {
    opacity: 1;
}

.read-more-circle:hover .read-more-text {
    opacity: 1;
    transform: translateY(-3px);
}

.read-more-circle:hover .arrow-icon {
    transform: translateY(3px);
}

.read-more-circle:active .circle-icon {
    transform: translateY(7px) scale(1);
}

body.single-post .content_inner .blog_holder.single_image_title_post article h1{
    color: #000000;
    width: 1000px;
}

.blog_holder.single_image_title_post article .post_category{
    margin: 20px 0px !important;
    width: 1000px;
}

.post_content_holder div.post_text > div.post_text_inner > div.social_share_list_holder{
    width: 1000px;
}

div.post_text > div.post_text_inner > div.social_share_list_holder ul{
    display: grid;
    position: absolute;
}

div.post_text > div.post_text_inner > div.social_share_list_holder ul li{
    margin-bottom: 10px;
}

div.post_text > div.post_text_inner > div.social_share_list_holder ul li img{
    border: 1px solid #e7e7e7;
    height: 20px;
    padding: 24px;
    border-radius: 40px;
}

.blog_holder.single_image_title_post article .post_category a{
    color: #000000 !important;
}

.blog_holder.single_image_title_post article .post_image{
    display: flex;
    justify-content: center;
}
body.single-post .content_inner .blog_holder article .post_image img{
    width: 95.5%;
    border-radius: 20px !important;
}
body.single-post .content_inner article .post_text{
    display: flex;
    justify-content: center;
}

body.single-post .content_inner article .post_text .post_text_inner{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
article .post_text .post_text_inner article{
    width:800px;
}

.related-posts-section .q_masonry_blog{
	margin-bottom: 0 !important;
}

.full_width .grid_section .q_masonry_blog article, .q_masonry_blog article{
    box-shadow: unset;
    border: 1.5px solid #5c6472;
}

.q_masonry_blog_title.entry_title{
    margin-top: 10px;
    min-height: 70px;
}

.q_masonry_blog article .q_masonry_blog_post_info a{
    color: #000000 !important;
}

@media only screen and (max-width: 600px) {
    body[class*='single'] .header_top_bottom_holder{
        margin-top: 0;
    }
    .read-more-wrapper {
        bottom: 0;
    }
    .blog_holder.single_image_title_post article h1, .blog_holder.single_image_title_post article .post_category, article .post_text .post_text_inner article{
        width: 100% !important;
    }
    /*footer - email subscribe*/
    .tts .wpcf7-form.init{
        flex-direction: column;
        gap: 0 !important;
    }
    .tts .wpcf7-form.init > div:nth-child(2) > p{
    	display: flex;
        flex-direction: column;
        align-items: center;
    	margin-bottom: 20px;
    }
    .tts .wpcf7-form.init > div:nth-child(3) > p{
        display: flex;
        flex-direction: column;
        align-items: center;   
    }
    .tts .wpcf7-form.init .wpcf7-submit{
        background-position: center !important;
        background-size: inherit !important;
        width: 200px !important;
        height: 50px !important;
    }
}