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

html {
    scroll-behavior: smooth;
}

: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 -> 22 */
    --tx-28: clamp(1.375rem, 1.2679rem + 0.5357vw, 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 -> 30 */
    --tx-50: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
    /* 56 -> 36 */
    --tx-56: clamp(2.25rem, 1.8929rem + 1.7857vw, 3.5rem);
}

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

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    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;
}

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

.py {
    padding-block: 60px;
}

.pt {
    padding-top: 60px;
}

.pb {
    padding-bottom: 60px;
}

.light_white {
    background-color: #fff;
}

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

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

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

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

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

.home-page 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-page 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 {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .top-bar .contact-info-wrapper a {
    display: inline-flex;
    gap: 8px;
}

header .top-bar .contact-info-wrapper a span {
    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 span:hover {
    color: var(--accent-yellow);
}

header .top-bar .contact-info-wrapper a,
header .top-bar .social-info .social-icon a {
    display: contents;
}

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-page header .header-main {
    background-color: transparent;
    box-shadow: none;
}

.home-page 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;
}

header .header-wrapper .logo {
    width: 170px;
    height: 25px;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 43px;
}

header nav ul li {
    position: relative;
}

header nav ul 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-page header nav ul li a {
    color: var(--soft-cream);
}

header nav ul 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 nav ul li a:hover::after,
header nav ul li a.active::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

header nav ul li a:hover {
    color: var(--accent-yellow);
}

header nav ul li a.active {
    font-weight: 800;
}

.header-social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav ul li.has-dropdown {
    position: relative;
    padding-right: 20px;
}

header nav ul li .sub-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background-color: var(--soft-cream);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

header nav ul li .sub-menu li a {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-green);
    transition: 0.3s;
}

header nav ul li.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header nav ul li.has-dropdown>a::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7071 14.7071C12.3166 15.0976 11.6834 15.0976 11.2929 14.7071L6.29289 9.70711C5.90237 9.31658 5.90237 8.68342 6.29289 8.29289C6.68342 7.90237 7.31658 7.90237 7.70711 8.29289L12 12.5858L16.2929 8.29289C16.6834 7.90237 17.3166 7.90237 17.7071 8.29289C18.0976 8.68342 18.0976 9.31658 17.7071 9.70711L12.7071 14.7071Z" fill="%231F6E58"/></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 24px;
    height: 24px;
}

.home-page header nav ul li.has-dropdown>a::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7071 14.7071C12.3166 15.0976 11.6834 15.0976 11.2929 14.7071L6.29289 9.70711C5.90237 9.31658 5.90237 8.68342 6.29289 8.29289C6.68342 7.90237 7.31658 7.90237 7.70711 8.29289L12 12.5858L16.2929 8.29289C16.6834 7.90237 17.3166 7.90237 17.7071 8.29289C18.0976 8.68342 18.0976 9.31658 17.7071 9.70711L12.7071 14.7071Z" fill="%23ffffff"/></svg>');
}

header nav ul li.has-dropdown:hover .sub-menu li,
header nav ul li.has-dropdown:hover .sub-menu li a {
    width: 100%;
    padding-block: 0;
}

header nav ul li.has-dropdown:hover .sub-menu li a::after {
    display: none;
}

.hero {
    padding: 250px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.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%;
    z-index: -1;
}

.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);
}

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

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

.mobile-close,
.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;
}

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

.btn {
    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;
}

.yellow-btn {
    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:hover {
    background-color: var(--deep-green);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.green-btn {
    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:hover {
    background-color: var(--accent-yellow);
    border-color: var(--deep-green);
    color: var(--deep-green);
}

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

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

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

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

.home-page .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:last-child {
    color: var(--accent-yellow);
}

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

.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 {
    border-radius: inherit;
}

.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 {
    font-weight: 600;
    font-size: var(--tx-36);
    line-height: 130%;
    color: var(--text-gray);
}

.title p {
    max-width: 835px;
    margin: 0 auto;
    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: 10px;
    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);
}

.service-providers .service-provider .content p {
    font-weight: 400;
    font-size: var(--tx-16);
    line-height: 142%;
    color: var(--soft-cream);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* text-align: center; */
}

.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;
    height: 45px;
    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;
}

.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;
}

