header.site-header {
    background: #fff;
    box-shadow: none;
    width: 100%;
    padding: 0;
    z-index: 9;
    position: inherit;
}
.site-footer {
    text-align: inherit;
    border: none;
}

/* body {
    color: #000000;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
} */

/* h1,
h2,
h3,
h3,
h4,
h4,
h5,
h6 {
    color: #000000;
    font-family: Lato, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 50px;
}
h3 {
    font-size: 40px;
}
h4 {
    font-size: 30px;
}
h5 {
    font-size: 21px;
}
h6 {
    font-size: 16px;
} */

/**-- Mobile View --**/
/* @media only screen and (max-width: 767px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 38px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 16px;
    }
} */


/* Root font size (html { font-size: 16px; } by default) */
html { font-size: 16px; }

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
    font-family: Lato, sans-serif;
    color: #000000;
}

/* Main body styling */
body {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333; */
}

/* Blog post container */
.blog-post {
    /* background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; */
}

/* Heading styles with fallback for older browsers */
h1 { font-size: 2.5rem; font-size: clamp(2rem, 5vw, 2.5rem); margin-bottom: 15px; }
h2 { font-size: 2rem; font-size: clamp(1.75rem, 4.5vw, 2rem); margin-bottom: 12px; }
h3 { font-size: 1.75rem; font-size: clamp(1.5rem, 4vw, 1.75rem); margin-bottom: 10px; }
h4 { font-size: 1.5rem; font-size: clamp(1.25rem, 3.5vw, 1.5rem); margin-bottom: 10px; }
h5 { font-size: 1.25rem; font-size: clamp(1.1rem, 3vw, 1.25rem); margin-bottom: 8px; }
h6 { font-size: 1rem; font-size: clamp(0.95rem, 2.5vw, 1rem); margin-bottom: 8px; }

/* Paragraph styling */
p {
    line-height: 1.8;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 15px;
}

/* Responsive design adjustments */
/* Tablet devices (width 768px and below) */
@media (max-width: 768px) {
    body {
        /* padding: clamp(5px, 2vw, 10px); */
    }
    .blog-post {
        /* padding: clamp(10px, 3vw, 15px); */
    }
}

/* Mobile devices (width 480px and below) */
@media (max-width: 480px) {
    body {
        /* padding: clamp(2px, 1vw, 5px); */
    }
    .blog-post {
        /* padding: clamp(5px, 2vw, 10px); */
        box-shadow: none; /* Remove shadow for a cleaner look on smaller screens */
    }
    h1 { font-size: clamp(1.75rem, 4vw, 2rem); }
    h2 { font-size: clamp(1.5rem, 3.8vw, 1.75rem); }
    h3 { font-size: clamp(1.25rem, 3.5vw, 1.5rem); }
    h4 { font-size: clamp(1.1rem, 3vw, 1.25rem); }
    h5 { font-size: clamp(1rem, 2.5vw, 1.1rem); }
    h6 { font-size: clamp(0.85rem, 2vw, 1rem); }
}



a,
a:focus,
a:hover {
    outline: none;
}

a.post-edit-link {
    display: none;
}

/*aside#genesis-sidebar-primary {
    display: none;
}*/


/** Post type Page - start **/
/*body.page .site-inner {
    max-width: 100%;
    padding: 0;
}
body.page header.entry-header {
    display: none;
}*/


/** Post type Page - end **/

input,
select,
textarea,
input:focus,
select:focus,
textarea:focus {
    border-radius: 0;
    border: 2px solid #D82525;
}

::placeholder {
  color: #D0C8C8;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #D0C8C8;
}
::-ms-input-placeholder { /* Microsoft Edge */
 color: #D0C8C8;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    background-color: #D82525;
    border-radius: 0;
    width: 100%;
}
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
    background-color: #3F2021;
    opacity: 0.75;
}

/*.gform_wrapper.gravity-theme input[type="email"] {
    padding: 15px !important;
    font-family: Lato, sans-serif;
}*/

body.page header.entry-header {
    display: none;
}
body .site-container .site-inner {
    max-width: 100%;
    padding: 0;
}
body > .site-container > .site-inner .content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    float: none;
}
body.page .site-container > .site-inner .content {
    max-width: 100%;
}
body.page .site-container > .site-inner .content article {
    margin: 0;
}
/*body .content .entry-content {
    padding-left: 0;
}*/
body:not(.page) > .site-container > .site-inner {
    /*margin-top: 100px;*/
    margin-top: 35px;
}
body.pf-blog.pf-blog-archive:not(.page) > .site-container > .site-inner {
}

.widget.gform_widget {
    margin-bottom: 0;
}

.gform_confirmation_message {
    background-color: #fff;
    border-left: 3px solid #D82525;
    padding: 15px;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
    font-family: Lato, sans-serif;
    line-height: 1.3em;
}


/**-- Tablet View and below that --**/
@media only screen and (max-width: 991px) {
    body:not(.page) > .site-container > .site-inner {
        padding: 0 50px;
    }
    body.pf-blog.pf-blog-archive:not(.page) > .site-container > .site-inner {
        padding: 20px;
    }
    body:not(.page) > .site-container > .site-inner {
        margin-top: 85px;
    }
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    body:not(.page) > .site-container > .site-inner {
        padding: 0 20px;
    }
    body.pf-blog.pf-blog-archive:not(.page) > .site-container > .site-inner {
        padding: 15px;
    }
    body.pf-blog.pf-blog-archive:not(.page) > .site-container > .site-inner {
        margin-top: 15px;
    }
}

