* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Override WordPress global layout flow margins */
:root :where(.is-layout-flow)>* {
    margin-block-start: 0;
    margin-block-end: 0;
}

p.news-form-placeholder {
    text-align: center;
}

/* Remove auto margins from constrained layout */
.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.pricing-features figure {
    margin-bottom: 0px;
}

.pricing-pro-plan.pricing-card ul li:nth-child(-n+3) img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(77%) saturate(284%) hue-rotate(353deg) brightness(103%) contrast(103%);
}

.pricing-pro-plan.pricing-card ul li:nth-child(n + 4) img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(17%) saturate(663%) hue-rotate(305deg) brightness(116%) contrast(95%);
}

:root {
    /* comman color */
    --white: #fff;
    --black: #000;
    --light-white: #DDDDDD;

    /* theme color */
    --deep-green: #1F6E58;
    --soft-cream: #F9F9F6;
    --accent-yellow: #FFD56F;
    --text-gray: #4A4A4A;
    --text-light-gray: #6C757D;
    --on-surface: #1E1B13;
    --light-green: #EBF7ED;

    /* font-size */
    /* 16 -> 14 */
    --tx-16: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
    /* 18 -> 16 */
    --tx-18: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
    /* 20 -> 18 */
    --tx-20: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
    /* 22 -> 20 */
    --tx-22: clamp(1.25rem, 1.2143rem + 0.1786vw, 1.375rem);
    /* 24 -> 21 */
    --tx-24: clamp(1.3125rem, 1.2589rem + 0.2679vw, 1.5rem);
    /* 26 -> 22 */
    --tx-26: clamp(1.375rem, 1.3036rem + 0.3571vw, 1.625rem);
    /* 28 -> 24 */
    --tx-28: clamp(1.5rem, 1.4286rem + 0.3571vw, 1.75rem);
    /* 34 -> 24 */
    --tx-34: clamp(1.5rem, 1.3214rem + 0.8929vw, 2.125rem);
    /* 36 -> 26 */
    --tx-36: clamp(1.625rem, 1.4464rem + 0.8929vw, 2.25rem);
    /* 42 -> 28 */
    --tx-42: clamp(1.75rem, 1.5rem + 1.25vw, 2.625rem);
    /* 50 -> 34 */
    --tx-50: clamp(2.125rem, 1.8393rem + 1.4286vw, 3.125rem);
    /* 56 -> 36 */
    --tx-56: clamp(2.25rem, 1.8929rem + 1.7857vw, 3.5rem);
}

.f-link a {
    color: var(--soft-cream) !important;
}

body {
    font-family: 'Bricolage Grotesque';
    background-color: var(--soft-cream);
    color: var(--text-gray);
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 15px;
}

:is(p, h1, h2, h3, h4, h5, h6) {
    margin: 0;
}

span {
    letter-spacing: 0px;
}

p {
    font-weight: 500;
    font-size: var(--tx-16);
    line-height: 100%;
    letter-spacing: 0%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}
.py {
    padding-block: 60px;
}

.pt {
    padding-top: 60px;
}

.pb {
    padding-bottom: 60px;
}

.light_white {
    background-color: #fff !important;
}

.light_green {
    background-color: var(--light-green);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.values {
    padding-top: 50px;
}

/* transitions */
.top-bar-wrapper,
.header-main {
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease, maxHeight 0.3s ease;
}

.home header.scroll-state {
    transition: all 0.3s ease;
}

.home header.scroll-state {
    background-color: var(--deep-green);
}

.home header.scroll-state .header-main .header-wrapper {
    border-image-slice: 0;
}

header.scroll-state .top-bar-wrapper {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
}

header.scroll-state .header-main {
    transform: translateY(0);
    opacity: 1;
}

header.show-topbar .top-bar-wrapper {
    transform: translateY(0);
    opacity: 1;
    max-height: fit-content;
}

.home header .top-bar-wrapper {
    background-color: transparent;
}

header .top-bar-wrapper {
    background-color: var(--deep-green);
}

header .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-block: 7.5px;
}

header .top-bar .contact-info-wrapper .wp-block-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

a.contact-info {
    display: inline-flex;
    gap: 8px;
}

header .top-bar .contact-info-wrapper {
    display: inline-flex;
    color: var(--soft-cream);
    gap: 8px;
}

header .top-bar .contact-info-wrapper a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in;
    color: var(--soft-cream);
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
}

header .top-bar .contact-info-wrapper a:hover {
    color: var(--accent-yellow);
}



header .top-bar .contact-info-wrapper a img,
header .top-bar .social-info .social-icon img {
    width: 18px;
    height: 18px;
}

header .top-bar .contact-info-wrapper a:not(:last-child) {
    padding-right: 27px;
    border-right: 1px solid var(--soft-cream);
}

header .top-bar .social-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

header .top-bar .social-info p {
    color: var(--soft-cream);
}

header .top-bar .social-info .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home header .header-main {
    background-color: transparent;
    box-shadow: none;
}

.home header .header-wrapper {
    border-top: 2px solid transparent;
    border-image-source: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            #ffffff 50%,
            rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

header .header-main {
    background-color: var(--soft-cream);
    box-shadow: 0px 2px 10px 0px #00000040;
}

header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-block: 22px;
}

.wp-block-site-logo a img {
    width: 170px;
    height: 25px;
}

/* Front page logo - show on front page only */
.front-page-logo {
    display: none;
    width: 170px;
    height: 25px;
}

.front-page-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.home .front-page-logo {
    display: block;
}

.home .site-logo-default {
    display: none;
}

/* Default site logo - show on all pages except front page */
.front-page-logo {
    display: none;
}

header ul.wp-block-navigation {
    display: flex;
    align-items: center;
    gap: 43px;
}

header ul.wp-block-navigation li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--deep-green);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease-in;
}

.home header ul.wp-block-navigation li a span {
    color: var(--soft-cream);
}

header ul.wp-block-navigation li a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header ul.wp-block-navigation li a:hover::after,
header ul.wp-block-navigation li.current-menu-item a::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

header ul.wp-block-navigation li a:hover {
    color: var(--accent-yellow);
}

header ul.wp-block-navigation li.current-menu-item a {
    font-weight: 800;
}