.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-26);
    line-height: 160%;
    color: var(--text-gray);
}

.review-left-box .big-text {
    font-size: clamp(1.625rem, 1rem + 3vw, 3.75rem);
    color: var(--text-gray);
    line-height: 120%;
}

.review-left-box p {
    font-weight: 400;
    font-size: var(--tx-18);
    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-item .rating {
    position: unset;
}

.review-item .rating img {
    width: 20px !important;
    height: 20px !important;
}

.review-right .review-item .review-content p {
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 150%;
    color: var(--soft-cream);
}

.owner-title p {
    font-weight: 400;
    font-size: var(--tx-26);
    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-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
}

.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);
}

.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;
}

.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;
    color: var(--text-gray);
}

.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 {
    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 {
    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;
    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 {
    color: transparent;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


.field label {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    padding: 0 6px;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-green);
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
}

.field textarea+label {
    top: 20%;
}

.field input:focus+label,
.field textarea:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:not(:placeholder-shown)+label {
    top: 0;
    background: var(--light-green);
    font-size: 16px;
}

textarea {
    resize: none;
}

.field input:required+label::after,
.field textarea:required+label::after {
    content: " *";
    color: #FF2D55;
}

.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::after {
    position: absolute;
    content: '';
    inset: 0;
    background: #00000080;
    z-index: -1;
}

.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 {
    max-width: 648px;
    width: 100%;
    margin: 0 auto;
    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);
}

.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;
}

/* Toast / notification */
.toast-container {
    position: fixed;
    right: 20px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 220px;
    max-width: 360px;
    background: #ffffff;
    color: var(--on-surface);
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left: 6px solid var(--deep-green);
    font-weight: 600;
    transform: translateY(8px) scale(0.98);
    opacity: 0;
    transition: transform 240ms cubic-bezier(.2, .9, .2, 1), opacity 240ms ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-success {
    border-left-color: #28a745;
    background: #f3fff5;
}

.toast-error {
    border-left-color: #dc3545;
    background: #fff5f6;
}

.toast-info {
    border-left-color: var(--deep-green);
    background: #f7fff9;
}

input:-webkit-autofill {
    border-radius: inherit;
}


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-top-bar .logo {
    width: 175px;
}

.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 .f-contect span {
    font-weight: 500;
    font-size: var(--tx-20);
    line-height: 100%;
    color: var(--soft-cream);
}

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

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

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

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

.f-social a: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;
    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);
}

.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;
}

.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: 16px;
}

.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;
}

.sec_hero_wrapper .service-subtitle {
    text-align: center;
    margin: 0 auto;
}

/* .sec_hero_wrapper .service-breadcrumb {
    margin: 0 auto;
} */

.service-breadcrumb a {
    color: var(--deep-green);
}

