div.blog_post_wrapper {
    display: flex;
    flex-wrap: wrap;
}

div.blog_post_wrapper:not(:first-child){
    margin-top: 40px;
}

div.blog_post_wrapper div.post_image {
    width: 100%;
    max-width: 45%;
    position: relative;
}

div.blog_post_wrapper div.post_image .post_date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    min-height: 65px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    padding: 5px;
}

div.blog_post_wrapper div.post_image .post_date > span {
    display: inline-block;
}

div.blog_post_wrapper div.post_image img {
    display: flex;
}

div.blog_post_wrapper div.post_image .post_date span.day {
    font-size: 20px;
    line-height: 20px;
}

div.blog_post_wrapper div.post_image .post_date span.month_year {
    font-size: 13px;
    line-height: 18px;
    color: #00AD99;
    margin-top: 5px;
}

div.blog_post_wrapper div.post_content {
    width: 100%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    padding: 35px;
    background-color: #F9F9F9;
}

div.blog_post_wrapper div.post_content span.cat_type {
    color: #00AD99;
}

div.blog_post_wrapper div.post_content div.post_categories {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
    gap: 5px;
}

div.blog_post_wrapper div.post_content div.post_categories span {
    display: inline-block;
}

div.blog_post_wrapper div.post_content a.post_url {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00AD99;
    font-size: 14px;
    line-height: 20px;
    margin-top: auto;
    transition: color 0.5s ease;
}

div.blog_post_wrapper div.post_content a.post_url span.dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

div.blog_post_wrapper div.post_content a.post_url:hover {
    color: #14283F;
}

div.blog_post_wrapper div.post_content a.post_url:hover  span.dashicons {
    transform: translateX(5px);
}


@media only screen and (max-width: 1024px) {
  div.blog_post_wrapper {
    flex-direction: column;
    max-width: 655px;
    margin: 0 auto;
  }
  div.blog_post_wrapper div.post_image {
    max-width: 100%;
  }
  div.blog_post_wrapper div.post_content {
    max-width: 100%;
  }
}

nav.pagination {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 40px;
}

nav.pagination ul.page-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px;
}

nav.pagination ul.page-numbers .page-numbers {
    display: inline-flex;
    font-size: 18px;
    cursor: pointer;
    color: #727272;
}

nav.pagination ul.page-numbers .page-numbers:hover {
    color: #00AD99;
}

nav.pagination ul.page-numbers .page-numbers.current {
    color: #00AD99;
}

nav.pagination ul.page-numbers .page-numbers.prev,
nav.pagination ul.page-numbers .page-numbers.next {
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #00AD99;
    border: 1px solid #00AD99;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav.pagination ul.page-numbers .page-numbers.prev:hover,
nav.pagination ul.page-numbers .page-numbers.next:hover {
    color: #00AD99;
    background-color: #ffffff;
}

/* Single Blog Page */

body.single-blog div.elementor-widget-theme-post-content div.elementor-widget-container blockquote {
    margin: 0;
    padding-left: 25px;
    border-left: 4px solid #262020;
}

body.single-blog div.elementor-widget-theme-post-content div.elementor-widget-container ul {
    padding-left: 25px;
}

body.single-blog div.elementor-widget-theme-post-content div.elementor-widget-container ul li {
    list-style-type: inherit;
}

body.single-blog div.elementor-widget-theme-post-content div.elementor-widget-container a {
    color: #00AD99;
    text-decoration: underline;
    transition: color 0.5s ease
}

body.single-blog div.elementor-widget-theme-post-content div.elementor-widget-container a:hover {
    color: #14283F;
}

div.latest_news_container div.latest_news_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

div.latest_news_container div.latest_news_header * {
    margin: 0 !important;
}

div.latest_news_container div.latest_news_header a {
    color: #00AD99;
    transition: color 0.5s ease;
}

div.latest_news_container div.latest_news_header a:hover {
    color: #14283F;
}