.hero {
    padding: 250px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.contact-detils .wp-block-cover__inner-container.is-layout-flow.wp-block-cover-is-layout-flow {
    justify-content: center;
    display: flex;
}
.hero::after {
    content: '';
    background: linear-gradient(270deg, rgba(31, 110, 88, 0) 0%, rgba(31, 110, 88, 0.8) 42%, #1F6E58 100%);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

}

.hero-wrapper {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-title {
    font-weight: 600 !important;
    font-size: var(--tx-20) !important;
    line-height: 130% !important;
    color: var(--deep-green) !important;
}

.hero-wrapper .hero-sub-title {
    color: var(--accent-yellow);
    margin-left: 0 !important;
}

.hero-wrapper h1 {
    font-size: var(--tx-56);
    font-weight: 700;
    line-height: 140%;
    color: var(--soft-cream);
}

.hero-wrapper h1 strong {
    color: var(--accent-yellow);
}

.mobile-colse,
.mobile-menu {
    display: none;
}

.hero-wrapper p {
    font-weight: 500;
    font-size: 18px;
    line-height: 142%;
    color: var(--light-white);
}

.hero-wrapper .btns-wrapper {
    margin-top: 20px;
    margin-left: 0px !important;
}

.btns-wrapper {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.btn .wp-element-button,
.contact-form .btn,
.subscribe-box .btn,
.contact-form-detils button {
    outline: none;
    padding: 8px 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: var(--tx-18);
    line-height: 28px;
    transition: all 0.3s ease-in;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.hero .wp-block-cover__inner-container {
    z-index: 1;
}

.yellow-btn .wp-element-button,
.contact-form .yellow-btn,
.subscribe-box .yellow-btn,
.contact-form-detils button {
    background-color: var(--accent-yellow);
    color: var(--deep-green);
    border-color: transparent;
    box-shadow: 0px 20px 25px -5px #0000001A, 0px 8px 10px -6px #0000001A;
}

.yellow-btn .wp-element-button:hover,
.contact-form .yellow-btn:hover,
.subscribe-box .yellow-btn:hover,
.contact-form-detils button:hover {
    background-color: var(--deep-green);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.green-btn .wp-element-button {
    background-color: var(--deep-green);
    color: var(--accent-yellow);
    border-color: transparent;
    box-shadow: 0px 20px 25px -5px #0000001A, 0px 8px 10px -6px #0000001A;
}

.green-btn .wp-element-button:hover {
    background-color: var(--accent-yellow);
    border-color: var(--deep-green);
    color: var(--deep-green);
}

.white-btn .wp-element-button {
    background-color: transparent;
    border-color: var(--soft-cream);
    color: var(--soft-cream);
}

.white-btn .wp-element-button:hover {
    background-color: var(--soft-cream);
    border-color: transparent;
    color: var(--deep-green);
}

.white-fill-btn .wp-element-button {
    background-color: var(--soft-cream);
    border-color: transparent;
    color: var(--deep-green);
}

.white-fill-btn .wp-element-button:hover {
    background-color: transparent;
    border-color: var(--soft-cream);
    color: var(--soft-cream);
}

.home .stats-section {
    margin-top: -130px;
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
}

.stats-card {
    box-shadow: 0px 4px 10px 0px #00000040;
    background-color: #F5FBF6;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 16px;
}

.stats-card .stat-item {
    padding: 20px 20px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-card .stat-item:nth-child(4n + 1) {
    padding-left: 0;
}

.stats-card .stat-item:nth-child(4n) {
    padding-right: 0;
}

.stats-card .stat-item:not(:nth-child(4n)) {
    border-right: 1px solid transparent;
    border-image-source: linear-gradient(180deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%);
    border-image-slice: 1;
}

.stats-card .stat-icon {
    width: 70px;
    height: 70px;
}

.stats-card .stat-item h2 {
    font-size: var(--tx-42);
    font-weight: 800;
    line-height: 100%;
    color: var(--deep-green);
}

.stats-card .stat-item h2 span {
    color: var(--accent-yellow);
}

.stats-card .stat-item p {
    font-weight: 600;
    font-size: var(--tx-18);
    line-height: 100%;
    color: var(--text-gray);
}

.wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.why-choos-img {
    width: calc(40% - 20px);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.why-choos-content {
    width: calc(60% - 20px);
    display: flex;
    flex-direction: column;
}

.why-choos-img img,
.why-choos-img figure.wp-block-image,
.service-providers .service-provider img,
.service-providers .service-provider figure.wp-block-image {
    object-fit: cover;
    height: 100%;
    border-radius: inherit;
    width: 100%;
}

.why-choos-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.73%, #000000 87.4%);
}

.why-choos-img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-choos-img-content h3 {
    font-size: var(--tx-26);
    font-weight: 700;
    line-height: 100%;
    color: var(--soft-cream);
}

.why-choos-img-content p {
    font-weight: 500;
    font-size: var(--tx-18);
    color: var(--accent-yellow);
    line-height: 120%;
}

.why-choos-img-content .btn {
    margin-top: 10px;
}

.why-choos-content .sub-title {
    color: var(--deep-green);
}

.why-choos-content h2 {
    font-size: var(--tx-36);
    color: var(--text-gray);
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 10px;
}

.why-choos-content p,
.why-choos-step p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--text-gray);
}

.why-choos-step p {
    font-weight: 400;
    margin-top: 10px;
}

.why-choos-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.why-choos-step {
    padding-inline: 20px;
    padding-block: 20px;
}

.why-choos-step:nth-child(2n - 1) {
    padding-inline-start: 0;
}

.why-choos-step:not(:nth-child(2n)):nth-last-child(-n + 2) {
    background:
        linear-gradient(180deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) right / 2px 100% no-repeat;
}

.why-choos-step:nth-child(2n):not(:nth-last-child(-n + 1)) {
    background:
        linear-gradient(90deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) bottom / 100% 2px no-repeat;
}

.why-choos-step:not(:nth-last-child(-n + 2)) {
    background:
        linear-gradient(180deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) right / 2px 100% no-repeat, linear-gradient(90deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) bottom / 100% 2px no-repeat;
}

.why-choos-step:last-child:nth-child(2n - 1) {
    background: linear-gradient(180deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) right / 0px 100% no-repeat, linear-gradient(90deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) bottom / 100% 0px no-repeat !important;
    grid-column: span 2;
}

.why-choos-step:nth-child(2n) {
    padding-inline-end: 0;
}

.why-choos-step .num-box {
    width: 80px;
    height: 80px;
    border-radius: 5px 5px 20px 5px;
    background: var(--soft-cream);
    box-shadow: 0px 10px 30px 0px #6875A11A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-style: Italic;
    font-size: var(--tx-26);
    line-height: 100%;
    color: var(--deep-green);
    margin-bottom: 20px;
}

.why-choos-step h3 {
    font-size: var(--tx-22);
    font-weight: 600;
    line-height: 100%;
    color: var(--text-gray);
}

.service-wrapper,
.comman-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.title h2,
.cta-wrapper h2 {
    max-width: 100% !important;
    font-weight: 600;
    font-size: var(--tx-36);
    line-height: 130%;
    color: var(--text-gray);
}

.title p {
    max-width: 835px;
    margin: 0 auto !important;
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 142%;
    text-align: center;
}

.cta-wrapper h2 {
    color: var(--soft-cream);
}

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

.service-providers .service-provider:nth-child(4n + 1),
.service-providers .service-provider:nth-child(4n + 4) {
    grid-column: span 1;
}

.service-providers .service-provider:nth-child(4n + 2),
.service-providers .service-provider:nth-child(4n + 3) {
    grid-column: span 2;
}

.service-providers .service-provider {
    height: 350px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.service-providers .service-provider::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.67%, #000000 100%);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-providers .service-provider img {
    border-radius: inherit;
}

.service-providers .service-provider .content {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: calc(100% - 110px);
    z-index: 1;
    transform: translateX(-50%);
}

.service-providers .service-provider h3 {
    font-size: var(--tx-22);
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: var(--soft-cream);
}

.action-btn {
    width: 55px;
    height: 55px;
    background-color: var(--soft-cream);
    border-radius: 20px 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
}

.action-btn::after {
    content: '';
    width: 39px;
    height: 35px;
    position: absolute;
    bottom: 54px;
    right: -1px;
    background-image: url('data:image/svg+xml,<svg width="194" height="169" viewBox="0 0 194 169" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M193.394 29.7209C193.394 -84.7788 193.394 168.471 193.394 168.471C193.394 168.471 -95.928 168.471 33.1793 168.471C162.287 168.471 193.394 144.221 193.394 29.7209Z" fill="%23F9F9F6"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.action-btn::before {
    content: '';
    width: 39px;
    height: 35px;
    position: absolute;
    bottom: -1px;
    right: 54px;
    background-image: url('data:image/svg+xml,<svg width="194" height="169" viewBox="0 0 194 169" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M193.394 29.7209C193.394 -84.7788 193.394 168.471 193.394 168.471C193.394 168.471 -95.928 168.471 33.1793 168.471C162.287 168.471 193.394 144.221 193.394 29.7209Z" fill="%23F9F9F6"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.action {
    width: 45px !important;
    height: 45px !important;
    border-radius: 11px;
    background-color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
}

.service-providers .service-provider:hover .action,
.service-providers .service-provider:hover .action-btn {
    opacity: 1;
    transform: translateY(0);
}

.action svg {
    width: 20px;
    height: 20px;
}

.cta-wrapper {
    padding: 60px 70px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    gap: 16px;
    min-height: auto;
}

.cta-wrapper p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--soft-cream);
}

.cta .btns-wrapper {
    margin-top: 20px;
    gap: 20px;
}

.sec_hero_wrapper h1 strong {
    color: var(--wp--preset--color--deep-green) !important;
    font-weight: 600;
}

.review-contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-left {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.review-left-box {
    padding: 30px;
    border-radius: 35px;
    background-color: var(--light-green);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-left-box h3 {
    font-weight: 600;
    font-size: var(--tx-28);
    line-height: 160%;
    color: var(--text-gray);
}

.review-left-box .big-text {
    font-size: clamp(3.125rem, 2.5893rem + 2.6786vw, 5rem);
    color: var(--text-gray);
    line-height: 120%;
}

.review-left-box p {
    font-weight: 400;
    font-size: var(--tx-22);
    line-height: 160%;
}

.review-right .review-item {
    border-radius: 35px;
    background-color: var(--deep-green);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.review-right .review-item .review-content p,
.owner-title p {
    font-weight: 400;
    font-size: var(--tx-28);
    line-height: 160%;
    color: var(--soft-cream);
}

.owner-title p {
    font-weight: 600;
}

.review-owner .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-owner .rating img {
    width: 30px;
    height: 30px;
}

.review-owner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-owner img {
    width: 92px;
    height: 92px;
    flex: none;
    border-radius: 50%;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.review-right.swiper {
    height: 100%;
    margin: unset !important;
    padding-bottom: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-yellow);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -4px);
    position: relative;
}

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

.blog-item {
    background-color: var(--light-green);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item img {
    min-height: 200px;
    height: auto;
}

.blog-item .blog-img {
    position: relative;
    font-size: 0;
}

.blog-item .blog-img::after {
    position: absolute;
    background: #00000040;
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.blog-tag-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.blog-tags .tag {
    padding: 8px 10px;
    border-radius: 45px;
    background-color: var(--accent-yellow);
    font-weight: 400;
    font-size: var(--tx-16);
    line-height: 100%;
    color: var(--text-gray);
}

.blog-tag-timer .time {
    font-weight: 600;
    font-size: var(--tx-16);
    line-height: 19.2px;
    flex: none;
}

.blog-content h3 {
    font-weight: 600;
    font-size: var(--tx-24);
    line-height: 28.8px;
    color: var(--deep-green);
}

.blog-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--text-light-gray);
}

.blog-user-read {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.blog-user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-user img {
    width: 30px;
    height: 30px;
    min-height: unset;
    border-radius: 50%;
}

.blog-user p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-gray);
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.2px;
    color: var(--deep-green);
}

.blog-read-more svg {
    width: 12px;
    height: 12px;
    flex: none;
}

.blog-wrapper .yellow-btn .wp-element-button {
    width: fit-content;
    margin: 0 auto;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-template-areas:
        "left right";
}

.contact-form {
    grid-area: left;
}

.contact-img {
    grid-area: right;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field {
    position: relative;
}

.field input,
.field textarea,
.field select {
        font-family: 'Bricolage Grotesque';
    width: 100%;
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-green);
    background-color: var(--soft-cream);
    border: 1px solid #1F6E58B2;
    border-radius: 15px;
    outline: none;
}

.field input[type="date"] {
    appearance: none;
    -moz-appearance: textfield;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_704_4520)"><path d="M20.9062 1.875H18.75V0.75C18.75 0.335812 18.4142 0 18 0C17.5858 0 17.25 0.335812 17.25 0.75V1.875H6.75V0.75C6.75 0.335812 6.41423 0 6 0C5.58577 0 5.25 0.335812 5.25 0.75V1.875H3.09375C1.38783 1.875 0 3.26283 0 4.96875V20.9062C0 22.6122 1.38783 24 3.09375 24H20.9062C22.6122 24 24 22.6122 24 20.9062V4.96875C24 3.26283 22.6122 1.875 20.9062 1.875ZM3.09375 3.375H5.25V4.125C5.25 4.53919 5.58577 4.875 6 4.875C6.41423 4.875 6.75 4.53919 6.75 4.125V3.375H17.25V4.125C17.25 4.53919 17.5858 4.875 18 4.875C18.4142 4.875 18.75 4.53919 18.75 4.125V3.375H20.9062C21.7851 3.375 22.5 4.08994 22.5 4.96875V6.75H1.5V4.96875C1.5 4.08994 2.21494 3.375 3.09375 3.375ZM20.9062 22.5H3.09375C2.21494 22.5 1.5 21.7851 1.5 20.9062V8.25H22.5V20.9062C22.5 21.7851 21.7851 22.5 20.9062 22.5Z" fill="%231F6E58"/></g><defs><clipPath id="clip0_704_4520"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: top 23px right 20px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.field input::placeholder,
.field textarea::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-green);
}
input[type=number] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
}

.contact-img img {
    border-radius: 15px;
}

.new-letter {
    padding-block: 150px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.new-letter .wp-block-cover__inner-container {
    z-index: 1;
}

.new-letter::after {
    position: absolute;
    content: '';
    inset: 0;
    background: #00000080;
}

.new-letter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;

    max-width: 991px;
    margin: 0 auto;
}

.new-letter-wrapper h2 {
    font-size: var(--tx-50);
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    color: var(--soft-cream);
}

.subscribe-box p {
    position: relative;
    max-width: 648px;
    width: 100%;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    background: var(--soft-cream);
    border-radius: 50px;
    padding: 0 0 0 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
span.wpcf7-spinner {
    position: absolute;
    right: 0;
}
.subscribe-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 19px 24px;
    font-size: 16px;
    background-color: transparent;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 110.00000000000001%;
}

.subscribe-box input::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 110.00000000000001%;
}

.subscribe-box .btn {
    padding: 14px 36px;
}

footer {
    background-color: var(--deep-green);
    padding-block-end: 20px;
}

.f-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.f-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}


.f-contects {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-contects .f-contect {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-contects .f-contect svg {
    flex: none;
}

.f-contects a {
    font-weight: 500;
    font-size: var(--tx-20);
    line-height: 100%;
    color: var(--soft-cream);
}

.f-social {
    display: flex;
    align-items: center;
}

.f-social li {
    padding-inline: 15px;
    display: flex;
}

.f-social li:not(:last-child) {
    border-right: 1px solid #DDDDDD;
}

.f-social li:first-child {
    padding-inline-start: 0;
}

.f-social li:last-child {
    padding-inline-end: 0;
}

.f-middle-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.f-middle-bar .f-detils {
    grid-column: span 2;
}

.f-middle-bar .f-detils p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--soft-cream);
    padding-right: 100px;
    border-right: 1px solid #DDDDDD;
    height: 100%;
}

.f-middle-bar .f-links {
    grid-column: span 3;
    padding-left: 80px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.f-middle-bar .f-links .f-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-middle-bar .f-links .f-link .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--accent-yellow);
    text-align: left;
}