.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 {
    margin-top: -200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.values-item img {
    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 {
    max-width: 1092px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    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: 430px;
}

.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;
}

.export-social img {
    width: 16px;
    height: 16px;
}

.wellness-container {
    border-radius: 20px;
    background-color: var(--light-green);
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    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 img {
    border-radius: 20px;
    width: calc(100% - 20px);
}

.wellness-right {
    position: relative;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.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 img {
    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 img {
    border-radius: 20px;
    width: calc(100% - 30px);
    margin-left: auto;
    display: block;
}

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

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

.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 {
    text-align: left !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 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;
}

.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 span {
    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:nth-child(2) {
    padding-block: 40px;
    background-color: var(--deep-green);
}

.pricing-wrapper .pricing-cards .pricing-card:nth-child(2) .pricing-title h3,
.pricing-wrapper .pricing-cards .pricing-card:nth-child(2) .pricing p,
.pricing-wrapper .pricing-cards .pricing-card:nth-child(2) ul li span {
    color: var(--accent-yellow);
}

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

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

.pricing-wrapper .pricing-cards .pricing-card:nth-child(2) ul li span svg path[fill="#1F6E58"] {
    fill: var(--accent-yellow);
}

.pricing-wrapper .pricing-cards .pricing-card:nth-child(2) ul li span svg path[fill="#4A4A4A"] {
    fill: var(--soft-cream);
}

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

.searvice-details-section .searvice-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.searvice-details-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.blog-detail-tag-date .blog-detail-tag a,
.searvice-detail-tag-date .searvice-detail-tag p {
    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,
.products-seaction .products-wrapper .products-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,
.products-seaction .products-wrapper .products-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,
.products-seaction .products-wrapper .products-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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination button {
    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;
}

.pagination button.active {
    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,
.products-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 a {
    color: var(--text-gray);
    font-weight: 600;
}

.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;
}

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

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

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

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

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

.recent-posts .recent-post .recent-title p {
    font-weight: 500;
    font-size: 12px;
    line-height: 110.00000000000001%;
    color: var(--deep-green);
}

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

.tags-wrapper .tags .tag {
    background-color: var(--light-green);
    padding: 8px 12px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    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,
.searvice-details-img {
    height: 500px;
}

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

.searvice-details-img img {
    object-position: top center;
}

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

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

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

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

.searvice-details-wrapper h2 {
    color: var(--deep-green);
}

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

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

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

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

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

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

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

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

.blog-details-left img,
.searvice-details-left img {
    height: 300px;
    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;
    text-align: left;
}

.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;
}

.categories-content-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 30px;
}

.categories-content-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.8s ease;
}

.categories-img {
    width: 185px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--deep-green);
    background: radial-gradient(circle, var(--light-green) 0%, var(--light-green) 57%, transparent 58%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    transition: all 0.8s ease;
    cursor: pointer;
}

.categories-content-item:hover .categories-img {
    background: radial-gradient(circle, var(--deep-green) 0%, var(--deep-green) 57%, transparent 58%);
    color: var(--accent-yellow);
}

.categories-content-item p {
    font-size: var(--tx-22);
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-gray);
    transition: all 0.8s ease;
}

.categories-content-item:hover p {
    color: var(--deep-green);
}

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

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

.product-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* 
.product-card:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
} */

.product-image {
    position: relative;
    height: 300px;
    width: 100%;
}

.product-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70.76%, rgba(0, 0, 0, 0.9) 100%);
}

.product-image img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--deep-green);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
}