/***** Mobile Menu - Begins *****/
button.fl-menu-mobile-toggle.hamburger + .fl-clear + nav .fl-menu-mobile-flyout {
    width: 300px;
    padding: 15px;
}
button.fl-menu-mobile-toggle.hamburger:not(.fl-active) + .fl-clear + nav .fl-menu-mobile-flyout {
    width: 0 !important;
    padding: 0 !important;
}
button.fl-menu-mobile-toggle.hamburger + .fl-clear + nav .fl-menu-mobile-flyout .menu a {
    padding: 10px 15px;
}
/**-- Tablet View And Below--**/
@media only screen and (max-width: 991px) {
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    button.fl-menu-mobile-toggle.hamburger + .fl-clear + nav .fl-menu-mobile-flyout {
        width: 275px;
    }
}
/***** Mobile Menu - Ends *****/


/***** Testimonial - Begins *****/
.pf-review-slider .slick-prev:before,
.pf-review-slider .slick-next:before {
    font-size: 50px;
    color: #E5E4EC;
}
.pf-review-slider .review-item {
    text-align: left;
    padding: 50px 100px;
    outline: none;
}
.pf-review-slider .review-item .client-logo img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background-color: #D5D5D5;
    border-radius: 50%;
}

/**-- Tablet View And Below--**/
@media only screen and (max-width: 991px) {
    .pf-review-slider .review-item {
        padding: 35px;
    }
    .pf-review-slider .slick-prev {
        left: -50px;
    }
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    .pf-review-slider .review-item {
        padding: 0;
    }
    .pf-review-slider .review-item .client-logo img {
        width: 85px;
        height: 85px;
    }
    .pf-review-slider .slick-prev:before,
    .pf-review-slider .slick-next:before {
        font-size: 35px;
    }
    .pf-review-slider .slick-prev {
        left: -5px;
    }
    .pf-review-slider .slick-next {
        right: 10px;
    }
}
/***** Testimonial - Ends *****/

/***** Add To Any - Begins *****/
.a2a_vertical_style a {
  margin-bottom: 15px;
}
body:not(.single-post) .a2a_kit.a2a_floating_style.a2a_vertical_style {
  display: none;
}
/**-- Desktop View --**/
@media only screen and (min-width: 1241px) {
  /* .addtoany_share_save_container.addtoany_content.addtoany_content_top,
  .addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
    display: none;
  } */
}
/**-- Tablet View And Below That --**/
@media only screen and (max-width: 991px) {
  body.single-post .a2a_kit.a2a_floating_style.a2a_vertical_style {
    display: none;
  }
  .addtoany_share_save_container.addtoany_content.addtoany_content_top,
  .addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
    text-align: center;
  }
}
/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
}
/***** Add To Any - Ends *****/


/***** Blog Page - Begins *****/
header.page-title-header {
/*    background: transparent linear-gradient(222deg, #6D6CD3 0%, #9C8FE2 100%) 0% 0% no-repeat padding-box;*/
    text-align: center;
    position: relative;
    padding: 100px;
    padding-top: 150px;
/*    background-image: url(/wp-content/uploads/2021/06/title-header-bg.svg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-color: #D82525;
}
header.page-title-header h1.entry-title {
    color: #fff;
    font-size: 75px;
    line-height: 85px;
    text-transform: uppercase;
    text-shadow: 0px 3px 6px #D8252589;
    letter-spacing: 1.35px;
}

.pf-blog .site-inner .content {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.pf-blog article {
    width: calc(100% / 3 - 20px);
    display: block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    box-shadow: 2px 4px 10px 0px rgb(0 0 0 / 5%);
}
.pf-blog.pf-blog-archive article:nth-child(1),
.pf-blog.pf-blog-archive article:nth-child(7) {
    width: 100%;
    display: flex;
}

.pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail,
.pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail,
.pf-blog.pf-blog-archive article:nth-child(1) .entry-content,
.pf-blog.pf-blog-archive article:nth-child(7) .entry-content {
    width: 50%;
}

.pf-blog.pf-blog-archive article:nth-child(5),
.pf-blog.pf-blog-archive article:nth-child(6) {
    width: calc(100% / 2 - 20px);
}

.pf-blog article .entry-content {
    padding: 25px;
}
.pf-blog article .entry-content a.entry-title-link {
    color: #D82525;
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    text-decoration: none;
}
.pf-blog article .entry-thumbnail a.entry-image-link {
    display: block;
    padding: 5px;
}
.pf-blog article .entry-thumbnail a.entry-image-link img {
    width: 100%;
    height: auto;
    margin: 0;
}
.pf-blog article .entry-content a.more-link {
    display: block;
    color: #D82525;
    margin: 15px 0 0 0;
    font-size: 15px;
    font-family: Lato, sans-serif;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}


.archive-pagination.pagination {
    text-align: center;
}
.archive-pagination.pagination ul {
    margin: 0;
    padding: 0;
}
.archive-pagination.pagination ul li {
    display: inline-block;
}
.archive-pagination.pagination ul li a {
    color: #201E29;
    font-size: 18px;
    font-family: Lato, sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
    background-color: #F8FAFB;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #F0F0F0;
    box-shadow: 2px 4px 10px 0px rgb(0 0 0 / 5%);
    padding: 10px 20px;
    margin: 5px;
}
.archive-pagination.pagination ul li.active a,
.archive-pagination.pagination ul li a:hover {
    background-color: #D82525;
    color: #fff;
}

/**-- Tablet View and below that --**/
@media only screen and (max-width: 991px) {
    .pf-blog.pf-blog-archive article:nth-child(2),
    .pf-blog.pf-blog-archive article:nth-child(3) {
        width: calc(100% / 2 - 20px);
    }
    .pf-blog.pf-blog-archive article:nth-child(4) {
        width: 100%;
        display: flex;  
    }
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-content {
        width: 50%;
        float: left;
    }
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail a.entry-image-link img,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail a.entry-image-link img,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail a.entry-image-link img {
        height: 100%;
    }
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    header.page-title-header {
        padding: 25px;
        padding-top: 75px;
    }
    header.page-title-header h1.entry-title {
        font-size: 45px;
    }
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail,
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail a.entry-image-link,
    .pf-blog.pf-blog-archive article:nth-child(1) .entry-thumbnail a.entry-image-link img,
    .pf-blog.pf-blog-archive article:nth-child(4) .entry-thumbnail a.entry-image-link img,
    .pf-blog.pf-blog-archive article:nth-child(7) .entry-thumbnail a.entry-image-link img {
        height: auto;
    }
    .pf-blog article .entry-content a.entry-title-link {
        font-size: 24px;
        line-height: 30px;
    }
    .pf-blog article {
        width: 100% !important;
        display: block !important;
        margin: 10px 0 !important;
    }
    .pf-blog article .entry-thumbnail,
    .pf-blog article .entry-content {
        width: 100% !important;
        float: none !important;
    }
    .archive-pagination.pagination {
        margin: 35px 0;
    }
}
/***** Blog Page - Ends *****/

/***** Related Posts - Begins *****/
.pf-related-posts-section {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 60px;
    padding: 60px 0;
}
.pf-related-posts-header {
    padding: 0 15px;
}
/**-- Tablet View And Below That --**/
@media only screen and (max-width: 991px) {
    .pf-related-posts-section .pf-blog article {
        width: calc(100% / 2 - 20px);
    }
    .pf-related-posts-section .pf-blog article:nth-child(3) {
        width: 100%;
        display: flex;
    }
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail,
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-content {
        width: 50%;
    }
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail,
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail a.entry-image-link,
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail a.entry-image-link img {
        height: 100%;
    }
}
/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    .pf-related-posts-section .pf-blog article {
        width: 100%;;
    }
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail,
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail a.entry-image-link,
    .pf-related-posts-section .pf-blog article:nth-child(3) .entry-thumbnail a.entry-image-link img {
        height: auto;
    }
    .pf-related-posts-section {
        margin-top: 40px;
    }
}
/***** Related Posts - Ends *****/