.f-middle-bar .f-links .f-link ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.f-middle-bar .f-links .f-link ul li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--soft-cream);
    transition: all 0.3s ease;
}

.f-middle-bar .f-links .f-link ul li a:hover {
    color: var(--accent-yellow);
}

.site-footer .wp-block-social-links .wp-social-link svg {
    height: 2em;
    width: 2em;
}

.f-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #DDDDDD;
}

.f-bottom-bar p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--soft-cream);
}

.f-bottom-bar ul {
    display: flex;
    align-items: center;
}

.f-bottom-bar ul li {
    padding-inline: 12px !important;
    border-radius: 0px;
}

.f-bottom-bar ul li:not(:last-child) {
    border-right: 1px solid #ddd;
}

.f-bottom-bar ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: var(--accent-yellow);
}

.f-bottom-bar ul li:first-child {
    padding-inline-start: 0;
}

.f-bottom-bar ul li:last-child {
    padding-inline-end: 0;
}

.sec_hero {
    background-color: var(--light-green);
    padding: 200px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sec_hero::after,
.sec_hero::before {
    content: '';
    width: 700px;
    height: 600px;
    background-image: url(../img/hero_bg_patten.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.sec_hero::after {
    top: 50%;
    transform: translateY(-50%);
    left: -350px;
}

.sec_hero::before {
    top: 50%;
    transform: translateY(-50%);
    right: -350px;
}

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

.blog-deatils-page .sec_hero_wrapper h1 {
    max-width: 1200px;
}

.sec_hero_wrapper h1 {
    font-size: var(--tx-50);
    font-weight: 600;
    line-height: 138%;
    color: var(--text-gray);
}

.sec_hero_wrapper h1 span {
    color: var(--deep-green);
}

.sec_hero_wrapper p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--text-gray);
    max-width: 1120px;
}

.about-page .why-choos-img::after {
    display: none;
}

.about-page .why-choos-img,
.about-page .why-choos-content {
    width: calc(50% - 20px);
}

.about-page .why-choos-img img {
    height: auto;
    display: flex;
    align-items: center;
}

.values-wrapper {
    padding-bottom: 200px !important;
}

.values-content-wrapper {
    background-color: var(--deep-green);
}

.values-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -200px !important;
    gap: 20px;
}