.rating {
    position: absolute;
    bottom: 12px;
    right: 14px;
    z-index: 1;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-content {
    padding: 10px 15px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-category {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.product-title {
    font-weight: 700;
    font-size: var(--tx-20);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
    flex: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price .old {
    font-weight: 400;
    font-size: var(--tx-18);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-price .new {
    font-weight: 600;
    font-size: var(--tx-20);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--deep-green);
}

.view-all-btn {
    width: fit-content;
    margin: 20px auto 0;
}

.price-range {
    width: 100%;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: var(--deep-green);
    margin-bottom: 12px;
}

.slider-wrapper {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 12px;
    background: #EBF7ED;
    border-radius: 999px;
}

.slider-fill {
    position: absolute;
    height: 12px;
    background: var(--accent-yellow);
    border-radius: 999px;
}

.range-input {
    position: absolute;
    width: 100%;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.range-input::-webkit-slider-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    background: var(--deep-green);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 3;
    transition: transform 0.2s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-input::-moz-range-thumb {
    height: 24px;
    width: 24px;
    background: var(--deep-green);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    z-index: 3;
    transition: transform 0.2s ease;
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.product-price-rang .yellow-btn {
    width: fit-content;
    box-shadow: none;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--text-gray);
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #1f7a63;
    border-radius: 5px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom-checkbox input:checked+.checkmark {
    background-color: #1f7a63;
}

.custom-checkbox input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-close-btn,
.filter-open {
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--deep-green);
    align-items: center;
    justify-content: center;
}

.shop-deatils-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.product-slider-wrapper,
.prodct-content-wrapper {
    width: calc(50% - 25px);
}

.product-slider {
    width: 100%;
    position: relative;
}

.product-slider .like {
    position: absolute;
    z-index: 99;
    right: 10px;
    top: 10px;
}

.product-slider .mainSwiper img {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    border: 1px solid #B2B2B2;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--deep-green);
    color: var(--white);
}

.product-slider .swiper-button-next::after,
.product-slider .swiper-button-prev::after {
    font-size: 20px;
    color: var(--white);
}

.product-slider .thumbSwiper img {
    margin-top: 20px;
    height: 100px;
    border-radius: 10px;
    border: 1px solid #B2B2B2;
}

.product-slider .thumbSwiper .swiper-slide {
    width: 80px;
    opacity: 0.5;
    cursor: pointer;
}

.product-slider .thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-slider .thumbSwiper .swiper-slide-thumb-active img {
    border: 2px solid #000;
}

.product-slider .thumbSwiper img {
    width: 100%;
}

.prodct-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.prodct-content-wrapper .product-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prodct-content-wrapper .product-title p {
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--deep-green);
}

.prodct-content-wrapper .product-title h2 {
    font-weight: 600;
    font-size: var(--tx-36);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.prodct-content-wrapper .product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prodct-content-wrapper .product-rating .star {
    display: flex;
    align-items: center;
    gap: 3px;
}

.prodct-content-wrapper .product-rating p {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.prodct-content-wrapper .price {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prodct-content-wrapper .price .old {
    font-weight: 500;
    font-size: var(--tx-34);
    line-height: 100%;
    letter-spacing: 0px;
    text-decoration: line-through;
    color: var(--text-gray);
}

.prodct-content-wrapper .price .new {
    font-weight: 700;
    font-size: var(--tx-36);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--deep-green);
}

.prodct-content-wrapper .produt-dec p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.prodct-content-wrapper .product-size {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prodct-content-wrapper .product-size h3 {
    font-weight: 700;
    font-size: var(--tx-26);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.prodct-content-wrapper .size-options {
    display: flex;
    gap: 16px;
}

.prodct-content-wrapper .size-pill {
    position: relative;
    cursor: pointer;
}

.prodct-content-wrapper .size-pill input {
    display: none;
}

.prodct-content-wrapper .size-pill span {
    display: inline-block;
    padding: 9px 12px;
    border-radius: 999px;
    border: 2px solid var(--accent-yellow);
    color: var(--deep-green);
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;

    background: transparent;
    transition: all 0.25s ease;
}

.prodct-content-wrapper .size-pill input:checked+span {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--deep-green);
}

.prodct-content-wrapper .qty-wrapper,
.cart-slide .qty-wrapper,
.product-info .qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--accent-yellow);
    border-radius: 999px;
    padding: 8px 16px;
    gap: 10px;
    width: fit-content;
}

.prodct-content-wrapper .qty-wrapper input,
.cart-slide .qty-wrapper input,
.product-info .qty-wrapper input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;

    color: var(--deep-green);
    background: transparent;
}

.prodct-content-wrapper .qty-wrapper input::-webkit-inner-spin-button,
.prodct-content-wrapper .qty-wrapper input::-webkit-outer-spin-button,
.cart-slide .qty-wrapper input::-webkit-inner-spin-button,
.cart-slide .qty-wrapper input::-webkit-outer-spin-button,
.product-info .qty-wrapper input::-webkit-inner-spin-button,
.product-info .qty-wrapper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.prodct-content-wrapper .qty-wrapper input,
.cart-slide .qty-wrapper input,
.product-info .qty-wrapper input {
    -moz-appearance: textfield;
}

.prodct-content-wrapper .qty-btn,
.cart-slide .qty-btn,
.product-info .qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1;
}

.prodct-content-wrapper .product-add {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-details-tabs .product-tabs {
    background: #eef9f0;
    padding: 24px 30px;
    border-radius: 20px;
}


.product-details-tabs .tab-header {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.product-details-tabs .tab-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: var(--tx-28);
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
}

.product-details-tabs .tab-btn.active {
    color: var(--deep-green);
}

.product-details-tabs .product-details-content {
    font-weight: 500 !important;
    font-size: var(--tx-18);
    line-height: 142%;
    letter-spacing: 0px;
    color: var(--on-surface);
}

.product-details-tabs .product-details-content :is(p, li, h1, h2, h3, h4, h5, h6) {
    margin-bottom: 10px;
}

.product-details-tabs .product-details-content ul li {
    list-style: disc;
    margin-left: 14px;
}

.product-details-tabs .tab-btn.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--accent-yellow);
    /* border-radius: 50%; */
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.product-details-tabs .tab-content {
    display: none;
}

.product-details-tabs .tab-content.active {
    display: block;
}

.product-details-tabs.tab-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-details-tabs .tab-content ul {
    padding-left: 20px;
}

.product-details-tabs .review:first-child {
    margin-bottom: 25px;
}

.product-details-tabs .review {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.product-details-tabs .review .review-user {
    display: flex;
    align-items: start;
    gap: 10px;
}

.product-details-tabs .review .review-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.product-details-tabs .review .review-user .review-user-info h5 {
    font-weight: 600;
    font-size: var(--tx-22);
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-gray);
    margin-bottom: 0;
}

.product-details-tabs .review .review-user .review-user-info span.date {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #555555;
    margin-top: 5px;
}

.product-details-tabs .review .review-user .review-user-info .stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.product-details-tabs .review>p {
    font-weight: 500;
    font-size: var(--tx-18);
    line-height: 142%;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.shop-details-form-wrappr h2 {
    font-weight: 600;
    font-size: var(--tx-36);
    line-height: 130%;
    color: var(--text-gray);
}

.shop-details-form-wrappr .shop-details-form {
    background-color: var(--light-green);
    border-radius: 20px;
    padding: 40px;
}

.shop-details-form-wrappr .shop-details-form input,
.shop-details-form-wrappr .shop-details-form textarea {
    border: none;
    padding: 14px 20px;
}

.shop-details-form-wrappr .shop-details-form .fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shop-details-form-wrappr .shop-details-form button {
    width: fit-content;
    margin: 0 auto;
}

.review-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.cart-open {
    cursor: pointer;
}

.cart-slide {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    height: 100vh;
    width: 100%;
    max-width: 500px;
    min-width: 320px;
    background: #fff;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
    padding: 32px 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.cart-slide.active {
    right: 0;
    transform: translateX(0);
}

.cart-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-slide .cart-title {
    font-size: 20px;
    color: var(--deep-green);
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
}

.cart-slide .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-slide .cart-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.cart-slide .item-top {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-slide .item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-slide .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-slide .item-name {
    font-weight: 700;
    font-size: var(--tx-16);
    margin-bottom: 6px;
    color: var(--text-gray);
}

.cart-slide .item-price {
    color: var(--deep-green);
    font-weight: 700;
}

.cart-slide .item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.cart-slide .qty-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--deep-green);
    padding: 6px 10px;
    gap: 12px;
}

.cart-slide .qty-btn {
    background: none;
    border: none;
    font-size: 12px;
    cursor: pointer;
}

.cart-slide .qty-wrapper input {
    font-size: 12px;
}

.cart-slide .delete-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--deep-green);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.cart-slide .cart-footer {
    border-top: 1px solid #ccc;
    padding-top: 16px;
}

.cart-slide .subtotal {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.cart-slide .cart-actions {
    display: flex;
    gap: 10px;
}

.cart-slide .btn {
    width: 50%;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-slide .btn.primary {
    background: var(--deep-green);
    color: var(--white);
}

.cart-slide .btn.secondary {
    background: var(--accent-yellow);
    color: var(--deep-green);
}

.wishlist-page .sec_hero_wrapper {
    text-align: center;
}

/*  */

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.section-title {
    font-size: var(--tx-26);
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-products {
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.product-row {
    display: grid;
    grid-template-columns: 120px 1fr 30px;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #ccc;
    position: relative;
}

.product-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-img-wrap {
    position: relative;
}

.product-img-wrap img {
    width: 100%;
    border-radius: 10px;
}

.product-list .product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-list .product-info h3 {
    font-size: var(--tx-22);
    font-weight: 600;
    color: var(--deep-green);
}

.product-list .product-info .product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-list .product-info .product-rating .star {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-list .product-info .product-rating p {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.product-list .product-info .total {
    font-size: var(--tx-18);
    font-weight: 700;
    color: var(--deep-green);
}

.remove-btn {
    background: var(--deep-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary .full,
.checkout-summary .full {
    width: 100%;
}

.summary {
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 20px;
}

.summary h2 {
    font-size: var(--tx-22);
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 20px;
}

.summary textarea,
.summary input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--deep-green);
    margin-bottom: 12px;
}

.summary-row,
.summary-total {
    font-size: var(--tx-18);
    font-weight: 700;
    color: var(--deep-green);
    margin-block: 12px;
}

.summary-total {
    margin-top: 30px;
}

.note {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-card {
    background: var(--light-green);
    padding: 30px;
    border-radius: 20px;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: span 2;
}

.checkout-form label span {
    color: red;
}

.checkbox-wrapper span {
    font-size: 14px;
    color: var(--text-gray) !important;
}

.checkout-form input,
.checkout-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.checkout-form textarea {
    resize: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-summary {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 16px;
}

.checkout-summary .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.checkout-summary .product-item .product-price {
    text-align: right;
}

.checkout-summary .product-item .product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-summary .product-item .product-info img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.checkout-summary .product-item .product-title {
    font-size: var(--tx-18);
    font-weight: 500;
    color: var(--deep-green);
}

.checkout-summary .product-item .product-qty {
    font-size: 14px;
    color: var(--text-gray);
}

.checkout-summary .product-item .product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
}

.payment-box {
    background: var(--white);
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 10px;
    margin-block: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    background: var(--on-surface);
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}

.opation {
    position: relative;
}

.opation-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-yellow);
    color: var(--deep-green);
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.map h2,
.checkout-section h2,
.blog-section h2 {
    display: none;
}

input:-webkit-autofill {
    border-radius: inherit;
}

.wellness-service-item .yellow-btn {
    width: fit-content;
    box-shadow: none;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    -webkit-transition: opacity 0.7s ease, transform 0.7s ease;
    -moz-transition: opacity 0.7s ease, transform 0.7s ease;
    -ms-transition: opacity 0.7s ease, transform 0.7s ease;
    -o-transition: opacity 0.7s ease, transform 0.7s ease;
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.scroll-animate.hide-up {
    opacity: 0;
    transform: translateY(60px);
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
}

section.scroll-animate {
    transition-delay: 0.1s;
}

@media(max-width:1180px) {
    .categories-content-wrapper {
        gap: 20px;
    }

    .categories-img {
        width: 145px;
    }

    .categories-img svg {
        width: 40px;
        height: 40px;
    }

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

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

    .product-image {
        height: 270px;
    }
}

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

    .header-social-icon {
        gap: 14px;
    }

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

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

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

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

@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) {
    header nav ul {
        flex-direction: column;
        gap: 20px;
    }

    header nav ul li a {
        width: 100%;
    }

    header nav ul li a::after {
        display: none;
    }

    header nav ul li.has-dropdown {
        width: 100%;
    }

    header nav ul li .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease;
        background-color: transparent;
    }

    header nav ul li .sub-menu li a {
        color: var(--deep-green);
        padding-block: 0;
    }

    .home-page header nav ul li .sub-menu li a {
        color: var(--white);
    }

    header nav ul li.has-dropdown.active .sub-menu {
        max-height: 500px;
        margin-top: 10px;
    }

    header nav ul li.has-dropdown>a::before {
        float: right;
        right: 0;
        transition: transform 0.3s ease;
    }

    header nav ul li.has-dropdown.active>a::before {
        transform: rotate(180deg);
        top: 0;
    }

    .hero {
        padding: 200px 0;
    }

    .home-page header nav {
        background: var(--deep-green) !important;
    }

    header nav {
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        background: var(--white);
        width: 300px;
        height: 100vh;
        padding: 30px 15px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    header nav.active {
        transform: translateX(0);
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    header nav ul li a::after {
        left: 120%;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%) scale(0);
    }

    header nav ul li a:hover::after,
    header nav ul li a.active::after {
        transform: translateY(-50%) scale(1);
    }

    .mobile-close {
        position: absolute;
        top: 10px;
        right: 20px;
        border: 2px solid var(--accent-yellow);
        padding: 2px;
        width: 28px;
        height: 28px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

    .header-social-icon {
        order: 2;
        margin-left: auto;
    }

    .mobile-menu {
        order: 3;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    :is(.mobile-menu, .header-social-icon) svg {
        width: 18px;
        height: 18px;
    }

    .mobile-close,
    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    .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%;
    }

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

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

    .products-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .products-right.active {
        right: 0;
        gap: 0;
    }

    .filter-close-btn,
    .filter-open {
        display: flex;
    }

    .filter-open {
        margin-right: auto;
    }

    .filter-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 10;
        flex: none;
    }

    .filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .products-seaction .products-wrapper .products-left {
        grid-column: span 3;
    }

    .shop-deatils-wrapper {
        gap: 20px;
    }

    .product-slider-wrapper,
    .prodct-content-wrapper {
        width: 100%
    }

    .shop-details-form-wrappr .shop-details-form {
        padding: 24px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-form {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

@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 {
        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 {
        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 img {
        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%;
    }

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

    .product-image {
        height: 230px;
    }
}

@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 .f-contect span {
        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 img,
    .wellness-service-img::after {
        border-radius: 10px;
    }

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

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

    .product-image {
        height: 280px;
    }
}

@media(max-width:640px) {
    .home-page .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 img,
    .searvice-details-left img {
        height: 250px;
    }

    .blog-details-left :is(h2, h3, h4, h5, h6, p, ul, img):not(:last-child),
    .searvice-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;
    }

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

    .shop-details-form-wrappr .shop-details-form .fields {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width:576px) {
    .product-image {
        height: 260px;
    }

    .product-slider .thumbSwiper img {
        height: 70px;
    }

    .product-slider .mainSwiper img {
        height: 300px;
    }

    .product-row {
        grid-template-columns: 1fr;
    }

    .product-img-wrap img {
        width: 100%;
        height: 300px;
    }

    .remove-btn {
        position: absolute;
        top: -10px;
        right: -10px;
    }

}

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

    header .header-wrapper .logo {
        width: 110px;
        height: auto;
    }

    .categories-img {
        width: 115px;
    }

    .categories-content-item p {
        font-size: var(--tx-20);
    }

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

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

    .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;
    }

    .subscribe-box {
        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;
    }

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

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

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

    .product-image {
        height: 300px;
    }

    /* .why-choos-step{
        text-align: center;
    } */
    /* .why-choos-step .num-box{
        margin: 0 auto 20px;
    } */
}

@media (max-width: 480px) {
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 16px;
    }

    .toast {
        width: auto;
        max-width: calc(100% - 24px);
    }

    .why-choos-img {
        min-height: 370px;
    }

    .expert-item>img {
        height: 340px;
    }

    .product-details-tabs .product-tabs {
        padding: 20px 14px;
    }

    .shop-details-form-wrappr .shop-details-form,
    .checkout-card {
        padding: 14px;
    }
}

@media(max-width:425px) {
    .stats-card {
        padding: 20px;
    }


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

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

    .view-all-btn {
        width: 100%;
    }

    .product-img-wrap img {
        height: 250px;
    }

}

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

    .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;
    }
}

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

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