body {
    font-family: 'Instrument Sans', sans-serif;
}

.custom-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1210px !important;
}


/* footer white css pages */
.pages-footer-white-css .site-footer,
.pages-footer-white-css .site-footer .footer-widgets,
.pages-footer-white-css .site-footer .site-info {
    background-color: #FAFAFA;
}

/* contact us page css start  */
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.custm-contact-form .form-group {
    margin-bottom: 20px;
}

.custom-contact-form .form-group p br {
    display: none;
}

.custom-contact-form .form-group p {
    margin: 0;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="url"],
.custom-contact-form input[type="password"],
.custom-contact-form input[type="search"],
.custom-contact-form input[type="tel"],
.custom-contact-form input[type="number"],
.custom-contact-form textarea,
.custom-contact-form select {
    width: 100%;
    padding: 15px 15px;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
    font-family: 'Instrument Sans', sans-serif;
    background-color: #FFFFFF;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus,
.custom-contact-form select:focus {
    border-color: #0567B2 !important;
    outline: none;
}

.custom-contact-form textarea {
    height: 127px;
    resize: none;
}

.custom-contact-form .custom-submit {
    background-color: #0567B2;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-family: 'Instrument Sans', sans-serif;
}

.custom-contact-form .custom-submit:hover {
    background-color: #005a8c;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
    border: 2px solid #000;
    border-width: 2px 2px 2px 6px;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    margin-bottom: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #008000;
    color: #000;
}

/* contact us page css end */

/* blog page css start  */
.blog-main-container {
    position: relative;
}
.blog-filter-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

.filter-container {
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    justify-content: center;
    max-width: 703px;
}

.filter-container .select-wrapper,
.filter-container .search-wrapper {
    max-width: 332px;
    width: 100%;
}

.select-wrapper {
    position: relative;
}

.filter-container .select-wrapper .select-dropdown {
    cursor: pointer;
}

.filter-container .select-wrapper .select-dropdown,
.filter-container .search-wrapper .search-input {
    padding: 14px 40px 14px 16px;
    border: 1px solid #ABABAB;
    background-color: white;
    color: #ABABAB;
    appearance: none;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    max-width: 100%;
}

.select-dropdown:hover {
    border-color: #cbd5e1;
}

.select-dropdown:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #0ea5e9;
    transition: color 0.3s ease;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 33px;
    row-gap: 50px;
    margin-top: 0;
}

.blog-card {
    background: #fff;
    border: 0px solid #ddd;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 20px;
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .blog-image {
    /* background: #ccc; */
    height: 100%;
    display: flex;
    object-fit: cover;
    width: 100%;
    overflow: hidden;
}

.blog-card .blog-image .custom-link-image {
    display: inline-block;
    width: 100%;
}

.blog-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 219px;
}

.blog-card .blog-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.blog-card .blog-content .category {
    color: #3F3F3F;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;

    font-weight: 400;
    font-size: 12.37px;
    line-height: 100%;
}

.blog-card .blog-content .category .cat-icon {
    width: 100%;
    max-width: 10px;
    height: auto;
}

.blog-card .blog-content h3 {
    color: #00567B;
    margin: 5px 0 5px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    text-transform: capitalize;
}

.blog-card .blog-content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .blog-content p {
    color: #000000;
    margin: 0 0 0px;
    font-weight: 400;
    font-size: 15.02px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .blog-content a.read-more {
    background-color: var(--e-global-color-f23d20d);
    font-size: 10.19px;
    font-weight: 400;
    line-height: 100%;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-f23d20d);
    border-radius: 5px 5px 5px 5px;
    padding: 8px 10px 8px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: max-content;
    margin-top: auto;
}
.blog-card .blog-content a.read-more i {
    transition: 0.5s all;
}
.blog-card .blog-content a.read-more:hover i {
    transform: translateX(2px);
}
.blog-card .blog-content a.read-more:hover {
    background-color: #02010100;
    color: var(--e-global-color-f23d20d);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-f23d20d);
    border-radius: 5px 5px 5px 5px;
}

