@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2BB673;
    --sky-blue: #E6F1F9;
    --orange: #EA5D49;
    --blue: #0170BF;
    --black: #1B1822;
    --white: #ffffff;
    --dark-gray: #1B1822CC;
}


/* All bg color */

.red-bg {
    background-color: var(--orange);
    padding: 90px 0;
}

.white-bg {
    background-color: var(--white);
    padding: 90px 0;
}

.green-bg {
    background-color: var(--green);
    padding: 90px 0;
}

.light-bg {
    background-color: var(--sky-blue);
    padding: 90px 0;
}

.blue-bg {
    background-color: var(--blue);
    padding: 90px 0;
}

.red-bg *,
.blue-bg *,
.green-bg * {
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.post,
.page {
    margin: 0;
}

a,
button {
    transition: 0.5s ease-in;
}

a {
    color: var(--blue);
}

a:focus {
    outline: none;
}

a:visited {
    color: initial;
}

b,
strong {
    font-weight: 600;
}

button {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
}

h1,
.h1 {
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 50px;
    line-height: 64px;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 0;
}

h2,
.h2 {
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 45px;
    line-height: 60px;
    text-transform: uppercase;
    color: var(--black);
}

h3,
.h3 {
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--black);
}

h4,
.h4 {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
}

h5,
.h5 {
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

h6,
.banner-desctiption p {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: var(--black);
}

.h6 {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--black);
}

h1>span,
.h1>span,
h2>span,
.h2>span,
h3>span,
.h3>span,
h4>span,
.h4>span,
h5>span,
.h5>span {
    text-transform: lowercase;
}

section.red-bg h1,
section.red-bg .h1,
section.red-bg h2,
section.red-bg .h2,
section.green-bg h1,
section.green-bg .h1,
section.green-bg h2,
section.green-bg .h2,
section.blue-bg h1,
section.blue-bg .h1,
section.blue-bg h2,
section.blue-bg .h2 {
    color: var(--white);
}

p {
    margin-bottom: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

p+p {
    margin-top: 20px;
}

blockquote {
    position: relative;
    padding: 45px 40px;
    margin: 40px 0 0;
    border-left: 4px solid #EA5D49;
    background-color: #E6F1F9;
    border-radius: 10px;
}

.red-bg blockquote {
    border-color: var(--blue);
}

blockquote:first-child {
    margin-top: 0px;
}

blockquote:not(:last-child) {
    margin-bottom: 40px;
}

blockquote p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--black) !important;
}

blockquote p em,
blockquote * {
    color: var(--black) !important;
}

hr {
    margin: 50px 0 40px;
    background-color: #0000001A;
}

.sub-title-text p,
.sub-title-text li,
.sub-title-text a {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
}

.sub-title-text p+p {
    margin-top: 8px;
}

.sub-title-text ul {
    margin-left: 24px;
    margin-bottom: 0;
}

.sub-title-text strong {
    font-weight: 700;
}

.sub-title-text a {
    text-decoration: underline;
}

.btn-primary-wrapper {
    margin-top: 40px;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-6,
.col-3 {
    padding-left: 15px;
    padding-right: 15px;
}

ol:not(:first-child),
ul.wp-block-list:not(:first-child) {
    margin-top: 20px;
}

ol,
ul.wp-block-list {
    margin-top: 20px;
    margin-left: 16px;
}

header.entry-header {
    margin-bottom: 20px;
}

.navigation.post-navigation .nav-links .nav-title {
    display: none;
}

.wp-block-contact-form-7-contact-form-selector {
    margin-top: 20px;
}


/* block details page css start */

.single-post .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-post .form-group {
    position: relative;
}

.single-post .wpcf7-form .form-group label {
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #5B5B5B;
}

.single-post .wpcf7-form input[type="text"],
.single-post .wpcf7-form input[type="email"],
.single-post .wpcf7-form input[type="tel"],
.single-post .wpcf7-form textarea {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--black);
    border: 1px solid #CECECE;
    border-radius: 10px;
    padding: 13px 15px;
    margin-top: 9px;
    width: 100%;
    outline: none;
}

.single-post .wpcf7-form input::placeholder,
.single-post .wpcf7-form textarea::placeholder {
    color: #8C8C8C;
}