/***** Post Title Header - Begins *****/
header.entry-header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
}
header.entry-header .entry-title {
    font-size: 60px;
    margin: 0;
    order: 2;
}
header.entry-header .entry-meta {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin: 10px;
}
header.entry-header .entry-meta .entry-meta-title {
  color: #D82525;
}
header.entry-header .entry-meta .entry-meta-separator {
  font-size: 10px;
  vertical-align: middle;
  padding: 5px;
  color: #423281;
}

header.entry-header.sticky-post-meta-bar {
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 15px;
    box-shadow: 1px 1px 2px 1px #f4f4f4;
    z-index: 99999;
}
header.entry-header.sticky-post-meta-bar .entry-title {
    display: none;
}
header.entry-header.sticky-post-meta-bar .entry-meta {
    border: none;
    padding: 0;
    margin: 0;
}
.pf-post-featured-image img {
    width: 100%;
}
/**-- Tablet View and below that --**/
@media only screen and (max-width: 991px) {
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    header.entry-header .entry-meta .entry-meta-element {
        display: block;
    }
    header.entry-header .entry-meta .entry-meta-separator {
        display: none;
    }
    header.entry-header.sticky-post-meta-bar .entry-meta {
        line-height: 25px;
    }
    header.entry-header .entry-title {
        font-size: 38px;
        line-height: 50px;
    }
}
/***** Post Title Header - Ends *****/

/***** Beaver Builder - Begins *****/
.fl-module.fl-module-pp-iconlist .fl-module-content.fl-node-content:after {
    display: none;
}
.fl-accordion-button-label:focus,
.fl-accordion-button-label:active,
.fl-accordion-button-icon:focus,
.fl-accordion-button-icon:active {
    outline: none;
}
a.fl-accordion-button-icon {
    text-decoration: none;
}
a.fl-accordion-button-icon i.fl-accordion-button-icon {
    color: #3f2021 !important;
    font-size: 12px;
    border: 2px solid #3f2021;
    padding: 0;
    line-height: 22px;
    border-radius: 50%;
    width: 25px;
    display: block;
    text-align: center;
    height: 25px;
}

/*.fl-menu-mobile-toggle {
    outline: none;
    color: #D82525 !important;
}*/
.fl-heading a {
    text-decoration: none;
}
.fl-rich-text p {
    margin: 0 0 15px 0;
}
.fl-rich-text p:last-child {
    margin: 0;
}
/***** Beaver Builder - Ends *****/