.values-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.values-item img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0px 10px 10px 0px #0000006B;
}

.values-item-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.values-item-content h3 {
    font-weight: 700;
    font-size: var(--tx-22);
    line-height: 100%;
    color: var(--accent-yellow);
}

.values-item-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--soft-cream);
}

.experts-content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1092px;
    margin: 0 auto;
    gap: 20px;
}

.expert-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.expert-item::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.04%, #1F6E58 100%);
    inset: 0;
}

.expert-item img {
    height: 488px;
}

.expert-item .expert-content {
    padding: 16px 24px;
    background-color: var(--soft-cream);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    z-index: 2;
}

.expert-content .expert-user h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.expert-content .expert-user p {
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    color: var(--deep-green);
}

.expert-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.export-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-social a {
    display: flex;
}

.wellness-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
    background-color: var(--light-green);
    padding: 50px;
    gap: 30px;
}

.wellness-left .title,
.wellness-left .title p {
    text-align: left;
    align-items: flex-start;
    margin: 0;
    max-width: 100%;
}

.wellness-image {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    height: 265px;
}

.wellness-image::after {
    width: calc(100% - 20px);
    height: 100%;
    position: absolute;
    content: '';
    top: 20px;
    right: 0;
    z-index: -1;
    border-radius: 20px;
    background-color: var(--deep-green);
}

.wellness-image figure {
    border-radius: 20px;
    width: calc(100% - 20px);
    overflow: hidden;
    height: 100%;
}

.wellness-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    gap: 24px;
}

.wellness-right .wellness-card {
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 4px 4px 20px 0px #0000004D;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.wellness-right .wellness-card:nth-child(1) {
    left: 0;
    top: -5%;
}

.wellness-right .wellness-card:nth-child(2) {
    left: 50px;
    top: 34%;
}

.wellness-right .wellness-card:nth-child(3) {
    left: 50px;
    top: 73%;
}

.wellness-right .wellness-card:nth-child(4) {
    left: 0;
    top: 112%;
}

.wellness-right .wellness-card .wellness-img {
    width: 67px;
    height: 67px;
    position: relative;
    z-index: 1;
    flex: none;
}

.wellness-right .wellness-card .wellness-img figure {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
}

.wellness-right .wellness-card .wellness-img::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    content: '';
    top: 4px;
    right: 0;
    z-index: -1;
    border-radius: 8px;
    background-color: var(--deep-green);
    box-shadow: 0px 2px 4px 0px #0000006B;

}

.wellness-right .wellness-card .wellness-content h3 {
    font-weight: 600;
    font-size: var(--tx-26);
    line-height: 100%;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.wellness-right .wellness-card .wellness-content p {
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--text-gray);
}

.wellness-service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.wellness-service-item {
    display: flex;
    align-items: center;
    position: relative;
}

.wellness-service-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.wellness-service-img {
    width: 60%;
    position: relative;
    z-index: 1;
    height: 600px;
}

.wellness-service-img::after {
    width: calc(100% - 30px);
    height: 100%;
    position: absolute;
    content: '';
    top: 30px;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    background-color: var(--light-green);
    border: 2px dashed var(--deep-green);
}

.wellness-service-item:nth-child(2n) .wellness-service-img::after {
    right: 0;
    left: auto;
}

.wellness-service-img figure {
    border-radius: 20px;
    width: calc(100% - 30px);
    margin-left: auto;
    display: block;
    height: 100%;
    overflow: hidden;
}

.wellness-service-item:nth-child(2n) .wellness-service-img figure {
    margin-right: auto;
    margin-left: unset;
}

.wellness-service-content {
    width: 70%;
}

.pricing-card .wp-block-buttons,
.pricing-card .btn {
    width: 100%;
    display: block;
}