.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 60px auto 0;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 17px;
    background: #D8D4D4;
    color: #303030;
    text-decoration: none;
    font-size: 16px;
    border: none;
    text-align: center;
    font-weight: 400;
    min-width: 43px;
    min-height: 43px;
}

.pagination a:hover {
    background: #0567B2;
    color: #fff;
}
.pagination .current {
    background: #0567B2;
    color: #fff;
}

.pagination .dots {
    padding: 8px 14px;
    background: #d6d3d3;
}

.no-posts-message {
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* blog page css end  */


/* blog details sigle page css start */
.single-post-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.single-post-container .post-featured-image img {
    width: 100%;
    height: 509px;
    object-fit: cover;
}

.single-post-container .post-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.social-container a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 33px 10px 18px;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "IBM Plex Sans", sans-serif;
    justify-content: space-between;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.social-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-container .facebook {
    background-color: #4267B2;
}

.social-container .facebook:hover {
    background-color: #365899;
}

.social-container .twitter {
    background-color: #55ACEE;
}

.social-container .twitter:hover {
    background-color: #0d8bd9;
}

.social-container .pinterest {
    background-color: #CB2027;
}

.social-container .pinterest:hover {
    background-color: #a0070f;
}

.social-container .email {
    background-color: #7D7D7D;
}

.social-container .email:hover {
    background-color: #555555;
}

.social-container .linkedin {
    background-color: #0077B5;
}

.social-container .linkedin:hover {
    background-color: #005885;
}

.social-container i {
    font-size: 14px;
    font-weight: 400;
}

.single-post-container .post-content-wrapper .post-content {
    display: flex;
    flex-direction: column;
/*     gap: 30px; */
}

.single-post-container .post-content-wrapper .post-content .wp-block-image {
    margin: 20px 0;
}

.single-post-container .post-content-wrapper .post-title {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw + 1rem, 40px);
    line-height: 50px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #0567B2;
    margin: 0;
}

.post-content-wrapper .post-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.post-content-wrapper .post-content p:last-child {
    margin-bottom: 0;
}

/* blog details sigle page css end */


/* Pricing page css start */

.tabs-custom-pricing .e-n-tabs[data-touch-mode='false']>.e-n-tabs-heading>.e-n-tab-title[aria-selected="false"]:hover,
.tabs-custom-pricing .e-n-tabs>.e-n-tabs-heading>.e-n-tab-title[aria-selected="true"] {
    border-radius: 100px;
}

.tabs-custom-pricing .e-n-tabs-heading {
    border: 1px solid #CDCDCD;
    padding: 4px;
    border-radius: 100px;
    max-width: max-content;
    margin: 0 auto;
    width: max-content;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.tabs-custom-pricing .e-n-tabs[data-touch-mode='true']>.e-n-tabs-heading>.e-n-tab-title[aria-selected="false"]:hover {
    border-radius: 100px;
}

.month {
    font-size: 22px;
}

.sp-easy-accordion {
    display: flex;
    flex-direction: column;
}

.sp-easy-accordion .sp-ea-single {
    background-color: transparent !important;
    border-width: 0px 0px 2px 0px !important;
    border-color: #000000 !important;
    border-radius: 0 !important;
    padding: 25px 0;
    margin-bottom: 0 !important;
}

.sp-easy-accordion .sp-ea-single:first-child {
    padding-top: 0;
}

.sp-easy-accordion .sp-ea-single .eap-icon-ea-expand-plus:before {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
}

.sp-easy-accordion .sp-ea-single .eap-icon-ea-expand-minus:before {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f106";
}

.sp-easy-accordion .sp-ea-single .ea-header a {
    padding: 0 !important;
    display: flex;
    align-items: self-start;
    flex-direction: row-reverse;
    justify-content: space-between;
    font-family: Instrument Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #000000 !important;
}

.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
    color: #000000 !important;
    font-size: 18px !important;
}

.sp-easy-accordion .sp-ea-single .ea-body {
    padding: 20px 0 20px 0 !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}

/* Pricing page css end */


/* tools page css start */
.aca-calculator-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: stretch;
    position: relative;
}

.aca-calculator-container:before {
    content: "";
    left: 50%;
    position: absolute;
    background-color: #FFFFFF;
    height: 100%;
    width: 1px;
    top: 0;
}

