@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7f7f7f;
    --themeColor: #0887ce;
    --themeColor2: #e24c98;
    --headingColor: #0e0f0f;
    --headingColor2: #131212;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--headingColor);
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Pure-Joy';
    src: url(../fonts/Pure-Joy.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    margin: 0 0 0px;
    font-size: 110px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Pure-Joy';
}

h2 {
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Pure-Joy';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Pure-Joy';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Pure-Joy';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Pure-Joy';
}

h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 700px;
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    gap: 0px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.theme-btn-1-text {
    height: 55px;
    font-weight: 500;
    padding: 14px 25px;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.theme-btn-1-icon {
    width: 55px;
    height: 55px;
    display: flex;
    margin-left: -6px;
    border-radius: 50%;
    align-items: center;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.theme-btn-1-icon img {
    width: 18px;
    height: 11px;
    object-fit: contain;
    transition: ease-in-out;
    transform: rotate(-15deg);
    transition-duration: 0.5s;
}

.theme-btn-1:hover .theme-btn-1-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(2%) hue-rotate(164deg) brightness(96%) contrast(100%);
}

.theme-btn-1:hover .theme-btn-1-text {
    transition: ease-in-out;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
    background-color: var(--themeColor);
}

.theme-btn-1:hover .theme-btn-1-icon {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
    border-color: var(--themeColor);
}

.theme-btn-1:hover .theme-btn-1-icon img {
    transition: ease-in;
    transition: ease-in;
    transition: ease-in;
    transform: rotate(0);
    transition-duration: 0.5s;
}

/*header css start */

.menuSec {
    padding: 10px 4%;
    border-left: 1px solid #bababa;
    border-right: 1px solid #bababa;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    text-align: center;
    position: relative;
    align-items: center;
    text-transform: capitalize;
    justify-content: space-around;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 5px;
    position: relative;
    color: var(--black);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/

/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--themeColor);
}