.wellness-service-content {
    width: 60%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 20px;
    background-color: var(--light-green);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wellness-service-item:nth-child(2n) .wellness-service-content {
    right: auto;
    left: 0;
}

.wellness-service-content .title {
    align-items: start;
    text-align: left !important;
    gap: 2px;
}

.wellness-service-content .title p {
    margin-left: 0px !important;
}

.wellness-service-content .title .sub-title {
    margin: 0;
}

.wellness-service-content .title h2 {
    font-size: var(--tx-34);
}

.wellness-service-content p {
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 142%;
}

.wellness-service-content p:not(:last-child) {
    margin-bottom: 14px;
}

.wellness-service-content .wp-block-button {
    width: fit-content;
    margin-top: 10px;
}

.pricing-wrapper .toggle {
    display: inline-flex;
    background: var(--light-green);
    border-radius: 16px;
    padding: 10px;
    width: fit-content;
    margin: 0 auto;
}


.pricing-wrapper .toggle button {
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    color: var(--text-gray);
    font-weight: 500;
    font-size: var(--tx-24);
    line-height: 100%;
}

.pricing-wrapper .toggle button.active {
    background: var(--accent-yellow);
    font-weight: 700;
}

.pricing-wrapper .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 30px;
    padding-top: 40px;
}

.pricing-wrapper .pricing-cards .pricing-card .pricing-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-wrapper .pricing-cards .pricing-card {
    border-radius: 25px;
    padding: 28px 40px;
    background-color: var(--light-green);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-wrapper .pricing-cards .pricing-card .pricing-title h3 {
    font-weight: 600;
    font-size: var(--tx-28);
    line-height: 100%;
    color: var(--deep-green);
}

.pricing-wrapper .pricing-cards .pricing-card .pricing-title p {
    font-weight: 500;
    font-size: 16px;
    line-height: 142%;
    color: var(--text-gray);
}

.pricing-wrapper .pricing-cards .pricing-card .pricing {
    display: flex;
    align-items: baseline;
    padding-bottom: 24px;
    background: linear-gradient(90deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) bottom / 100% 2px no-repeat;
}

.pricing-wrapper .pricing-cards .pricing-card .pricing p {
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--deep-green);
}

.pricing-wrapper .pricing-cards .pricing-card .pricing .duration {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
}

.pricing-wrapper .pricing-cards .pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pricing-wrapper .pricing-cards .pricing-card ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--text-gray);
}

.pricing-wrapper .pricing-cards .pricing-card ul li strong {
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    color: var(--deep-green);
}

.pricing-wrapper .pricing-cards .pricing-card .btn {
    font-weight: 500;
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan {
    padding-block: 40px;
    background-color: var(--deep-green);
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan .pricing-title h3,
.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan .pricing p,
.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan ul li strong {
    color: var(--accent-yellow);
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan .pricing-title p,
.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan ul li {
    color: var(--soft-cream);
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan .pricing {
    background: linear-gradient(90deg, #FFD56F00 0%, #FFD56F 50%, #FFD56F00 100%) bottom / 100% 2px no-repeat;
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan ul li strong path[fill="#1F6E58"] {
    fill: var(--accent-yellow);
}

.pricing-wrapper .pricing-cards .pricing-card.pricing-pro-plan ul li strong path[fill="#4A4A4A"] {
    fill: var(--soft-cream);
}

.blog-section .blog-wrapper,
.blog-details-section .blog-details-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.blog-section .blog-wrapper .blog-left,
.blog-details-left {
    grid-column: span 2;
}

.blog-details-top {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-detail-tag-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-detail-tag-date .blog-detail-tag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-detail-tag-date .blog-detail-tag a {
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    color: var(--deep-green);
}

.blog-detail-tag-date .blog-detail-tag a:not(:last-child):after {
    content: '|';
    padding-left: 5px;
}

.blog-section .blog-wrapper .blog-left .blog-result-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-section .blog-wrapper .blog-left .blog-result-search .result {
    font-weight: 600;
    font-size: 20px;
    line-height: 110.00000000000001%;
    color: var(--deep-green);
}

.blog-section .blog-wrapper .blog-left .blog-result-search select {
    width: 200px;
    padding: 12px 20px;
    border: 1px solid var(--deep-green);
    outline: none;
    border-radius: 18px;
    background: var(--white);
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 9.5L12 15.5L6 9.5H18Z" fill="%231F6E58" stroke="%231F6E58" stroke-width="2" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: top 5px right 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 110.00000000000001%;
    color: var(--text-gray);
}

.blog-section .blog-wrapper .blog-left .blog-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pagination,
.wp-block-query-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: var(--text-gray);
    border: 1px solid #F1F1F1;
    cursor: pointer;
}

.page-numbers.current {
    background-color: var(--accent-yellow);
    color: var(--deep-green);
    border: none;
}

.bg-wraperr {
    padding: 25px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bg-wraperr h3 {
    font-weight: 600;
    font-size: var(--tx-28);
    line-height: 110.00000000000001%;
    color: var(--text-gray);
}

.blog-right,
.blog-details-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-item input {
    border: 1px solid var(--accent-yellow);
    border-radius: 10px;
    background-color: var(--white);
    padding: 12px 20px;
    width: 100%;
    outline: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 110.00000000000001%;
    color: var(--text-gray);
    background-image: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_704_3841)"><path d="M4.02469 8.04613C4.91849 8.04616 5.78675 7.74793 6.4919 7.19871L9.15222 9.85903C9.35096 10.051 9.66763 10.0455 9.85957 9.84672C10.0468 9.65286 10.0468 9.34552 9.85957 9.15168L7.19925 6.49136C8.56212 4.73697 8.24476 2.20993 6.49036 0.847052C4.73597 -0.515826 2.20895 -0.198459 0.846075 1.55593C-0.516803 3.31033 -0.199436 5.83737 1.55496 7.20024C2.26126 7.74894 3.1303 8.04659 4.02469 8.04613ZM1.88714 1.88658C3.06769 0.706017 4.98173 0.705995 6.16229 1.88654C7.34286 3.06708 7.34288 4.98112 6.16234 6.16169C4.98179 7.34225 3.06775 7.34228 1.88719 6.16173L1.88714 6.16169C0.7066 4.98975 0.699645 3.08268 1.87159 1.90214L1.88714 1.88658Z" fill="%231F6E58"/></g><defs><clipPath id="clip0_704_3841"><rect width="10" height="10" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: top 12px right 15px;
    background-size: 12px;
}

.search-item input::placeholder {
    font-weight: 500;
    font-size: 12px;
    line-height: 110.00000000000001%;
    color: var(--text-gray);
}

.categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.categories li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 110.00000000000001%;
    color: var(--text-gray);
}

.categories li .categorie-img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories li .categorie-img img {
    width: 22px;
    height: 22px;
}

.stat-item img {
    width: auto;
}

.recent-posts-wrapper,
.recent-posts ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-posts-wrapper .recent-post,
.recent-posts-wrapper .recent-post .wp-block-post-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-posts-wrapper .recent-post .wp-block-post-title {
    flex-direction: column;
    align-items: start;
    gap: 6px;
}

.recent-posts-wrapper .recent-post figure,
.recent-posts-wrapper .recent-post figure a,
.recent-posts-wrapper .recent-post figure a img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.recent-posts-wrapper .recent-post .wp-block-post-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 114.99999999999999%;
    color: var(--text-gray);
}

.recent-posts-wrapper .recent-post .wp-block-post-date {
    font-weight: 400;
    font-size: 10px;
    line-height: 110.00000000000001%;
    color: var(--deep-green);
}

.tags-wrapper .wp-block-tag-cloud {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.tags-wrapper .wp-block-tag-cloud .tag-cloud-link {
    background-color: var(--light-green);
    padding: 8px 12px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 10px !important;
    line-height: 16px;
    color: var(--black);
}

.blog-deatil-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-deatil-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex: none;
}

.blog-deatil-user .user-title h2 {
    font-weight: 600;
    font-size: var(--tx-20);
    line-height: 18px;
    color: var(--deep-green);
    margin-bottom: 5px;
}

.blog-deatil-user .user-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--text-gray);
}

.blog-detail-date {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}

.blog-detail-date svg {
    width: 24px;
    height: 24px;
    flex: none;
}

.blog-detail-date p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 100%;
    color: var(--text-gray);
}

.blog-details-img {
    height: 500px;
}

.blog-details-img img {
    border-radius: 20px;
}

.blog-details-left {
    color: var(--text-gray);
}

.blog-details-left :is(h2, h3, h4, h5, h6, p, ul, img):not(:last-child) {
    margin-bottom: 20px !important;
}

.blog-details-left :is(h2, h3, h4, h5, h6) {
    font-weight: 600;
    line-height: 130%;
}

.blog-details-left h2 {
    font-size: var(--tx-28);
}

.blog-details-left h3 {
    font-size: var(--tx-26);
}

.blog-details-left h4 {
    font-size: var(--tx-24);
}

.blog-details-left h5 {
    font-size: var(--tx-22);
}

.blog-details-left h6 {
    font-size: var(--tx-20);
}

.blog-details-left :is(p, span, li, a) {
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--text-gray);
}