.aca-calculator-container .panel {
    padding: 10px 0px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aca-calculator-container .panel-title {
    font-weight: 600;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 100%;
    color: #FFFFFF;
    margin-bottom: clamp(22px, 4vw, 50px);
    text-align: center;
}

.aca-calculator-container .form-group {
    margin-bottom: clamp(15px, 2vw, 20px);
}

.aca-calculator-container .form-label {
    display: block;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.aca-calculator-container .form-input {
    width: 100%;
    padding: clamp(14px, 2vw, 18px) clamp(15px, 2.5vw, 20px);
    border: none;
    border-radius: 5px;
    background: #FFFFFF;
    color: #949494;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1;
    box-shadow: none;
}

.aca-calculator-container .form-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    transform: none;
    color: #333;
}

.aca-calculator-container .form-input::placeholder {
    color: #949494;
    opacity: 1;
}

.aca-calculator-container .calculate-btn {
    width: 100%;
    padding: clamp(12px, 2vw, 16px);
    background: #33A0F3;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 26px;
    border: 1px solid #33A0F3;
    margin-top: clamp(15px, 2vw, 20px);
}

.aca-calculator-container .calculate-btn:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.aca-calculator-container .penalty-description p {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.4;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.aca-calculator-container .penalty-formula {
    font-size: clamp(12px, 1.8vw, 16px);
    margin-bottom: clamp(15px, 2vw, 20px);
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: inherit;
    border: none;
    font-weight: 400;
}

.aca-calculator-container .aca-employer-penalty .form-group .form-label {
    margin-bottom: clamp(15px, 2vw, 20px);
}

.aca-calculator-container .result-section {
    margin-top: clamp(20px, 3vw, 25px);
    padding: clamp(15px, 2vw, 20px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: none;
}

.aca-calculator-container .result-value {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: clamp(5px, 1vw, 10px);
}

.calculator-title {
    display: none !important;
}


/* tools page css end */

/* ========== 404 Page CSS Start ========== */
.custom-404-container {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 65vh;
}

.custom-404-container .error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.custom-404-container .eyes {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.custom-404-container .eye {
    width: 80px;
    height: 80px;
    background-color: #0366B1;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.custom-404-container .eye__pupil {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: movePupil 2s infinite ease-in-out;
    transform-origin: center center;
}

@keyframes movePupil {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, -10px);
    }

    50% {
        transform: translate(10px, 10px);
    }

    75% {
        transform: translate(-10px, 10px);
    }
}

.custom-404-container .error-page .content-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-404-container .error-page .content-col .error-title {
    color: #000;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.3;
    margin: 0;
}
.custom-404-container .error-page .content-col .error-code {
    font-size: clamp(25px, 3vw, 28px);
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    line-height: 1.2;
}

.custom-404-container .error-page .content-col .back-home-btn {
    display: flex;
    padding: 12px 24px;
    background-color: #0567B2;
    color: #fff;
    border: 1px solid #0567B2;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    margin: 0 auto;
    font-family: 'Instrument Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.custom-404-container .error-page .content-col .back-home-btn:hover {
    background-color: transparent;
    border-color: #0567B2;
    color: #0567B2;
}

/* ========== 404 Page CSS End ========== */


/* Responsive css*/
@media (max-width: 1366px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {

    /* blog page responsive css start */
    .blog-filter-container {
        margin-bottom: 40px;
    }

    .blog-grid {
        column-gap: 20px;
        row-gap: 40px;
    }

    .blog-card .blog-content h3 {
        font-size: 18px;
    }

    .blog-card {
        gap: 10px;
    }

    .blog-card .blog-content {
        gap: 10px;
    }

    .pagination {
        margin: 40px auto 0;
    }

    /* blog details sigle page responsive css start */
    .single-post-container {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .single-post-container .post-featured-image img {
        height: 400px;
    }

    .social-container {
        margin: 30px 0;
    }

    .single-post-container .post-content-wrapper {
        gap: 20px;
    }

/*     .single-post-container .post-content-wrapper .post-content {
        gap: 20px;
    } */

    .single-post-container .post-content-wrapper .post-content .wp-block-image {
        margin: 10px 0;
    }

    /* Pricing  page responsive css start */
    .sp-easy-accordion .sp-ea-single {
        padding: 15px 0;
    }

    .sp-easy-accordion .sp-ea-single .ea-body {
        padding: 10px 0 10px 0 !important;
        font-size: 16px;
    }

    .sp-easy-accordion .sp-ea-single .ea-header a {
        font-size: 18px;
    }


}

@media (max-width: 992px) {

    /* tools page responsive css */
    .aca-calculator-container {
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 60px);
    }

    .aca-calculator-container:before {
        display: none;
    }

    .aca-calculator-container .panel {
        justify-content: flex-start;
    }

    /* 404 error responsive css  */
    .custom-404-container .eye {
        width: 70px;
        height: 70px;
    }

    .custom-404-container .eye__pupil {
        width: 25px;
        height: 25px;
    }

}

@media (max-width: 880px) {

    /* blog page responsive css start */
    .blog-filter-container {
        margin-bottom: 30px;
    }

    .blog-grid {
        column-gap: 20px;
        row-gap: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-container {
        gap: 15px;
    }

    .filter-container .select-wrapper .select-dropdown,
    .filter-container .search-wrapper .search-input {
        padding: 10px 32px 10px 16px;
    }

    .pagination {
        margin: 30px auto 0;
    }

}

@media (max-width: 767px) {

    /* blog details sigle page responsive css start */
    .single-post-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .single-post-container .post-featured-image img {
        height: 300px;
    }

    .social-container a {
        padding: 8px 20px 8px 15px;
        min-width: 100px;
        font-size: 11px;
    }

    .single-post-container .post-content-wrapper .post-title {
        line-height: 1.2em;
    }

    .post-content-wrapper .post-content p {
        font-size: 16px;
    }

    .social-container {
        margin: 20px 0;
    }

    /* Pricing  page responsive css start */
    .sp-easy-accordion .sp-ea-single .ea-header a {
        font-size: 16px;
    }

    .sp-easy-accordion .sp-ea-single .ea-body {
        font-size: 15px;
    }

    .tabs-custom-pricing .e-n-tabs-heading {
        max-width: max-content;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .custom-404-container .eye {
        width: 60px;
        height: 60px;
    }

    .custom-404-container .eye__pupil {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575px) {

    /* blog page responsive css start */
    .blog-grid {
        row-gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-card img {
        height: auto;
    }

    .filter-container {
        flex-direction: column;
        max-width: 100%;
    }

    .filter-container .select-wrapper,
    .filter-container .search-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .filter-container .select-wrapper .select-dropdown,
    .filter-container .search-wrapper .search-input {
        font-size: 18px;
        line-height: 1.3;
    }

    /* Pricing  page responsive css start */
    .pricing-grid-custom-css .e-con-inner {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 30px;
    }
}

@media (max-width: 480px) {

    /* blog details sigle page responsive css start */
    .single-post-container .post-featured-image img {
        height: 220px;
    }

    .social-container a {
        width: 48%;
        justify-content: center;
        padding: 10px;
        font-size: 12px;
    }

    .single-post-container .post-content-wrapper .post-title {
        font-size: clamp(22px, 6vw + 0.5rem, 32px);
    }

}

@media (max-width: 360px) {
    .social-container a {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 12px;
        gap: 10px;
    }
}

.single-post-container .post-content-wrapper .post-content h1,.single-post-container .post-content-wrapper .post-content h2,.single-post-container .post-content-wrapper .post-content h3,.single-post-container .post-content-wrapper .post-content h4,.single-post-container .post-content-wrapper .post-content h5,.single-post-container .post-content-wrapper .post-content h6 {
    font-size: 20px;
}

@media (max-width:767px){
	.single-post-container .post-content-wrapper .post-content h1, .single-post-container .post-content-wrapper .post-content h2, .single-post-container .post-content-wrapper .post-content h3, 	.single-post-container .post-content-wrapper .post-content h4, .single-post-container .post-content-wrapper .post-content h5, .single-post-container .post-content-wrapper .post-content h6 {
		font-size: 30px;
		line-height: 1.4em;
	}
}