.single-post .wpcf7-form input[type="text"] {
    text-transform: capitalize;
}

.single-post .wpcf7-form textarea {
    height: 90px;
    resize: none;
    width: 100%;
}

.single-post .wpcf7-form input[type="submit"] {
    background-color: var(--blue);
    box-shadow: 0px 2px 20px 0px #0000001A;
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    border: 0;
    cursor: pointer;
    transition: 0.5s ease-in;
}

.single-post .wpcf7-form input[type="submit"]:hover,
.single-post .wpcf7-form input[type="submit"]:focus,
.single-post .wpcf7-form input[type="submit"]:active {
    background-color: #fff;
    color: var(--blue);
}

.single-post .wpcf7-form .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 12px;
}

.single-post .wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
    font-size: 14px;
    padding: 2px 8px;
    color: var(--black);
}

.single-post .wp-block-heading:not(:first-child),
.single-post .entry-content h1:not(:first-child) {
    margin-top: 20px;
}


/* block details page css end */


/* Button common css */

button,
.btn-primary,
.btn-primary-bgred,
.blog .posts-navigation .nav-links a {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    box-shadow: 0px 2px 20px 0px #0000001A;
    border: none;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.5s ease-in;
}

button i,
.btn-primary i,
.btn-primary-bgred i {
    padding-left: 16px;
    transition: 0.5s ease-in;
    color: var(--white);
    font-size: 18px;
}

.btn-primary:hover,
button:hover,
.btn-primary:focus,
button:focus,
section.blue-bg button:hover,
section.blue-bg .btn-primary:hover,
section.blue-bg button:focus,
section.blue-bg .btn-primary:focus,
.blog .posts-navigation .nav-links a:hover,
.blog .posts-navigation .nav-links a:focus {
    color: var(--blue) !important;
    background: var(--white);
}

.btn-primary:hover i,
button:hover i,
.btn-primary:focus i,
button:focus i,
section.blue-bg button:hover i,
section.blue-bg .btn-primary:hover i,
section.blue-bg button:focus i,
section.blue-bg .btn-primary:focus i {
    color: var(--blue);
}

section.blue-bg button,
section.blue-bg .btn-primary {
    background: var(--sky-blue);
    color: var(--black) !important;
}

section.blue-bg button i,
section.blue-bg .btn-primary i {
    color: var(--black);
}

.btn-primary-bgred {
    background: var(--orange) !important;
    margin-left: 20px;
}

section.red-bg .btn-primary-bgred {
    background: var(--green) !important;
}

.btn-primary-bgred:hover,
.btn-primary-bgred:focus,
section.red-bg .btn-primary-bgred:hover,
section.red-bg .btn-primary-bgred:focus {
    color: var(--orange) !important;
    background: var(--white) !important;
}

.btn-primary-bgred:hover i,
.btn-primary-bgred:focus i {
    color: var(--orange);
}

.ml-0 {
    margin-left: 0 !important;
}

.text-center {
    text-align: center;
}

.header-mb-43 {
    margin-bottom: 43px !important;
}

.paragraph-text a:hover,
.paragraph-text a:focus {
    color: var(--blue);
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* custom header start*/

.custom-header {
    display: flex;
    align-items: stretch;
}

.title-label {
    padding-right: 30px;
    margin-right: 30px;
    position: relative;
    text-transform: uppercase;
    width: auto;
    flex: 0 0 auto;
    margin-bottom: 0;
    font-weight: 600;
}

.title-label::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    height: 100%;
    width: 4px;
    background: var(--orange);
}

.red-bg .title-label::after {
    background: var(--white);
}

.custom-header .sub-title-text {
    margin-bottom: 0;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-header.header-only-title {
    justify-content: center;
}

.custom-header.header-only-title .title-label {
    padding-right: 0;
    margin-right: 0;
    text-align: center;
}

.custom-header.header-only-title .title-label:after {
    display: none;
}


/* custom header end*/


/* header start */

.site-header {
    padding: 15px 0;
    background-color: var(--white);
    backdrop-filter: blur(20px);
    z-index: 9;
    position: relative;
}

.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: stickySlideDown;
    animation-name: stickySlideDown
}

.site-header .custom-logo {
    width: 171px;
    height: 65px;
    object-fit: contain;
}

