@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,400;1,500;1,800&display=swap');
/* Smooth scroll behavior */

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Poppins', sans-serif;
    color: #363738;
    margin: 0;
}

a {
    color: #1088ff;
    text-decoration: none;
}

a:hover {
    color: #00b6a1;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.sidebar-open {
    overflow: hidden;
}

.recent-posts.sections-bg p {
    margin-bottom: 0;
    margin-top: 0px;
}

.recent-posts.sections-bg .section-header p {
    margin-bottom: 0;
    margin-top: 14px;
}

.lctext p:hover {
    color: #00873c;
    border-color: #00873c;
    transition: .5s;
}

.lctext p:hover a {
    color: #00873c;
    transition: .5s;
}

.vediogap {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.lctext p:hover a span {
    color: #00873c;
    border-color: #00873c;
    transition: .5s;
}

.recent-posts.sections-bg .section-header h2 {
    margin-bottom: 0 !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    .lctext p:hover a span {
        color: #00873c;
        border-color: #00873c;
    }
    right: 0;
    bottom: 0;
    background-color: rgba(0,
    0,
    0,
    0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    height: 82px;
    max-height: 82px;
    background-color: #fff;
    box-shadow: 3px 3px 3px #ccc;
    z-index: 99;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}

section.recent-posts.sections-bg {
    margin-top: 0px;
}

hr {
    color: #E3E3E3;
    border: 1px solid #E3E3E3;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    padding: 0 10px;
}

.nav-list li a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: block;
}

.nav-list li a::after {
    content: "";
    background-color: #ffffff;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s linear;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li.active a::after {
    width: 100%;
}

.nav-list li.with-submenu {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-list li.with-submenu>a {
    margin-right: 10px;
}

.nav-list li.with-submenu::after {
    content: "";
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    right: 0;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.nav-list li.with-submenu:hover::after {
    transform: rotate(225deg);
    margin-top: 10px;
}

.nav-list li.with-submenu .submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    background: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 2px 2px 1px 2px #ccc;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.nav-list li.with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.nav-list li.with-submenu .submenu li {
    padding: 0;
}

.nav-list li.with-submenu .submenu a {
    color: #000000;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s;
}

.nav-list li.with-submenu .submenu a:hover {
    background-color: rgba(49, 20, 50, 0.3);
}

/* .nav-list li.with-submenu .submenu a::after {
  display: none;
} */

.nav-list li.with-submenu>a {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    z-index: 99;
}

.hamburger .line {
    width: 25px;
    height: 1.5px;
    background-color: #ffffff;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #311432;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile {
    display: none;
}

section {
    padding: 40px 0;
    overflow: hidden;
}

.container {
    max-width: 1170px;
    width: 100%;
}

.post-img {
    transition: .5s;
}

.section-header {
    text-align: center;
    padding-bottom: 50px;
}

.section-header h2 {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
}

.lctext {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    column-gap: 17px;
    flex-wrap: wrap;
    width: 100%;
}

ul.resetul li:hover a span {
    color: #00873c;
    transition: .5s;
}

.resetul li:hover a img {
    filter: drop-shadow(1px 2px 1px green) !important;
    opacity: .6;
    transition: .5s;
}

ul.resetul li:hover a {
    color: #00873c;
    transition: .5s;
}

.resetul li:hover {
    color: #00873c;
    border-color: #00873c;
    transition: .5s;
}

.social-links i {
    font-size: 35px;
}

.portalsection {
    margin-top: 30px;
}

.lctext p {
    font-size: 16px;
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    column-gap: 6px;
    border-radius: 16px;
    border: 1px solid #E3E3E3;
    margin: 0;
    margin-bottom: 20px;
    background: #FFF;
}

.loctionbox {
    padding: 0px 15px;
    border-radius: 20px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.03);
}

.loctionbox h3 {
    background: #F6F6F6;
    padding: 11px 0px;
    margin: 0px 20px;
    text-align: center;
    color: #4A4B51;
    font-size: 26px;
    font-weight: 600;
    border-radius: 0px 0px 20px 20px;
    background: #F6F6F6;
}

.section-header p {
    color: #333;
    text-align: center;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section.location.sections-bg {
    padding-top: 20px;
}

h2.location-heading {
    padding-top: 50px;
    margin: 0;
}

a.profileic img {
    margin-top: 7px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    font-size: 16px;
    background-color: #fff;
    padding: 50px 0px 0 0px;
    color: #000;
    background: #FFF;
    box-shadow: 0px -6px 24px 0px rgba(0, 0, 0, 0.02);
}

.footer li a {
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary);
}

.footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: #000;
    margin-right: 25px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #000;
    border-color: #fff;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 0px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    padding-bottom: 5px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    column-gap: 40px;
    justify-content: center;
    margin-top: 0;
}

.social-links {
    justify-content: center !important;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(0, 131, 116, 0.8);
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.resetul li:hover a img {
    filter: drop-shadow(1px 0px 0.5px green) !important;
    opacity: .6;
    transition: .5s;
}

.footer .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    color: #666;
    text-align: center;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: #fff;
}

a.profileicon i {
    font-size: 22px;
    background: #F5F5F5;
    padding: 11px;
    border-radius: 5px;
    color: #292D32;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/

.recent-posts article {
    border-radius: 10px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.03);
}

img.iconimg {
    width: 32px !important;
    height: 32px;
    margin-left: 9px;
}

.row.serviceboxmain {
    display: flex;
    column-gap: 20px;
}