/***** Testimonial - Begins *****/
.pf-review-slider .slick-prev:before,
.pf-review-slider .slick-next:before {
    font-size: 50px;
    color: #E5E4EC;
    display: none;
}
.pf-review-slider .review-item {
    outline: none;
    background-color: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
    /*min-height: 265px;*/
}
.pf-review-slider .review-item .client-logo img {
    margin: 0 auto;
    width: 85px;
    height: 85px;
    background-color: #D5D5D5;
    border-radius: 50%;
}
.pf-review-slider .review-item .client-name h5 {
    /*color: #efafa7;*/
    color: #D82525;
    font-family: Lato, sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.pf-review-slider .review-item .client-ratings img {
    width: 100px;
}
.pf-review-slider .review-item .client-review {
    color: #000000;
    font-family: Lato, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}
.pf-review-slider .review-item .client-review p:empty {
    display: none;
}
.pf-review-slider .review-item .client-review p:last-child {
    margin-bottom: 0;
}
.pf-review-slider .review-item .review-head {
    display: flex;
    vertical-align: middle;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}
.pf-review-slider .review-item .client-logo {
    width: 40%;
    float: left;
}
.pf-review-slider .review-item .client-details {
    width: 60%;
    float: left;
}
/**-- Tablet View And Below--**/
@media only screen and (max-width: 991px) {
    .pf-review-slider .review-item {
        padding: 35px;
    }
    .pf-review-slider .slick-prev {
        left: -50px;
    }
    .pf-review-slider .review-item {
        /*min-height: 340px;*/
    }
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
    .pf-review-slider .review-item {
        padding: 35px 20px;
    }
    .pf-review-slider .review-item .client-logo img {
        width: 85px;
        height: 85px;
    }
    .pf-review-slider .slick-prev:before,
    .pf-review-slider .slick-next:before {
        font-size: 35px;
    }
    .pf-review-slider .slick-prev {
        left: -5px;
    }
    .pf-review-slider .slick-next {
        right: 10px;
    }
    .pf-review-slider .review-item {
        min-height: auto;
    }
}
/***** Testimonial - Ends *****/













.t34-featured-blog-posts {
    display: flex;
    width: 100%;
	margin-bottom: 50px;
}
.t34-featured-blog-posts .t34-featured-blog-sec {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.t34-featured-blog-posts .t34-featured-blog-sec.left {
    width: 70%;
}
.t34-featured-blog-posts .t34-featured-blog-sec.right {
    width: 30%;
}


.t34-featured-blog-sec article.post.entry {
	margin: 15px 0;
}
.t34-featured-blog-sec article.post.entry .entry-content {
    display: flex;
	align-items: center;
    padding: 15px;
}
.t34-featured-blog-sec article.post.entry .entry-content a.entry-image-link {
    width: 35%;
    height: 85px;
}
.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc {
	width: 65%;
	margin-left: 15px;
}
.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc .entry-title {
	font-size: 20px;	
}
.t34-featured-blog-sec.right article.post.entry .entry-content .entry-title + p {
	display: none;
}

.t34-featured-blog-sec article.post.entry:first-child .entry-content {
    flex-direction: column;
}
.t34-featured-blog-sec article.post.entry:first-child .entry-content a.entry-image-link {
    width: 100%;
}
.t34-featured-blog-sec article.post.entry:first-child .entry-content .entry-title-desc {
    width: 100%;
}

.t34-featured-blog-sec.left article.post.entry:first-child .entry-content a.entry-image-link {
	height: 500px;
}
.t34-featured-blog-sec.left article.post.entry .entry-content .entry-title {
    font-size: 32px;
    margin-top: 15px;
}
.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content a.entry-image-link {
    width: 40%;
}
.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content .entry-title-desc {
    width: 60%;
}
.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content a.entry-image-link {
	height: 350px;
}

.t34-featured-blog-sec.right article.post.entry:first-child .entry-content a.entry-image-link {
    height: 250px;
}
.t34-featured-blog-sec.right article.post.entry:first-child .entry-content .entry-title {
    font-size: 32px;
    margin-top: 15px;
}
.t34-featured-blog-sec.right article.post.entry:first-child .entry-content .entry-title + p {
    display: block;
}

article.post.entry .entry-content .entry-title a {
	/* color: #D82525; */
}
a.t34-read-more {
    color: #D82525;
}

/* header.entry-header {
    display: block !important;
} */

.site-inner {
    max-width: 1200px;
    padding: 0;
}

main.content {
    width: 100%;
}

.site-inner .content-sidebar-wrap main.content article.post.entry {
/*	width: auto;*/
}


.t34-articles-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.t34-articles-wrapper article.post.entry {
    display: flex;
    flex-direction: column;
	width: calc(100% / 3 - 20px);
    margin: 10px;
    /* justify-content: center; */
    /* align-items: center; */
    /* text-align: center; */
}
.archive-pagination.pagination {
    text-align: center;
}




/* article.post.entry {
    width: calc(100% / 3);
    float: left;
	padding: 15px;
} */
a.entry-image-link {
    width: 100%;
    height: 300px;
    display: block;
}
a.entry-image-link img.post-image.entry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.t34-articles-wrapper article.post.entry .entry-content .entry-title {
	font-size: 24px;
    margin-top: 15px;
}


.t34-post-hero.t34-blog-hero .t34-post-hero-container {
    text-align: center;
    padding-bottom: 20px;  
}
.t34-category-list {
	margin-top: 50px;
    border-top: 2px solid #fff;
    padding: 10px 10px;
	display: flex;
	align-items: center;
}
.t34-category-list li.categories {
    display: inline-flex;
    width: 100%;
}
.t34-category-list li.categories ul {
	margin-left: 0;
}
.t34-category-list li.categories ul li {
    display: inline-block;
    margin: 0 20px;
	position: relative;
}
.t34-category-list li.categories ul li:after {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 2px;
    height: 15px;
    right: -20px;
    top: 7px;
}
.t34-category-list li.categories ul li:last-child:after {
    display: none;
}

.t34-post-hero.t34-blog-hero .t34-post-hero-container p.entry-excerpt {
    max-width: 800px;
    margin: 0 auto;
}
.t34-post-hero.t34-blog-hero .t34-post-hero-container p.entry-excerpt:before {
	display: none;
}

.t34-category-list li.categories ul li a {
	position: relative;
	text-decoration: none;
	color: #fff;
}
.t34-category-list li.categories ul li a:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}
.t34-category-list li.categories ul li a:before {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    /* background: #F4CBF1; */
    background: #D82525;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: right;
    transform-origin: right;
}


.t34-post-hero.t34-page-hero .t34-post-hero-container {
    text-align: center;
    padding-bottom: 50px;
}
button.button[name="track"] {
    margin-top: 15px;
}


form.search-form {
    position: relative;
    width: 350px;
}
form.search-form input.search-form-input {
    color: #000;
    border-radius: 50px;
    height: 50px;
	padding-right: 50px;
}
form.search-form input.search-form-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    margin: 0 !important;
    transform: rotateY(180deg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
	background-color: #D82525;
}



.site-container {
    word-wrap: inherit;
}

.t34-container {
    max-width: 1200px;
    margin: 0 auto;
}

h3.related-posts-title {
    text-align: center;
    font-size: 34px;
	color: #D82525;
}

.t34-grid-container {
    /* display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap; */
}
.t34-grid-item {
    /* display: flex;
    flex-direction: row;
	width: calc(100% / 3 - 20px);
    margin: 10px; */
    /* justify-content: center; */
    /* align-items: center; */
    /* text-align: center; */
}
.t34-grid-item-inner {
    /* padding: 25px 15px; */
}

.t34-post-item a {
    text-decoration: none;
    color: #333333;
}
.t34-post-item .entry-thumbnail {
    width: 100%;
    height: 300px;
    background-color: #e2e2e2;
	margin-bottom: 20px;
}
.t34-post-item .entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.t34-post-item .entry-title:hover {
    text-decoration: underline;
}



.t34-author-box {
    margin: 25px 0;
}
.t34-author-box {
    display: flex;
}
.author-img img {
	width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;  
}


.t34-post-hero {
	background-color: #202020;
}
.t34-post-hero * {
	color: #ffffff;
}
.t34-post-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
	padding-bottom: 300px;
}
.t34-post-hero + .entry-thumbnail {
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
	padding: 0 20px;
    margin-top: -300px;   
}
.t34-post-hero + .entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t34-post-hero-container h1.entry-title {
	font-size: 60px;
}
.t34-post-hero-container p.entry-excerpt {
    font-size: 21px;
    line-height: 1.3;
}
body.single-post  p.entry-excerpt:before {
    content: "Quick Summary \021AC";
    padding-right: 0.25em;
    opacity: .6;
}