@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.site-header .container {
    max-width: 1330px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo,
.header-logo a {
    display: inline-flex;
}

.main-menu ul {
    margin: 0 -20px;
    padding-bottom: 10px;
}

.main-menu li {
    margin: 0 20px;
}

.main-menu li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: var(--black);
}

.main-menu li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width .5s ease-in;
}

.main-menu li:hover a:after,
.main-menu li.current_page_item a:after {
    width: 100%;
}

.main-menu li:hover a,
.main-menu li.current_page_item a {
    color: var(--orange);
}

.main-menu li.current_page_item a {
    font-weight: 600;
}

.paragraph-30lh p,
.paragraph-30lh a,
.paragraph-30lh li {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #1B1822CC;
}

.red-bg .paragraph-30lh p,
.red-bg .paragraph-30lh a,
.red-bg .paragraph-30lh li,
.green-bg .paragraph-30lh p,
.green-bg .paragraph-30lh a,
.green-bg .paragraph-30lh li,
.blue-bg .paragraph-30lh p,
.blue-bg .paragraph-30lh a,
.blue-bg .paragraph-30lh li {
    color: #ffffff !important;
}


/* error page start */

.error-404 .content_block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.error-404 .content_block * {
    margin: 0;
}

.error-404 .page-title {
    font-size: 250px;
    font-weight: 700;
    color: var(--orange);
    line-height: 230px;
    background: linear-gradient(90deg, #27A9E0, #21429A, #2BB274);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.error-404 h4 {
    color: var(--black);
}


/* error page end */


/* footer css start */

.site-footer {
    background-color: #F7F7F7;
    padding: 80px 0;
}

.f-logo,
.footer-logo-wrapper .custom-logo-link {
    display: inline-flex;
}

.f-logo img,
.footer-logo-wrapper .custom-logo-link img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.f-contact-info,
.footer-menu ul li+li {
    margin-top: 20px;
}

.f-contact-info a {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    text-decoration: none;
    color: var(--black);
}

.contact-icon {
    display: inline-flex;
}

.f-contact-info .contact-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-text,
.footer-menu li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    text-decoration: none;
    transition: 0.5s ease-in;
}

.f-contact-info a:hover .contact-text,
.footer-menu li a:hover {
    color: var(--blue);
}

.footer-menu ul {
    margin: 0;
    list-style: none;
    column-count: 2;
}

.footer-menu ul li {
    text-align: left;
    padding-left: 30px;
}

.gsa-contact p {
    margin-bottom: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.gsa-contact p b,
.gsa-contact p strong {
    display: inline-block;
}

.gsa-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 35px;
    display: block;
}

.f-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.f-social .social-icon {
    width: 25px;
    height: 25px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid var(--black);
}

.footer-menu {
    display: inline-block;
}

.footer-top .col-md-4:has(.footer-menu) {
    text-align: end;
}

.f-social .social-icon:hover {
    transform: scale(1.1);
}

.gsa-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.footer-top .row {
    align-items: center;
}


/* footer css end */


/* blog page start */

.blog-container {
    padding: 60px 0;
}

.blog .page-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog .blog-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog .category-blog {
    background-color: var(--white);
    padding: 15px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 30px #0000001A;
}