p.boxoverlap {
    position: absolute;
    width: 94%;
    bottom: 6px;
    color: #fff;
    padding: 11px;
    margin: 0;
    border-radius: 0px 0px 16px 16px;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 0px 0px 16px 16px;
    background: linear-gradient(89deg, #212121 1.29%, rgba(33, 33, 33, 0.00) 99.42%);
    display: flex;
    align-items: center;
    column-gap: 15px;
}

ul.resetul li {
    border-top: 1px solid #E3E3E3;
    padding: 18px 20px;
    list-style: none;
    font-size: 18px;
    transition: .5s;
}

ul.resetul a {
    color: #4A4B51;
    font-weight: 400;
    color: #4A4B51;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}

.lctext a {
    color: #4A4B51;
}

ul.resetul span {
    color: #4A4B51;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.reset {
    padding: 25px 25px 0px 25px;
}

ul.resetul {
    padding: 0;
}

.recent-posts .post-img {
    position: relative;
    margin: 10px;
    overflow: hidden;
    argin-bottom: 0;
}

.reset {
    padding: 15px 25px 20px;
}

p.boxtxt {
    color: #212020;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    height: 120px;
    margin: 0;
}

.recent-posts .post-category {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 10px;
}

.recent-posts .title {
    font-size: 22px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-posts .title a {
    color: var(--color-default);
    transition: 0.3s;
}

.recent-posts .title a:hover {
    color: var(--color-primary);
}

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: #3c3c3c;
    margin-bottom: 0;
}

.post-img:hover {
    transform: scale(1.1);
    transition: .5s;
}

.post-img:hover {
    transition: .5s;
}

.post-img img {
    width: 100%;
    transition: .5s;
}

.servicebox {
    max-width: 33.333%;
    flex: 33.333%;
}

.location p.middletxt {
    margin-top: 0;
    color: #292929;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    flex-shrink: 0;
    margin: 0;
}

h2.location-heading {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.portal {
    flex: 0%;
    width: 33.33333333%;
}

.location .section-header {
    text-align: center;
    padding-bottom: 30px;
}

.portalrow {
    display: flex;
    column-gap: 20px;
}

span.firtword {
    font-weight: 500;
    color: #4A4B51;
}

.logo-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

a.postbtn {
    border-radius: 8px;
    background: #00873C;
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    color: #fff;
}

a.profileic i {
    font-size: 20px;
}

.rightheader {
    display: flex;
    align-items: center;
    column-gap: 19px;
}

a.searchic i {
    font-size: 25px;
}

a.scrollmain.scroll-top {
    position: absolute;
    right: 0;
    top: 62%;
}

.footer .row {
    position: relative;
}

.blog-information p {
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.blog-left-grid .blog-box {
    max-height: 430px;
}

.blog-large-grid ul li,
.blog-large-grid ol li {
    list-style: auto;
    margin-left: 19px;
    line-height: 20px;
    padding-bottom: 4px;
    font-size: 14px;
    color: #4A4B51;
}

.blog-large-grid ul,
.blog-large-grid ol {
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header .row-wrap {
        margin: 0;
    }
    h2.location-heading {
        font-size: 30px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .portalrow {
        display: flex;
        column-gap: 20px;
        flex-wrap: wrap;
        margin: 10px;
    }
    .portal {
        flex: 48%;
        width: 48%;
        margin-bottom: 20px;
    }
    .servicebox {
        max-width: 50%;
        flex: 50%;
    }
    .servicebox {
        max-width: 48%;
        flex: 48%;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .row.serviceboxmain {
        display: flex;
        column-gap: 20px;
        flex-wrap: wrap;
        margin: 0 10px;
    }
    .location .section-header {
        text-align: center;
        padding-bottom: 30px;
        margin: 0px 15px;
    }
}

@media (min-width: 991px) and (max-width: 1024px) {
    .servicebox {
        max-width: 32%;
        flex: 31%;
        margin-bottom: 20px;
    }
    p.boxtxt {
        height: 167px;
        margin: 0;
    }
}

@media(max-width: 767px) {
    a.scrollmain.scroll-top {
        position: absolute;
        right: 20px;
        top: 140%;
    }
    .mobile img.twimg {
        width: 20px;
        height: 20px;
        margin-right: 22px;
        margin-left: 2px;
    }
    .mobile a.twitter {
        display: flex !important;
        align-items: center;
    }
    .recent-posts.sections-bg .section-header p {
        margin-bottom: 0;
        margin-top: 7px;
    }
    .social-links i {
        font-size: 28px;
    }
    .twitter img {
        max-width: 25px;
        max-height: 25px;
    }
    .footer .social-links a {
        font-size: 16px;
        color: #000;
        margin-right: 20px;
        transition: 0.3s;
    }
    a.searchic i {
        font-size: 20px;
    }
    a.profileic i {
        font-size: 17px;
    }
    a.profileic img {
        width: 36px;
        height: 36px;
    }
    .header {
        height: 60px;
        max-height: 60px;
    }
    .logo-wrap {
        display: flex;
        justify-content: space-between;
        width: 70%;
        align-items: center;
    }
    .rightheader {
        position: absolute;
        right: 53px;
        margin-right: 15px
    }
    a.postbtn {
        display: none;
    }
    .hamburger.is-active {
        background: #fff;
    }
    .social-links.mobile.mt-2.justify-content-center a i {
        margin-right: 17px;
        font-size: 23px;
    }
    .social-links.mobile.mt-2.justify-content-center a {
        /* width: 100%; */
        display: block;
        color: #000;
        font-family: Poppins;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .hamburger .line {
        width: 15px;
        height: 1.5px;
        background-color: #000000;
        display: block;
        margin: 5px 8px;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .mobile {
        margin-left: 20px;
        display: block;
    }
    .hamburger {
        display: block;
        border-radius: 8px;
        background: #F5F5F5;
        padding: 5px;
    }
    .nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        transform: translateX(100%);
        background-color: #ffffff;
        transition: all 0.5s linear;
        max-width: 300px;
        width: 100%;
        height: 100%;
        box-shadow: 2px -5px 5px 3px #ccc;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
    .nav-wrap.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 9;
    }
    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        padding: 10px;
    }
    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }
    .nav-list li {
        padding: 7px 10px;
        list-style: none;
    }
    .nav-list li a {
        color: #311432;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
        color: #000;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        /* line-height: 36px; */
    }
    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }
    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }
    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }
    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }
    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }
    .row-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0px;
    }
    .logo-wrap img {
        width: 100px;
    }
    .location p.middletxt {
        margin-left: 10px;
        margin-right: 10px;
    }
    section.recent-posts.sections-bg {
        margin-left: 10px;
        margin-right: 10px;
    }
    .portalrow {
        display: block;
        margin-left: 10px;
        margin-right: 10px;
    }
    .follow {
        border-top: 0;
        padding-top: 0;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        margin-left: 20px;
    }
    .footer {
        font-size: 16px;
        background-color: #fff;
        padding: 40px 0px 20px 0px;
    }
    .lctext p {
        font-size: 16px;
        width: 66%;
        height: 54px;
        margin: 0;
        margin-bottom: 20px;
    }
    .lctext p {
        font-size: 16px;
    }
    .loctionbox h3 {
        padding: 12px 0px;
        margin: -1px 5px;
        font-size: 16px;
    }
    .loctionbox {
        border: 0.616px solid #CFC7C7;
    }
    .recent-posts article {
        border: 0.616px solid #CFC7C7;
    }
    h2.location-heading {
        font-size: 18px !important;
        margin: 0;
        padding-top: 34px;
    }
    section.recent-posts.sections-bg {
        padding-bottom: 20px;
    }
    section.location.sections-bg {
        padding-top: 0;
    }
    .location p.middletxt {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
    ul.resetul li {
        padding: 15px 15px;
        font-size: 16px;
    }
    ul.resetul span {
        font-size: 16px;
    }
    ul.resetul a {
        font-size: 16px;
    }
    .reset {
        padding: 0px 10px;
    }
    p.boxtxt {
        font-size: 14px;
        line-height: normal;
        height: auto;
        margin: 0;
    }
    img.iconimg {
        width: 18px !important;
        height: 18px;
        margin: 0;
    }
    p.boxoverlap {
        column-gap: 8px;
    }
    p.boxoverlap {
        font-size: 16px;
    }
    .section-header {
        text-align: center;
        padding-bottom: 35px;
    }
    .section-header p {
        font-size: 14px;
    }
    .section-header h2 {
        font-size: 18px;
        margin: 0;
    }
    .footer .footer-links ul {
        display: block;
    }
    .row.serviceboxmain {
        display: block;
        /* column-gap: 20px; */
    }
    .portalrow {
        display: block;
    }
    .portal {
        flex: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    .servicebox {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 20px;
    }
    .owl-nav button.owl-prev::after {
        width: 35px;
        height: 35px;
    }
    .owl-nav button.owl-next::after {
        width: 35px;
        height: 35px;
    }
    .footer-list ul li a {
        font-size: 14px;
        line-height: normal;
    }
    .modal-res-hide {
        display: none;
    }
    .modal-res-show {
        display: block;
    }
    .recommended-img {
        display: inline-block;
    }
    .recommended-img {
        display: inline-block;
        align-items: center;
    }
    .recommended-img ul {
        margin-left: 0px;
        display: flex;
    }
    .recommended-img ul {
        margin-left: 0;
        display: flex;
    }
    .recommended-banner {
        height: 150px;
        width: 160px;
    }
    .recommended-img ul li {
        width: 75px;
        height: 75px;
        margin: 6px;
    }
    .recommended-list {
        margin-top: 10px;
        padding: 0px;
    }
    .recommended-img ul {
        margin-left: -6px;
        margin-right: -6px;
    }
    .thm-btn {
        font-size: 14px;
    }
    .header-thn-sec {
        align-items: center;
    }
    .navbar-sec .navbar-collapse ul .nav-item .nav-link {
        font-size: 14px;
    }
    .logo-sec a img {
        width: 60%;
    }
    .banner-sec h1 {
        font-size: 22px;
        line-height: 36px;
    }
    .banner-sec p {
        font-size: 16px;
        line-height: normal;
    }
    .banner-wrapper {
        padding: 30px 0px;
    }
    .list-details-modal .thm-heading h2 {
        font-size: 18px;
    }
    .thm-heading h2 {
        font-size: 18px;
    }
    .thm-heading p {
        font-size: 14px;
        line-height: normal;
    }
    .thm-heading span {
        font-size: 16px;
    }
    .top-girl-slider .owl-stage {
        padding-left: 0 !important;
    }
    img.mobile-logo {
        margin-left: 17px;
        width: 100px;
        margin-top: 24px;
    }
    a.headbtn {
        margin: 15px;
    }
    a.headbtn {
        background: #00873C;
        padding: 12px 17px;
        color: #fff;
        border-radius: 6px;
        font-size: 15px;
    }
    .mobile ul.nav-list {
        padding-top: 0 !important;
        border-top: 1px solid #E3E3E3;
        border-bottom: 1px solid #E3E3E3;
    }
    a.headbtn {
        font-size: 16px;
        color: #fff !important;
        margin: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center !important;
        padding: 8px 0px !important;
    }
}

.steps-section {
    padding-bottom: 50px;
}

.step-heading {
    padding: 40px 0 40px;
}

.step-heading h2 {
    text-align: center;
    font-size: 40px;
    margin: 0;
}

.add-form-section {
    border-radius: 16.26px;
    border: 0.813px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.252px 19.513px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.form-title {
    border-radius: 16.26px 16.26px 0px 0px;
    border: 0.813px solid #F5F5F5;
    background: #F6F6F6;
}

.form-title h4 {
    color: #4A4B51;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    padding: 15px 25px;
    text-align: left;
}

.form-body {
    padding: 25px;
    text-align: left;
}

.form-group label {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
}

.form-body .form-group {
    margin-bottom: 30px;
}

.form-group label {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    display: block;
    line-height: normal;
    margin: 0 0 5px;
}

.form-body .form-group .form-control {
    border-radius: 6.504px;
    border: 0.813px solid #E3E3E3;
    background: #FFF;
    padding: 0px 13px;
    width: 100%;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
}

select {
    appearance: none;
    background-image: url(../../assets/img/select-arrow.svg) !important;
    background-position: right !important;
    background-repeat: no-repeat !important;
}

.seprater {
    border: 0.813px solid #F5F5F5;
    background: #F6F6F6;
    height: 4px;
    margin: 10px 0;
    display: block;
}

.form-body .form-group:last-child {
    margin-bottom: 0;
}

.label-dflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group span {
    color: #4A4B51;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-body .form-group textarea.form-control {
    height: 75px;
}

.form-inline {
    display: flex;
    width: 100%;
    column-gap: 30px;
}

.col-6 {
    width: 50%;
}

.ethnicity-category ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ethnicity-category ul li {
    display: inline-block;
    background: #FFF;
    padding: 0;
    position: relative;
    min-width: 105px;
}

.check-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.ethnicity-category ul li span {
    width: 100%;
    border-radius: 6.504px;
    border: 0.813px solid #E3E3E3;
    display: inline-block;
    color: #4A4B51;
    text-align: center;
    font-size: 14.2px;
    font-style: normal;
    font-weight: 500;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    box-sizing: border-box;
}

input[type="radio"]:checked+span {
    border: solid 1px #00873C;
    color: #00873C;
}

input[type="checkbox"]:checked+span {
    border: solid 1px #00873C;
    color: #00873C;
}

.ethnicity-category ul li a {
    width: 100%;
    display: inline-block;
    color: #4A4B51;
    text-align: center;
    font-size: 14.2px;
    font-style: normal;
    font-weight: 500;
    height: 36px;
    line-height: 36px;
}

.ethnicity-category ul li a:hover {
    color: #00873C;
    border-color: #00873C;
}

.capcha-section {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 30px;
}

.capcha-section .form-control {
    border-radius: 6.504px;
    border: 0.813px solid #E3E3E3;
    background: #FFF;
    height: 36px;
    padding: 0 13px;
    box-sizing: border-box;
}

.thm-btn {
    display: inline-flex;
    height: 36px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8.13px;
    flex-shrink: 0;
    border-radius: 6.504px;
    background: #00873C;
    border: none;
    color: #fff;
    cursor: pointer;
}

.terms-polocy {
    border-radius: 10px;
    border: 0.616px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 2.464px 14.783px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.terms-body-wrapper {
    width: 80%;
    padding: 16px;
    text-align: left;
}

.terms-body-wrapper h4 {
    color: #4A4B51;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 5px;
}

.terms-body-wrapper p {
    margin: 0 0 20px;
    color: #292929;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.terms-body-wrapper ul {
    padding-left: 20px;
    margin: 0;
}

.terms-body-wrapper ul li {
    color: #292929;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.terms-body-wrapper h5 {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.step-form-btn {
    text-align: center;
    margin-top: 30px;
}

.msform fieldset {
    border: 0 none;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
}

/*Hide all except first fieldset*/

.msform fieldset:not(:first-of-type) {
    display: none;
}

/*buttons*/

.msform .action-button {
    width: 135px;
    height: 40px;
    padding: 0px 20px;
    margin: 30px auto 0;
    display: inline-flex;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 6.504px;
    border: solid 1px #00873C;
    color: #00873C;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #fff;
}

.msform .action-button:hover,
.msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27ae60;
}

#progressbar {
    overflow: hidden;
    counter-reset: step;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 50px;
    padding: 0;
    position: relative;
}

#progressbar::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f5f5f5;
}

