@font-face {
    font-family: "Wanderlust Boho";
    src: url("../fonts/WanderlustBoho-Regular.eot");
    src: url("../fonts/WanderlustBoho-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/WanderlustBoho-Regular.woff2") format("woff2"),
        url("../fonts/WanderlustBoho-Regular.woff") format("woff"),
        url("../fonts/WanderlustBoho-Regular.ttf") format("truetype"),
        url("../fonts/WanderlustBoho-Regular.svg#WanderlustBoho-Regular")
            format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --header-height: 0;

    /*   Colors */
    --primary: rgb(236, 215, 140);
    --preloaderBg: green;
    --gray: rgb(33, 33, 35);
    --blue: #008fff;
    --green: green;
    --white: #fff;
    --black: #000;
    --red: rgb(212, 18, 71);
    /* Font sizes    */
    --xxl: 48px;
    --xl: 38px;
    --lg2: 22px;
    --lg: 18px;
    --sm: 16px;
    --xs: 14px;
    --xxs: 12px;
}

/*===========================================================
 Common CSS
============================================================*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: var(--sm);
    font-family: "Montserrat", sans-serif;
    font-size: var(--xs);
    line-height: 1.75;
    font-weight: 400;
    color: var(--black);
    letter-spacing: normal;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}
a {
    color: currentColor; /*this makes sure that the link always has context color.*/
    text-decoration: none;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
    /*  this allows us to set the link border bottom in content, to show that it is clickable. But in buttons it should not apply, so we may need to overwrite this in buttons if needed*/
}

a:hover {
    text-decoration: none !important;
    outline: 2px dotted currentColor !important; /* this makes link hover be better visible*/
}
*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
/* p {
    font-size: var(--xs);
} */
button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

#main {
}

.row {
    --gutter-x: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 15px;
}
/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--gray);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.angle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.progress-wrap:hover .angle-top path {
    fill: var(--white);
}
/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

.title {
    font-family: "Wanderlust Boho";
    font-size: var(--xxl);
    line-height: 1.3em;
    color: var(--primary);
}
.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey {
    padding: 18px !important;
    background: var(--black) !important;
    /* border-radius: 5px !important; */
    border: 0 !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}
.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey.text-uper {
    text-transform: uppercase !important;
}
.vc_general.vc_btn3.vc_btn3-color-grey:hover {
    color: var(--white) !important;
}
/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu-left {
}
.menu-left span {
    font-size: var(----lg2);
    font-weight: 600;
    line-height: 1;
    color: #ffce00;
}
.menu-left a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu ul {
    margin: 0;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
    border: 0;
}
.header-area .menu ul li {
    padding: 0 24px;
    margin: 0 10px;
}

.menu ul li a:hover {
    color: var(--primary);
}
.menu-inner .menu ul li {
    margin: 0 10px !important;
    position: relative;
}
.menu-inner .menu ul li a {
    padding: 10px 15px;
}

.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 100%;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: var(--black);
    text-align: left;
    list-style: none;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.header-area {
    background-color: green;
}
.banner-top-area {
    background: var(--red);
}
.banner-top p {
    margin: 0;
    padding: 10px 0;
    font-weight: 600;
    color: var(--white);
    font-size: var(--xs);
}
.label img {
    width: 46px;
}
.label-familien img {
    width: 55px;
}
.menu-area .menu ul li a {
    color: var(--black);
}
.menu-inner-alt .menu ul li a {
    text-transform: uppercase;
}
.menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.menu-inner-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.menu-inner-alt .menu-nav li a {
    padding: 0;
}
.logo a {
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 75px;
    width: 100%;
}
.label-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}
.label-familien .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu-area {
    padding: 15px 0;
}
.blog-bttn {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgb(243, 149, 16)),
        to(rgb(243, 149, 16))
    ) !important;
    background-image: -o-linear-gradient(
        rgb(243, 149, 16),
        rgb(243, 149, 16)
    ) !important;
    background-image: linear-gradient(
        rgb(243, 149, 16),
        rgb(243, 149, 16)
    ) !important;
}