.blog .category-blog .entry-title a {
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.blog .category-blog .entry-title a:hover {
    color: var(--orange);
}

.blog .category-blog .entry-content {
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog .category-blog .category-blog-img {
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.5s ease-in;
}

.blog .category-blog .category-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in;
}

.blog .category-blog .wp-post-image:hover {
    transform: scale(1.2);
}

.blog .navigation.posts-navigation {
    margin: 30px 0 0;
}

.single-post .entry-content ol.breadcrumb {
    display: none;
}

.single-post .category-blog-img {
    margin: 20px 0;
    border-radius: 10px;
}

.single-post .category-blog-img img {
    border-radius: 10px;
}

.single-post .wp-block-image img {
    border-radius: 10px;
    margin: 20px 0;
}


/* blog page end */

@media (min-width: 768px) and (max-width: 1024px) {
    .sub-title-text p,
    .sub-title-text li,
    .sub-title-text a {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .col-6,
    .col-3 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666666%;
    }
    .custom-header.header-only-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 1199px) {
    .site-header .custom-logo {
        width: 120px;
        height: auto;
    }
    .main-menu li {
        margin: 0 15px;
    }
    .paragraph-30lh p,
    .paragraph-30lh a,
    .paragraph-30lh li {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    .sub-title-text p,
    .sub-title-text li,
    .sub-title-text a,
    blockquote p,
    h6,
    .banner-desctiption p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 1024px) {
    h1,
    .h1 {
        font-size: 45px;
        line-height: 60px;
    }
    h4 {
        font-size: 20px;
        line-height: 31px;
    }
    .site-header {
        padding: 10px 0;
        overflow: hidden;
        backdrop-filter: unset;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 5;
    }
    .menu-toggle a {
        position: relative;
        width: 24px;
        height: 20px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        display: block;
    }
    .menu-toggle a span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #1b1b1b;
        border-radius: 2px;
        transition: all .3s ease;
    }
    .menu-toggle a span:nth-child(1) {
        top: 0;
    }
    .menu-toggle a span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-toggle a span:nth-child(3) {
        bottom: 0;
    }
    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
        top: 40%;
    }
    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 50%;
    }
    .site-header .custom-logo {
        z-index: 1;
    }
    .menu-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: var(--sky-blue);
        padding: 45px 0;
        transform: translateX(100%);
        transition: 0.5s ease-in;
    }
    body.admin-bar .menu-wrapper {
        padding-top: 90px;
    }
    .menu-wrapper.active {
        transform: translateX(0);
    }
    .menu-wrapper .main-navigation ul {
        display: block;
    }
    .main-menu li {
        margin: 0;
        padding: 15px 24px;
        border-bottom: 1px solid #c3c3c3;
    }
    .main-menu li a {
        text-align: left;
    }
    .main-menu li a:after {
        bottom: -1px;
    }
    .header-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    body.main-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 991px) {
    h1,
    .h1 {
        font-size: 40px;
        line-height: 54px;
    }
    h2,
    .h2 {
        font-size: 35px;
        line-height: 50px;
    }
    h3,
    .h3 {
        font-size: 28px;
        line-height: 40px;
    }
    h4,
    .h4 {
        font-size: 22px;
        line-height: 28px;
    }
    h5,
    .h5 {
        font-size: 20px;
        line-height: 32px;
    }
    h6,
    .banner-desctiption p {
        font-size: 18px;
        line-height: 27px;
    }
    .h6 {
        font-size: 16px;
        line-height: 24px;
    }
    blockquote {
        padding: 15px;
        margin: 15px 0 0;
        border-radius: 8px;
    }
    blockquote:not(:last-child) {
        margin-bottom: 15px;
    }
    blockquote p {
        font-size: 16px;
        line-height: 22px;
    }
    hr {
        margin: 30px 0;
    }
    .col-12+.col-12 {
        margin-top: 30px;
    }
    .red-bg,
    .white-bg,
    .green-bg,
    .light-bg,
    .blue-bg {
        padding: 60px 0;
    }
    .btn-primary-wrapper {
        margin-top: 20px;
    }
    .container,
    .main-banner-section .container {
        width: 100%;
        max-width: 760px;
    }
    .custom-header {
        flex-wrap: wrap;
    }
    .title-label {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        margin-right: 0;
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .title-label br {
        display: none;
    }
    .title-label::after {
        right: unset;
        left: 0;
    }
    .title-label::after {
        height: 75%;
    }
    .site-footer {
        padding: 60px 0;
    }
    .f-logo img,
    .footer-logo-wrapper .custom-logo-link img {
        height: 50px;
    }
    .gsa-logo {
        text-align: left;
        height: 28px;
        display: inline-flex;
        margin-bottom: 15px;
    }
    .gsa-logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .footer-top .col-md-4:has(.footer-menu) {
        text-align: left;
    }
    .footer-menu ul li {
        padding: 0;
    }
    .footer-menu {
        max-width: 600px;
        display: block;
    }
    .f-social {
        justify-content: flex-start;
        margin-top: 12px;
    }
    /* blog page start */
    .blog .page-title {
        margin-bottom: 30px;
    }
    .blog .blog-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    /* blog page end */
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 35px;
        line-height: 45px;
    }
    h2,
    .h2 {
        font-size: 30px;
        line-height: 40px;
    }
    h3,
    .h3 {
        font-size: 24px;
        line-height: 32px;
    }
    h4,
    .h4 {
        font-size: 20px;
        line-height: 26px;
    }
    h5,
    .h5 {
        font-size: 18px;
        line-height: 28px;
    }
    h6,
    .banner-desctiption p {
        font-size: 16px;
        line-height: 24px;
    }
    .h6 {
        font-size: 15px;
        line-height: 22px;
        font-weight: 600;
    }
    p+p {
        margin-top: 12px;
    }
    .sub-title-text p,
    .sub-title-text li,
    .sub-title-text a {
        font-size: 16px;
        line-height: 22px;
    }
    .paragraph-text p,
    .paragraph-text a,
    .paragraph-text li {
        line-height: 1.2 !important;
    }
    .title-label {
        font-size: 28px;
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        margin-right: 0;
        padding-left: 15px;
        margin-bottom: 10px;
    }
    .title-label::after {
        right: unset;
        left: 0;
    }
    .title-label::after {
        height: 80%;
    }
    .header-mb-43 {
        margin-bottom: 30px !important;
    }
    .red-bg,
    .white-bg,
    .green-bg,
    .light-bg,
    .blue-bg {
        padding: 50px 0;
    }
    button,
    .btn-primary,
    .btn-primary-bgred,
    .blog .posts-navigation .nav-links a {
        border-radius: 6px;
        padding: 13px 15px;
        font-size: 15px;
    }
    button i,
    .btn-primary i,
    .btn-primary-bgred i {
        padding-left: 10px;
        font-size: 14px;
    }
    .paragraph-30lh p,
    .paragraph-30lh a,
    .paragraph-30lh li {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .btn-primary-bgred {
        margin-left: 0;
    }
    .site-header .custom-logo {
        width: 100px;
    }
    .btn-primary-wrapper {
        gap: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .py-30 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    /* error page start */
    .error-404 .content_block {
        gap: 15px;
        padding: 50px 0;
    }
    .error-404 .page-title {
        font-size: 160px;
        line-height: 140px;
    }
    /* error page end */
    .site-footer {
        padding: 50px 0;
    }
    .f-contact-info,
    .footer-menu ul li+li {
        margin-top: 10px;
    }
    .contact-text,
    .footer-menu li a {
        font-size: 14px;
        line-height: 22px;
    }
    .single-post .wpcf7-form input[type="text"],
    .single-post .wpcf7-form input[type="email"],
    .single-post .wpcf7-form input[type="tel"],
    .single-post .wpcf7-form textarea {
        font-size: 14px;
        line-height: 20px;
        padding: 9px 10px;
        border-radius: 6px;
    }
    .single-post .wpcf7-form input[type="submit"] {
        border-radius: 6px;
        padding: 9px;
        font-size: 15px;
    }
    /* blog page start */
    .blog-container {
        padding: 50px 0;
    }
    /* blog page end */
}

@media (max-width: 574px) {
    h1,
    .h1 {
        font-size: 30px;
        line-height: 40px;
    }
    h2,
    .h2 {
        font-size: 25px;
        line-height: 35px;
    }
    h3,
    .h3 {
        font-size: 22px;
        line-height: 30px;
    }
    /* error page start */
    .error-404 .content_block {
        gap: 15px;
        padding: 50px 0;
    }
    .error-404 .page-title {
        font-size: 120px;
        line-height: 120px;
    }
    /* error page end */
    .footer-menu ul {
        column-count: 1;
    }
    /* blog page start */
    .blog .blog-wrapper {
        grid-template-columns: 1fr;
    }
    /* blog page end */
}

@media (max-width:350px) {
    .btn-primary-wrapper a {
        margin-top: 5px;
    }
    .site-header .custom-logo {
        width: 80px;
    }
    h1,
    .h1 {
        font-size: 25px;
        line-height: 35px;
    }
    h2,
    .h2 {
        font-size: 23px;
        line-height: 32px;
    }
    h3,
    .h3 {
        font-size: 20px;
        line-height: 30px;
    }
}


/* custom */

.wpcf7-not-valid-tip {
    display: block;
}

.wpcf7-form .wpcf7-not-valid-tip:not(:first-of-type) {
    display: none;
}