.menuSec ul li a::before {
    left: 5px;
    width: 0px;
    content: '';
    height: 2px;
    bottom: 14px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSection {
    padding: 0px 4%;
    border-bottom: 1px solid #bababa;
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo a {
    height: 18px;
    display: block;
    width: fit-content;
}

.header-logo a img {
    top: -3px;
    height: 100%;
    position: relative;
    width: fit-content;
    object-fit: contain;
}

.header-search {
    left: -5%;
    height: 100%;
    display: flex;
    padding: 10px;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid #bababa;
}

.header-search button {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 18px;
    border-radius: 50%;
    align-items: center;
    color: var(--black);
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--white);
}

.header-search form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-search form input {
    width: 100%;
    border: none;
    height: 45px;
    font-weight: 600;
    background-color: var(--white);
}

.header-search form input::placeholder {
    text-transform: uppercase;
}

.header-cart {
    height: 100%;
}

.header-cart ul {
    gap: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-cart ul li a {
    gap: 10px;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}


/*header css start */


/*banner css start */

.main_slider {
    padding: 50px 4%;
    overflow: hidden;
    position: relative;
    background-color: var(--themeColor2);
}

.main_slider::before {
    top: 0;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 572px;
    position: absolute;
    background-color: var(--white);
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.33);
}

.main_slider .row {
    z-index: 1;
    position: relative;
}

.banner_img {
    width: 100%;
    height: 390px;
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: center;
}

.banner_img img {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

.banner_Heading {
    margin: 0px auto;
    width: fit-content;
    text-align: center;
    position: relative;
}

.banner_Heading::before {
    left: 130px;
    top: 60px;
    content: '';
    width: 150px;
    z-index: -1;
    height: 150px;
    position: absolute;
    animation: rotateFlower 10s linear infinite;
    background-image: url(../images/flower.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.banner_text {
    gap: 5px;
    display: flex;
    text-align: end;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-start;
}

.banner_text .banner-product-box-1 {
    width: 100%;
    padding: 20px;
    display: flex;
    gap: 20px;
    text-align: left;
    margin-top: 20px;
    align-items: center;
    border-radius: 8px;
    justify-content: flex-start;
    border: 1px solid #999999;
}

.banner_text .banner-product-box-1>img {
    width: 80px;
    height: 85px;
    flex-shrink: 0;
    object-fit: contain;
}

.banner_text .banner-product-box-1 h6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner_text .banner-product-box-1 p {
    margin-bottom: 10px;
}

.banner_text .banner-product-box-1 .banner-product-box-1-text span {
    gap: 10px;
    display: flex;
    font-weight: 600;
    align-items: center;
    color: var(--themeColor);
    text-transform: uppercase;
    text-decoration: underline;
    justify-content: flex-start;
}

.banner_text .banner-product-box-1 .banner-product-box-1-text span img {
    width: 18px;
    height: 10px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(49%) sepia(71%) saturate(5878%) hue-rotate(180deg) brightness(94%) contrast(94%);
}

.banner_img::after {
    z-index: -1;
    bottom: 170px;
    right: 30px;
    content: '';
    width: 150px;
    height: 150px;
    position: absolute;
    background-image: url(../images/flower.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: rotateFlower 10s linear infinite;
}

@keyframes rotateFlower {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner_text_left {
    margin-bottom: 100px;
}

.banner_text_left ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner_text_left>img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 15px;
}

.banner_text_left h6 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.banner_text_left h6 span {
    display: block;
    font-weight: 600;
}

.banner_text_left h5 {
    margin-bottom: 5px;
}

.banner-product-box-1 {
    margin-top: -150px;
}

.banner-product-box-1 .banner-product-box-1-img {
    height: 187px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
}

.banner-product-box-1 .banner-product-box-1-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-product-box-1 p {
    opacity: 0.7;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-product-box-1 h6 {
    gap: 8px;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    align-items: center;
    text-transform: uppercase;
    text-decoration: underline;
    justify-content: flex-start;
}

.banner-product-box-1 h6 span {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transform: rotate(-20deg);
    background-color: var(--white);
}

.banner-product-box-1 h6 span img {
    height: 8px;
    width: 15px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
}

.banner-product-highlight {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 0px;
    border-right: 1px solid #ffffff47;
    background-color: var(--themeColor2);
}

.banner-product-highlight-item {
    min-height: 190px;
    padding: 18px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.banner-product-highlight-item:last-child {
    border-right: 0;
}

.banner-product-highlight-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-product-highlight-image-wrap {
    position: relative;
}

.banner-product-highlight-image-wrap>img {
    width: 170px;
    height: 150px;
    object-fit: contain;
}

.banner-product-play-btn {
    top: 8px;
    right: -5px;
    width: 42px;
    height: 42px;
    display: flex;
    color: var(--white);
    font-size: 12px;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
    box-shadow: 0 8px 16px rgba(8, 135, 206, 0.45);
}

.banner-product-highlight-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-product-highlight-item-info h4 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--white);
    text-transform: uppercase;
}

.banner-product-highlight-item-info p {
    max-width: 280px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.banner-product-highlight-bottom {
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-product-highlight-bottom h5 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
    color: var(--white);
}

.banner-product-cart-btn {
    width: 52px;
    height: 52px;
    display: flex;
    color: var(--black);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.banner-product-cart-btn:hover {
    color: var(--themeColor2);
}

.banner-product-highlight-item-trust {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-product-highlight-item-trust .custom-flex {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-product-highlight-users {
    display: flex;
    margin-bottom: 10px;
}

.banner-product-highlight-users img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.banner-product-highlight-users img+img {
    margin-left: -16px;
}

.banner-product-highlight-item-trust h6 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Pure-Joy';
    text-transform: uppercase;
}

.banner-product-highlight-item-trust h6 span {
    display: block;
}

.banner-product-highlight-item-trust p {
    max-width: 260px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.banner-product-highlight-item-trust a {
    gap: 10px;
    display: flex;
    color: var(--white);
    font-weight: 700;
    align-items: center;
    text-transform: uppercase;
    text-decoration: underline;
}

.banner-product-highlight-item-trust a:hover {
    color: var(--white);
}

@media (max-width: 1399px) {
    .banner-product-highlight-item {
        padding: 18px 16px;
    }

    .banner-product-highlight-item-info h4 {
        font-size: 30px;
    }

    .banner-product-highlight-bottom h5 {
        font-size: 30px;
    }

    .banner-product-highlight-item-trust h6 {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .banner-product-highlight {
        flex-wrap: wrap;
    }

    .banner-product-highlight-item {
        width: 50%;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .banner-product-highlight-item-trust {
        width: 100%;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .banner-product-highlight-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .banner-product-highlight-item:last-child {
        border-bottom: 0;
    }

    .banner-product-highlight-item-info h4 {
        font-size: 26px;
    }

    .banner-product-highlight-bottom h5 {
        font-size: 26px;
    }

    .banner-product-highlight-item-trust h6 {
        font-size: 24px;
    }
}










/*banner css end*/

/* about-sec */

.about-sec {
    padding: 100px 0px;
}

.about-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    min-height: 100%;
    border-radius: 30px;
}

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

.about-text h2 {
    margin-bottom: 5px;
}

.about-text p {
    margin-bottom: 20px;
}

/* about-sec */

/* categories-sec */

.categories-sec {
    padding: 100px 4%;
    background-image: url(../images/category-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.categories-sec .section-heading h2 {
    color: var(--white);
}

.categories-sec .section-heading p {
    opacity: 0.5;
    font-weight: 500;
    color: var(--white);
}

.categories-box {
    z-index: 1;
    margin: 30px 0px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.categories-box-img {
    width: 175px;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin: 0px auto 40px;
    border: 5px solid var(--themeColor2);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.21);
}

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

.categories-box::before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 75%;
    z-index: -1;
    position: absolute;
    border-radius: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.categories-box:hover::before {
    height: 100%;
    transition: ease-in;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.categories-box:hover .categories-box-img {
    border-color: var(--themeColor);
}

.categories-box .theme-btn-1 {
    margin: 0px auto;
}

.categories-box p {
    margin-bottom: 20px;
}

.categories-box h3 {
    margin-bottom: 10px;
}

.categories-box:hover h3 {
    color: var(--white);
}

.categories-box:hover p {
    opacity: 0.7;
    color: var(--white);
}

.categories-box:hover .theme-btn-1-text {
    border-color: var(--white);
}

.categories-box:hover .theme-btn-1-icon {
    border-color: var(--white);
    background-color: var(--white);
}

.categories-box .theme-btn-1:hover .theme-btn-1-icon img,
.categories-box:hover .theme-btn-1-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(2%) hue-rotate(164deg) brightness(96%) contrast(100%);
}

.categories-box .theme-btn-1:hover .theme-btn-1-icon {
    background-color: var(--white);
}

.categories-box .theme-btn-1:hover .theme-btn-1-text {
    background-color: var(--themeColor2);
}

.categories-box.odd {
    animation: moveTop 5s linear infinite;
}

.categories-box.even {
    animation: moveBottom 5s linear infinite;
}

@keyframes moveTop {
    0% {
        top: 0;
    }

    50% {
        top: 60px;
    }

    100% {
        top: 0;
    }
}

@keyframes moveBottom {
    0% {
        top: 60px;
    }

    50% {
        top: 0px;
    }

    100% {
        top: 60px;
    }
}

/* categories-sec */

/* arrivals-sec */

.arrivals-sec {
    padding: 100px 4%;
}

.arrivals-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.arrivals-heading p {
    max-width: 550px;
}

.arrivals-text-box {
    display: flex;
    min-height: 96%;
    padding: 30px 20px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--themeColor);
}

.arrivals-text-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.arrivals-text-box p {
    opacity: 0.7;
    color: var(--white);
}

.arrivals-text-box .theme-btn-1 .theme-btn-1-text {
    color: var(--black);
    background-color: var(--white);
}

.arrivals-text-box .theme-btn-1 .theme-btn-1-icon {
    border-color: var(--white);
    background-color: var(--white);
}

.arrivals-text-box .theme-btn-1 .theme-btn-1-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(32deg) brightness(95%) contrast(104%);
}

.product-box-img {
    width: 100%;
    display: flex;
    height: 360px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    align-items: center;
    margin-bottom: 25px;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: #faf9f9;
    border: 1px solid var(--themeColor);
}

.product-box-img img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-box-img>span {
    top: 20px;
    width: 80px;
    right: 20px;
    height: auto;
    display: flex;
    padding: 10px;
    font-size: 14px;
    position: absolute;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    aspect-ratio: 1 / 1;
    align-items: center;
    transition: ease-in;
    font-family: 'Pure-Joy';
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.product-box-text ul {
    display: flex;
    margin-bottom: 10px;
    transition: ease-in;
    transition: ease-in;
    align-items: center;
    transition-duration: 0.5s;
    justify-content: space-between;
}

.product-box ul {
    display: flex;
    align-items: center;
    transition-duration: 0.5s;
    justify-content: space-between;
}

.product-box ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.product-box {
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    transition: ease-in;
    margin-bottom: 25px;
    padding: 5px 5px 10px;
    transition-duration: 0.5s;
}

.product-box::before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    content: '';
    z-index: -1;
    margin: auto;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.product-box:hover::before {
    height: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-box:hover * {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.product-box:hover .product-box-img img {
    transition: ease-in;
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.product-box:hover ul li a {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.product-box-text h5 {
    margin-bottom: 10px;
    overflow: hidden;
    transition: ease-in;
    display: -webkit-box;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.product-box-text li h5 {
    margin-bottom: 0px;
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
}

.product-box-text li h6 {
    gap: 4px;
    display: flex;
    align-items: center;
    transition: ease-in;
    font-family: 'Pure-Joy';
    transition-duration: 0.5s;
    justify-content: center;
}

.product-box-text li h6 i {
    font-size: 10px;
    color: #fbcd19;
}

.product-box-text p {
    height: 50px;
    overflow: hidden;
    transition: ease-in;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition-duration: 0.5s;
}

.product-box h4 {
    transition: ease-in;
    transition-duration: 0.5s;
}

/* arrivals-sec */

/* how-it-work-sec */

.how-it-work-sec {
    overflow: hidden;
    position: relative;
    padding: 100px 0px;
    border-radius: 0px 0px 30px 30px;
}

.how-it-work-sec::before {
    top: -5%;
    left: -5%;
    width: 110%;
    content: '';
    height: 110%;
    opacity: 0.95;
    position: absolute;
    animation: shakeBg 10s linear infinite;
    background-image: url(../images/section-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.how-it-work-sec .row {
    z-index: 1;
    position: relative;
}

@keyframes shakeBg {
    0% {
        top: -2.5%;
        left: -2.5%;
        opacity: 0.95;
        transform: scale(1);
    }

    50% {
        top: 0%;
        left: 0%;
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        top: -2.5%;
        left: -2.5%;
        opacity: 0.95;
        transform: scale(1);
    }
}

.how-it-work-after {
    left: -8%;
    width: 18%;
    height: 225px;
    bottom: -60px;
    position: absolute;
    object-fit: contain;
    animation: shakeImgRight 12s ease-in-out infinite;
}

.how-it-work-before {
    top: -60px;
    width: 18%;
    right: -8%;
    height: 225px;
    position: absolute;
    object-fit: contain;
    animation: shakeImgLeft 12s ease-in-out infinite;
}

@keyframes shakeImgLeft {
    0% {
        top: -40px;
        right: -5%;
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }

    50% {
        top: -60px;
        right: -2%;
        opacity: 1;
        transform: scale(1.08) rotate(-3deg);
    }

    100% {
        top: -40px;
        right: -5%;
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shakeImgRight {
    0% {
        bottom: -40px;
        left: -8%;
        opacity: 0.9;
        transform: scale(1) rotate(8deg);
    }

    50% {
        bottom: -60px;
        left: -2%;
        opacity: 1;
        transform: scale(1.08) rotate(0deg);
    }

    100% {
        bottom: -40px;
        left: -8%;
        opacity: 0.9;
        transform: scale(1) rotate(8deg);
    }
}

.how-it-work-sec .section-heading h2 {
    color: var(--white);
}

.how-it-work-sec .section-heading p {
    color: var(--white);
    transition-duration: 0.5s;
}

.how-it-work-box {
    padding: 50px 30px;
    border-radius: 10px;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.how-it-work-box h5 {
    font-size: 24px;
    width: fit-content;
    border-radius: 50px;
    color: var(--white);
    margin-bottom: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
    padding: 15px 20px 12px 20px;
    background-color: var(--themeColor);
}

.how-it-work-box h4 {
    margin-bottom: 15px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box:hover p {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box:hover h4 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.how-it-work-box:hover h5 {
    color: var(--black);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

/* how-it-work-sec */

/* why-choose-sec */

.why-choose-sec {
    padding: 100px 0px;
}

.why-choose-heading {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.why-choose-heading p {
    max-width: 370px;
}

.why-choose-img {
    width: 100%;
    height: 450px;
    display: flex;
    overflow: hidden;
    min-height: 100%;
    align-items: center;
    border-radius: 15px;
    justify-content: center;
}

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

.why-choose-main-box {
    gap: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-box {
    gap: 10px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.why-choose-box h5 {
    margin-bottom: 5px;
}

.why-choose-icon-box {
    width: 120px;
    height: 120px;
    display: flex;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    background-color: #f4f7f8;
}

.why-choose-icon-box img {
    height: 70px;
    object-fit: contain;
}

/* why-choose-sec */

/* featured-sec */

.featured-sec {
    overflow: hidden;
    padding: 100px 4%;
    position: relative;
}

.featured-sec::before {
    top: -5%;
    left: -5%;
    width: 110%;
    content: '';
    height: 110%;
    opacity: 0.95;
    position: absolute;
    animation: shakeBg 10s linear infinite;
    background-image: url(../images/section-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.featured-sec .row {
    z-index: 1;
    position: relative;
}

.featured-heading {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: center;
    justify-content: space-between;
}

.featured-heading h2 {
    color: var(--white);
}

.featured-slider-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.featured-slider-btn button {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--white);
}

.featured-slider-btn button.featured-slider-btn-right {
    transform: rotate(180deg);
}

.featured-slider-btn button:hover {
    border-color: var(--themeColor);
    background-color: var(--themeColor);
}

.featuredSlider .slick-slide {
    opacity: 1;
    margin: 0px 5px;
}

.featured-slider-box .product-box * {
    color: var(--white);
}

.featured-sec-after {
    top: -60px;
    right: -12%;
    width: 18%;
    height: 220px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 6s ease-in-out infinite;
}

.featured-sec-before {
    left: -10%;
    bottom: -120px;
    width: 18%;
    height: 220px;
    object-fit: contain;
    position: absolute;
    animation: floatUpDownReverse 7s ease-in-out infinite;
}


@keyframes floatUpDown {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@keyframes floatUpDownReverse {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* featured-sec */




















/* testimonials-sec */

.testimonials-sec {
    padding: 100px 4%;
}

.testimonial-main-box {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-main-img {
    width: 45%;
    height: 380px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px;
}

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

.testimonial-main-text {
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-main-text-box {
    height: 150px;
    overflow-y: auto;
}

.testimonial-main-text-box::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.testimonial-main-text-box::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.testimonial-main-text-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}

.testimonial-main-text ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-main-text ul li h5 span {
    display: block;
    font-size: 14px;
    color: var(--themeColor);
}

.review-rate {
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.review-rate span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-rate i {
    font-size: 12px;
    color: #fbcd19;
}

.testimonial-left-box {
    padding: 20px;
    height: 183px;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.11);
}

.testimonial-left-box img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-left-box ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-left-box ul li h5 span {
    font-size: 14px;
    display: block;
}

.testimonialLeftSlider .slick-slide,
.testimonialRightSlider .slick-slide {
    opacity: 1;
    margin: 0px;
}

.testimonialLeftSlider .slick-list,
.testimonialRightSlider .slick-list {
    overflow: visible;
}

.testimonialRightSlider .testimonial-left-box {
    justify-content: flex-end
}

.testimonialRightSlider .testimonial-left-box::before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 60%) 70%);
}

.testimonialRightSlider .testimonial-left-box img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    position: absolute;
}

.testimonialRightSlider .testimonial-left-box ul {
    z-index: 2;
    position: relative;
}

.testimonialRightSlider .testimonial-left-box ul * {
    color: var(--white);
}

.testimonialRightSlider .testimonial-left-box ul i {
    color: #fbcd19;
}

.testimonialMainSlider .slick-prev,
.testimonialMainSlider .slick-next {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #7f7f7f;
    background-color: var(--white);
}

.testimonialMainSlider .slick-prev:hover,
.testimonialMainSlider .slick-next:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    border-color: var(--themeColor);
    background-color: var(--themeColor);
}

.testimonialMainSlider .slick-prev {
    top: 20px;
    transform: rotate(180deg);
    left: -50px;
}

.testimonialMainSlider .slick-next {
    top: unset;
    bottom: -15px;
    right: -50px;
}

.testimonialMainSlider .slick-prev::before,
.testimonialMainSlider .slick-next::before {
    content: '';
    width: 18px;
    height: 10px;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(53%) sepia(4%) saturate(17%) hue-rotate(322deg) brightness(93%) contrast(88%);
    background-image: url(../images/arrow-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonialMainSlider .slick-prev:hover::before,
.testimonialMainSlider .slick-next:hover::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(241deg) brightness(103%) contrast(101%);
}

/* testimonials-sec */

/* Footer Start */

.footerSec {
    background: var(--headingColor);
}

ul.ftr_contact li {
    color: #ffffff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px !important;
}

.ftr_left p {
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
}

.ftr_logo a img {
    width: 204px;
    height: 41px;
    object-fit: contain;
}

ul.ftr_socials {
    gap: 20px;
    display: flex;
    margin-top: 35px;
    align-items: center;
    justify-content: flex-start;
}

ul.ftr_socials li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--white);
    color: var(--white);
    opacity: 0.5;
    font-size: 14px;
    transition: all ease-in 0.3s;
}

ul.ftr_socials li a:hover {
    opacity: 1;
    color: var(--white);
    transition: all ease-in 0.3s;
    background: var(--themeColor2);
    border: 1px solid var(--themeColor2);
}

.footerSec h5 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 0px;
    border-bottom: 2px solid #3c3c3d;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-top: 80px;
}

.footerSec h5::before {
    content: "";
    position: absolute;
    background: #ffffff;
    bottom: -1px;
    left: 0;
    width: 130px;
    height: 1px;
    z-index: 1;
}

.ftr_left {
    padding-top: 80px;
    padding-right: 50px;
    border-right: 1px solid #686868;
    height: 100%;
}

.ftr_flx {
    display: flex;
    justify-content: space-between;
}

.footer-btm {
    padding: 15px 0;
    border-top: 1px solid #555555;
}

.copy-txt p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
}

.quick_links {
    padding: 0 40px 0 40px;
}

.useful_links li a,
.sevice_links li a,
.quick_links li a {
    color: var(--white);
}

.sevice_links {
    padding: 0 0 0 40px;
}

.useful_links {
    padding: 0 40px 0 40px;
}

.footerSec ul li {
    margin-bottom: 8px;
}

.subscribe_sec h4 {
    height: 100%;
    color: #ffffff;
    font-size: 18px;
    background: #000206;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 35px 0px 0px 35px;
    text-transform: uppercase;
}

.subscribe_sec {
    height: 55px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    width: 95%;
    justify-content: center;
    margin: 60px 0px 60px auto;
    flex-wrap: wrap;
}

.subscribe_sec input {
    height: 100%;
    background: #02060e;
    border: none;
    padding: 0 15px;
    width: 35%;
    font-weight: 500;
    border-radius: 50px;
    margin-left: -30px;
    color: #fff;
}

.subscribe_sec input::placeholder {
    text-transform: uppercase;
    color: #fff;
}

.subscribe_sec button {
    height: 100%;
    text-transform: uppercase;
    background: var(--themeColor);
    font-size: 14px;
    border: none;
    padding: 0 20px;
    width: 20%;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-left: -50px;
}

.ftr_logo {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #3c3c3d;
    position: relative;
}

.ftr_logo ::before {
    content: "";
    position: absolute;
    background: #ffffff;
    bottom: -1px;
    left: 0;
    width: 130px;
    height: 1px;
    z-index: 1;
}

ul.ftr_contact li a {
    color: var(--white);
    font-weight: 600;
}

/* Footer Ends */


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/