body.single-post > .site-container > .site-inner .content {
    float: none;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    /* background-color: lightblue; */
    margin-top: 50px;
    margin-bottom: 50px;
}

/**-- Tablet View and below that --**/
@media only screen and (max-width: 991px) {	
	.t34-featured-blog-posts {
		display: flex;
		width: 100%;
		flex-direction: column;
	}
	.t34-featured-blog-posts .t34-featured-blog-sec.left {
		width: 100%;
	}
	.t34-featured-blog-posts .t34-featured-blog-sec.right {
		width: 100%;
	}
	.t34-featured-blog-sec.right article.post.entry:first-child .entry-content a.entry-image-link {
		height: 350px;
	}
	.t34-featured-blog-sec article.post.entry .entry-content a.entry-image-link {
		width: 40%;
		height: 200px;
	}
	.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc {
		width: 60%;
	}
	.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc .entry-title {
		font-size: 32px;
	}
	
	
	
	.site-inner {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	
	.t34-post-hero-container h1.entry-title {
		font-size: 52px;
	}
	.t34-post-hero + .entry-thumbnail {
		height: 400px;
	}
	
	.t34-articles-wrapper article.post.entry {
		width: calc(100% / 2 - 20px);
	}
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
	
	.site-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.t34-featured-blog-sec.left article.post.entry:first-child .entry-content a.entry-image-link {
		height: 300px;
	}
	
	.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content a.entry-image-link {
		width: 35%;
		height: 85px;
	}
	.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content .entry-title-desc {
		width: 65%;
		margin-left: 15px;
	}
	.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content .entry-title-desc .entry-title {
		font-size: 20px;
	}
	.t34-featured-blog-sec.left article.post.entry:nth-child(2) .entry-content .entry-title-desc .entry-title + p {
		display: none;
	}
	
	.t34-featured-blog-sec.right article.post.entry:first-child .entry-content a.entry-image-link {
		height: 300px;
	}
	
	.t34-featured-blog-sec article.post.entry .entry-content a.entry-image-link {
		width: 35%;
		height: 85px;
	}
	.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc {
		width: 65%;
		margin-left: 15px;
	}
	.t34-featured-blog-sec article.post.entry .entry-content .entry-title-desc .entry-title {
		font-size: 20px;
	}
	
  	.t34-post-hero-container h1.entry-title {
		font-size: 32px;
	}
	.t34-post-hero + .entry-thumbnail {
		height: 300px;
	}
	
	.t34-category-list {
		display: inline-block;
		width: 100%;
	}
	.t34-category-list li.categories {
		display: inline-block;
		width: 100%;
	}
	form.search-form {
		width: 100%;
		margin-top: 15px;
	}
	
	.t34-articles-wrapper article.post.entry {
		width: calc(100% / 1 - 20px);
	}
}


.t34-articles-wrapper article.post.entry header.entry-header {
    display: none;
}
.t34-articles-wrapper article.post.entry .entry-title-desc p {
    display: none;
}

/** Correction in Parent Theme CSS **/
ol,
ul {
    margin: 0;
    padding: 0;
}



/** New Blog CSS - CC - Single Page **/

body.single-post main.content article header.entry-header {
    display: none;
}

.cc-grid-container {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.cc-grid-item {
    width: calc(100% / 3 - 10px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border: 1px solid #F0F0F0;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
}
.cc-grid-item-inner {
	padding: 20px;
	width: 100%;
}


/** Single Post Page Header CSS - Begins **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.devxpf-t34-blog-post-header {
    background-color: #202020;
    min-height: 400px;
}
.devxpf-t34-blog-post-header .wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    /* height: 100vh; */
    height: auto;
}
.devxpf-t34-blog-post-header .wrapper .column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.devxpf-t34-blog-post-header .wrapper .text-column {
    /* background-color: #f4f4f4; */
    flex-direction: column;
}
.devxpf-t34-blog-post-header .wrapper .image-column {
    /* background-color: #ddd; */
}
.devxpf-t34-blog-post-header .wrapper .image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.t34-post-title .entry-title,
.t34-post-meta .t34-post-meta-author {
    color: #ffffff;
}

.devxpf-t34-blog-post-header .t34-post-title .entry-title {
    /* font-size: 38px; */
}
.devxpf-t34-blog-post-header .t34-post-category {
    color: #d82525;
    font-weight: 500;
    text-transform: uppercase;
}
.devxpf-t34-blog-post-header .t34-post-meta {
    border-top: 2px solid #e2e2e2;
}
.devxpf-t34-blog-post-header .t34-post-meta span {
    font-size: 16px;
    padding: 10px;
	font-weight: 500;
}
.devxpf-t34-blog-post-header .t34-post-meta span.t34-post-meta-date {
    border-right: 2px solid #e2e2e2;
    padding-right: 20px;
}
.devxpf-t34-blog-post-header .t34-post-meta span.t34-post-meta-author {
/*     padding-left: 20px; */
	display: block;
    padding-left: 7px;
}

@media (max-width: 1024px) {
    .devxpf-t34-blog-post-header .wrapper {
        flex-direction: column;
        height: auto;
    }
}

@media (max-width: 768px) {
    .devxpf-t34-blog-post-header .wrapper {
        flex-direction: column;
    }

    .devxpf-t34-blog-post-header .wrapper .image-column {
        order: -1;
    }
}






a.cc-link {
    color: #274A51;
    font-weight: 500;
    text-decoration: underline;
    font-size: 16px;
}

a.cc-blog-post-img-anchor {
    display: block;
    padding: 135px 100px;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 25px;
	border: 1px solid #F0F0F0;
}

.cc-grid-container.cc-blog-menu-sec {
    border-top: 2px solid #F0F0F0;
    border-bottom: 2px solid #F0F0F0;
    padding-top: 15px;
    padding-bottom: 5px;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item {
    width: calc(100% / 2 - 10px);
	align-items: initial;
	text-align: left;
	border: none;
    margin: 0;
	border-radius: 0;
	background: transparent;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item .cc-grid-item-inner {
    padding: 0;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu {
    width: 70%;
	padding-right: 25px;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-search {
    width: 30%;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items {
    margin: 0;
    padding: 0;
    margin-top: 5px;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li {
    display: inline-block;
/* 	width: calc(100% / 5 - 5px); */
    padding-right: 35px;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li a {
    color: #2A4C53;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
}
.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li a.active {
    color: #d82525;
}

.cc-blog-search-wrapper {
    display: inline-block;
    width: 100%;
}
.cc-blog-search-wrapper .cc-search-box {
    width: calc(100% - 50px - 10px);
    float: left;
    position: relative;
    margin-right: 10px;
}
.cc-blog-search-wrapper button {
    width: 50px;
    padding: 10px;
    border-radius: 5px;
    float: left;
	color: #2A4C53;
	background-color: #CEDC28;
}
.cc-blog-search-wrapper .cc-search-box i.fa.fa-search {
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 15px;
}
.cc-blog-search-wrapper .cc-search-box input[type="text"] {
    background: #EAEAEA;
    border: none;
    font-size: 16px;
    font-weight: 500;
	padding: 10px;
    padding-left: 40px;
}






.cc-grid-container.cc-spotlight-sec .cc-grid-item {
    width: calc(100% / 2 - 10px);
	align-items: initial;
	text-align: left;
	border: none;
    margin: 0;
	border-radius: 0;
	background: transparent;
}
.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-master {
    border-right: 1px solid #F0F0F0;
    padding-right: 30px;
}
.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-child {
    border-left: 1px solid #F0F0F0;
    padding-left: 30px;
}

.cc-grid-container.cc-spotlight-sec .cc-grid-item .cc-grid-item-inner {
    padding: 0;
}

.cc-grid-container.cc-spotlight-posts-3-row .cc-grid-item {
    width: calc(100% / 1 - 10px);
    padding: 20px 0;
	border-bottom: 2px solid #F0F0F0;
}
.cc-grid-container.cc-spotlight-posts-3-row .cc-grid-item:last-child {
    border-bottom: none;
}

h2.cc-spotlight-title {
    text-align: left;
    padding: 0;
    margin: 0;
}
.cc-post-title a {
    text-decoration: none;
}
.cc-post-desc {
    line-height: 1.3;
}

.cc-grid-container.cc-spotlight-posts-3-row a.cc-blog-post-img-anchor {
	float: right;
	padding: 35px 50px;
	margin-bottom: 0;
}
.cc-grid-container.cc-spotlight-posts-3-row .cc-blog-post-info-wrapper {
    float: left;
    width: calc( 100% - 100px - 2px );
	padding-right: 15px;
}
.cc-grid-container.cc-spotlight-posts-3-row .cc-blog-post-info-wrapper .cc-post-title a h2 {
    font-size: 21px;
	margin-bottom: 5px;
}
.cc-grid-container.cc-spotlight-posts-3-row .cc-blog-post-info-wrapper .cc-post-desc {
    display: none;
}



.cc-grid-container.cc-blog-posts-list .cc-grid-item {
    width: calc(100% / 4 - 0px);
	align-items: initial;
	text-align: left;
	border: none;
    margin: 0;
	border-radius: 0;
	background: transparent;
}
.cc-grid-container.cc-blog-posts-list a.cc-blog-post-img-anchor {
    padding: 80px 100px;
}
.cc-grid-container.cc-blog-posts-list .cc-blog-post-info-wrapper .cc-post-title a h2 {
    font-size: 21px;
}


.cc-spotlight-sec-alt .cc-spotlight-sec-master .cc-blog-post-box {
    text-align: center;
}
.cc-spotlight-sec-alt .cc-spotlight-sec-master .cc-post-desc {
    display: none;
}
.cc-spotlight-sec-alt h2,
.cc-spotlight-sec-alt .cc-post-desc,
.cc-spotlight-sec-alt a.cc-link {
/*     color: #fff; */
	color: #f3f4f6;
/* 	text-shadow: 0px 3px 0px rgb(0 0 0 / 25%); */
}

.fl-row.cc-blog-sec-replace.cc-blog-sec-replace-bg-color {
    background-color: rgba(0,0,0,0.25);
}

.cc-related-blog-post-list {
    border-top: 2px solid #e2e2e2;
    padding: 30px 0;
    margin: 0 10%;
}
.cc-related-blog-post-list .cc-related-blog-post-list-inner {
    padding: 0 20px;
}


aside.sidebar-primary header.entry-header .entry-title {
    font-size: 16px;
	line-height: 1.3;
    text-align: left;
    padding: 0;
    margin: 0;
    padding-right: 5px;
}
aside.sidebar-primary .widget-wrap img {
    width: 75px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #eee;
}

body.single-post .content > article footer.entry-footer {
    display: none;
}

.cc-grid-container.cc-spotlight-posts-3-row .cc-grid-item:nth-child(1) {
    display: none !important;
}

.entry-title a,
.sidebar .widget-title a {
    color: #2A4C53;
}
.entry-title a:focus,
.entry-title a:hover {
    color: #d82525;
}

/* body.single-post .content > article .entry-content {
    position: relative;
    background-color: yellow;
}
.addtoany_share_save_container.addtoany_content.addtoany_content_top {
    position: fixed;
    right: 0;
    top: 15px;
    z-index: 99;
} */

/* .hustle-ui.hustle-slidein.hustle-palette--gray_slate.hustle_module_id_1.module_id_1.hustle-slidein-position--south.hustle-show {
    display: none;
} */

.widget.featured-content.featuredpost.pf-sticky-sidebar {
	margin-top: 100px;
}
.addtoany_list.a2a_kit_size_32 a {
    display: block;
}
h4.widget-title.widgettitle {
    font-size: 24px;
}
.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span.a2a_label {
    height: 32px;
    line-height: 32px;
    width: 32px;
    visibility: visible;
    opacity: 1;
    color: black;
    font-size: 15px;
    overflow: visible;
    z-index: 999999999999999999999;
    clip-path: none;
    width: 75px;
	margin-top: 2px;
    margin-left: 5px;
}

.addtoany_share_save_container.addtoany_content.addtoany_content_top {
    position: absolute;
	width: 125px;
    left: 0;
}
.addtoany_share_save_container.addtoany_content.addtoany_content_top .a2a_kit.a2a_kit_size_32.addtoany_list.pf-sticky-share {
    margin-top: 100px;
/*     width: 125px !important; */
/*     background-color: red; */
}
.addtoany_share_save_container.addtoany_content.addtoany_content_top .a2a_kit.a2a_kit_size_32.addtoany_list:before {
    content: 'Share On';
    font-weight: 600;
    margin-left: 8px;
    width: 100px;
    display: block;
}

body.single-post > .site-container > .site-inner main.content {
    float: left;
    width: 80%;
    padding-right: 35px;
    padding-left: 135px;
    position: relative;
    margin-top: 0;
}
body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area {
    float: left;
    width: 20%;
}

.widget-title.widgettitle {
    font-size: 24px;
}

body.single-post .site-container .site-inner {
    max-width: 100%;
    padding: 0;
}
body.single-post .content-sidebar-wrap {
    /* display: inline-block; */
/*     display: flex; */
	/* width: 100%; */
/*     margin: 0 10%; */
    /* padding: 0 10%; */
    max-width: 1200px;
    margin: 0 auto;
}
body.single-post .site-inner {
    margin-top: 35px !important;
}
body.single-post main.content article header.entry-header {
	display: none;
}
body.single-post > .site-container > .site-inner .content {
    float: left;
    width: 70%;
    padding-right: 50px;
/* 	height: 200vh;
	min-height: 1000px; */
/* 	display: flex;
	flex-direction: column; */
}
body.single-post .sidebar {
/* 	position: sticky;
    position: -webkit-sticky;
    top: 65px; */
/* 	width: 30%; */
/* 	height: 100vh;
	min-height: 200px; */
/* 	overflow: auto; */
/* 	background: #a7e9c5;
	position: -webkit-sticky;
	position: sticky;
	top: 50px; */
}
body.single-post .content > article .entry-content {
    width: auto;
    margin: auto;
}

body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area .featured-content .entry {
/*     margin-bottom: 20px; */
	padding: 20px 0;
}

body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area a.alignright,
body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area img.alignright,
body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area .wp-caption.alignright {
    margin: 0;
}

body:not(.single-post) aside.sidebar.sidebar-primary.widget-area {
	display: none;
}

/***** Loader CSS *****/
.cc-loader-posts {
    width: 75px;
    height: 75px;
    background: url('/wp-content/uploads/2023/04/cc-loader.gif');
    background-size: 75px;
    margin: 25px auto;
/*     display: none; */
}
.cc-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('/wp-content/uploads/2023/04/cc-loader.gif') 50% 50% no-repeat rgb(249,249,249);
  background-size: 100px;
  display: none;
}
/***** Loader CSS *****/

/* Tablet View and below that */
@media only screen and (max-width: 991px) {

    body.single-post .content-sidebar-wrap {
        padding: 0 50px;
    }
    .addtoany_share_save_container.addtoany_content.addtoany_content_top {
        width: 250px;
        text-align: left;
    }

	body.single-post > .site-container > .site-inner .content {
		float: none;
		width: 100%;
		padding-right: 0;
	}


    aside.sidebar-primary header.entry-header .entry-title {
        font-size: 18px;
    }

    .addtoany_share_save_container.addtoany_content.addtoany_content_top {
        width: auto;
    }

    .cc-blog-post-header .cc-grid-container .cc-grid-item {
        width: 100%;
    }
    .cc-blog-post-header .cc-grid-container .cc-grid-item:nth-child(1) {
        padding-right: 0;
    }

	
	
	.cc-grid-container.cc-blog-menu-sec {
		padding-bottom: 10px;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu {
		width: 100%;
		padding-right: 0;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-search {
		width: 80%;
		margin-top: 10px;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items {
		margin-top: 0;
		text-align: center;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li {
/* 		width: auto; */
		padding-right: 0;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li a {
		padding: 10px 20px;
	}
	
	
	.cc-grid-container.cc-blog-posts-list .cc-grid-item {
		width: calc(100% / 1 - 10px);
	}
	.cc-grid-container.cc-blog-posts-list a.cc-blog-post-img-anchor {
		padding: 100px 100px;
	}

	.cc-blog-post-header .cc-grid-container {
		padding: 50px 15px;
	}
	.cc-blog-post-header .cc-post-title h1.entry-title {
		font-size: 32px;
	}
	.cc-blog-post-header .cc-post-meta span {
		display: block;
	}
	.cc-blog-post-header .cc-post-meta span.cc-post-meta-date {
		border-right: 0;
		padding-bottom: 0;
	}
	.cc-blog-post-header .cc-post-meta span.cc-post-meta-author {
/* 		padding-left: 10px; */
/* 		padding-top: 0; */
	}
	
	.cc-related-blog-post-list {
		margin: 0 5%;
	}
	
	.cc-blog-post-header .cc-grid-container {
		max-width: 95%;
	}
	
	.cc-grid-container.cc-spotlight-sec .cc-grid-item {
		width: calc(100% / 1 - 10px);
	}
	.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-master {
		border-right: none;
		padding-right: 0;
	}
	.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-child {
		margin-top: 20px;
		border-left: none;
		padding-left: 0;
	}
	
	a.cc-blog-post-img-anchor {
		padding: 200px 100px;
	}
	.cc-grid-container.cc-blog-posts-list a.cc-blog-post-img-anchor {
		padding: 200px 100px;
		background-position: center;
	}

}

/* Mobile View */
@media only screen and (max-width: 767px) {
	
    aside.sidebar-primary header.entry-header .entry-title {
        font-size: 16px;
    }

	.cc-blog-post-header .cc-post-featured-image img {
/* 		height: auto; */
		height: 200px;
	}
	
	a.cc-blog-post-img-anchor {
		padding: 100px 100px;
	}
	.cc-grid-container.cc-blog-posts-list a.cc-blog-post-img-anchor {
		padding: 100px 100px;
		background-position: center;
	}
	.cc-blog-sec-append .cc-grid-container.cc-blog-posts-list {
		margin-bottom: 20px;
	}
	
	
	.cc-grid-container.cc-blog-menu-sec {
		padding-top: 10px;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-menu ul.cc-blog-menu-items li a {
		padding: 10px 15px;
	}
	.cc-grid-container.cc-blog-menu-sec .cc-grid-item.cc-blog-search {
		width: 90%;
	}

    .cc-grid-container.cc-spotlight-sec .cc-grid-item {
		width: calc(100% / 1 - 10px);
	}
	.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-master {
		border-right: 0;
		padding-right: 0;
		padding-bottom: 25px;
		border-bottom: 2px solid #F0F0F0;
	}
	.cc-grid-container.cc-spotlight-sec .cc-grid-item.cc-spotlight-sec-child {
		border-left: 0;
		padding-left: 0;
	}
	
	.cc-grid-container.cc-blog-posts-list .cc-grid-item {
		width: calc(100% / 1 - 10px);
		margin-bottom: 20px;
	}
	.cc-grid-container.cc-blog-posts-list .cc-grid-item:last-child {
		margin-bottom: 0;
	}
	.cc-grid-container.cc-blog-posts-list .cc-grid-item .cc-grid-item-inner {
		padding: 0;
	}
	
	.cc-blog-post-header .cc-grid-container {
		padding: 25px 15px;
	}
	.cc-blog-post-header .cc-grid-container .cc-grid-item {
		width: 100%;
	}
	.cc-blog-post-header .cc-grid-container .cc-grid-item:nth-child(1) {
		padding-right: 0;
	}
	.cc-blog-post-header .cc-post-title h1.entry-title {
		font-size: 24px;
	}
	.cc-blog-post-header .cc-post-category {
		font-size: 16px;
	}
	
	body.single-post .content-sidebar-wrap {
/* 		margin: 0 25px; */
		padding: 0 25px;
	}
	.cc-related-blog-post-list {
		margin: 0 25px;
	}
}


/**-- Tablet View and below that --**/
@media only screen and (max-width: 1420px) {
/* 	body.single-post > .site-container > .site-inner .content {
		padding-left: 20px;
	}
	.addtoany_share_save_container.addtoany_content.addtoany_content_top {
		left: 10px;
	} */
}

/**-- Tablet View and below that --**/
@media only screen and (max-width: 991px) {
	body.single-post > .site-container > .site-inner main.content {
		float: none;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		position: relative;
	}
	body.single-post > .site-container > .site-inner aside.sidebar.sidebar-primary.widget-area {
		float: none;
		width: 100%;
	}
	
/* 	body.single-post > .site-container > .site-inner .content {
        padding-left: 0;
    } */
	
	.addtoany_share_save_container.addtoany_content.addtoany_content_top {
		position: initial;
		margin-left: 0;
	}
  	.addtoany_list.a2a_kit_size_32 a {
		display: initial;
	}
	.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span.a2a_label {
		visibility: hidden;
	}
	.addtoany_share_save_container.addtoany_content.addtoany_content_top .a2a_kit.a2a_kit_size_32.addtoany_list:before {
		margin-right: 5px;
	}
}

/**-- Mobile View --**/
@media only screen and (max-width: 767px) {
	
}