/*------------------------------------------------------------------
Project: Yoga Trainer
Author: The_Krishna
Last change: 10/09/2024
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Page Loader CSS
3.Button CSS
4.Whole Site Image Animtion CSS
5.Whole Page Aniamtion CSS
6.Main Header Menu CSS
7.Mobile Menu CSS
8.Section One CSS
9.Section Two CSS
10.Section Three CSS
11.Section Four CSS
12.Section Five CSS
13.Section Six CSS
14.Section Seven CSS
15.Section Eight CSS
16.Section Nine CSS
17.Section Ten CSS
18.Section Eleven CSS
19.Section home blog CSS
20.Footer CSS
21.Bottom To Top Button CSS
22.About Page CSS
23.FAQ Page CSS
24.Coming Soon Page CSS
25.Error 404 Page CSS
26.Classes Page 2 CSS
27.Classes Schedule CSS
28.Classes Details Page1 CSS
29.Shop Page CSS
30.My Account Page CSS
31.Cart Page CSS
32.Check Out Page CSS
33.Blog Page CSS
34.Contact Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
ol,
ul {
    padding-left: 0rem !important;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #00D061;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
body {
    background: rgba(15, 20, 28, 1);
    overflow-y: scroll;
    overflow-x: hidden;
}
/*-----------------------[ 2.Page Loader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #0F141C;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.page-loader img {
    width: 200px;
    height: auto;
}
/*-----------------------[ 3.Button CSS ]------------------------*/
.button {
    display: inline-flex;
    padding: 18px 30px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #6F39FD;
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    cursor: pointer;
}
.button a {
    color: #FFF;
    position: relative;
    transition: all .45s ease-Out;
}
.circle {
    width: 0;
    height: 0;
    opacity: 0;
    border-radius: 50%;
    background: #00D061;
    position: absolute;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
}
.button:hover .circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}
.button:hover a {
    color: #0F141C;
}
/*-----------------------[ 4.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
    clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 5.Whole Page Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 3s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 3s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 3s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 3s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 3s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 3s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 3s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*-----------------------[ 6.Main Header Menu CSS ]------------------------*/