#progressbar li {
    list-style-type: none;
    position: relative;
    width: 33.333%;
    display: inline-block;
    text-align: center;
}

#progressbar li.active span {
    background: #00873C;
    color: #fff;
}

#progressbar li:first-child {
    text-align: left;
}

#progressbar li:last-child {
    text-align: right;
}

#progressbar li span {
    border-radius: 40px;
    border: 1.249px solid #F5F5F5;
    background: #F5F5F5;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    column-gap: 10px;
    color: #666;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#progressbar li.active span .active-icon {
    display: block;
}

.active-icon {
    display: none;
}

#progressbar li.active span .default-icon {
    display: none;
}

.profile-photo-information {
    border-radius: 16px;
    border: 0.813px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.253px 19.517px 0px rgba(0, 0, 0, 0.03);
    padding: 20px 30px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.profile-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.label-info {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 5px 0;
}

.profile-wrapper .col-4 {
    width: 33.333%;
}

.label-info label {
    color: #4A4B51;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.label-info h5 {
    color: #030303;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.upload-img-box {
    border-radius: 16.24px;
    border: 1.624px dashed #E6E6EC;
    background: #FFF;
    box-shadow: 0px 3.248px 19.488px 0px rgba(0, 0, 0, 0.03);
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.upload-img-box h5 {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 5px 0 15px;
}

.browse-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    column-gap: 10px;
}

.browse-btn .pip {
    width: 20%;
    margin-top: 15px;
    position: relative;
    z-index: 222;
}

.browse-btn .pip img {
    width: 100%;
}

span.remove {
    position: absolute;
    top: -3px;
    right: -5px;
    background: #00873c;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    border-radius: 30px;
    z-index: 333;
    cursor: pointer;
}

.upload-img-box .btn {
    border-radius: 6.496px;
    border: 0.812px solid #F5F5F5;
    background: #FFF;
    width: 180px;
    height: 45px;
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.recent-box-title ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 0;
    padding: 0;
}

.recent-box-title ul li {
    list-style: none;
}

.recent-box-title h4 {
    color: #666;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 0;
    column-gap: 5px;
    cursor: pointer;
}

.recent-box-title h4 span {
    line-height: 14px;
}

.recent-upload-list {
    display: flex;
    width: 100%;
    gap: 13px;
    flex-wrap: wrap;
}

.recent-img {
    width: 210px;
    height: 150px;
}

.recent-img img {
    border-radius: 7.298px 7.298px 0px 0px;
    background: url(<path-to-image>), lightgray 0px -1.153px / 100% 210.086% no-repeat;
    height: 100%;
    width: 100%;
}

.recent-box-title {
    border: 0.456px solid #F5F5F5;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    position: relative;
}

.browse-btn input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 11;
    cursor: pointer;
}