.header-alt {
}
.header-alt ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}
.header-alt ul li {
    list-style: none;
    margin: 0 !important;
    font-weight: 700;
    font-size: var(--xxs);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.header-alt ul li a {
    border: 0;
    font-weight: 400;
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--red);
}

.btn-hamburger {
    cursor: pointer;
    position: relative;
    z-index: 9;
}

.menu-section-list {
    padding: 25px 10px;
    padding-top: 80px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--red);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
    background: var(--red);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    background: var(--red);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
    padding-right: 10px;
    border-bottom: 0;
    text-decoration: none;
    color: var(--black);
    position: relative;
}
.menu ul li .dropdown-menu .dropdown > a {
    background-image: url(../img/angle-right.svg);
    background-repeat: no-repeat;
    margin-right: 15px;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}
.menu-item-has-children a {
    position: relative;
    padding-right: var(--xxs);
}
.menu-toggle {
    background-image: url(../img/angle-down.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: var(--xxs);
    position: absolute;
    right: -5px;
    top: 1px;
    display: block;
    width: var(--xxs);
    height: var(--xxs);
}
.menu-alt-nav .menu-toggle,
.menu-inner-alt .menu-toggle {
    background-image: url(../img/angle-black.svg) !important;
}
.dropdown-menu .menu-toggle {
    top: 0;
    right: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.menu-item-has-children > a:hover::after {
    color: #5680bc;
}

/* =================================Banner Area=================== */
.banner-area {
    background: url("../img/Rectangle-3.png");
    background-size: cover;
}
.banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.banner-text {
    max-width: calc(100% - 512px);
    width: 100%;
    padding: 30px 0;
    background-image: url("../img/frame.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 90%;
}
.banner-img {
    max-width: 512px;
    width: 100%;
}

.banner-text h2 {
    color: var(--primary);
}
.banner-text h5 {
    font-size: var(--sm);
}
.banner-text p {
    font-size: var(--xs);
    color: var(--white);
    line-height: 1.75;
}

.partnershop-area {
    background: green;
    position: relative;
    z-index: 0;
}
.tcb-icon {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    stroke-width: 0;
    stroke: rgb(243, 149, 16);
    fill: rgb(243, 149, 16);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transform: rotate(var(--tcb-icon-rotation-angle, 0deg));
    -ms-transform: rotate(var(--tcb-icon-rotation-angle, 0deg));
    transform: rotate(var(--tcb-icon-rotation-angle, 0deg));
    cursor: pointer;
}
.partnershop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
}
.partnershop div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.partnershop p {
    font-size: var(--sm);
    color: var(--white);
    margin: 0;
    font-weight: 700;
}
.zum-bttn {
    text-decoration: none;
    border: 0 !important;
    letter-spacing: 2px;
    padding: 8px 18px !important;
    background-color: var(--red);
    font-size: var(--xs);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--white);
    width: auto;
}
.partnershop-alt {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.partnershop-alt p {
    font-size: var(--sx);
}
.partnershop-alt .zum-bttn {
    padding: 5px 15px !important;
}
.partnershop-alt .partnershop {
    gap: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
}
.cross {
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    text-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cross:hover {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
.partnershop-alt.d-none {
    display: none;
}
/* ================================= Ayurveda Area=================== */
.ayurveda-area {
    background: #ffa600;
}
.ayurveda {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.ayurveda-img {
    max-width: 512px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
.ayurveda-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.ayurveda-text {
    max-width: calc(100% - 512px);
    width: 100%;
    padding: 50px 0 50px 30px;
}
.ayurveda-text h2 {
    margin: 0;
}
.ayurveda-text p {
    color: var(--black);

    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: var(--xs);
}
.text-black {
    color: var(--black) !important;
}

.products-text {
    max-width: 512px;
    width: 100%;
}
.products-text h2 {
    color: var(--primary);
    margin-bottom: 30px;
}
.products-text h6 {
    font-weight: 600;
    color: var(--white);
    font-size: var(--sm);
}
.products-text p {
    color: var(--white);
    line-height: 1.75;
}
.products-text a {
    color: var(--blue);
    border: 0;
}
.products-text .vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.ayurveda-bttn {
    text-align: right;
    padding-top: 30px;
}
/* ================================= Products Area=================== */
.products-area {
    background-image: url(../img/products-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: center center;
}

/* =================================Course Area=================== */

.course-title-text {
    text-align: center;
}
.course-area {
    padding: 50px 0;
    margin-bottom: 20px;
}
.course-text h2 {
    margin-bottom: 20px;
}
.course-title-text p {
    font-size: var(--xs);
    color: var(--black);
}
.course-title-text h4 {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: var(--lg2);
    color: var(--black);
    font-weight: 700;
}
.course-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.course-card {
    max-width: calc(33.33% - 10px);
    width: 100%;
}
.course-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.course-img img {
    width: 100%;
}
.course-text {
    margin-top: 20px;
}
.course-text h3 {
    font-size: var(--lg);
    color: var(--black);
    font-weight: 700;
}
.course-text h3 span {
    color: rgb(11, 142, 54) !important;
}
.course-text p {
    margin-bottom: 24px;
}
.course-text a {
}
.course-bttn .vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 2px solid var(--black) !important;
}
.course-bttn .vc_general.vc_btn3.vc_btn3-color-grey:hover {
    color: var(--white) !important;
    background: var(--black) !important;
}
/* ================================= Determine Area=================== */
.determine-area {
    background-image: url(../img/eigene.png);
    min-height: 610px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.determine-text {
    max-width: 512px;
    width: 100%;
    margin-left: auto;
}
.determine-text h2 {
    margin-bottom: 30px;
}
.determine-text h4 {
    font-size: var(--lg2);
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 25px;
}
.determine-text p {
    margin-bottom: 50px;
}
/* ================================= Connection Area=================== */
.connection-area {
    background: #be1522;
    min-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.connection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.connection-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 50%;
    width: 100%;
    position: relative;
}
.online-img {
    position: relative;
    z-index: 2;
    padding-top: 45px;
}
.online-bg {
    position: absolute;
    top: 0;
    z-index: 1;
}
.connection-text {
    max-width: 50%;
    width: 100%;
    padding-top: 70px;
}
.connection-text p {
    color: var(--white);
    margin-bottom: 50px;
}
/* ================================= Blog Area=================== */
.blog-area {
    padding: 50px 0;
}
.blog-title {
    text-align: center;
    margin-bottom: 25px;
}
.blog-card {
    max-width: calc(33.33% - 15px);
    width: 100%;
}
.blog-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 0;
}
.blog-text {
    margin-top: 15px;
}
.blog-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.blog-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-text p {
    margin-bottom: 30px;
}
/* ================================= Footer Area=================== */
.footer-area {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
    font-size: var(--xxs);
}
.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.single-footer {
    max-width: calc(33.33% - 15px);
    width: 100%;
}
.single-footer p {
    margin: 0;
    font-weight: 700;
    color: var(--white);
}
.footer .text-center {
    text-align: center;
}
.single-footer a {
    border: 0;
}
.footer-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 62px;
    margin: auto;
}
.footer .text-center p {
    margin: 5px 0;
    letter-spacing: 1px;
    line-height: 1.75;
}
.single-footer h3 {
    line-height: 1.75;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: var(--xxs);
}
.single-footer span,
.single-footer a,
.single-footer address {
    font-size: var(--xxs);
    text-align: left;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
}
.single-footer a {
}
.single-footer ul {
    margin: 0;
}
.single-footer ul li {
    margin: 0 !important;
    list-style: none;
}
.copyright {
    margin-top: 80px;
}
.copyright p {
    color: rgb(106, 107, 108);
    text-align: center;
    font-size: var(--xxs);
}
.footer-alt {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-alt .single-footer {
    max-width: calc(25% - 25px);
    padding-bottom: 25px;
}
.footer-alt .single-footer:first-child {
    padding-bottom: 0;
}
.footer-alt .single-footer p span {
    width: 40px;
    display: inline-block;
}
.footer-alt .single-footer h3 {
    margin-bottom: 10px;
}
.footer-alt .single-footer address {
    font-weight: normal;
    margin-bottom: 5px;
}
.footer-tcb {
    background: #204047;
    padding: 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}
.footer-tcb div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}
.footer-tcb div h5 {
    margin: 0;
    font-weight: 700;
    font-size: var(--xxs);
    text-transform: uppercase;
    line-height: 1.5;
}
.footer-tcb div h6 {
    margin: 0;
}
.footer-tcb div span {
    text-align: center;
}
.footer-tcb div svg {
    background: var(--white);
    border-radius: 50%;
    padding: 3px;
    width: 20px;
    height: 20px;
}
.pay-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pay-card svg {
    width: 35px;
    fill: rgb(53, 84, 165);
}
svg .masterCard-style-1-st2 {
    fill: rgb(236, 29, 37);
}
svg .masterCard-style-1-st3 {
    fill: rgb(249, 161, 27);
}
svg .masterCard-style-1-st0 {
    fill: rgb(26, 47, 89);
}
svg .payPal-style-1-st0 {
    fill: rgb(243, 243, 243);
}
svg .payPal-style-1-st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: rgb(35, 65, 144);
}
svg .payPal-style-1-st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: rgb(2, 162, 211);
}
svg .googlePay-style-1-st0 {
    fill: rgb(66, 133, 244);
}
svg .googlePay-style-1-st4 {
    fill: rgb(255, 255, 255);
}
svg .googlePay-style-1-st3 {
    fill: rgb(234, 67, 53);
}
svg .googlePay-style-1-st2 {
    fill: rgb(251, 188, 4);
}
svg .applePay-style-1-st0 {
    fill: rgb(35, 31, 32);
}
svg .applePay-style-1-st1 {
    fill: rgb(255, 255, 255);
}
svg .applePay-style-1-st1 {
    fill: rgb(255, 255, 255);
}
.copyright-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.copyright-alt p {
    margin: 0;
    color: rgb(195, 195, 195);
}
.copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}
.copy-right p {
    margin: 0;
}

/* ================================= product Area=================== */
.product-area {
    padding: 50px 0;
}
.product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-left {
    max-width: 335px;
    width: 100%;
}
.product-right {
    max-width: calc(100% - 375px);
    width: 100%;
}
.product-top-text {
    margin-bottom: 20px;
}
.product-top-text h2 {
    border-bottom: 1px solid rgb(243, 149, 16);
    font-size: 29px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    padding-bottom: 10px;
}
.product-top-text h3 {
    color: #d41247;
    font-size: 25px;
    font-family: "Wanderlust Boho";
}
.product-top-text h4 {
    color: hsla(100, 100%, 27%, 1);
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 400;
}
.product-top-text p {
    font-size: var(--xxs);
    margin: 0;
}
.product-top-text p a {
    color: var(--blue);
    border: 0;
}
.product-text {
}
.product-text p {
    color: rgb(106, 107, 108);
    font-size: var(--lg);
    line-height: 1.8;
}
.product-text p:first-child {
    margin-bottom: 30px;
}
.product-text a {
    font-size: var(--lg);
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin: 25px 0;
    border: 0;
    line-height: 1.8;
}
.product-actions form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.product-actions {
    margin-bottom: 35px;
}
.gapy-bttn a {
    width: 100%;
}
.slider-nav .slick-slide.slick-current.slick-active {
    position: relative;
}
.slider-nav .slick-slide.slick-current.slick-active:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
}
.slick-slide img {
    width: 100%;
}

/* ===================Tab================= */

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 20px;
    gap: 55px;
}