.blog-details-left :is(b, strong) {
    color: var(--black);
}

.blog-details-left ul {
    padding-left: 24px;
}

.blog-details-left li {
    margin-bottom: 16px;
    list-style: disc;
}

.blog-details-left img {
    border-radius: 20px;
}

.contact-detils-form {
    background: var(--deep-green);
}

.contact-detils-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.contact-form-detils {
    padding-block: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-detils .title {
    align-items: start;
    text-align: left;
}

.contact-form-detils .title p {
    margin: 0;
    margin-left: 0px !important;
}

.contact-form-detils .title .sub-title {
    color: var(--accent-yellow) !important;
}

.contact-form-detils .title h2 {
    color: var(--soft-cream);
}

.contact-form-detils form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form-detils form .field.col-2,
.col-2 {
    grid-column: span 2;
}

.field select {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-green);
    background-color: var(--soft-cream);
    border: 1px solid #1F6E58B2;
    border-radius: 15px;
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.33491 8.75518C5.12047 8.96991 5 9.26111 5 9.56474C5 9.86837 5.12047 10.1596 5.33491 10.3743L12.1982 17.2447C12.4127 17.4593 12.7036 17.5799 13.0069 17.5799C13.3102 17.5799 13.6011 17.4593 13.8156 17.2447L20.6789 10.3743C20.8873 10.1583 21.0026 9.86909 21 9.56886C20.9974 9.26863 20.877 8.98143 20.665 8.76913C20.4529 8.55683 20.166 8.4364 19.8661 8.43379C19.5661 8.43118 19.2772 8.5466 19.0615 8.75518L13.0069 14.816L6.95236 8.75518C6.73785 8.54051 6.44695 8.41992 6.14363 8.41992C5.84032 8.41992 5.54942 8.54051 5.33491 8.75518Z" fill="black"/></svg>');
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: top 18px right 20px;
}

.contact-form-detils .field input,
.contact-form-detils .field textarea,
.contact-form-detils .field select {
    padding: 20px;
}

.contact-form-detils button {
    width: fit-content;
}

.contact-form-detils .field input:focus+label,
.contact-form-detils .field textarea:focus+label,
.contact-form-detils .field input:not(:placeholder-shown)+label,
.contact-form-detils .field textarea:not(:placeholder-shown)+label {
    background: var(--soft-cream);
}

.contact-detils {
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 40px;
}