.upload-file-detail {
    text-align: center;
    margin-top: 20px;
}

.upload-file-detail ul {
    margin: 0px;
    padding: 0;
    width: 100%;
    display: block;
}

.upload-file-detail ul li {
    display: inline-block;
    color: #292929;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
}

.upload-file-detail ul li span {
    position: relative;
}

.upload-file-detail ul li span::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.msform .action-button.thm-btn {
    background: #00873C;
    color: #fff;
    margin-left: 10px;
}

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    position: relative;
}

.checkbox-custom+.checkbox-custom-label:before,
.radio-custom+.radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #33373A;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
}

.radio-custom:checked+.radio-custom-label:before {
    background: #00873C;
    box-shadow: inset 0px 0px 0px 4px #fff;
    border-color: #00873C;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    background: #00873C;
    box-shadow: inset 0px 0px 0px 4px #fff;
    border-color: #00873C;
}

.radio-inline-list {
    display: flex;
    column-gap: 100px;
}

.advert-position {
    display: flex;
    width: 100%;
    column-gap: 40px;
    flex-wrap: wrap;
}

.advert-position .radio-field {
    display: flex;
    width: 45%;
    margin: 20px 0;
}

.advert-title h5 {
    color: #000;
    font-size: 14.662px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 5px;
}

.advert-title p {
    color: #292929;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.292px;
    margin: 0;
}

