/* navigation */
* {
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
}

:root {
    --theme-color: #303094;
    --theme-color-2: #01a850;
    --theme-color-3: #a9f7d5;
    --theme-gold: rgb(242, 181, 47);
    --main-font: "Open Sans", sans-serif;
    --secondary-font: "Great Vibes", cursive;
    --abril-font: "Abril Fatface", serif;
    --poppins-font: "Poppins", sans-serif;
}

a:hover {
    color: var(--theme-color);
}
p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body :is(h1, h2, h3, h4, h5, h6) {
    font-size: inherit;
    font-weight: 700;
}
.header-navigation {
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(
        90deg,
        var(--theme-color) 58%,
        var(--theme-color) 100%
    );
    color: #fff;
    z-index: 2;
}

.header-navigation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(
        90deg,
        var(--theme-color) 0%,
        rgb(1 168 80 / 28%) 29%
    );
    z-index: -1;
}
.nav-icon a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #fff;
}
span.nav-icon.border-right {
    border-right: 1px solid #ffffff33;
    padding-right: 20px;
}
.header-social-media a {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ffffff33;
}
.header-social-media {
    border-left: 1px solid #ffffff33;
    margin-right: 20px;
}
.header-social-media a:hover {
    color: var(--theme-color);
    background: #fff;
}
a.auth-btn:hover {
    color: var(--theme-color);
}
a.auth-btn {
    font-weight: 500;
    color: #fff;
}

img.main-logo {
    width: 150px;
}

/* navigating */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 0 25px !important;
}
.navbar-nav .nav-link:hover {
    color: var(--theme-color);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color);
}
nav.main-navbar {
    background: transparent;
    /* border-radius: 55px 55px 0 0; */
    position: relative;
}
nav.navbar.main-navbar.page-nav {
    background: #01a8509e;
}

ul.dropdown-menu {
    background-color: #ffffff;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    border: none;
}
.dropdown-menu a.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
    padding-top: 7px;
}
.dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: var(--theme-color-lite);
}

/* Buttons */
.btn-button {
    background-color: var(--theme-color);
    position: relative;
    font-weight: 700;
    display: inline-flex;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-size: 200% 100%;
    background-position: right center;
    transition: background-position 0.6s ease-in-out, color 0.3s;
}

.btn-button i {
    font-size: 18px;
}

.btn-button:hover,
.btn-button:focus {
    background-image: linear-gradient(
        105.37deg,
        var(--theme-color) 0%,
        var(--theme-color-2) 50%,
        var(--theme-color) 100%
    );
    background-position: left center;
    color: #fff;
}
.btn-button.white-btn {
    background-color: #fff;
    color: var(--theme-color);
    transition: all 0.5s ease-in-out;
}
.btn-button.white-btn:hover {
    color: #fff;
}

/* Scroll activated */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}
.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}
.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}
.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}
.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}
.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* Sliders */
section button.slick-prev.slick-arrow,
section button.slick-next.slick-arrow {
    bottom: auto;
    top: -50px;
    left: auto;
    width: 55px;
    height: 55px;
    background: var(--theme-color);
}

section button.slick-prev.slick-arrow:hover,
section button.slick-next.slick-arrow:hover {
    background-color: var(--theme-color-2);
}

section button.slick-prev.slick-arrow {
    right: 5%;
    z-index: 999;
}

section button.slick-prev.slick-arrow::before {
    content: "\f12f";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}
section button.slick-next.slick-arrow::before {
    content: "\f138";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}
section ul.slick-dots {
    /* background: rgb(118 89 255 / 22%); */
    display: inline-block;
    bottom: -50px;
    border-radius: 20px;
    padding: 0px;
}
section .slick-dots li button:before {
    font-size: 13px;
    color: var(--theme-color-2);
}
section .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--theme-color);
}

/* page style */

.btn {
    border-radius: 1.5rem;
    border: none;
}
.btn.btn-primary {
    background-color: var(--theme-color);
    opacity: 0.8;
}
.btn.btn-primary:hover {
    background-color: var(--theme-color);
    opacity: 1;
}

/* banner */

