@font-face {
    font-family: font-primary;
    src: url('../fonts/SongMyung-Regular.ttf');
}

@font-face {
    font-family: font-secondary;
    src: url('../fonts/WorkSans-VariableFont_wght.ttf');
}

:root {
    --primarycolor: #1A6B54;
    --secondarycolor: #000000;
    --thirdcolor: #ffffff;
    --headblack: #212529;
    --bgcolor: #DDDDD3;
    --font-primary: "font-primary";
    --font-secondary: "font-secondary";
    /*
    --fourcolor: #93C854;
    --bgcolor: #edf0f3; */

    /* --hover: #68a819; */
    /* --spacing: 16px;
    --line-height: 24px; */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
}

::selection {
    background-color: var(--primarycolor);
    color: black;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

p {
    font-family: var(--font-secondary);
}

li {
    font-family: var(--font-secondary);
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader {
    width: 150px;
    height: auto;
    animation: grow 1.5s ease-out forwards;
}

@keyframes grow {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.back-to-top img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.back-to-top:hover img {
    transform: scale(1.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}



/* ======================================================================================================
                                                 home page
========================================================================================================== */

/* -----------------------hero section---------------------------------- */
.inner-hero {
    padding-top: 100px;
    padding-bottom: 200px;
    background-color: var(--bgcolor);
    position: relative;
}

.hero-footer {
    position: absolute;
    bottom: -5%;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-10px) translateY(5px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.hero-footer img {
    width: 100%;
    animation: wave 2s ease-in-out infinite;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left img {
    width: 435px;
    height: auto;
    /* animation: slide 2s infinite linear; */
}

/* @keyframes slide {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
} */

.hero-right {
    padding-top: 60px;
}

.hero-right h1 {
    color: var(--primarycolor);
    font-size: 46px;
    font-weight: 700;
}

.hero-right p {
    font-size: 18px;
    color: var(--secondarycolor);
}

.hero-btn a {
    font-size: 14px;
    color: var(--thirdcolor);
    background-color: var(--primarycolor);
    padding: 12px 30px;
    border-radius: 7px;
    margin-top: 0px;
    display: inline-block;
    /* display: inline-flex; */
    /* Aligns the text and icon */
    align-items: center;
    transition: all 0.3s ease;
}




/* -----------------------hero section---------------------------------- */
.inner-values {
    padding-bottom: 50px;
    position: relative;
}

.value-card {
    flex: 1;
    padding: 10px;
}

.value-card img {
    transition: all 0.8s ease-in-out;
}

.value-detail h4 {
    color: rgba(26, 107, 84, 0.75);
    font-size: 18px;
    font-weight: 300;
    text-align:left;
}

.value-detail p {
    color: rgba(26, 107, 84, 0.75);
    font-size: 14px;
    text-align:left;
    text-align:justify;
}

.value-card:hover {
    transform: scale(1.05);
    /* box-shadow: 0 15px 15px rgba(95, 95, 95, 0.1); */
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}

.value-card:hover img {
    transform: scale(1.05) rotate(360deg);
    /* box-shadow: 0 5px 15px rgba(95, 95, 95, 0.1); */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Apply smooth transitions */
    border-radius: 6px;
}

.value-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.value-card:hover {
    transform: scale(1.05);
    /* box-shadow: 0 15px 15px rgba(95, 95, 95, 0.1); */
}



.value-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: var(--primarycolor);
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
}

.value-card:hover::after {
    width: 100%;
}


.value-card img {
    transform: scale(1) rotate(0deg);
    /* Ensure the initial state is unrotated */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Smooth reset to original */
}

.value-card:hover .value-detail h4 {
    color: var(--primarycolor);
}

.value-card:hover .value-img {
    transform: scale(1.1);
}

.valur-overlay-left {
    position: absolute;
    left: 0%;
    top: -85%;
    z-index: 1;
}


.valur-overlay-right {
    position: absolute;
    right: 0%;
    top: 25%;
}

/* -----------------------Product section---------------------------------- */
.inner-product {
    padding: 10px 0px;
}

.product-header {
    padding-left: 40px;
    margin-bottom: 30px;
}

.product-header h2 {
    font-size: 24px;
}

.product-header p {
    font-size: 14px;
}

.product-detail {
    margin-top: 25px;
}

.product-detail h3 {
    font-size: 18px;
}

.product-detail p {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.product-detail p span {
    font-size: 14px;
    text-decoration: line-through;
    color: gray;
}


.product-overlay h3 {
    font-size: 18px;
    font-weight: 100 !important;
    color: var(--thirdcolor);
    background-color: black;
    padding: 6px 15px;
    border-radius: 5px;
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 30px;
    transition: transform 0.3s ease-in-out;
}

.product-img {
    position: relative;
}

.product-detail {
    padding: 0px 45px;
}

.product-detail-overlay {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    position: absolute;
    bottom: 20%;
}

.product-card {

    overflow: hidden;
}

.product-img {
    position: relative;
    transition: transform 0.5s ease;
}

.product-img img {

    transition: transform 0.5s ease, filter 0.5s ease;
}

.product-detail-overlay {

    visibility: hidden;
    backdrop-filter: blur(0);
    transition: all 0.5s ease;
}

.product-card:hover .product-detail-overlay {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-detail-overlay h4 {
    font-size: 24px;
    color: #1A6B54;
    text-align: left;
}

.product-detail-overlay p {
    font-size: 14px !important;
    text-align: left;

}

.product-detail-overlay-btn {
    display: flex;
    justify-content: right;
}

.product-detail-overlay-btn a {
    text-align: right;
    font-size: 16px;
    color: var(--primarycolor);
    /* text-decoration: underline; */
}

.product-detail-overlay-btn a:hover {
    color: var(--secondarycolor);
}

.product-price {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.price-2 p {
    font-size: 16px;
    color: var(--secondarycolor);
    font-weight: 600;
}

.price-1 p {
    font-size: 16px;
    color: gray;
    font-weight: 600;
    text-decoration: line-through;
}

/* -----------------------Product section---------------------------------- */
.inner-home-banner {
    padding: 150px 0px;
    background-image: url(../images/home/home-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.home-banner-detail {
    text-align: center;

}

.inner-home-banner {
    position: relative;
}

.home-banner-overlay {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;
}

.home-banner-overlay img {
    width: 50%;
    height: auto;
    z-index: -10;
}

.home-banner-detail h2 {
    font-size: 48px;
    color: var(--primarycolor);
}

.home-banner-detail p {
    font-size: 18px;
    color: var(--secondarycolor);
}

.home-banner-detail {
    padding: 0px 260px;
}

.home-banner-detail a {
    color: var(--thirdcolor);
    background-color: var(--primarycolor);
    padding: 15px 30px;
    border-radius: 7px;
    margin-top: 30px;
}

/* -----------------------Product section---------------------------------- */
.inner-testmonial {
    padding: 60px 0px;
}

.testmonial-card {
    flex: 1 !important;
    padding: 10px 50px;
    text-align: center;
}

.testmonial-card p {
    font-size: 14px;
}

.testmonial-card h3 {
    font-size: 14px;
}

.testmonial-card h4 {
    font-size: 18px;
}

.testmonial-header {
    padding-left: 40px;
    margin-bottom: 30px;
}

.testmonial-header h2 {
    font-size: 24px;
}

.inner-testmonial .owl-nav {
    display: none !important;
}

.inner-testmonial .owl-dots {
    display: flex;
    justify-content: center;
}


.testimonial-carousel .owl-dot {
    background-color: #ccc !important;
    border: none;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    padding-top: 20px;
    transition: background-color 0.3s ease;
}


.testimonial-carousel .owl-dot.active {
    background-color: #1A6B54 !important;
}

.testimonial-carousel .owl-dot:hover {
    background-color: #999;
}


/* -----------------------benefits section---------------------------------- */
.inner-benefits {
    padding: 10px 0px;
    padding-bottom: 50px;
}

.inner-lefe-top {
    position: relative;
}

.left-top-overlay {
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 320px;
    text-align: center;
}

.left-top-overlay p {
    color: var(--primarycolor);
}

.left-top-btn {
    color: var(--thirdcolor);
    background-color: var(--primarycolor);
    padding: 10px 28px;
    border-radius: 7px;
    margin-top: 10px;
    display: inline-block;

}

.left-top-btn a:hover {
    color: white !important;
}


.left-top-btn a {
    color: var(--thirdcolor);
}

.inner-right-top {
    position: relative;
}

.right-top-overlay {
    position: absolute;
    left: 5%;
    top: 25%;
}

.right-top-overlay p {
    padding-right: 180px;
}

.right-top-overlay h2 {
    font-size: 24px;
    color: var(--secondarycolor);

}

.right-top-overlay p {
    font-size: 16px;
    color: var(--secondarycolor);
}

.inner-lefe-bottom {
    position: relative;
}

.inner-right-bottom {
    position: relative;
}

.right-bottom-overlay {
    position: absolute;
    right: 20%;
    bottom: 20%;
    width: 320px;
    text-align: center;
}

.right-bottom-overlay {
    color: var(--primarycolor);
}

.special-head {
    overflow: hidden;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.special-head h2 {
    font-family: var(--font-primary);
    font-size: 24px;
}

.special-head p {
    font-size: 14px;
}


/* ======================================================================================================
                                               Footer page
========================================================================================================== */
.footer-section2 h5 {
    font-size: 18px !important;
}

.footer-section2 li a {
    font-size: 16px !important;
    /* padding-bottom: 6px; */
    color: #8B5549 !important;
}


.footer-section2 li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    flex-direction: column !important;
    /* padding-bottom: 2px; */
}

.footer-section2 ul {
    display: flex;
    flex-direction: column;
}

.footer-section2 li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #8B5549;
    bottom: 0;
    left: 15px;
    transition: all 0.3s ease-in-out;
    /* transform: translateX(-50%); */
}

.footer-section2 li a:hover {
    color: #8B5549;
}

.footer-section2 li a:hover::after {
    width: 20%;
}

.logo-icon {
    width: 140px !important;
}

.footer-social-link {
    display: flex;
    gap: 20px;
}

.footer-social-link i {
    font-size: 20px;
    color: #000;
}

.footer-social-link a:hover {
    color: #8B5549;

}

.footer-section2 li:hover {
    text-decoration: none !important;
    color: #000;
}

.footer-section3 p {
    color: #8B5549;
}


.footer-section3 p {
    display:flex;
    flex-wrap: wrap !important;
}














/* ======================================================================================================
                                                 home page
========================================================================================================== */























/* ======================================================================================================
                                                 home page
========================================================================================================== */

.btn-donate:hover {
    color: white !important;
}

.btn-donate {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #1A6B54;
    transition: all 0.2s ease;
    z-index: 99;
}

.btn-donate:active {
    transform: scale(0.96);
}

.btn-donate:before,
.btn-donate:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
    background-repeat: no-repeat;
}

.btn-donate:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #1A6B54 20%, transparent 30%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #1A6B54 15%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.btn-donate:hover:after {
    bottom: -70%;
    background-image: radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #1A6B54 15%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%),
        radial-gradient(circle, #1A6B54 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}




















/* ======================================================================================================
                                                benifits  page
========================================================================================================== */
.inner-benifits {
    padding-bottom: 50px;
    position: relative;
}

.benifits-left h3 {
    font-size: 24px;

}

.benifits-right {
    display: flex;
    justify-content: center;
}

.inner-item {
    text-align: center;
    padding: 20px;
    display: none;
    transition: width 0.8s ease;
}

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 60%;
    height: 400px;
    gap: 20px;
    transition: width 0.8s ease;
}

.gallery-wrap:hover {
    width: 80%;
}

.gallery-wrap .item:hover .inner-item {
    display: block;
}

.inner-item h2 {
    color: var(--secondarycolor);
}

.inner-item p {
    color: #333;
}

.inner-item {
    text-align: center;
    padding: 20px;
    display: none;
    position: relative;
    z-index: 1;
    color: white;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.9s;
}

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 60%;
    height: 470px;
    gap: 20px;
    transition: width 0.8s ease;
}

.gallery-wrap:hover {
    width: 60%;
}

.gallery-wrap .item:hover .inner-item {
    display: block;
}

.gallery-wrap .item:hover .item-text {
    display: none;
}

.item-1 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.item-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/benifits/Health.png');
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease;
    z-index: 0;
}

/* .item-1:hover::before {
    filter: blur(5px);
} */

.item-2 {
    position: relative;

    overflow: hidden;
}

.item-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/benifits/Freshness.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: filter 0.5s ease, background-color 0.5s ease;
    background-color: rgba(26, 107, 84, 0);
}

/* .item-2:hover::before {
    filter: blur(5px);
    background-color: rgba(26, 107, 84, 0.5) !important;
    z-index: -1;
} */


.item-3 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/benifits/Herbal.png') !important;
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease;
    z-index: 0;
}




/* .item-3:hover::before {
    filter: blur(5px);
} */

.item-4 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/benifits/Comfort.png') !important;
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease;
    z-index: 0;
}

/* .item-4:hover::before {
    filter: blur(5px);
} */

.inner-item {
 position: relative;
    z-index: 1;
    text-align: center;
    background: #d9d9d9a8;
    color: white;
    backdrop-filter: blur(7px);
}

.gallery-wrap .item {
    padding: 20px;
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.8s ease;

    &:hover {
        flex: 10;
    }
}

.item-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    /* writing-mode: vertical-rl; 
    text-orientation: upright;  */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.item-text h2 {
    font-size: 18px;
    color: black;
}


/* ==============================================================about us page ==========================================================*/
/* ======================================================================================================
                                                3 reasons
========================================================================================================== */
.luxury-section {
    padding: 100px 0px !important;
}

.reason-header h2 {
    font-size: 24px;
    color: var(--secondarycolor);
}

.reason-header .lead {
    font-size: 14px;
}

.reason-header {
    padding: 0px 190px;
}

.reason-overlay {
    position: absolute;
    top: 10%;
    /* background-color: white; */
    padding: 10px;
    margin: 20px;
    border-radius: 8px;
    border: 3px dashed #ffff;

}

.reason-overlay p {
    font-size: 18px;
    color: var(--thirdcolor);
}

.luxury-section .hover-text {
    color: var(--primarycolor) !important;
}

.reason-overlay {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(160, 160, 160, 0.7); */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hover effect */
.hover-container:hover .reason-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

.hover-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hover-container:hover {
    transform: scale(1.02);
}

/* ======================================================================================================
                                                3 reasons
========================================================================================================== */
.inner-video {
    padding: 40px 0px;
    /* background-image: url(../images/home/about/video-bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;

}

.lefi-side-overlay {
    position: absolute;
    left: 0px;
    top: 10px;
}

.video-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-inner video {
    width: 60%;
    height: auto;
}

.video-header {
    text-align: center;
    padding: 0px 190px;
}

.video-header h2 {
    font-size: 24px !important;
    font-size: var(--font-primary);
}

.video-header p {
    font-size: 14px !important;
    font-size: var(--font-primary);
}


/* ======================================================================================================
                                                about us
========================================================================================================== */
.inner-about {
    padding: 100px 0px;
    position: relative;
}

.about-side-overlay {
    position: absolute;
    right: 0px;
    top: 20%;
    z-index: -1;
}

.about-right-1 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-right-1 img {
    width: 285px;
    height: 190px;
}

.about-left-1 h4 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primarycolor);
}

.about-left-1 h2 {
    font-size: 24px;
    color: var(--secondarycolor);
}
.card-down{
    margin-top: 40px !important;
}

.about-img-1 {
    position: relative;
}

.about-img-1:hover .about-overlay-1 {
    transform: scale(1.1);
}

.about-overlay-1 {
    position: absolute;
    top: 20px;
    right: 16px;
    transition: transform 0.3s ease-in-out;
}

.about-overlay-1 h4 {
    font-size: 12px;
    background-color: #0e0e0e;
    border-radius: 20px;
    color: white;
    padding: 5px 12px;
}

.about-overlay-1 h4 a {
    color: white;
}

.about-right-2 {
    padding-top: 40px;
}

.about-right-2 h2 {
    font-size: 24px;
}

.about-right-2 p {
    font-size: 16px;
    padding-top: 15px;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 45px;
}

.stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.stats .counter {
    font-size: 16px;
    padding: 20px 25px;
    border-radius: 10px;
    background-color: #1A6B54;
    color: var(--thirdcolor);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.stats .counter span {
    font-size: 24px;
}

.counter:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(226, 226, 199, 0.4);
    background-color: var(--bgcolor);
    color: var(--secondarycolor);
}




.about-left-2 img {
    width: 600px;
    height: 600px;
}



/* ======================================================================================================
                                       blog page 
========================================================================================================== */
.blog-card {
    padding: 10px 20px;
}

.blog-card h4 {
    font-size: 24px;
    color: var(--primarycolor);
    font-weight: 600;
}

.modal-title {
    font-size: 24px;
    color: var(--primarycolor);
    font-weight: 600;
}

.about-left-2 img {
    transform: scalex(-1);
    /* Flip the image vertically */
    display: block;
    max-width: 100%;
    height: auto;
}

.blog-card .blog-btn {
    font-size: 14px;
    color: var(--thirdcolor);
    background-color: var(--primarycolor);
    padding: 7px 20px;
    border-radius: 7px;
    margin-top: 0px;
    display: inline-block;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: none !important;

}

.modal-footer a {
    color: var(--thirdcolor);
    padding: 10px 25px;
    background-color: #0e0e0e;
    border-radius: 6px;
}

.modal-footer a:hover {
    background-color: #252525;
    color: #DDDDD3;
}


.list-unstyled li a {
    display: flex;
    font-weight: 600;
}

.footer-section2 h5 {
    font-size: 20px !important;
}

.footer-section3 h5 {
    font-size: 20px !important;
}

.footer-section3 p {
    font-size: 15px !important;
    font-weight: 600;
    /* text-align: justify; */
}

.lefi-side-overlay img {
    width: 100%;
    height: auto;
}


.about-banner{
    position: relative;
}
.blog-banner{
    position: relative;
}
.contact-banner{
    position: relative;
}
.banner-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.banner-overlay h2{
    margin-bottom: 13px;
    font-size: 65px;
    color: var(--primarycolor);
    font-weight: 800;
}
.about-banner .breadcrumb {
  justify-content: center !important;
}
.blog-banner .breadcrumb {
  justify-content: center !important;
}
.contact-banner .breadcrumb {
  justify-content: center !important;
}
.breadcrumb-item a{
    color: var(--secondarycolor) !important;
}


.banner-overlay-1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.filte-btn {
    position: fixed;
    top: 75%;
    right: 0%;
}


.btn-delete-address {
    color: white !important; 
    background: #212529 !important;
}
.btn-edit-address {
    color: white !important;
    background: var(--primarycolor) !important;
}
.list-unstyled li i{
    padding-right:6px;
    
}

.footer-strip {
    color: #000;
}

/* old */
@media screen and (max-width: 480px) {
    .shop-categories-men {
        position: absolute !important;
        top: 22% !important;
        left: 0% !important;
        max-width: 200px !important;
        width: auto;
    }

    .shop-categories-women {
        position: absolute !important;
        top: 22% !important;
        right: 0% !important;
        max-width: 200px !important;
        width: auto;
    }

    .men {
        top: 0% !important;
        left: 20%;
    }

    .women {
        top: 7% !important;
        left: 50%;
    }

    .men-icon img,
    .women-icon img {
        width: 40px !important;
    }

    .subscribe-popup h2 {
        font-size: 20px;
    }

    .subscribe-popup p {
        font-size: 14px;
    }
    .free-shipping-badge {
position: absolute;
top: 10px;
right: 10px;
background-color: #28a745;
color: white;
padding: 5px 10px;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
}

}

.new-arrivals-h2 {
    font-size: 2.5rem;
    opacity: 0;
    animation: zoomInOut 4s infinite;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease-in-out;
    overflow: hidden !important;
    display: inline-block;
}

.btn-prev:before {
    border: 1px solid grey;
    border-radius: 50%;
}

.btn-next:before {
    border: 1px solid grey;
    border-radius: 50%;
}

.section-padding {
    overflow: hidden;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }


}


.subscribe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;

}

.subscribe-popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 2px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.subscribe-popup h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.subscribe-popup p {
    font-size: 16px;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscribe-btn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: #0056b3;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