.point-list label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #292929;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 30px;
}

.point-list label:last-child {
    margin-bottom: 0;
}

.loss-point {
    color: #F5545E !important;
}

.profit-point {
    color: #3DAA60 !important;
}

.content .switchSmall {
    display: inline-block;
    margin: 30px 25px;
}

.switchSmall input {
    display: none;
}

.switchSmall small {
    display: inline-block;
    width: 47px;
    height: 26px;
    background: #38454F;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.switchSmall small:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #E0E1E2;
    border-radius: 50%;
    top: 4px;
    left: 5px;
    transition: .3s;
    box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}

.switchSmall input:checked~small {
    background: #00863c;
    transition: .3s;
}

.switchSmall input:checked~small:before {
    transform: translate(16px, 0px);
    transition: .3s;
}

.toste-body-part {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.toste-message {
    border-radius: 15.111px;
    border: 0.756px solid #F5F5F5;
    background: #ECFBE5;
    box-shadow: 0px 3.022px 18.133px 0px rgba(0, 0, 0, 0.03);
    padding: 15px;
    max-width: 1080px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

form.msform {
    position: relative;
}

.toste-img {
    border-radius: 15.111px;
    border: 0.756px solid #F5F5F5;
    background: rgba(255, 255, 255, 0.40);
    width: 110px;
    height: 110px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toste-details {
    width: calc(100% - 260px);
    padding-right: 100px;
}

.toste-details h4 {
    color: #26A91B;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 5px;
}

.toste-details p {
    color: #030303;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.156px;
    margin: 0;
}

.web-hide {
    display: none;
}

.recent-box-title ul li a span {
    display: none;
}

.social-links.mobile a img {
    max-width: 22px;
}

.mobile-number .form-group {
    display: flex;
    column-gap: 15px;
}

.mobile-number label {
    color: #4A4B51;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 5px;
    display: block;
}

.mobile-number .form-group button.btn.thm-btn {
    padding: 8px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.mobile-number {
    margin-bottom: 15px;
}

.otp-number label {
    display: block;
    color: #4A4B51;
    font-size: 14.634px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}

.otp-number .form-group button.btn.thm-btn {
    padding: 8px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.otp-number .form-group {
    display: flex;
    column-gap: 15px;
    margin-bottom: 0;
    width: 100%;
}

.otp-field {
    display: flex;
    width: 100%;
    column-gap: 30px;
}

.otp-number p {
    text-align: right;
    width: calc(100% - 115px);
    margin: 5px 0;
    color: #4A4B51;
    font-size: 14.634px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-body .otp-number .form-group .form-control {
    text-align: center;
}

button.search-btn {
    border: none;
    background: transparent;
    padding: 5px;
    cursor: pointer;
}

.step-heading p {
    color: #333;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.active-tb {
    display: none;
}

/*******Dashboard css Start*********/

.dashboard-tabs ul.ui-tabs-nav {
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #F5F5F5;
    background: #F6F6F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    box-sizing: border-box;
    margin: 0 0 40px;
}

.dashboard-tabs ul.ui-tabs-nav li {
    display: inline-block;
}

.dashboard-tabs ul.ui-tabs-nav li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 15px;
    border-bottom: solid 3px transparent;
}

.dashboard-tabs ul.ui-tabs-nav li a span img {
    max-width: 24px;
}

.dashboard-tabs ul.ui-tabs-nav li.ui-tabs-active a {
    border-bottom: solid 3px #00873C;
    color: #00873C;
}

.dashboard-tabs ul.ui-tabs-nav li.ui-tabs-active a .active-tb {
    display: block;
}

.dashboard-tabs ul.ui-tabs-nav li.ui-tabs-active a .default-tb {
    display: none;
}

.dashboard-tabs ul.ui-tabs-nav li a span {
    display: flex;
}

.Verify-profile-wrapper {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.dashboard-profile-info h3 {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 5px;
}

.dashboard-profile-info p {
    color: #292929;
    font-size: 14.634px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.456px;
    margin: 0;
}

.btn-start {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 15px;
}

.btn-start .thm-btn {
    color: #FFF;
    font-size: 16.01px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: auto;
    padding: 10px 30px;
}

.dashboard-grid-box {
    display: flex;
    column-gap: 30px;
}

.dashboard-grid-box .add-form-section {
    width: 25%;
}

.dashboard-grid-box .add-form-section label {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: #292929;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.456px;
}

.border-line-btn {
    border-radius: 6.496px;
    border: 0.812px solid #00873C;
    color: #00873C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    width: 100%;
    background: transparent;
    padding: 15px;
    margin-top: 25px;
}

.dashboard-grid-box .add-form-section label span {
    color: #4A4B51;
    text-align: right;
    font-size: 21.111px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.dashboard-grid-box .add-form-section p {
    color: #292929;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.5px;
    margin: 0;
    min-height: 80px;
}

.dashboard-tabs ul.inner-tabs li a {
    border-radius: 40px;
    border: 1.302px solid #F5F5F5;
    background: #F5F5F5;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 25px;
}

.dashboard-tabs ul.inner-tabs li.ui-tabs-active a {
    color: #00873C;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
}

/*******Dashboard css End*****/

/*****Add Css Start*******/

.dashboard-tabs ul.inner-tabs {
    background: transparent;
    justify-content: center;
    column-gap: 30px;
    border: none;
    border-radius: 0;
}

.outer-line {
    border-radius: 4.928px;
    border: 1px solid #00873C;
    background: #FFF;
    color: #00873C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 6px 25px;
}

.post-date-title h5 {
    margin: 0;
    color: #4A4B51;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.post-date-title span {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.post-date-title {
    display: flex;
    column-gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.post-left-img {
    width: 310px;
    height: 220px;
    flex-shrink: 0;
}

.post-left-img img {
    max-width: 100%;
    border-radius: 16px;
    height: 100%;
}

.post-list-detail {
    width: 100%;
    margin-top: 5px;
}

.post-list-detail h5 {
    color: #4A4B51;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.post-list-detail h3 {
    color: #4A4B51;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    line-height: 36px;
}

.post-list-detail p {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 15px;
}

.location {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

/*.location span {
        border-radius: 4px;
        background: #F6F6F6;
        display: inline-flex;
        padding: 4px 8px;
        justify-content: center;
        align-items: center;
        gap: 7px;
    }*/

.location span img {
    width: 16px;
}

.preview-add-box {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border: 0.812px solid #F5F5F5;
    background: #F6F6F6;
    padding: 10px;
}

.preview-add-box ul {
    display: flex;
    margin: 0;
    padding: 0;
    column-gap: 30px;
    align-items: center;
}

.preview-add-box ul li {
    display: inline-block;
}

.preview-add-box ul li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #4A4B51;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.preview-add-box ul li a span {
    line-height: 16px;
}

.post-list-view {
    display: flex;
    column-gap: 25px;
}

.preview-add-box .outer-line {
    color: #00873C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 15px 24px;
}

.tab2-sec .form-body {
    padding: 15px 20px 24px;
}

.inner-ad-list {
    border-radius: 16.26px;
    border: 0.813px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.252px 19.513px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

button.btn.outer-line.fill-btn {
    background: #00873C;
    color: #fff;
}

.right-add-publish {
    display: flex;
    column-gap: 10px;
}

/*****credit tabs css******/

.form-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-title a {
    color: #00873C;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 25px;
}

.form-body h6 {
    color: #4A4B51;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.payment-method-wrapper {
    display: flex;
    column-gap: 60px;
    justify-content: space-between;
    width: 100%;
}

.payment-mod {
    border-radius: 16.24px;
    border: 0.812px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.248px 19.488px 0px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 20px 30px;
    width: 50%;
}

.payment-mod h4 {
    color: #4A4B51;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 25px;
}

.qr-code-img {
    border-radius: 16.24px;
    border: 7.81px solid #F5F5F5;
    box-shadow: 0px 3.248px 19.488px 0px rgba(0, 0, 0, 0.03);
    width: 305px;
    height: 305px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-form-section.web-box-shadow-hide {
    box-shadow: none;
    border: none;
    margin-bottom: 0;
}

.add-form-section.web-box-shadow-hide .form-body {
    padding: 25px 0;
}

/*****transition history css*****/

.transition-section a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #00873C;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.transition-table table.table {
    width: 100%;
}

.transition-table table.table th {
    text-align: left;
    padding: 6px 20px;
    color: #4A4B51;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0.812px solid #F5F5F5;
    border-right: none;
    border-left: none;
}

.transition-table table.table tr td {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 20px;
    border: 0.812px solid #F5F5F5;
    border-right: none;
    border-left: none;
}

.transition-table table.table tr.credit td {
    color: #00BD08;
}

.transition-table table.table tr.debit td {
    color: #BD3900;
}

.transition-table table.table tr:last-child td {
    border-bottom: none;
}

.transition-section {
    margin-bottom: 40px;
}

.transition-table table.table .blank-transition td h4 {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.transition-table table.table tr:last-child td {
    border-bottom: none;
}

.blank-transition {
    border-radius: 16.24px;
    border: 0.812px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.248px 19.488px 0px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 50px 0;
}

.no-data {
    border-radius: 10.501px;
    background: rgba(243, 243, 243, 0.32);
    display: inline-flex;
    padding: 22.051px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.25px;
}

.blank-transition h4 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/******product css******/

.product-slider {
    height: 340px;
    overflow: hidden;
    width: 100%;
}

.product-slider img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.product-information {
    padding: 15px;
}

.product-information h3 {
    color: #4A4B51;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 5px;
}

.product-information h4 {
    color: #4A4B51;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 10px;
}

.product-information p {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.product-information ul {
    display: flex;
    column-gap: 40px;
    padding-left: 15px;
}

.product-information ul li {
    color: #4A4B51;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-grid-box {
    display: flex;
    column-gap: 30px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-grid-box .add-form-section {
    width: 48%;
}

.product-grid-box .add-form-section .form-body ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.product-grid-box .add-form-section .form-body ul li {
    display: inline-block;
    color: #4A4B51;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 50%;
    text-align: center;
    border: 0.812px solid #F5F5F5;
    background: transparent;
    padding: 8px 10px;
}

.product-grid-box .add-form-section .form-body {
    padding: 0;
}

.product-add-btn {
    text-align: center;
    margin-bottom: 40px;
}

.product-add-btn .btn.thm-btn {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 15px 40px;
    height: auto;
}

/*******change password css******/

.change-password-box {
    text-align: center;
    padding: 50px 0;
}

.change-password-box button.btn.thm-btn {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: auto;
    padding: 15px 40px;
}

.change-password-box h5 {
    color: #4A4B51;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

label.switchSmall.error_terms_border small {
    border: solid 2px #ff0000;
}

/********modal css*********/

.custom-modal {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 60%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.custom-modal-dialog {
    max-width: 620px;
    width: 100%;
    border-radius: 0px;
    position: relative;
}

.custom-modal-content {
    background: #ffffff;
    padding: 0px;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #f56142;
    opacity: 1;
    color: #ffffff;
    border-radius: 100%;
    border: 2px solid #ffffff;
    z-index: 9;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
    padding: 0;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.custom-modal {
    opacity: 0;
    visibility: hidden;
}

body.modal-open .custom-modal {
    opacity: 1;
    visibility: visible;
}

.custom-modal .custom-modal-dialog {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.modal-header {
    padding: 15px 20px;
    background: #f5f5f5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-header h4 {
    margin: 0;
}

.custom-modal-body {
    padding: 30px;
    min-height: 130px;
}

.modal-footer {
    border-top: solid 1px #eee;
    padding: 10px 20px;
    text-align: right;
}

.modal-open .custom-modal {
    z-index: 1111;
}

button.btn.thm-btn.cancel-btn {
    border: solid 1px #00873C;
    background: transparent;
    color: #00873C;
    margin-right: 10px;
}

.is-visible .recent-box-title {
    background: #f5f5f5;
    border: 0.456px solid #00873c;
}

/* 07-02-2024 */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, ">")
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.container {
    padding: 0 15px;
    width: auto;
}

.header .container {
    width: 100%;
}

/*****login page css*******/

.login-section {
    text-align: center;
    padding: 40px 0;
}

.login-section h2 {
    font-size: 40px;
    margin: 0 0 30px;
    line-height: 60px;
}

.like-inner-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16.26px;
    border: 0.813px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.252px 19.513px 0px rgba(0, 0, 0, 0.03);
    padding: 15px 40px 15px 20px;
    column-gap: 15px;
}

.like-content-wrapper {
    display: flex;
    justify-content: center;
}

.like-icon {
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 10px;
    background: rgba(224, 254, 237, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-box {
    max-width: 520px;
    margin: 40px auto 0;
    border-radius: 16.26px;
    border: 0.813px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0px 3.252px 19.513px 0px rgba(0, 0, 0, 0.03);
    padding: 40px;
}

.capcha-img {
    border-radius: 6.504px;
    border: 0.813px solid #E3E3E3;
    background: #FFF;
    height: 36px;
    padding: 0 13px;
    box-sizing: border-box;
    position: relative;
    min-width: 180px;
}

.capcha-img button {
    position: absolute;
    top: 0;
    right: 0;
    background: #00873C;
    border: solid 1px #00873C;
    height: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    min-width: 35px;
}

.capcha-load-deta {
    margin-top: 7px;
    float: left;
    letter-spacing: 6px;
    font-size: 14px;
}

.capcha-img button {
    position: absolute;
    top: 0;
    right: 0;
    background: #00873C;
    border: solid 1px #00873C;
    height: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    min-width: 35px;
}

.capcha-img button img {
    margin-top: 4px;
}

.w-100 {
    width: 100%;
}

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

.login-form-box .thm-btn {
    padding: 15px;
    height: auto;
    font-weight: 600;
    font-size: 13px;
}

.login-form-box p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #4A4B51;
}

.login-form-box a {
    color: #00873C;
    font-size: 12px;
    font-weight: 600;
}

.password-instraction {
    border-radius: 6px;
    background: #FAF9F9;
    padding: 10px 15px;
}

.password-instraction ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.password-instraction ul li {
    color: #9099A5;
    font-size: 12px;
    line-height: 20px;
}

.login-form-box.register-box {
    max-width: 1040px;
    padding: 0;
    display: flex;
}

.form-body.left-signup-form {
    border-right: solid 1px #F5F5F5;
    padding: 40px 60px 40px 40px;
}

.login-form-box.register-box .form-body.left-signup-form {
    width: 42%;
}

.signup-right-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-left: 40px;
}

.steps-section fieldset {
    padding: 0;
    border: none;
    margin: 0;
    position: inherit !important;
}

.like-inner-box h4 {
    color: #00873C;
    font-size: 18px;
}

li.filter-btn-wid.fillter-res-none .thm-btn {
    padding: 3px 0px;
    font-weight: 600;
    font-size: 16px;
}

.slick-prev,
.slick-next {
    width: 25px;
    height: 25px;
    background: #00873c;
    border-radius: 50%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: #00873c;
}

.border-0 {
    border: 0 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.location-sec.bg-transparent {
    background-color: transparent !important;
}

.recommended-banner .slick-next {
    right: 10px;
    top: 40%;
    z-index: 1;
}

.recommended-banner .slick-prev {
    left: 5px;
    z-index: 1;
    top: 40%;
}

.slick-next:before {
    content: "";
    background: url(../../assets/img/arrow-right.png);
    width: 15px;
    height: 15px;
    display: block;
    background-position: center !important;
    position: absolute;
    top: 6px;
    left: 6px;
    background-size: 90% !important;
    background-repeat: no-repeat;
}

.slick-prev:before {
    content: "";
    background: url(../../assets/img/arrow-left.png);
    width: 15px;
    height: 15px;
    display: block;
    background-position: center !important;
    position: absolute;
    top: 6px;
    left: 5px;
    background-size: 90% !important;
    background-repeat: no-repeat;
}

section.worldide-wrapper.popular-wrapper {
    margin-top: 0;
    padding-top: 0;
}

section.list-banner.list-sec-wed {
    padding-bottom: 0;
}

/******Modal Page Css******/

.custom-modal-body .form-control {
    border-radius: 6.504px;
    border: 0.813px solid #E3E3E3;
    background: #FFF;
    padding: 0px 13px;
    width: 100%;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
}

.modal {
    padding: 0;
}

/*******Blog Page Css********/

.blog-banner {
    display: inline-block;
    width: 100%;
    height: 392px;
    overflow: hidden;
}

.blog-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-banner-cta ul {
    margin: -6px 0 0 0;
    padding: 0;
    background: #F6F6F6;
}

.blog-banner-cta ul li {
    display: inline-block;
}

.blog-banner-cta ul li a {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 24px;
    display: inline-block;
    color: #4A4B51;
}

.blog-banner-cta ul li a.active {
    border-bottom: solid 3px #00873C;
    color: #00873C;
}

.blog-wrapper-section {
    display: flex;
    width: 100%;
    column-gap: 24px;
    margin-top: 40px;
}

.blog-left-grid {
    display: flex;
    width: calc(100% - 380px);
    gap: 30px;
    flex-wrap: wrap;
}

.blog-left-grid-system {
    width: 70%;
}

.blog-box {
    width: 47%;
    border: solid 1px #F5F5F5;
    border-radius: 16px;
    background: #fff;
}

.blog-img {
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.blog-img img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-information {
    padding: 12px 12px 12px;
}

.blog-information h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #4A4B51;
    text-transform: capitalize;
}

.post-time {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
}

.post-time span {
    color: #4A4B51;
    font-size: 13px;
    font-weight: 500;
}

.blog-information p {
    margin: 0;
    font-size: 13px;
    color: #4A4B51;
}

.blog-right-box {
    width: 30%;
}

.blog-flg-box h3 {
    font-size: 20px;
    margin: 0 0 30px;
    color: #4A4B51;
    font-weight: 600;
}

.blog-flg-box {
    border: solid 1px #F5F5F5;
    border-radius: 16px;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 3.24792px 19.4875px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.flag-img {
    display: flex;
    column-gap: 15px;
}

.blog-flg-box.blog-recent-box {
    padding: 0;
}

.blog-flg-box.blog-recent-box h3 {
    padding: 12px 20px;
    margin-bottom: 15px;
}

.blog-recent-box ul {
    padding: 0;
    margin: 0;
}

.blog-recent-box ul li {
    display: inline-block;
    color: #4A4B51;
    border-bottom: solid 1px #E3E3E3;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.blog-recent-box ul li:last-child {
    border: none;
    margin: 0;
}

.blog-recent-box ul li a {
    color: #00873C;
}

.blog-flg-box.blog-recent-box .social-links a {
    display: flex;
    width: 100%;
    align-items: center;
    column-gap: 15px;
    padding: 0px 20px 25px;
}

.blog-flg-box.blog-recent-box .social-links {
    flex-wrap: wrap;
    margin: 0;
}

/********Blog Details*******/

.blog-header-breadcrumb {
    padding-top: 0;
    text-align: left;
    display: inline-block;
    width: 100%;
    padding-bottom: 30px;
}

.post-date-blog {
    margin-bottom: 30px;
    margin-top: 10px;
}

.post-date-blog span {
    font-weight: 500;
    padding-right: 10px;
}

.blog-header-breadcrumb ol.breadcrumb {
    margin: 0;
    justify-content: left;
}

.breadcrumb li,
.breadcrumb li a {
    font-weight: 500;
}

.blog-left-grid-system p {
    margin-bottom: 1.5rem;
}

.large-img img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.post-detail-time {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.post-detail-time span {
    background: #FAF9F9;
    padding: 6px 20px;
    text-align: center;
    color: #4A4B51;
    font-size: 12px;
    font-weight: 500;
}

.blog-right-detail-info {
    width: calc(100% - 65px);
}

.blog-right-detail-info h5 {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    color: #4A4B51;
}

.blog-right-detail-info h3 {
    color: #4A4B51;
    font-size: 18px;
    margin: 10px 0 0;
}

.post-detail-time b {
    display: block;
    font-size: 20px;
    color: #4A4B51;
}

.large-img {
    margin-bottom: 40px;
}

.blog-large-grid p {
    margin: 0 0 30px;
    color: #4A4B51;
    font-size: 14px;
    padding-right: 40px;
}

.category-col {
    box-sizing: border-box;
    width: 50%;
    background: #FFFFFF;
    border: 0.811979px solid #F5F5F5;
    box-shadow: 0px 3.24792px 19.4875px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    align-items: center;
    display: flex;
    padding: 20px;
    column-gap: 15px;
}

.category-col a {
    width: calc(100% - 40px);
    color: #00873C;
    font-size: 13px;
}

.category-col span {
    box-sizing: border-box;
    display: flex;
    width: 35px;
    height: 35px;
    background: #FFFFFF;
    border: 0.811979px solid #F5F5F5;
    box-shadow: 0px 3.24792px 19.4875px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.blog-grid-category {
    display: flex;
    column-gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

@media(max-width: 479px) {
    .blog-banner {
        height: 140px;
    }
    .blog-banner-cta ul li a {
        font-size: 14px;
        padding: 6px 10px;
    }
    .blog-wrapper-section {
        width: 100%;
        column-gap: 0;
        margin-top: 40px;
        flex-wrap: wrap;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .blog-left-grid {
        display: flex;
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .blog-box {
        width: 100%;
    }
    .blog-information h3 {
        font-size: 14px;
    }
    .blog-information p {
        font-size: 12px;
    }
    .post-time span {
        font-size: 12px;
    }
    .blog-img {
        height: 220px;
    }
    .blog-flg-box h3 {
        font-size: 16px;
        margin: 0 0 15px;
    }
    .blog-flg-box.blog-recent-box h3 {
        margin-bottom: 0;
    }
    .large-img img {
        height: 220px;
    }
    .blog-right-detail-info h3 {
        font-size: 14px;
        margin: 5px 0 0;
    }
    .large-img {
        margin-bottom: 20px;
    }
    .blog-large-grid p {
        margin: 0 0 20px;
        font-size: 14px;
        padding-right: 0px;
    }
    .blog-large-grid h3 {
        font-size: 16px;
        margin: 0 0 10px;
    }
    .blog-grid-category {
        gap: 10px;
        flex-wrap: wrap;
    }
    .category-col {
        width: 100%;
    }
}

.blog-large-grid p b {
    font-size: 16px;
    font-weight: 700;
}

.blog-label-sec a {
    border: solid 1px #F7F7F7;
    background: #F7F7F7;
    padding: 6px 9px;
    font-weight: 500;
    font-size: 14px;
    color: #2F2C2C;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.blog-label-sec a:hover {
    border-color: #00873C;
    color: #00873C;
}

h1 {
    padding: 0px 0px 15px 0px;
}

h2 {
    padding: 0px 0px 15px 0px;
}

h4 {
    margin: 15px 0px 10px 0px;
}

label {
    font-weight: 500;
}

.post-time.user-name-date {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.cat-tag,
.cat-tag a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

#loading-bar-spinner .spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    position: fixed;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
    transform: translate(-50%, -50%);
}

.loader {
    width: 100%;
    position: fixed;
    top: 0px;
    height: 100vh;
    left: 0px;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.3);
}

#loading-bar-spinner .spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #00873C !important;
    border-left-color: #00873C !important;
    border-radius: 50%;
}

@@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.pagination>li {
    display: inline;
    border-radius: 0;
    border: 0;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-radius: 0;
    border: 0;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
    font-weight: 500;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 3px 10px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #38c476;
    text-decoration: none;
    background-color: #fff;
    border-radius: 0;
    border: 0;
    font-weight: 500;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 0;
    color: #38c476;
    cursor: default;
    background-color: #ebebeb;
    border-color: #ebebeb;
    font-weight: 500;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination-footer {
    text-align: center;
    width: calc(100% - 380px);
    margin-top: 10px;
}

.copyrights-footer {
    background-color: #f3f3f3;
    padding: 15px 0;
}

.blog-label-sec h4 {
    font-weight: 500;
    font-size: 18px;
    margin: 15px 0;
}

.previous-next-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-right: 10px;
}

.previous-next-link a {
    font-weight: 500;
    cursor: pointer
}

.header-search-top {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.select-box .form-control {
    border: none;
    border-bottom: solid 1px #38c476;
    padding-bottom: 5px;
    min-width: 220px;
    padding-left: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #494949;
    appearance: auto;
}

.select-box .form-control:hover,
.select-box .form-control:focus {
    outline: none;
    box-shadow: none;
}

.header-search-top button.search-btn {
    background: #38c476;
    color: #fff;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 40px;
    font-size: 16px;
}

.previous-next-link.next-btn {
    justify-content: end;
}

.search-sec-icon {
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
}

.search-sec-icon img {
    width: 20px;
    height: 20px;
}

.pagination-footer-mob {
    display: none;
}