header {
    position: fixed;
    width: 100%;
    z-index: 100;
}
.fixed {
    position: fixed;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 100%;
    top: 0%;
    background: rgba(15, 20, 28, 0.25);
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}
@keyframes fixedheader {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
.top-navbar.fixed {
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.side-menu-logo,
.side-menu-logo2 {
    display: none;
}
.navbar {
    padding: 0;
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}
.menu-item {
    position: relative;
    display: inline-block;
}
li.menu-item.menu-dropdown.active .menu-link {
    color: #00D061;
}
li.submenu-item.active {
    background: #00D061;
}
li.submenu-item.active a {
    color: #0F141C;
}
li.current-active a {
    color: #00D061 !important;
}
ul#menu {
    display: flex;
    align-items: center;
    gap: 60px;
}
.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}
@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.button1 a::before {
    background: #071B35;
    color: #fff;
}
.submenu {
    position: absolute;
    top: 58px;
    left: -2rem;
    min-width: 14rem;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: #FFF;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #00D061;
    border-top: 2px solid #00D061;
}
.submenu-item {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
}
.submenu-link {
    color: var(--15, #071B35);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.35s ease;
}
.submenu-item:hover .submenu-link {
    color: #FFF;
}
.submenu-item:hover {
    outline: none;
    background: #00D061;
}
.header-button {
    width: 60px;
    height: 60px;
    border: 2px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 60px;
}
.add-item-count {
    width: 16px;
    height: 16px;
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    background: #00D061;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 11px;
    right: 11px;
}
.menu-burger {
    width: 47px;
    display: none;
}
/*-----------------------[ 7.Mobile Menu CSS ]------------------------*/
.side-menu-offcanvas-main .offcanvas-header {
    justify-content: space-between;
}
.close-square {
    width: 24px;
}
.close-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00D061;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-menu-offcanvas-main {
    background: #171B22;
}
.side-menu-offcanvas-main .accordion-item {
    background: #171B22;
    border-radius: 0;
    border-bottom: 2px solid;
    border-top: none;
    border-left: none;
    border-right: none;
}
.side-menu-accordion-item button {
    background: #171B22;
}
.side-menu-accordion-item a,
.side-menu-accordion-item button {
    padding: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.side-menu-accordion-item {
    padding: 13px 10px;
}
.accordion-button:not(.collapsed) {
    color: #00D061;
    background: transparent;
    box-shadow: none;
}
.side-menu-sub-item a {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
}
.side-menu-sub-item {
    padding: 8px 8px;
    border-bottom: 1px solid;
}
.side-menu-accor-body {
    padding: 0 10px 10px 10px;
}
.side-menu-offcanvas-main .offcanvas-body .accordion {
    width: 100%;
}
.mb-notice {
    margin: 50px 0 20px;
}
.mb-notice a {
    font-size: 16px;
    color: #FFF;
    font-weight: 600;
    line-height: 22px;
    font-family: Poppins;
    border-bottom: 1px solid #FFF;
    padding-bottom: 5px;
}
.mb-info {
    color: #909090;
    font-size: 14px;
    line-height: 28px;
    font-family: Poppins;
}
.mb-info a {
    color: #909090;
    font-weight: 600;
}
/*-----------------------[ 8.Section One CSS ]------------------------*/
.section-one {
    background: #0F141C;
    background-image: url('../images/home_page/noice-img.png');
    background-size: cover;
    background-position: center;
    height: 935px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background-blend-mode: soft-light;
    padding-top: 130px;
}
.heding-text-img {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}
.home-sec-one-video {
    width: 409px;
    height: 180px;
    border-radius: 90px;
    object-fit: cover;
}
.yoga-for {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-size: 160px;
    font-style: normal;
    font-weight: 400;
    line-height: 180px;
}
.Peaceful {
    text-align: center;
    color: #00D061;
}
.personal-practice {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}
.personal-practice p {
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin-left: 100px;
    max-width: 410px;
    position: relative;
}
.personal-practice p::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -100px;
    width: 80px;
    height: 4px;
    background: #FFF;
}
.yoga-img1 {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    animation: 5s ease 0s normal none infinite running moveLeftRight;
}
.yoga-img1-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.private-class {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    width: 220px;
    position: absolute;
    left: -330px;
    bottom: -90px;
}
.arrow1-svg {
    position: absolute;
    right: 330px;
    top: -35px;
    animation: mover 1s infinite alternate;
}
.video-btn-img {
    background-image: url('../images/home_page/video-btn-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 50px;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.btn-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #00D061;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/*-----------------------[ 9.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0;
    border-radius: 60px;
    background: #171B22;
}
.about-img {
    max-width: 100%;
}
.home-about-me-text {
    color: var(--20, #00D061);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.katy {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    padding-top: 10px;
    padding-bottom: 20px;
}
.habitant {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.button2 {
    margin-top: 40px;
}
.happy-clients-numb {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    padding-bottom: 10px;
}
.happy-clients-text {
    color: var(--14, #909090);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.counter-row {
    padding-bottom: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 130%);
    background: #171B22;
    width: 100%;
    border-radius: 0 0 60px 60px;
}
.cornar-left-circle {
    width: 60px;
    height: 60px;
    border-radius: 0 48px 0 0;
    background-color: #0F141C;
    position: absolute;
    left: -60px;
    bottom: 40px;
}
.cornar-left-circle2 {
    width: 60px;
    height: 60px;
    border-radius: 0 48px 0 0;
    background-color: #171B22;
    position: absolute;
    left: -40px;
    bottom: 60px;
}
.cornar-left-circle4 {
    width: 60px;
    height: 60px;
    border-radius: 48px 0 0 0;
    background-color: #0F141C;
    position: absolute;
    right: -58px;
    bottom: 40px;
}
.cornar-left-circle3 {
    width: 60px;
    height: 60px;
    border-radius: 48px 0 0 0;
    background-color: #171B22;
    position: absolute;
    right: -43px;
    bottom: 64px;
}
/*-----------------------[ 10.Section Three CSS ]------------------------*/
.section-three {
    padding: 100px 0;
    text-align: center;
    background: var(--12, #0F141C);
}
.yoga-img2 {
    max-width: 100%;
    padding-top: 100px;
    mix-blend-mode: luminosity;
}
.been {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 100px;
    position: absolute;
    bottom: 0;
}
.been span {
    color: #00D061;
    font-family: "Elsie Swash Caps";
}
/*-----------------------[ 11.Section Four CSS ]------------------------*/
.section-four {
    padding-bottom: 100px;
}
.yogaClassesText {
    text-align: center;
}
.Yourself {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.vitae {
    text-align: center;
    max-width: 1070px;
    margin: 0 auto;
}
.home-yoga-classes-row {
    margin: 60px 50px 40px 50px;
    text-align: center;
}
.yoga-classes-img {
    max-width: 100%;
    border-radius: 210px;
}
.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
    padding: 30px;
    margin: 70px;
    border-radius: 145px;
    background: linear-gradient(180deg, rgba(23, 27, 34, 0.40) 0%, rgba(23, 27, 34, 0.80) 100%);
    backdrop-filter: blur(5px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.overlay-text-main {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    padding-bottom: 30px;
}
.overlay-text-main-sub {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #00D061;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.slider-arrow img {
    transform: rotate(-45deg);
}
.image-container:hover .overlay {
    opacity: 1;
    transform: scale(1.05);
}
.button3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*-----------------------[ 12.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
    background: var(--5, #171B22);
}
.yoga-img3,
.yoga-img4 {
    max-width: 100%;
    z-index: 1;
}
.yoga-img4 {
    animation: 5s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
        -moz-transform: translateX(20px);
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}
.yoga-img3 {
    margin-top: 80px;
}
.WeOffer {
    font-size: 80px;
    line-height: 100px;
}
.whys-us-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.gifted {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: 520px;
    position: relative;
    margin-left: 110px;
}
.giftedyoga::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -100px;
    width: 80px;
    height: 4px;
    background: #FFF;
}
.anxiety-row {
    margin-top: 60px;
    gap: 30px 0;
}
.anxiety-box {
    text-align: center;
}
.AnxietyText {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    padding-bottom: 10px;
}
.AnxietyTextSub {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.home-page-video {
    width: 100%;
    height: 800px;
    object-fit: cover;
}
.yoga-img5 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.yoga-img5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
/*-----------------------[ 13.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
}
.yoga-img6 {
    width: 100%;
    margin-top: 40px;
    position: absolute;
    left: -40px;
}
.day-time-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 2px solid #171B22;
    border-bottom: 1px solid #171B22;
}
.day {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}
.day-time-main-sub p {
    color: var(--1, #FFF);
    text-align: right;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}
.day-time-main-sub p span {
    color: var(--14, #909090);
    text-align: left;
}
.day-time-main-sub p span::before {
    content: '-';
    padding: 0 10px;
}
/*-----------------------[ 14.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
    background: var(--5, #171B22);
}
.clients-says {
    max-width: 870px;
}
.clientSaySwiper {
    margin-top: 40px;
}
.swiper-slide.clientSaySwiper-slide {
    background: var(--12, #0F141C);
    padding: 30px;
}
.great {
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding: 20px 0 10px 0;
}
.nisl {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.cotte-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}
.Tom {
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 4px;
}
.client-date {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.btn-pagination .swiper-pagination-bullet-active {
    background: #6F39FD !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px;
}
.btn-pagination .swiper-pagination-bullet {
    background: #909090;
    width: 10px;
    height: 10px;
}
.swiper-pagination.btn-pagination {
    position: absolute;
    bottom: 50px;
}
.yoga-img7 {
    position: absolute;
    right: 150px;
    top: 0;
    animation: 5s ease 0s normal none infinite running moveLeftRight;
}
/*-----------------------[ 15.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 100px 0;
}
.flower-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.yoga-img8 {
    z-index: 2;
    position: relative;
    max-width: 100%;
}
.flower-img {
    position: absolute;
    top: 0;
    right: 75px;
    z-index: 1;
    animation: animName 50s linear infinite;
}
@keyframes animName {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.half-round-img {
    position: absolute;
    bottom: 0;
    left: 50px;
    z-index: 1;
}
.bookings {
    font-size: 18px;
    line-height: 30px;
}
.button4 {
    margin-top: 40px;
}
/*-----------------------[ 16.Section Nine CSS ]------------------------*/
.section-nine {
    padding-bottom: 100px;
    margin: 0 40px;
}
.shopSlider {
    margin-top: 60px;
}
.swiper-slide-shopSlider {
    text-align: center;
}
.swiper-slide-shopSlider img {
    max-width: 100%;
    border-radius: 32px;
    transition: all 0.6s ease-in-out;
}
.swiper-slide-shopSlider img:hover {
    border-radius: 0;
}
.swiper-slide-shopSlider p {
    color: var(--14, #909090);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 20px 0 10px 0;
}
.swiper-slide-shopSlider h3 {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding-bottom: 10px;
}
/*-----------------------[ 17.Section Ten CSS ]------------------------*/
.section-ten {
    margin: 0 100px;
}
.PremiumYogaClass-img {
    max-width: 100%;
    border-radius: 100px;
}
.pregnancy-img {
    background-image: linear-gradient(#171b22cc, #171b22cc), url('../images/home_page/premiumYoga-img2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    padding: 100px 0;
    border-radius: 100px;
    position: relative;
}
.overlay-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.button-premium-yoga {
    display: flex;
    align-items: center;
    justify-content: center;
}
.digit-main h2 {
    color: var(--20, #00D061);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    padding-bottom: 10px;
}
.digit-main p {
    color: var(--14, #909090);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.prmi-digit-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 60px;
    margin-bottom: 20px;
}
.digit-main {
    max-width: 250px;
    width: 100%;
    position: relative;
}
.digit-main-line::before {
    content: '';
    width: 2px;
    height: 120px;
    background: var(--14, #909090);
    position: absolute;
    top: 0;
    left: -20px;
}
/*-----------------------[ 18.Section Eleven CSS ]------------------------*/
.SectionEleven {
    padding: 100px 0;
}
.pricing-plan-box {
    border-radius: 20px;
    background: #171B22;
    border-top: 4px solid #00D061;
    z-index: 3;
    position: relative;
}
.pricing-plan-box:hover .basic {
    background: #00D061;
}
.pricing-plan-box2 {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 0 20px;
    background: #00D061;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: -32px;
    width: calc(100% - 24px);
    z-index: 1;
}
.pricing-plan-row {
    margin-top: 100px;
}
.basic-main {
    padding: 10px 10px 0 10px;
}
.basic {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    border-radius: 10px;
    background: #0F141C;
    padding: 10px 0;
    transition: all 0.6s ease-in-out;
}
.silver {
    background: #00D061;
}
.pricing-plan-box-body {
    padding: 30px;
}
.price-plan-amout {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
}
.monthly {
    color: var(--14, #909090);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 0 20px 0;
}
.button6 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 185px;
    margin: 30px auto;
}
.line-hr {
    width: 100%;
    height: 2px;
    background: #0F141C;
    margin-bottom: 30px;
}
.Single {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}
.Single2 {
    color: var(--14, #909090);
}
/*-----------------------[ 19.Section home blog CSS ]------------------------*/
.tips-text-main {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0 10px 0;
}
.tips {
    color: var(--20, #00D061);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.blog-date {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.line-blog {
    width: 40px;
    height: 2px;
    background: var(--14, #909090);
}
.asana {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    transition: all 0.6s ease-in-out;
}
.blog-main:hover .asana {
    color: #00D061;
}
.Home-blog-img {
    transition: transform 0.6s ease;
    width: 100%;
}
.blog-main:hover .Home-blog-img {
    transform: scale(1.1);
}
.home-blog-row {
    margin-top: 40px;
}
/*-----------------------[ 20.Footer CSS ]------------------------*/
.footer {
    padding-top: 100px;
}
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.logos-slide {
    animation: 40s slide infinite linear;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee__content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
    margin-top: 30px;
}
.marquee__content img:hover {
    opacity: 0.8;
}
.footer-row {
    padding-top: 100px;
    padding-bottom: 60px;
}
.useful-links {
    color: var(--20, #00D061);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 30px;
}
.footer-list li {
    padding-bottom: 20px;
}
.footer-list a {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-style: normal;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}
.footer-list a:hover {
    color: #00D061;
}
.footer-input {
    border-bottom: 2px solid #909090;
    padding-right: 30px;
    padding-bottom: 10px;
    position: relative;
}
.footer-input input {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.footer-input ::placeholder {
    color: #FFFFFF;
}
.message-icon-footer {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.rights-reserved {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #171B22;
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    transition: all 0.5s ease-in-out;
}
.rights-reserved a:hover {
    color: #FFF;
}
/*-----------------------[ 21.Bottom To Top Button CSS ]------------------------*/
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: url('../images/svg/arrow-down.svg');
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg.progress-circle path {
    stroke: #00D061;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap::after {
    color: #00D061;
}
/*-----------------------[ 22.About Page CSS ]------------------------*/
.boosts span {
    color: #00D061;
}
#homesectionBlog {
    padding-top: 100px;
}
.goals-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.goals-main img {
    max-width: 100%;
}
.goals {
    color: #909090;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    max-width: 600px;
}
.economy {
    padding-top: 30px;
}
.about-section-one {
    height: 100%;
}
.about-section-three {
    padding: 100px 20px 0;
}
.img-group-yoga {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
    max-width: 100%;
    gap: 30px;
}
.heding-text-img .about-img2 {
    position: absolute;
    right: 130px;
    bottom: -30px;
}
/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.faq-row {
    margin-top: 60px;
    margin-bottom: 100px;
}
.faq-acco {
    --bs-accordion-bg: #171B22;
}
.faq-acco button {
    font-size: 25px;
    font-family: "Elsie Swash Caps";
    color: #FFF;
    line-height: 35px;
    font-weight: 500;
}
.faq-acco .accordion-item {
    margin-bottom: 20px;
}
.png-tree {
    filter: brightness(0) saturate(100%) invert(55%) sepia(0%) saturate(537%) hue-rotate(26deg) brightness(103%) contrast(98%);
    max-width: 100%;
}
.png-tree-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}
.faq-acco .accordion-button:not(.collapsed) {
    color: #FFF;
    background: #00D061;
    box-shadow: none;
}
.accordion-button::after {
    content: "";
    background-image: url('../images/svg/down-arrow.svg');
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/down-arrow.svg');
}
.faq-acco .accordion-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #FFF;
}
/*-----------------------[ 24.Coming Soon Page CSS ]------------------------*/
.coming-soon-section {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0F141C 0%, rgba(10, 29, 53, 0.70) 0.01%, #0F141C 100%), url(../images/about_page/coming-soon-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 95px 0;
    min-height: 100vh;
    overflow-y: auto;
}
.coming-soon-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.member {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
    font-family: Poppins;
    padding-top: 40px;
}
.coming-soon-text {
    text-align: center;
    font-weight: 500;
    font-size: 85px;
    padding: 20px 0;
}
.coming-soon-text span {
    color: #00D061;
}
.awesome {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
}
.coming-soon-digit {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.coll-dot::after {
    content: ':';
    color: #FFF;
    font-family: Poppins;
    font-size: 80px;
    line-height: 80px;
    position: absolute;
    top: 9px;
    left: -20px;
}
.coming-soon-digit h2 {
    color: #FFF;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    text-align: center;
    font-family: "Elsie Swash Caps";
}
.coming-soon-digit p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding-top: 20px;
    font-family: Poppins;
}
.coming-soon-digit-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 48px;
}
.coming-soon-subscribe {
    max-width: 750px;
    width: 100%;
    margin: 80px auto 30px;
    position: relative;
}
.coming-soon-subscribe input {
    width: 100%;
    height: 60px;
    border: none;
    background: #FFF;
    font-size: 18px;
    color: #0F141C;
    padding: 10px 20px;
}
.coming-soon-subscribe-btn {
    position: absolute;
    right: 0;
    top: 0;
}
.working {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 62px;
}
/*-----------------------[ 25.Error 404 Page CSS ]------------------------*/
.error-page-section {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0F141C 0%, rgba(10, 29, 53, 0.70) 0.01%, #0F141C 100%), url(../images/about_page/error-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-conatin-main {
    text-align: center;
}
.error-conatin-main img {
    max-width: 100%;
}
.page-not-found {
    color: #FFF;
    font-size: 60px;
    text-align: center;
    font-family: Poppins;
}
.suptext404 {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    font-family: Poppins;
    padding-top: 30px;
    max-width: 700px;
    margin: 0 auto;
}
.error-back-btn {
    margin-top: 50px;
}
/*-----------------------[ 26.Classes Page 2 CSS ]------------------------*/
.classes-sec-one {
    height: 100%;
    padding-bottom: 100px;
}
.classes-img1 {
    width: 100%;
    border-radius: 0 30px 0 0;
}
.classes-page-row {
    gap: 50px 0;
    margin-top: 50px;
}
.classes-footer {
    background: #0F141C;
    padding: 30px 20px;
    border-bottom: 2px solid #909090;
    border-left: 2px solid #909090;
    border-right: 2px solid #909090;
    border-radius: 0 0 0 30px;
}
.Iyengar {
    text-align: center;
}
.bhaKtiYoga {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bhaKtiYoga a {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Elsie Swash Caps";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
}
.jason {
    color: #909090;
    font-size: 16px;
    line-height: 28px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    font-family: Poppins;
}
.learn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}
.learn a {
    color: #00D061;
    font-size: 18px;
    line-height: 22px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.classe2-btn {
    margin-top: 50px;
}
.classes-page2-row {
    margin-left: 30px;
    margin-right: 30px;
}
/*-----------------------[ 27.Classes Schedule CSS ]------------------------*/
.Main_frame {
    margin-top: 50px;
}
.cal-bg {
    background-color: #171B22;
}
.days {
    padding: 25px 18px;
    text-align: center;
    background-color: #00D061;
    font-size: 35px;
    line-height: 30px;
    color: #FFFFFF;
    font-family: "Elsie Swash Caps";
}
.col-2 {
    padding: 0px;
}
.weight {
    font-size: 20px;
    line-height: 25px;
    font-family: Poppins;
    text-align: center;
    color: #FFFFFF;
    margin: 0px;
    padding-top: 38px;
    padding-bottom: 15px;
}
.john-cina {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 20px;
    cursor: pointer;
    font-family: Poppins;
}
.gray-line {
    border: 1px solid #909090;
    text-align: center;
    max-width: 155px;
    width: 100%;
    margin: 0 auto;
}
.main_weight_lifting:hover .gray-line {
    border: 1px solid #FFFFFF;
}
.timing {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #909090;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 37px;
    cursor: pointer;
}
/* Weight lifting */
.main_weight_lifting:hover .timing {
    color: #FFFFFF;
}
.main_weight_lifting:hover {
    background-image: url('../images/classes_page/classes-img1.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main_weight_lifting:hover .weight-lifting-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
/* Zumba Class*/
.zumba-class-main:hover {
    background-image: url('../images/classes_page/classes-img2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.zumba-class-main:hover .zumba-class-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
.zumba-class-main:hover .timing {
    color: #FFFFFF;
}
.zumba-class-main:hover .gray-line {
    border: 1px solid #FFFFFF;
}
/* Cardio */
.cardio-main:hover {
    background-image: url('../images/classes_page/classes-img3.jpg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cardio-main:hover .cardio-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
.cardio-main:hover .timing {
    color: #FFFFFF;
}
.cardio-main:hover .gray-line {
    border: 1px solid #FFFFFF;
}
/* Boxing Img */
.boxing-main:hover {
    background-image: url('../images/classes_page/classes-img4.jpg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}
.boxing-main:hover .boxing-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
.boxing-main:hover .timing {
    color: #FFFFFF;
}
.boxing-main:hover .gray-line {
    border: 1px solid #FFFFFF;
}
/* Power Yoga */
.power-yoga-main:hover {
    background-image: url('../images/classes_page/classes-img5.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.power-yoga-main:hover .power-yoga-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
.power-yoga-main:hover .timing {
    color: #FFFFFF;
}
.power-yoga-main:hover .gray-line {
    border: 1px solid #FFFFFF;
}
/* Aerobics */
.aerobics-main:hover {
    background-image: url('../images/classes_page/classes-img7.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.aerobics-main:hover .aerobics-bg {
    background: #00d06199;
    mix-blend-mode: normal;
}
.aerobics-main:hover .timing {
    color: #FFFFFF;
}
.aerobics-main:hover .gray-line {
    border: 1px solid #FFF;
}
/*-----------------------[ 28.Classes Details Page1 CSS ]------------------------*/
.single_services-img1-main {
    background-image: url(../images/classes_page/details-img-main.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    margin: 100px 0;
    max-width: 100%;
}
.Mauris {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.unde {
    color: var(--1, #FFF);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    font-family: "Elsie Swash Caps";
    padding: 15px 0;
}
.single-services-imgs-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    gap: 15px;
    margin: 30px 0;
}
.single-services-imgs-group img {
    max-width: 100%;
}
.categories {
    color: var(--1, #FFF);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    font-family: "Elsie Swash Caps";
    padding-bottom: 15px;
}
.newsBlog-List li {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.newsBlog-List li a {
    font-size: 20px;
    line-height: 30px;
    color: #FFF;
    font-family: Poppins;
    font-weight: 500;
}
.newsBlog-List li a:hover {
    color: #00D061;
}
.newsBlog-List li::before {
    content: url('../images/classes_page/circle-svg.png');
}
.contact-side-bar {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0f141cd6 0%, rgb(10 29 53 / 53%) 0.01%, #0f141c94 100%), url(../images/classes_page/side-img.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin: 50px 0;
}
.contact-side-bar h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    font-family: "Elsie Swash Caps";
    color: #FFF;
    padding-bottom: 20px;
}
.resolving {
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
    font-family: Poppins;
    font-weight: 500;
    padding-bottom: 50px;
}
.tag-List {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 20px;
}
.tag-List li {
    padding: 7px 15px;
    border: 1px solid #FFF;
}
.tag-List li:hover {
    background: #00D061;
}
.tag-List li a {
    font-size: 16px;
    line-height: 25px;
    color: #FFF;
    font-family: Poppins;
    font-weight: 500;
}
.singlehtml-video {
    margin: 100px 0;
}
.video-container2 {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    cursor: pointer;
}
.video-container2 img.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container2 img.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-container2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}
/*-----------------------[ 29.Shop Page CSS ]------------------------*/
.shop-page-img {
    width: 100%;
    height: auto;
    display: block;
}
.shop-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.shop-page-row {
    gap: 60px 0;
    margin-top: 30px;
}
.shop-item:before {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00d06199;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
}
.shop-item:hover:before {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.shop-item:hover .add-to-cart-btn {
    display: block;
    z-index: 10;
}
.add-to-cart-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    padding: 18px 20px;
    width: 185px;
    text-align: center;
}
.organic-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
}
.organic-main:hover .organic a {
    color: #00D061;
}
.organic a {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    font-family: Poppins;
    color: #FFF;
}
.organic-price {
    font-size: 23px;
    line-height: 30px;
    font-weight: 500;
    font-family: Poppins;
    color: #FFF;
}
.ashtanga {
    padding: 10px 0;
}
.ashtanga a {
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
    font-family: Poppins;
}
.seals-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFF;
    color: #00D061;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: Poppins;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 15;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}
.shop2-page {
    margin: 0 30px;
}
.single-product-row {
    margin-top: 50px;
    gap: 50px 0;
}
.singleShop2 .swiper-slide img,
.singleShop .swiper-slide img {
    width: 100%;
}
.singleShop {
    margin-top: 12px;
}
.Organicsoap {
    font-size: 40px;
    line-height: 50px;
    font-family: Poppins;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 500;
}
.single-item-price {
    font-size: 25px;
    line-height: 40px;
    font-family: Poppins;
    color: #FFF;
    font-weight: 500;
    padding: 10px 0;
}
.single-item-price span {
    color: #909090;
    text-decoration-line: line-through;
    padding-right: 15px;
}
.rtaing-review {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.rtaing-review span {
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: Poppins;
    padding-left: 10px;
}
.aenean {
    color: #909090;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: Poppins;
    padding: 30px 0 50px 0;
}
.button-increment-decrement-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--5, #171B22);
}
.button-increment-decrement {
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    background: #171B22;
    color: #FFF;
}
.number {
    margin: 0 40px;
    color: #00D061;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.add-to-cart-btn-main {
    display: flex;
    align-items: center;
    gap: 30px;
}
.sku-main {
    padding-top: 50px;
}
.sku {
    font-size: 18px;
    color: #FFF;
    font-weight: 400;
    line-height: 30px;
    font-family: Poppins;
    padding-bottom: 5px;
}
.sku span {
    color: #909090;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.accepted {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 30px 0 20px 0;
}
.decripation-row {
    margin-top: 60px;
    gap: 40px;
}
.description {
    color: #FFF;
    font-family: "Elsie Swash Caps";
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 20px;
}
.auctor {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    font-family: Poppins;
}
.decripation-list {
    padding-top: 20px;
}
.decripation-list li a {
    font-size: 16px;
    font-weight: 400;
}
.additional-info img {
    max-width: 100%;
}
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0 30px;
}
.rating-star-shop {
    width: 85px;
}
.profile-name {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: Poppins;
}
.profile-name span {
    color: #909090;
    font-weight: 400;
    font-size: 16px;
    padding-left: 15px;
}
.profile-img1 {
    border-radius: 50%;
}
.profile-main-head {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 15px;
    background: #171B22;
    border-radius: 15px;
    margin-bottom: 15px;
}
.eque {
    padding-top: 10px;
}
.your-rating {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 1.5em;
    justify-content: space-around;
    text-align: center;
    width: 5em;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #909090;
    cursor: pointer;
}
.star-rating :checked~label {
    color: #00D061;
}
.star-rating label:hover,
.star-rating label:hover~label {
    color: #00D061;
}
.singl-list-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*-----------------------[ 30.My Account Page CSS ]------------------------*/
.login-text {
    color: var(--1, #FFF);
    font-family: "Elsie Swash Caps";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    padding-bottom: 30px;
    text-align: center;
}
.login-form {
    max-width: 800px;
    margin: 0 auto;
}
.loginbtn {
    width: 100%;
    margin-top: 30px;
}
.loginbtn:hover .circle {
    left: -130px;
}
.already {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: Poppins;
    text-align: center;
    margin-top: 20px;
}
.already a {
    color: #00D061;
}
/*-----------------------[ 31.Cart Page CSS ]------------------------*/
.cart-product-img {
    width: 130px;
}
table,
th,
td {
    border: 1px solid #FFF;
    padding: 12px;
    text-align: center;
}
table {
    width: 100%;
}
th {
    font-size: 18px;
    font-family: Poppins;
    text-align: center;
    color: #FFF;
    font-weight: 400;
}
.product-name,
.product-name a {
    font-size: 28px;
    font-family: "Elsie Swash Caps";
    text-align: center;
    color: #FFF;
}
.product-name a:hover {
    color: #00D061;
}
.product-price {
    font-weight: 500;
    font-size: 30px;
}
.close-cart img {
    width: 30px;
    cursor: pointer;
}
.close-cart img:hover {
    filter: brightness(0) saturate(100%) invert(70%) sepia(57%) saturate(4549%) hue-rotate(105deg) brightness(97%) contrast(101%);
}
.button-increment-decrement-main2 {
    max-width: 220px;
    margin: 0 auto;
}
.cart-img {
    width: 100%;
    height: 100%;
}
.cart-bill {
    background: #171B22;
    padding: 40px;
}
.total-cart {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-bottom: 1px solid #FFF;
    padding-bottom: 5px;
}
.chek-txt2 {
    color: var(--3, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.total-txt {
    font-weight: 500;
    color: white;
    font-size: 18px;
    display: flex;
    font-family: Poppins;
    justify-content: space-between;
    border-top: 1px solid #FFF;
    padding-top: 10px;
    text-transform: capitalize;
}
form.checkout-form {
    position: relative;
    margin-top: 20px;
}
form.checkout-form input {
    border: 1px solid #FFF;
    background: transparent;
    width: 100%;
    padding: 12px 20px;
    font-weight: 400;
    color: white;
    font-size: 16px;
    font-family: Poppins;
}
form.checkout-form button {
    padding: 5px 20px 6px 20px;
    background: #6F39FD;
    text-transform: capitalize;
    font-weight: 400;
    color: #FFF;
    font-size: 15px;
    font-family: Poppins;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
.checkout-form ::placeholder {
    color: #FFF;
}
.form-spacer ::placeholder {
    color: #FFF;
}
/*-----------------------[ 32.Check Out Page CSS ]------------------------*/
.billing-details {
    color: #FFF;
    font-family: "Elsie Swash Caps";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    padding-bottom: 20px;
}
.cart-img2 {
    width: 100%;
}
.form-leave-comment-group ::placeholder {
    color: #FFF;
}
.form-inquiry ::placeholder {
    color: #FFF;
}
.input-group.custom-radio {
    margin-bottom: 20px;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.custom-radio input[type=radio] {
    position: absolute;
    visibility: hidden;
}
.custom-radio label {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-left: 40px;
    cursor: pointer;
    color: white;
    position: relative;
    display: block;
    transition: all 0.25s linear;
    z-index: 9;
    font-family: Poppins;
}
.custom-radio input[type=radio]:checked~.lu-check {
    border-color: #00D061 !important;
}
.custom-radio .lu-check {
    display: block;
    position: absolute;
    border-radius: 100% !important;
    height: 21px;
    width: 21px;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.25s linear;
    border: 2px solid #00D061 !important;
}
.custom-radio input[type=radio]:checked~.lu-check::before {
    background: #00D061;
}
.custom-radio .lu-check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100% !important;
    height: 13px;
    width: 13px;
    top: 2px;
    left: 2px;
    margin: auto;
    -webkit-transition: all 0.25s linear;
}
/*-----------------------[ 33.Blog Page CSS ]------------------------*/
.blog-row {
    gap: 30px 0;
    margin-top: 40px;
}
.blog2-container {
    margin-left: 30px;
    margin-right: 30px;
}
#blog-form {
    position: relative;
}
.blog-form {
    display: flex;
    align-items: center;
    gap: 30px;
}
.blog-form input {
    border-radius: 8px;
    background: #171B22;
    border: none;
    width: 100%;
    height: 56px;
    padding: 16px 20px;
    color: var(--14, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 2px solid #63636385;
}
.search-svg {
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
}
.other-services-main {
    padding: 20px;
    border-radius: 30px;
}
.other-services {
    color: var(--1, #FFF);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    font-family: "Elsie Swash Caps";
    padding-bottom: 15px;
}
.categories-details-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.dev-blog-text a {
    color: var(--1, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    font-family: Poppins;
}
.dev-blog-text a:hover {
    color: #00D061;
}
.recent-post-main {
    padding: 20px;
}
.blog3-row {
    margin-top: 40px;
}
.post-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
}
.post-img {
    max-width: 100px;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}
.post-box h2 {
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    line-height: 26px;
    font-family: Poppins;
    padding-bottom: 13px;
}
.post-box p {
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: Poppins;
}
.post-box:hover.post-box h2 {
    color: #00D061;
}
.post-box:hover.post-box p {
    color: #FFF;
}
.single-services1 {
    max-width: 100%;
}
.Singleservices-text-main {
    font-size: 50px;
    color: #FFF;
    line-height: normal;
    font-family: "Elsie Swash Caps";
    padding: 30px 0 20px;
}
.commodo {
    font-size: 16px;
    color: #909090;
    line-height: 26px;
    font-family: Poppins;
    font-weight: 400;
}
.small_blog {
    padding: 30px;
    background-color: #171B22;
    margin: 25px 0 20px 0;
}
.integer {
    color: #909090;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    margin: 0;
    padding-bottom: 20px;
    font-family: Poppins;
}
.line_client {
    display: flex;
    align-items: center;
}
.line {
    border-top: 2px solid #00D061;
    width: 60px;
}
.jordon {
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding-left: 10px;
    font-family: Poppins;
}
.single-services-imgs-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    gap: 15px;
    margin: 30px 0;
}
.single-services-imgs-group img {
    max-width: 100%;
}
.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #63636385;
    border-bottom: 2px solid #63636385;
    margin-top: 40px;
}
.button-container button {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    color: #FFF;
    border: none;
}
.share-button {
    margin: 0 auto;
    border-left: 2px solid #63636385;
    border-right: 2px solid #63636385;
    padding: 0 18px;
}
.coming_soon_bg_blog {
    width: 100%;
    margin-bottom: 20px;
}
.video-container-blog-yt {
    height: 560px;
}
.blog-slider-row {
    justify-content: center;
}
/*-----------------------[ 34.Contact Page CSS ]------------------------*/
.contact-circle {
    width: 90px;
    height: 90px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #00D061;
}
.contact-circle img {
    width: 48px;
}
.contact-circle-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cont {
    font-size: 30px;
    line-height: 40px;
    color: #FFF;
    font-family: Poppins;
    font-weight: 500;
    padding-bottom: 8px;
}
.mobile {
    padding-bottom: 5px;
}
.mobile a,
.mobile {
    font-size: 18px;
    line-height: 25px;
    color: #909090;
    font-family: Poppins;
    font-weight: 400;
}
.mobile a:hover {
    color: #FFF;
}
.contact-page-row {
    margin: 100px 0;
}
.form-inquiry {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}
.form-spacer {
    padding: 40px;
    background: #171B22;
    border-radius: 20px;
}
.form-leave-comment-group {
    display: flex;
    align-items: stretch;
    gap: 30px;
}
.form__input,
textarea#subject {
    padding: 8px 0;
    border: none;
    background: transparent;
    border-bottom: 2px solid #FFF;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: Poppins;
}
.form__input:focus,
textarea#subject:focus {
    outline: none;
    border-bottom: 2px solid #00D061;
}
textarea#subject {
    height: 90px;
    resize: none;
}
.remember {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 20px;
}
.remember input[type=checkbox] {
    position: relative;
    cursor: pointer;
}
.remember input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border: 2px solid #909090;
    border-radius: 3px;
    background-color: #171B22;
}
.remember input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 6px;
}
.remember p {
    color: var(--14, #909090);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.contact-img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.containe-contact-us {
    background: #171B22;
    border-radius: 0 0 20px 20px;
    padding: 20px;
    height: 100%;
}
.relax {
    color: #FFF;
    font-size: 28px;
    line-height: 35px;
    font-weight: 500;
    font-family: Poppins;
    font-style: normal;
    padding: 30px 0;
}
.opening {
    color: #00D061;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: Poppins;
    font-style: normal;
    padding-bottom: 30px;
}
.mon {
    color: #FFF;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    font-family: Poppins;
    font-style: normal;
    padding-bottom: 5px;
}
.map-iframe {
    padding-top: 100px;
    width: 100%;
    height: 600px;
}