section.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: url(../images/bg/back-bg.png);
    bottom: 0;
    left: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom;
}
.home-banner-main {
    background-image: url(../images/bg/bg-img-16.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.banner.scroll-animate.active {
    height: 800px;
}
h1.banner-tittle {
    font-size: 85px;
    font-family: var(--abril-font);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}
.banner-middle-content {
    padding-top: 50px;
    /* transform: rotate(350deg) translateY(10px); */
}
p.banner-text {
    font-size: 30px;
    color: #fff;
    font-family: var(--secondary-font);
}
span.highlights {
    font-family: inherit;
    color: var(--theme-color-2);
}
h1.banner-tittle span.highlights {
    font-size: 130px;
}
img.banner-product-img {
    width: 265px;
    height: auto;
    transform: rotate(339deg) translateY(50px);
}
.banner-btn-sec {
    padding-top: 50px;
}
.product-slide {
    position: relative;
}
img.banner-product-img.product-1 {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}
img.banner-product-img.product-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
img.banner-product-img.product-3 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
img.banner-product-img.slide-left {
    transform: rotate(339deg) translateY(50px) translateX(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active img.banner-product-img.product-1.slide-left {
    transform: rotate(339deg) translateY(50px);
}
.scroll-animate.active img.banner-product-img.product-2.slide-left {
    transform: rotate(328deg) translateY(48px) translateX(-50px);
}
.scroll-animate.active img.banner-product-img.product-3.slide-left {
    transform: rotate(328deg) translateY(7px) translateX(-83px);
}

img.banner-product-img.trans-2 {
    transition: transform 2s ease;
}
img.banner-product-img.trans-3 {
    transition: transform 3s ease;
}

.sub-heading {
    color: var(--theme-color);
    font-family: var(--secondary-font);
    font-size: 20px;
    margin-bottom: 5px;
    display: inline-block;
}
h2.heading {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: block;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
h2.heading::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 8px;
    background: transparent;
    bottom: -5px;
    left: 0;
    display: block;
    right: 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
h2.heading::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 30px;
    background-image: url(../images/maalika-shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -15px;
    left: 0;
    display: block;
    right: 0;
    z-index: 1;
}
.section-header.text-center h2.heading::after,
.section-header.text-center h2.heading::before {
    margin: 0 auto;
    background-position: center;
}
.product-cat-card {
    position: relative;
    z-index: 1;
    padding: 40px;
    background: var(--theme-color-3);
    display: flex;
    align-items: center;
    justify-content: end;
    background-image: url(../images/category-1.png);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.product-cat-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent 10%, #affada 70%);
    left: 0;
    top: 0;
    z-index: -1;
}
.product-cat-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: transparent;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    border: 1px solid rgb(255 255 255 / 80%);
    transition: all 0.5s;
}
.product-cat-card:hover::after {
    width: 98%;
    height: 96%;
    left: 1%;
    top: 2%;
}
.product-cat-body {
    width: 65%;
    text-align: end;
}
.cat-available-product {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color-2);
    margin-bottom: 10px;
    background: #75d8a9;
    padding: 3px 10px;
    display: inline-block;
    border-radius: 1rem;
}
.category-box-title {
    font-size: 56px;
    color: #000;
    font-family: var(--secondary-font);
    padding: 10px 0;
    display: block;
}
a.product-view-btn {
    padding: 10px 30px;
    background: var(--theme-color);
    display: inline-block;
    color: #fff;
    transition: all 0.5s;
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}
a.product-view-btn:hover {
    transform: scale(1.1);
    background-color: var(--theme-color-2);
    box-shadow: 0 0 4px rgb(0 0 0 / 25%);
}

ul.site-list li {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
}
ul.site-list li::before {
    content: "\f914";
    font-family: bootstrap-icons !important;
    font-size: 16px;
    color: var(--theme-color-2);
    position: relative;
}
img.about.images {
    height: 650px;
    width: 100%;
    object-fit: cover;
}
.sec-banner-big-name {
    font-family: var(--abril-font);
    font-weight: 400;
    font-size: 70px;
    display: block;
    margin-bottom: 25px;
    color: var(--theme-color-2);
    opacity: 0.3;
}
h2.sec-banner-tittle {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 56px;
}
section.section-banner {
    padding: 100px 0;
    background-image: url(../images/bg/section-bg-img.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
section.section-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: url(../images/bg/top-bg.png);
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: top;
}
section.section-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: url(../images/bg/back-bg.png);
    bottom: 0;
    left: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom;
}
.product-card {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 2px rgb(0 0 0 / 14%);
}
.product-image-frame {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #96dbba38;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
img.product-image {
    width: 200px;
    height: 300px;
    object-fit: contain;
    transition: all 0.5s;
    transform: scale(0.9) skewY(0deg);
    filter: drop-shadow(3px 10px 10px rgba(0, 0, 0, 0.5));
}
.product-card:hover img.product-image {
    transform: scale(1) skewY(10deg);
    filter: drop-shadow(2px 4px 6px black);
}
.product-body {
    padding: 30px;
    display: grid;
    align-content: space-between;
    justify-items: flex-start;
    gap: 10px;
}
h4.product-tittle {
    color: var(--theme-color-2);
    font-size: 24px;
    font-weight: 700;
}
span.p-tags {
    background: rgb(48 48 148 / 20%);
    padding: 3px 10px;
    border-radius: 30px;
    color: #303094;
    font-size: 14px;
    font-weight: 400;
    display: inline;
}
p.product-description {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #181818;
    font-family: var(--poppins-font);
    text-align: justify;
}
.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color-2);
}
span.product-currency {
    font-size: 14px;
}
a.product-buy-btn {
    background: var(--theme-color);
    padding: 4px 15px;
    font-size: 14px;
    color: #fff;
}
a.product-buy-btn:hover {
    background: var(--theme-color-2);
}
.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.product-badge {
    background: var(--theme-color-2);
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    border-radius: 30px;
    line-height: inherit;
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 14px;
    z-index: 1;
}
.slider-item {
    margin: 10px;
}
section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--theme-color-2);
}
section .accordion-button:focus {
    box-shadow: none;
}
img.img-faq {
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-faq-sec {
    width: 100%;
    height: 100%;
    position: relative;
}
img.img-faq-mouse-over {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    object-fit: cover;
    right: 0;
}

/* Footer */
img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.call-sec a,
.call-sec p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.call-sec i {
    color: var(--theme-color-3);
}
footer.footer.footer-main {
    padding: 60px 0;
    background: #303094cc;
    position: relative;
    z-index: 1;
}
footer.footer.footer-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/bg/bg-img-08.jpg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}
footer,
footer a,
footer p {
    color: #fff;
}