.tab-link {
    padding: 10px 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    color: rgb(106, 107, 108);
    font-size: var(--lg2);
}

.tab-link:hover {
    color: #333;
}

.tab-link.active {
    color: #333;
    font-weight: bold;
    border-bottom: 5px solid hsla(100, 100%, 27%, 1);
}

.tab-content {
    display: none;
    padding: 20px 0;
    line-height: 1.6;
    color: #555;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: rgb(106, 107, 108);
    font-size: var(--lg);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
/* ================= */
.quantity-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.quantity-button {
    width: 32px;
    height: 32px;
    background-color: #f5f5f5;
    border: 0;
    color: rgb(106, 107, 108);
    font-size: var(--lg);
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: var(----lg2);
}

.quantity-button:hover {
    background-color: #e5e5e5;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 0;
    margin: 0 5px;
    font-size: var(--lg2);
    font-weight: 700;
    color: rgb(106, 107, 108);
}

.add-to-cart-button {
    background-color: #328c07;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: var(--sm);
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.add-to-cart-button:hover {
    background-color: #276c04;
}

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

.product-actions input[type="number"] {
    -moz-appearance: textfield;
}
.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey.green-bg {
    background: hsla(100, 100%, 27%, 1) !important;
    text-transform: capitalize !important;
    width: 230px;
}
/* =====================DE============== */
.de-banner-area {
    background-image: url(../img/de/img-1);
    min-height: 570px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.de-text {
    max-width: 510px;
    width: 100%;
}
.de-header-area {
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 12px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 12px 0px;
    padding: 12px 0;
}
.de-banner-inner h2 {
    color: var(--white);
    margin: 0;
}
.de-text h4 {
    color: var(--white);
    font-size: var(--lg2);
    line-height: 1.7;
    margin: 30px 0;
}
.de-banner-inner p {
    margin-bottom: 50px;
}
.de-text p {
    font-size: var(--sm);
    color: var(--white);
    line-height: 1.75;
    margin-bottom: 50px;
}
.text-right {
    text-align: right;
}
.natural-area {
    background-image: url(../img/de/img-2);
    min-height: 460px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.why-de-area {
    /* background-image: url(../img/de/img-4);
    min-height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; */
}
.why-de-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.why-de-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 450px;
    width: 100%;
}
.why-de {
    margin-left: auto;
}
.why-de p {
    margin: 0 !important;
}
.packaging-area {
    background-image: url(../img/de/img-3);
    min-height: 585px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.packaging {
    margin: 0;
    margin-left: auto;
}

.products-slider-area {
    padding-top: 50px;
    padding-bottom: 200px;
}

.products-slider-title {
    border-bottom: 1px solid rgb(243, 149, 16);
}
.products-slider-title h2 {
    margin-bottom: 30px;
}
.products-slider-text {
    padding: 10px 25px;
}
.products-slider-text h3 {
    font-size: var(--lg);
    line-height: 1.3em;
    margin: 0;
}
.products-slider-text > a {
    color: #d41247;
    font-size: 25px;
    font-family: "Wanderlust Boho";
    border: 0;
    display: block;
    line-height: 1.8;
}
.products-slider-text h6 {
    color: rgb(106, 107, 108);
}
.products-slider-text div p {
    margin: 0;
    font-size: var(--xxs);
}
.products-slider-text p a {
    border: 0;
    color: #008fff;
}
.products-slider-inner {
    position: relative;
}
.product-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.arrow-left {
    left: 0;
}
.arrow-right {
    right: 0;
}
.slick-arrow {
    border: 1px solid #d9d9d9;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7px 3px;
    cursor: pointer;
}
.product-bttn a {
    font-weight: bold;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #525252;
    background: #ddd;
    border: 0;
    display: inline-block;
    border-radius: 5px;
    margin-top: 10px;
}

.slick-dots {
    bottom: -50px;
    margin: 0 !important;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
}
.slick-dots li {
    background: var(--black);
    color: var(--black);
    bottom: 0;
    width: 8px;
    height: 8px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    opacity: 0.3;
    background-color: var(--black);
    margin: 0 !important;
    border-radius: 50%;
}
.slick-dots .slick-active {
    opacity: 1;
    background-color: var(--black);
}
.slick-dots li button:before {
    content: "";
}
/*===========================================================
 Responsive Menu
===========================================================*/

@media (min-width: 992px) {
    .menu-item-has-children:focus-visible > a + .dropdown-menu,
    .menu-item-has-children:focus > a + .dropdown-menu,
    .menu-item-has-children:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .menu-item-has-children .dropdown > a::after {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    .de-header-area,
    .banner-top-area {
        padding-top: 80px;
    }
    .de-banner-area {
        padding-top: 80px;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 50px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
        color: var(--white);
    }

    .menu-item-has-children > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: var(--white);
        -webkit-box-shadow: 0px 1px 3px #eee;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1999;
    }
}

/*===========================================================
 Responsive
============================================================*/
@media (min-width: 1200px) {
    .container {
        max-width: 1080px;
    }
}

/* focus */
:focus {
    outline: 2px dashed #4d90fe !important;
    outline-offset: 2px;
}

/* ============== MEGAMENU =================== */
.site-header {
    background-color: #2e7d32;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Navigation Styles */
.primary-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0 !important;
    /* width: 100%; */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu > li {
    position: unset;
    margin: 0 !important;
}

.menu > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    /* font-size: var(--xs); */
    font-size: 15px;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    border: 0;
}

.menu > li > a:hover,
.menu > li.active > a {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Menu Toggle Icon */
.menu-toggle {
    display: inline-block;
    margin-left: 8px;
    position: relative;
    width: 10px;
    height: 10px;
}

.menu-toggle::after {
    /* content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    transition: transform 0.3s; */
}

.menu-item-has-children.active .menu-toggle::after {
    -webkit-transform: translate(-50%, -25%) rotate(180deg);
    -ms-transform: translate(-50%, -25%) rotate(180deg);
    transform: translate(-50%, -25%) rotate(180deg);
}

/* Mega Menu Styles */
.mega-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
    padding-bottom: 0;
    border-radius: 0 0 10px 10px;
}

.menu-item-has-children:hover .mega-dropdown,
.menu-item-has-children.active .mega-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mega-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.mega-column {
    max-width: calc(50% - 20px);
    width: 100%;
    margin-bottom: 0;
    border: 1px solid rgba(146, 146, 146, 0.17);
    border-radius: 10px;
    padding: 10px 20px !important;
}

.column-title {
    color: var(--black);
    font-size: var(--lg);
    font-weight: 700;
    margin-bottom: 5px !important;
    padding-bottom: 8px;
    border-bottom: 0;
}

.submenu {
    list-style: none;
    margin: 0 !important;
    padding-left: 20px;
}

.submenu li {
    margin-bottom: 10px;
    display: block !important;
}

.submenu a {
    color: var(--black);
    text-decoration: none;
    font-size: var(--xs) !important;
    display: block;
    padding: 5px 0;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.submenu a:hover {
    color: var(--blue) !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .primary-nav {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .primary-nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .menu {
    }

    .menu > li {
        width: 100%;
    }

    .menu > li > a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .mega-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mega-column {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .de-text {
        max-width: 490px;
        width: 100%;
    }
    .logo a {
        max-width: 60px;
    }
    .menu-inner .menu ul li {
        margin: 0 !important;
    }
    .header-alt ul {
        gap: 10px;
    }
    .header-alt ul li {
        gap: 5px;
    }
    .partnershop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .partnershop-alt .partnershop {
        gap: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 10px 0;
    }
}

@media (max-width: 991px) {
    :root {
        --xxl: 40px;
        --xl: 36px;
        --lg2: 22px;
        --lg: 18px;
        --sm: 16px;
        --xs: 14px;
        --xs: 12px;
    }
    .why-de-img {
        max-width: 400px;
        width: 100%;
    }
    .de-text {
        max-width: 100%;
    }
    .why-de-area {
        padding-bottom: 70px;
        padding-top: 30px;
    }
    .products-slider-area {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .why-de-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 50px 0;
    }
    .footer-alt .single-footer {
        max-width: calc(23% - 5px);
        padding-bottom: 25px;
    }

    .product-right {
        max-width: calc(100% - 355px);
        width: 100%;
    }

    .footer-alt .single-footer:nth-child(1) {
        max-width: 26%;
    }
    .footer-alt .single-footer:nth-child(2) {
        max-width: 32%;
        padding-left: 15px;
    }
    .footer-alt .single-footer:nth-child(3) {
        max-width: 20%;
    }
    .footer-alt .single-footer:nth-child(4) {
        max-width: 20%;
    }
    .footer-tcb div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }
    .tab-content p {
        margin-bottom: 30px;
    }
    .footer-tcb div span {
        text-align: left;
    }
    .footer-tcb {
        padding: 15px 15px;
    }
    .copyright-alt {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px 0;
    }
    .footer-tcb div svg {
        width: 17px;
        height: 17px;
    }
    .menu-inner .menu ul li a {
        padding: 5px 10px;
        line-height: 1.5;
    }
    .copyright {
        margin-top: 50px;
    }
    .banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .banner-img img,
    .banner-img {
        max-width: 100%;
        width: 100%;
    }
    .ayurveda-bttn {
        text-align: center;
        padding-top: 30px;
    }
    .banner-text {
        max-width: 100%;
    }
    .ayurveda-text {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
    .ayurveda-area {
        padding: 50px 0;
    }
    .ayurveda {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px 0;
    }
    .determine-text {
        max-width: 472px;
    }
    .ayurveda-text h2,
    .ayurveda-text p {
        color: var(--white);
    }
    .vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-color-grey {
        background: var(--white) !important;
        color: var(--black) !important;
    }
    .menu-area {
        display: none;
    }
    .connection {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .connection-text {
        max-width: 100%;
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        position: relative;
        z-index: 1;
    }
    .connection-img {
        max-width: 100%;
    }
    .blog-card {
        max-width: calc(33.33% - 10px);
        width: 100%;
    }
    .mb-menu-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    :root {
        --xxl: 36px;
        --xl: 32px;
        --lg2: 20px;
        --lg: 17px;
        --sm: 16px;
        --xs: 14px;
        --xs: 12px;
    }

    .course-card {
        max-width: calc(50% - 10px);
        width: 100%;
    }

    .menu-area {
        padding: 0;
    }
    .footer-alt .single-footer {
        max-width: 50% !important;
    }
    .product-right {
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }
    .product-left {
        max-width: 100%;
        width: 100%;
    }
    .footer-alt .single-footer:nth-child(1),
    .single-footer:nth-child(1) {
        max-width: 100% !important;
        width: 100%;
        margin-bottom: 35px;
    }
    .footer-alt .single-footer {
        width: 25%;
        padding: 0;
    }
    .footer-alt .single-footer:nth-child(2) {
        max-width: 50% !important;
        padding-left: 0;
        width: 100%;
    }
    .footer-tcb {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px 0;
    }
    .footer-tcb div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        width: 50%;
    }
    .menu-inner-alt {
        display: none;
    }
    .banner-area {
        padding: 50px 0;
    }
    .course-inner {
        gap: 25px 0;
    }
    .blog-card {
        max-width: calc(50% - 10px);
        width: 100%;
    }

    .ayurveda-area {
        padding: 40px 0;
    }
    .determine-area {
        background-image: url(../img/eigene-mobile.png);
        background-position: top center;
        min-height: 500px !important;
    }
    .determine-text {
        max-width: 100%;
        padding-top: 350px;
        padding-bottom: 50px;
    }
    .determine-text p {
        margin-bottom: 30px;
    }
    .single-footer {
        max-width: 40%;
        width: 100%;
        padding: 0;
    }
}
@media (max-width: 575px) {
    :root {
        --xxl: 32px;
        --xl: 30px;
        --lg2: 20px;
        --lg: 17px;
        --sm: 16px;
        --xs: 14px;
        --xs: 12px;
    }
    .tabs li {
        margin: 0 !important;
    }
    .tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px 0;
    }
    .footer-alt .single-footer:nth-child(2) {
        max-width: 100% !important;
        padding-left: 0;
        width: 100%;
        margin-bottom: 25px;
    }
    .footer-tcb div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .copy-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 20px 0;
    }
    .copyright-alt {
        text-align: center;
    }
    .blog-card {
        max-width: 100%;
        width: 100%;
    }
    .course-card {
        max-width: 100%;
        width: 100%;
    }
    .products-text {
        padding: 50px 0;
    }
    .banner-text {
        max-width: 100%;
        width: 100%;
        padding: 0;
        position: unset;
        z-index: 1;
        top: unset;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }
    .banner-img {
        display: none;
    }
    .ayurveda-text {
        padding: 0;
    }
    .determine-text h2 {
        margin-bottom: 15px;
    }
    .de-text p {
        margin-bottom: 30px;
    }
    .de-text h4 {
        margin: 15px 0;
    }
    .determine-text {
        max-width: 100%;
        padding-top: 300px;
        padding-bottom: 50px;
    }
}
@media (max-width: 475px) {
    .single-footer {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .footer-alt .single-footer {
        width: 100%;
        padding: 0;
    }
}