.contact-detail-items {
    backdrop-filter: blur(42px);
    background: #ebf7ed87;
    width: 80%;
    padding: 50px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item:not(:last-child) {
    padding-bottom: 30px;
    background: linear-gradient(90deg,
            rgba(31, 110, 88, 0) 0%,
            #1F6E58 50%,
            rgba(31, 110, 88, 0) 100%) bottom / 100% 2px no-repeat;
}

.contact-detail-item h3 {
    font-weight: 600;
    font-size: var(--tx-26);
    line-height: 130%;
    color: var(--deep-green);
}

.contact-detail-dec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detil-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detil-icon svg,
.contact-detil-icon img {
    width: 40px;
    height: 40px;
}

.contact-detil-text p,
.contact-detil-text a {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    color: var(--text-gray);
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.not-found {
    padding: 200px 0 100px;
}

.not-found-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.not-found-wrapper img {
    max-width: 699px;
    margin: 0 auto;
}

.not-found-wrapper h1 {
    font-weight: 600;
    font-size: var(--tx-28);
    line-height: 138%;
    color: var(--deep-green);
}

.not-found-wrapper p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.coming-soon {
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    height: 100dvh;
    z-index: 1;
}

.coming-soon-1 {
    background-color: var(--soft-cream);
}

.coming-soon-1 .coming-soon-details .subscribe-box {
    background-color: var(--light-green);
}

.coming-soon::before {
    top: -100px;
    right: -295px;
    transform: rotate(185deg);
}

.coming-soon::after {
    top: 80%;
    transform: translateY(-50%);
    left: -200px;
}

.coming-soon::after,
.coming-soon::before {
    content: '';
    width: 700px;
    height: 600px;
    background-image: url(../img/hero_bg_patten.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.coming-soon .container {
    height: 100%;
}

.coming-soon-wrapper {
    height: 100%;
    text-align: center;
}

.coming-soon-details {
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding-block: 20px;
}

.coming-soon-details a img {
    max-width: 599px;
    margin: 0 auto 20px;
    height: auto;
}

.coming-soon-details h1 {
    font-size: var(--tx-56);
    font-weight: 700;
    line-height: 142%;
    letter-spacing: 0%;
    color: var(--text-gray);
    max-width: 1100px;
    margin: 0 auto;
}

.coming-soon-details h1 span {
    color: var(--deep-green);
}

.coming-soon-details p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    max-width: 685px;
    margin: 0 auto;
}

.coming-soon-details .subscribe-box {
    margin-top: 30px;
}

.contact-form-placeholder {
    font-size: 20px;
}

@media(max-width:1180px) {

    .wellness-right .wellness-card:nth-child(2),
    .wellness-right .wellness-card:nth-child(3) {
        left: 25px;
    }

    .pricing-wrapper .pricing-cards .pricing-card {
        padding: 24px;
    }
}

@media(max-width:1100px) {
    .wellness-right .wellness-card:nth-child(2) {
        top: 32%;
    }

    .wellness-right .wellness-card:nth-child(3) {
        top: 72%;
    }

    .wellness-service-content {
        padding: 30px;
    }

    .wellness-service-img {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    header .top-bar .contact-info-wrapper a:not(:last-child) {
        padding-right: 16px;
    }

    .btns-wrapper {
        gap: 24px;
    }

    .stats-card,
    .stats-card .stat-item {
        padding: 20px;
    }

    .stats-card .stat-icon {
        width: 50px;
        height: 50px;
    }

    .f-middle-bar .f-links {
        padding-left: 40px;
    }

    .f-middle-bar .f-detils p {
        padding-right: 50px;
    }

    .wellness-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        padding: 24px;
    }

    .wellness-right .wellness-card {
        position: unset;
        transform: unset;
        padding: 16px;
        border-radius: 12px;
        align-items: start;
    }

    .wellness-right {
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-image {
        height: 400px;
    }

    .wellness-service-wrapper {
        gap: 100px;
    }

    .coming-soon-details .subscribe-box {
        margin-top: 0;
    }

    .coming-soon-details a img {
        margin-bottom: 0;
    }

    .coming-soon::after,
    .coming-soon::before {
        width: 520px;
        height: 550px;
    }
}

@media(max-width:991px) {
    .hero {
        padding: 200px 0;
    }

    .wp-block-navigation__responsive-container-open svg {
        fill: var(--white);
    }

    .wp-block-navigation__responsive-container {
        display: none !important;
        left: -1000px;
        transition: all 0.6s ease-in;
        opacity: 0;
    }

    header ul.wp-block-navigation li a {
        color: var(--light-white) !important;
    }

    .wp-block-navigation__responsive-container.is-menu-open {
        position: fixed;
        top: 0;
        left: 0;
        transform: unset !important;
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 12px;
        padding-right: 12px;
        display: flex !important;
        flex-direction: column;
        gap: 28px;
        background: #fff;
        box-shadow: var(--shadow-custom);
        height: 100vh;
        width: 320px;
        opacity: 1;
        transition: all 0.6s ease-in;
        background-color: var(--deep-green) !important;

    }

    .wp-block-navigation__responsive-container-open,
    .wp-block-navigation__responsive-container-close {
        width: 34px !important;
        height: 34px !important;
        padding: inherit;
        background: var(--accent-yellow) !important;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: var(--deep-green) !important;
        flex: none;
    }

    header ul.wp-block-navigation {
        align-items: flex-start !important;
        width: 100%;
    }


    header ul.wp-block-navigation .wp-block-navigation-link.current-menu-item span::after {
        left: 120%;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%) scale(0);
    }
    header ul.wp-block-navigation li a:hover::after, 
    header ul.wp-block-navigation li a::after{
        transform: translateY(-50%) scale(1);
        left: 120%;
        top: 50%;
        bottom: unset;
    }
    .stats-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-card .stat-item {
        border-right: none !important;
    }

    .stats-card .stat-item:nth-child(3n + 1) {
        padding-left: 0;
    }

    .stats-card .stat-item:nth-child(3n) {
        padding-right: 0;
    }

    .stats-card .stat-item:not(:nth-child(3n)) {
        border-right: 1px solid transparent !important;
        border-image-source: linear-gradient(180deg,
                rgba(31, 110, 88, 0) 0%,
                #1F6E58 50%,
                rgba(31, 110, 88, 0) 100%);
        border-image-slice: 1;
    }

    .review-left-box,
    .review-right .review-item {
        padding: 20px;
        border-radius: 16px;
    }

    .blog-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-providers {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-providers .service-provider:nth-child(4n + 1),
    .service-providers .service-provider:nth-child(4n + 4),
    .service-providers .service-provider:nth-child(4n + 2),
    .service-providers .service-provider:nth-child(4n + 3) {
        grid-column: span 1;
    }

    .sec_hero {
        padding: 160px 0 60px;
    }

    .sec_hero::after,
    .sec_hero::before {
        width: 600px;
        height: 500px;
    }

    .values-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .wellness-service-img,
    .wellness-service-content {
        width: 70%;
    }
}

@media(max-width:860px) {
    .py {
        padding-block: 40px;
    }

    .pt {
        padding-top: 40px;
    }

    .pb {
        padding-bottom: 40px;
    }

    .why-choose-wrapper {
        gap: 20px;
    }

    .why-choos-img {
        width: 100%;
        min-height: 500px;
    }

    .why-choos-img-content {
        padding: 10px;
        gap: 3px;
    }

    .why-choos-content,
    .about-page .why-choos-img,
    .about-page .why-choos-content {
        width: 100%;
    }

    .about-page .why-choos-img {
        min-height: 1px;
    }

    .cta-wrapper {
        padding: 40px;
    }

    .review-contents {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "right"
            "left";
    }

    .field input,
    .field textarea {
        padding: 16px;
    }

    .field label {
        left: 16px;
    }

    .field input[type="date"] {
        background-position: top 16px right 20px;
    }

    .f-middle-bar .f-links {
        padding-left: 0;
    }

    .f-middle-bar .f-detils p {
        padding-right: 20px;
    }

    .f-wrapper {
        gap: 30px;
    }

    .experts-content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-right {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }

    .wellness-image {
        height: 300px;
        margin-top: 20px;
    }

    .wellness-service-wrapper {
        gap: 24px;
    }

    .wellness-service-item {
        flex-direction: column;
    }

    .wellness-service-item:nth-child(2n) {
        flex-direction: column;
    }

    .wellness-service-img {
        width: 100%;
    }

    .wellness-service-img {
        height: 450px;
    }

    .wellness-service-content {
        position: unset;
        transform: unset;
        width: 80%;
        margin-top: -15%;
        margin-left: auto;
        border-top-right-radius: 0;
        padding: 24px 16px;
    }

    .wellness-service-item:nth-child(2n) .wellness-service-content {
        margin-left: unset;
        margin-right: auto;
        border-top-left-radius: 0;
        border-top-right-radius: 20px;
    }

    .pricing-wrapper .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .blog-section .blog-wrapper,
    .blog-details-section .blog-details-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: baseline;
    }

    .blog-right,
    .blog-details-right {
        display: contents;
    }

    .search-item {
        order: 1;
        grid-column: span 2;
        padding: 0 !important;
    }

    .blog-left {
        order: 2;
    }

    .categories-wrapper {
        order: 3;
    }

    .recent-posts-wrapper-wrapper {
        order: 4;
    }

    .tags-wrapper {
        order: 5;
    }

    .pagination {
        justify-content: center;
    }

    .blog-details-top {
        grid-column: span 2;
    }

    .blog-details-wrapper .blog-details-top {
        order: 2;
    }

    .blog-details-wrapper .blog-details-left {
        order: 3;
    }

    .blog-details-wrapper .categories-wrapper {
        order: 4;
    }

    .blog-details-wrapper .recent-posts-wrapper-wrapper {
        order: 5;
    }

    .blog-details-wrapper .tags-wrapper {
        order: 6;
    }

    .blog-details-img {
        height: 350px;
    }

    .contact-detils-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .contact-form-detils {
        padding-block-end: 0;
    }

    .contact-detils {
        margin: 0 -15px;
    }
}

@media (max-width: 768px) {
    header .top-bar .contact-info-wrapper {
        gap: 10px;
    }

    header .top-bar .contact-info-wrapper a:not(:last-child) {
        padding-right: 10px;
    }

    header .top-bar .social-info p {
        display: none;
    }

    .new-letter {
        padding-block: 100px;
    }

    .f-middle-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .f-middle-bar .f-detils {
        grid-column: span 3;
    }

    .f-middle-bar .f-detils p {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .f-contects .f-contect svg {
        width: 26px;
        height: auto;
    }

    .sec_hero {
        padding: 140px 0 40px;
    }

    .wellness-service-img {
        height: 350px;
    }

    .wellness-service-img figure {
        width: calc(100% - 20px);
    }

    .wellness-service-img::after {
        top: 20px;
    }

    .wellness-service-content {
        width: 90%;
    }

    .coming-soon::after,
    .coming-soon::before {
        width: 480px;
        height: 490px;
    }

    .coming-soon-details a img {
        max-width: 380px;
    }

    .coming-soon-details h1 {
        line-height: 122%;
    }
}

@media(max-width:680px) {
    .btns-wrapper {
        gap: 16px;
    }

    .hero {
        padding: 150px 0;
    }

    .btn {
        padding: 8px 16px;
    }

    .review-owner img {
        width: 60px;
        height: 60px;
    }

    .blog-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .blog-content {
        padding: 16px 10px;
        gap: 10px;
    }

    .service-wrapper,
    .comman-wrapper {
        gap: 28px;
    }

    .service-providers {
        grid-template-columns: repeat(1, 1fr);
    }

    .f-contects a {
        font-size: 16px;
    }

    .f-contects .f-contect {
        gap: 7px;
    }

    .f-contects {
        gap: 10px;
    }

    .values-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-image {
        height: 250px;
    }

    .wellness-service-img {
        height: 300px;
    }

    .wellness-service-img figure,
    .wellness-service-img::after {
        border-radius: 10px;
    }

    .not-found {
        padding: 150px 0 50px;
    }
}

@media(max-width:640px) {
    .home .stats-section {
        margin-top: -100px;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card .stat-item,
    .stats-card .stat-item:not(:nth-child(3n)) {
        border-right: none !important;
    }

    .stats-card .stat-item:nth-child(2n + 1),
    .stats-card .stat-item:first-child {
        padding-left: 0 !important;
    }

    .stats-card .stat-item:nth-child(2n) {
        padding-right: 0;
    }

    .stats-card .stat-item:not(:nth-child(2n)) {
        border-right: 1px solid transparent !important;
        border-image-source: linear-gradient(180deg,
                rgba(31, 110, 88, 0) 0%,
                #1F6E58 50%,
                rgba(31, 110, 88, 0) 100%);
        border-image-slice: 1;
    }

    .stats-card .stat-item:nth-child(3n + 1) {
        padding-left: inherit;
    }

    .stats-card .stat-item:nth-child(3n) {
        padding-right: inherit;
    }

    .f-top-bar {
        display: contents;
    }

    .f-contects {
        order: 3;
        flex-wrap: wrap;
    }

    .f-middle-bar {
        grid-template-columns: repeat(3, 1fr);
        order: 2;
    }

    .f-bottom-bar {
        order: 4;
        flex-direction: column-reverse;
        align-items: end;
        padding-top: 0;
        border: none;
    }

    .f-wrapper {
        gap: 20px;
    }

    .f-bottom-bar p {
        width: 100%;
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid #DDDDDD;
    }

    .f-social {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .f-middle-bar .f-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .sec_hero_wrapper p br,
    .sec_hero_wrapper h1 br {
        display: none;
    }

    .sec_hero::after,
    .sec_hero::before {
        width: 400px;
        height: 400px;
    }

    .sec_hero::before {
        right: -250px;
    }

    .sec_hero::after {
        left: -250px;
    }

    .experts-content-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .wellness-service-item {
        gap: 50px;
    }

    .wellness-service-content {
        width: 100%;
        margin: 0;
        border-radius: 20px;
    }

    .wellness-service-img {
        height: 250px;
    }

    .pricing-wrapper .pricing-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-section .blog-wrapper,
    .blog-details-section .blog-details-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-section .blog-wrapper .blog-left,
    .search-item,
    .blog-details-left,
    .blog-details-top {
        grid-column: span 1;
    }

    .bg-wraperr {
        padding: 14px;
    }

    .blog-details-img {
        height: 300px;
    }


    .blog-details-left :is(h2, h3, h4, h5, h6, p, ul, img):not(:last-child) {
        margin-bottom: 14px !important;
    }

    .contact-form-detils form {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-form-detils form .field.col-2,
    .col-2 {
        grid-column: span 1;
    }

    .contact-detail-items {
        width: 95%;
    }

    .map-wrapper {
        height: 300px;
    }

    .coming-soon-details {
        justify-content: flex-start;
        gap: 30px;
        padding-block: 50px;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .coming-soon-details::-webkit-scrollbar {
        display: none;
    }
}

@media(max-width:500px) {
    header .top-bar .contact-info-wrapper {
        display: none;
    }

    header .top-bar .social-info p {
        display: block;
    }

    header .top-bar .social-info {
        width: 100%;
        justify-content: end;
    }

    .why-choos-steps {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 10px;
    }

    .why-choos-step {
        padding: 16px 0 !important;
    }

    .why-choos-step:not(:last-child) {
        background: linear-gradient(90deg,
                rgba(31, 110, 88, 0) 0%,
                #1F6E58 50%,
                rgba(31, 110, 88, 0) 100%) bottom / 100% 2px no-repeat !important;
    }

    .why-choos-step:not(:nth-last-child(-n + 2)),
    .why-choos-step:not(:nth-child(2n)):nth-last-child(-n + 2),
    .why-choos-step:nth-child(2n):not(:nth-last-child(-n + 2)) {
        background: none;
    }

    .why-choos-step:last-child:nth-child(2n - 1) {
        grid-column: span 1;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta .btns-wrapper {
        margin-top: 10px;
        gap: 16px;
    }

    .review-left-box {
        gap: 7px;
    }

    .review-right .review-item {
        gap: 12px;
    }

    .review-right .review-item .review-content p,
    .owner-title p {
        font-size: 18px;
    }

    .subscribe-box p {
        flex-direction: column;
        background-color: transparent;
        gap: 10px;
        padding: 0;
        box-shadow: none;
    }

    .subscribe-box input {
        border-radius: 50px;
        background-color: var(--soft-cream);
        width: 100%;
    }

    .subscribe-box .btn {
        width: 100%;
    }

    .f-middle-bar .f-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-items {
        grid-template-columns: repeat(1, 1fr);
        margin-top: -100px !important;
    }

    .values-item img {
        height: 250px;
    }

    .values-wrapper {
        padding-bottom: 100px !important;
    }
}

@media(max-width:425px) {
    .stats-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .stats-card .stat-item,
    .stats-card .stat-item:not(:nth-child(2n)) {
        border-right: none !important;
        text-align: center;
    }

    .stats-card .stat-icon {
        margin: 0 auto;
    }

    .stats-card .stat-item {
        padding: 16px 0 !important;
    }

    .blog-section .blog-wrapper .blog-left .blog-result-search {
        gap: 20px;
    }

    .blog-section .blog-wrapper .blog-left .blog-result-search select {
        width: 100%;
    }
}

@media(max-width:350px) {
    .btn {
        width: 100%;
    }
}