footer a:hover {
    color: var(--theme-color-3);
}
h4.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
ul.footer-links li.footer-links-item {
    font-size: 16px;
    margin-bottom: 10px;
}
footer.footer.footer-secondary {
    background: var(--theme-color);
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
ul.sec-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
span.company,
span.company a {
    font-weight: 700;
    color: var(--theme-color-2);
}

/* success Register page */

.reg-suc-content {
    text-align: center;
}

.reg-cont-title {
    font-family: var(--secondary-font);
}
.reg-cont-title {
    font-family: var(--secondary-font);
    font-size: 60px;
    margin-bottom: 20px;
    color: transparent;
    background-image: linear-gradient(45deg, #01a850, #303094);
    background-clip: text;
    font-weight: 800;
}
h2.sub-desc {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}
img.thankyou-img {
    width: 700px;
    height: auto;
    margin: 0 auto;
}

/* product Profile page */

.product-image-profile-frame {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.product-profile-image {
    width: 100%;
    transition: transform 0.1s ease-out;
    object-fit: contain;
    height: 100%;
    cursor: crosshair;
}
h2.product-profile-title {
    font-size: 48px;
    margin-bottom: 14px;
}
.product-value {
    font-size: 20px;
    color: #666;
    margin-bottom: 2px;
}
section.product-profile .product-buy-btn {
    width: 200px;
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}
section.breadcrumb-sec {
    padding: 70px 0;
    background-image: url(../images/bg/bg-img-04.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
}
section.breadcrumb-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(48 48 148 / 60%);
    z-index: -1;
}
section.breadcrumb-sec::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: url(../images/bg/back-bg.png);
    bottom: 0;
    left: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom;
}
h1.breadcrumb-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
}

ol.breadcrumb-list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
ol.breadcrumb-list li a {
    color: var(--theme-color-2);
    font-size: 16px;
    font-weight: 700;
    position: relative;
}
ol.breadcrumb-list li a:hover {
    color: var(--theme-secondary-color);
}
ol.breadcrumb-list li a.breadcrumb-items.active {
    color: #d2d6dc;
    pointer-events: none;
}
ol.breadcrumb-list li a::after {
    content: "";
    position: relative;
    width: 5px;
    height: 5px;
    background-color: #fff;
    display: inline-block;
    margin-left: 10px;
    border-radius: 50%;
}

ol.breadcrumb-list li:last-child a::after {
    display: none;
}
img.con-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.big-con-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-box {
    flex: 1;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #f7f7f7;
    padding: 20px;
}
p.con-head-title {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-form .form-control {
    padding: 12px;
    display: block;
    width: 100%;
    margin-top: 30px;
    border-color: #0e876357;
    border-radius: 0;
}
button.btn.btn-submit {
    padding: 10px 30px;
    background: #303094;
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: block;
    width: 100%;
}
.contact-form {
    background: #f7f7f7;
    padding: 20px;
}
h4.description-head {
    font-size: 19px;
    padding-top: 30px;
}
ul.ingredients-list {
    padding-left: 15px;
}
ul.ingredients-list li {
    font-size: 15px;
    margin-top: 6px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
ul.ingredients-list li i {
    font-size: 16px;
    line-height: normal;
    color: var(--theme-color-2);
}
h4.heading {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--theme-color);
}
img.our-mis-vis-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
h2.heading span.highlight {
    color: var(--theme-color-2);
}
/* .con-box {
    padding: 20px;
    border-radius: 2px;
    border: 1px solid var(--theme-color-2);
    width: 100%;
    height: 100%;
    background: #75d8a936;
} */
.footer-bottom-text p {
    margin-bottom: 0;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: var(--theme-color-2);
    padding: 25px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marqueeAnimation 10s linear infinite;
}

.con-box {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    padding: 10px 20px;
    background: transparent;
    cursor: grab;
    font-family: var(--abril-font);
}

@keyframes marqueeAnimation {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
img.certificate-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    text-align: end;
    float: inline-end;
}
h5.heading {
    color: var(--theme-color-2);
    line-height: normal;
    font-size: 18px;
}
.abt-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.abt-title {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--abril-font);
}
.abt-content {
    flex: 1;
}
.abt-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 30px;
    background: #75d8a95e;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #04a437;
}
button.search-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    z-index: 2;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}