@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Codystar:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Advent Pro", sans-serif;
    outline: none !important;
}

:root {
    --theme: #af8452;
    --theme2: #523616;
    --red: #aa2b2b;
    --page: #f7f1e9;
}


::selection {
    background: var(--theme2);
    color: #ffffff;
}


body {
    background-color: #ffffff;
}

main {
    overflow: hidden;
    position: relative;
}

header {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 222;
    padding: 20px 0;
}


.HeaderInner {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.HeaderLogo {
    display: block;
    margin: 0 0;
    width: auto;
    position: relative;
    overflow: hidden;
    transition: 350ms;
}

.HeaderLogo img {
    display: block;
    margin: 0 0;
    width: auto;
    height: 40px;
    cursor: pointer;
}

.HeaderLogo:hover {
    transform: scale(1.1);
}

.HeaderTabs {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 0;
}

.HeaderTabs ul {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.HeaderTabs ul li {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 0 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    color: #595959;
    transition: 350ms;
}

.HeaderButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: 20px;
}

.HeaderButtons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 5px 15px;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
    border: solid 2px;
    background: none;
    color: var(--theme);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms;
}

.HeaderButtons button i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.HeaderTabs li i {
    margin: 0 3px;
}

.Banner {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.BannerInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 130px 0px;
}

.BannerDiv {
    display: block;
    margin: 0px 0;
    width: 50%;
}

.BannerDiv h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 51px;
    font-weight: bold;
    color: var(--theme);
    text-transform: uppercase;
}

.BannerDiv p {
    display: block;
    margin: 15px auto;
    width: 100%;
    font-size: 23px;
}

.BannerDiv button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 6px 15px;
    font-size: 21px;
    border: none;
    border-radius: 10px;
    margin: 45px 0 0px;
    position: relative;
    padding-left: 40px;
    color: var(--theme);
    font-weight: 700;
    background: #ffffff;
    text-transform: uppercase;
    transition: 300ms;
}

.BannerDiv button i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--red);
    -webkit-animation: LiveDotAnimation 2s ease-in-out infinite;
    animation: LiveDotAnimation 2s ease-in-out infinite;
}

@keyframes LiveDotAnimation {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1.2);
    }
}

.BannerArt {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 39px;
}

.LogoShine {
    position: absolute;
    right: -40px;
    top: -50%;
    height: 200%;
    width: 0;
    transform: rotate(32deg);
    box-shadow: 1px 1px 10px 5px white;
    -webkit-animation: ButtonShineAnimation 2s ease-in-out infinite;
    animation: ButtonShineAnimation 2s ease-in-out infinite;
}

@keyframes ButtonShineAnimation {
    0% {
        right: -120%;
    }
    100% {
        right: 220%;
    }
}

.BannerBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: color-dodge;
    opacity: 0.6;
}

.BannerFade {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: #fcecd6e0;
);
    z-index: -1;
    /* box-shadow: 20px 0px 147px 171px #fff9f1; */
    /* opacity: 0.9; */
}

.About {
    position: relative;
    z-index: 3;
    overflow: unset;
    background: #ffffff;
}

.AboutArtGh {
    display: block;
    margin: -53px auto 0;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 144px 0;
    padding-left: 45%;
}

.AboutArt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: 700ms;
}

.AboutArtGh h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 79px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--theme2);
}

.AboutArtGh h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 33px;
    color: var(--theme);
}

.AboutArtGh p {
    display: block;
    margin: 13px auto;
    width: 100%;
    font-size: 26px;
    font-weight: 300;
    color: #4b4b4b;
}

.AboutArtGhText {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-weight: bold;
    /* mix-blend-mode: color-burn; */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    filter: grayscale(1);
    transition: 400ms;
}

.AboutArtParent {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;
}

.AboutArtAnimations {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: contrast(110%);
}

.AboutArtAnimationItem {
    position: absolute;
    width: 100px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -5;
    -webkit-animation: AboutArtAnimation 30s ease-in-out infinite;
    animation: AboutArtAnimation 30s ease-in-out infinite;
}

.AboutArtAnimationItem:nth-child(1) {
    left: 0;
    top: 0;
    margin: 10px;
    width: 100px;
}

.AboutArtAnimationItem:nth-child(2) {
    top: 0;
    right: -27px;
    margin: 0;
    width: 118px;
    animation-duration: 35s;
}

.AboutArtAnimationItem:nth-child(3) {
    bottom: 0;
    left: 0;
    margin: 60px;
    width: 130px;
    animation-duration: 23s;
}

.AboutArtAnimationItem:nth-child(4) {
    bottom: 0;
    right: 0;
    margin: 20px;
}

.About:hover .AboutArtAnimations {
    display: block;
}

.About:hover .AboutArt {
    transform: scale(1.1);
    filter: drop-shadow(-25px 7px 2px rgba(0, 0, 0, 0.08));
    /* color: #00000033; */
}


@keyframes AboutArtAnimation {
    0% {
        transform: scale(0.9) rotate(120deg) rotateY(20deg);
    }
    50% {
        transform: scale(1.1) rotate(-120deg) rotateY(0deg);
    }
    100% {
        transform: scale(0.9) rotate(120deg) rotateY(20deg);
    }
}

.About:hover .AboutArtGhText {
    filter: grayscale(0);
}

.BookSessionNow {
    background: #af8452db;
    padding: 80px 0;
    position: relative;
    z-index: 22;
}

.BookSessionNowForm {
    display: flex;
    justify-content: start;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.BookSessionNowFormRow {
    display: block;
    margin: 20px 1%;
    width: 30%;
}

.BookSessionNowFormHolder {
    display: block;
    margin: 8px auto;
    width: 100%;
    height: 45px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    z-index: 2;
}

.BookSessionNowFormRow label {
    display: block;
    margin: 0 auto 7px;
    width: 100%;
    font-size: 20px;
    color: aliceblue;
    letter-spacing: 1px;
}

.BookSessionNowFormRow label u {
    text-decoration: none;
    color: var(--red);
    margin: 0 4px;
}

.BookSessionNowFormHolder g {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: var(--theme2);
    opacity: 0.5;
}

.BookSessionNowFormHolder input, .BookSessionNowFormHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0 0;
    padding-left: 51px;
    color: var(--theme2);
    border-radius: 5px;
    z-index: -1;
}

.BookSessionNowFormIncreaser {
}

.BookSessionNowFormIncreaserBtns {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.BookSessionNowFormIncreaserBtns button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    border: none;
    z-index: 2;
    background: var(--theme2);
    color: aliceblue;
    transition: 300ms;
}

.BookSessionNowFormIncreaser input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
    font-size: 20px;
    pointer-events: none;
}

.BookSessionNowFormIncreaserBtns button:hover {
    background: #303030;
}

.BookSessionNowFormHeader {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0 0;
    text-align: center;
}

.BookSessionNowFormHeader h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 45px;
    color: aliceblue;
    font-weight: bold;
}

.BookSessionNowFormHeader p {
    display: block;
    margin: 17px auto 50px;
    width: 800px;
    color: aliceblue;
    max-width: 100%;
    font-size: 21px;
}

.BookSessionNowFormHeader h1 u {
    text-decoration: none;
    color: var(--red);
}

.BookSessionNowFormRow label y {
    font-size: 15px;
    letter-spacing: 1px;
}

.BookSessionNowFormSubmit {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.BookSessionNowFormSubmit button {
    display: block;
    margin: 50px auto 0;
    width: fit-content;
    padding: 10px 40px;
    text-transform: uppercase;
    border: solid 2px;
    color: white;
    border-radius: 10px;
    background: none;
    font-weight: 500;
    transition: 300ms;
}

.BookSessionNowFormSubmit button i {
    margin-right: 10px;
}


.BookSessionNowFormSubmit button:hover {
    transform: scale(1.1);
    background: white;
    color: var(--theme);
    border-color: white;
}


.BookSessionNowFormHolder select, .BookSessionNowFormHolder input[type=time], .BookSessionNowFormHolder input[type=date] {
    cursor: pointer;
}

.BookSessionNowFormHolder input:focus, .BookSessionNowFormHolder select:focus {
    border: solid 3px #794c19ed;
}

.BookSessionNow3Lines {
    position: absolute;
    right: 5%;
    top: -75px;
    width: 300px;
    aspect-ratio: 1/0.5;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.BookSessionNowFormError {
    display: block;
    margin: 0 auto 26px;
    width: 100%;
    background: #f2b7b7;
    padding: 20px;
    color: #da6363;
    position: relative;
    padding-left: 100px;
    border-radius: 20px;
    /* border: solid 1px; */
}

.BookSessionNowFormError i {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    -webkit-animation: ScaleAnimation 2s ease-in-out infinite;
    animation: ScaleAnimation 2s ease-in-out infinite;
}

.BookSessionNowFormSuccess {
    display: block;
    margin: 0 auto 26px;
    width: 100%;
    background: #8caa8c;
    padding: 20px;
    color: #3b6e3c;
    position: relative;
    padding-left: 100px;
    border-radius: 20px;
    /* border: solid 1px; */
}

.BookSessionNowFormSuccess i {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    -webkit-animation: ScaleAnimation 2s ease-in-out infinite;
    animation: ScaleAnimation 2s ease-in-out infinite;
}

@keyframes ScaleAnimation {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}


.BookSessionNowFormError h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    font-weight: bold;
}

.BookSessionNowFormError label {
    display: block;
    margin: 11px auto 0;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
}

.HowToBookSession {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: #fcecd6e0;
}

.HowToBookSessionGH {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    width: 100%;
    flex-wrap: wrap;
}

.HowToBookSessionItem {
    display: block;
    margin: 24px 0;
    width: 48%;
    /* border: solid 1px #fef3e5; */
    padding: 34px 20px;
    position: relative;
    padding-left: 130px;
    border-radius: 10px;
    min-height: 110px;
    background: #ffffff;
}

.HowToBookSessionItem .setbg {
    position: absolute;
    left: 0;
    top: 12px;
    height: 70px;
    width: 100px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 11px;
    opacity: 0.9;
}

.HowToBookSessionItem h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
    font-size: 21px;
}

.HowToBookSessionItem p {
    display: block;
    margin: 7px auto 0;
    width: 100%;
    font-size: 18px;
}

.SharedSectionHeader {
    display: block;
    margin: 60px auto;
    width: 100%;
}

.SharedSectionHeader h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme2);
}

.SharedSectionHeader p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: #727272;
}

.BannerDiv button:hover {
    transform: scale(1.1);
    background: var(--red);
    color: aliceblue;
}

.BannerDiv button:hover i {
    color: aliceblue;
}

.HTUVideo {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.HTUVideo video {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 20px;
    object-fit: contain;
    background-color: #020202;
}

footer {
    background: var(--theme2);
    color: aliceblue;
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

.FooterVision {
    display: block;
    margin: 0 0;
    width: 100%;
    padding: 24px 0;
    padding-right: 20px;
}

.FooterVision h4 {
    display: block;
    margin: 0 auto 7px;
    width: 100%;
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
}

.FooterVision p {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.FooterCenter {
    display: block;
    margin: 0 auto;
    width: 90%;
    padding: 30px 0;
    border: dashed 1px #ffffff45;
    border-top: 0;
    border-bottom: 0;
}

.FooterLogo {
    display: block;
    margin: 0 auto 25px;
    width: 80%;
    height: 70px;
    filter: grayscale(1) invert(1) brightness(3.5);
    opacity: 0.9;
    object-fit: contain;
    object-position: center center;
    padding: 5px;
}

.FooterSocialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 15px auto 0;
}

.FooterSocialMedia a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    background: #ffffff0f;
    margin: 0 5px;
    border-radius: 1000px;
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    transition: 300ms;
}

.FooterSocialMedia a:hover {
    transform: scale(1.1);
    background: #00000073;
}

.FooterLast {
    display: block;
    margin: 0 0;
    width: 100%;
    padding: 26px 0;
    padding-left: 53px;
    transition: 400ms;
}

.FooterLast .LogoShine {
    display: none;
}

.FooterLast h4 {
    display: block;
    margin: 0 auto 7px;
    width: 100%;
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
}

.FooterLast label {
    display: block;
    margin: 13px auto;
    width: 100%;
    font-size: 18px;
    position: relative;
    left: -16px;
}

.FooterLast label i {
    margin: 0 9px;
    color: #4b9ace;
}


.FooterLast label:first-of-type i {
    color: #ffffff;
}

.FooterLast label:last-of-type i {
    color: #f57c7c;
}

.AboutArtGhText button {
    display: block;
    margin: 20px 0 0;
    width: fit-content;
    padding: 6px 20px;
    color: var(--theme2);
    background: none;
    border-radius: 20px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    padding-right: 36px;
    transition: 400ms;
    border: solid 2px;
}

.AboutArtGhText button i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
}

.AboutArtGhText button:hover {
    transform: scale(1.1);
    background: var(--theme);
    border-color: var(--theme);
    color: white;
}

.AboutArtGhText button:hover i {
    transform: rotate(180deg);
}

.LoginView {
}

.LoginViewInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background: var(--page); */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LoginViewBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.6;
    z-index: -1;
}


.HeaderTabs ul li:hover {
    transform: scale(1.05);
    color: var(--theme);
}

.LoginViewDiv {
    display: block;
    margin: 0 auto;
    width: 500px;
    background: #ffffff;
    max-height: 80%;
    box-shadow: 0px 0px 75px -36px #000000;
    border-radius: 20px;
    padding: 35px 20px;
    overflow: hidden;
    overflow-y: auto;
    max-width: 90%;
}

.LoginViewHeader {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
    font-size: 29px;
    text-align: center;
}

.LoginViewDivRow {
    display: block;
    margin: 22px auto;
    width: 100%;
}

.LoginViewDivRow label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    color: #555555;
}

.LoginViewHolder {
    display: block;
    margin: 10px auto;
    width: 100%;
    height: 45px;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.LoginViewHolder g {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme);
    opacity: 0.6;
    pointer-events: none;
}

.LoginViewHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 55px;
    border-radius: 5px;
    transition: 333ms;
}

.ShowPasswordBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #35ae3921;
    color: #35ae39;
    font-size: 19px;
    z-index: 2;
    transition: 300ms;
}

.VisiblePassword {
    background: #ffb1b1;
    color: #a04242;
}

.LoginViewDiv h6 {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 0;
    padding-left: 23px;
}

.LoginViewDiv h6 input {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.LoginViewDiv h6 a {
    float: right;
    text-decoration: none;
    color: var(--theme);
    transition: 300ms;
}

.LoginViewDiv h6 a:hover {
    transform: scale(1.1);
    color: var(--theme2);
    text-decoration: underline;
}

.LoginViewDiv button[type=submit] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 30px auto 0;
    font-size: 20px;
    padding: 10px 15px;
    background: none;
    color: var(--theme);
    border: solid 2px;
    border-radius: 10px;
    padding-left: 47px;
    position: relative;
    font-weight: 700;
    transition: 300ms;
}

.LoginViewDiv button[type=submit] i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LoginViewDiv button[type=submit]:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: aliceblue;
    transform: scale(1.1);
}

.LoginViewDiv h5 {
    display: block;
    margin: 21px auto 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.LoginViewDiv h5 a {
    text-decoration: none;
    font-weight: bold;
    color: #eeb32b;
    transition: 300ms;
    display: inline-block;
}

.LoginViewDiv h5 a:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.LoginViewHolder input:focus, .LoginViewHolder select:focus {
    border: solid 1px #845927;
    background: #fff9f2;
}

.ContactUs {
}

.ContactUsCover {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ContactUsCover img {
    display: block;
    margin: 0 auto;
    width: 100%;
    filter: grayscale(25%);
}

.ContactUsCoverFade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #f2f2f2;
    box-shadow: 0px -20px 54px 100px #f2f2f2;
}

.ContactUsBody {
    display: flex;
    margin: -55px auto 0;
    width: 100%;
    padding: 0 30px 30px;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
}

.ContactUsBody h1 {
    display: block;
    margin: 30px auto;
    width: 100%;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--theme);
}

.ContactUsBody label {
    display: block;
    margin: 30px auto;
    width: 100%;
    font-size: 32px;
    letter-spacing: 2px;
}

.ContactUsBody label i {
    color: var(--theme2);
    margin-right: 10px;
}

.ContactSocialMedia {
    display: flex;
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin: 17px 0;
    flex-wrap: wrap;
}

.ContactSocialMedia a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    background: #e1e1e1;
    aspect-ratio: 1/1;
    margin-right: 17px;
    border-radius: 1000px;
    text-decoration: none;
    color: aliceblue;
    background: var(--theme2);
    font-size: 26px;
    transition: 300ms;
}


.ContactSocialMedia a:hover {
    transform: scale(1.1);
    background: var(--theme);
}

.ContactUsInner {
    display: block;
    margin: 30px auto;
    width: 100%;
    background: #f2f2f2;
    border-radius: 30px;
    overflow: hidden;
}

.ContactUsHalf iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.55;
    border-radius: 10px;
}

.ContactUsHalf {
    display: block;
    margin: 0 0;
    width: 48%;
    height: 100%;
}

.HeaderButtons button:hover {
    transform: scale(1.1);
    background: var(--theme);
    border-color: var(--theme);
    color: aliceblue;
}

.Preloader {
}

.PreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PreloaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.PreloaderDiv img {
    display: block;
    margin: 0 auto 35px;
    width: 100px;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center center;
    animation: leaves 4s ease-in-out infinite alternate;
    -webkit-animation: ScaleAnimation 4s ease-in-out infinite alternate;
}

.PreloaderDiv label {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}


@keyframes ScaleAnimation {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

.Banner video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-position: center;
    object-fit: cover;
    /* mix-blend-mode: luminosity; */
    /* opacity: 0.5; */
}

.HomeBG {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.MusicBtn {
    position: absolute;
    right: 30px;
    bottom: 50%;
    width: 65px;
    aspect-ratio: 1/1;
    border: solid 3px #ffffff;
    border-radius: 10000px;
    background: #00000069;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    z-index: 2;
    transition: 300ms;
}

.MusicBtn .setSrc {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.MusicBtn:hover {
    transform: scale(1.2);
    background: #000000c7;
}

.ContentAndFeeds {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 110px 0;
    background: #efefef;
    position: relative;
    z-index: 2;
}

.ContentAndFeedsInner {
    display: block;
    margin: 0 0;
    width: 50%;
}

.ContentAndFeedsGH {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.ContentAndFeedsItem {
    display: block;
    margin: 20px 0;
    width: 45%;
    border-bottom: solid 3px var(--theme);
    background: #ffffff;
    position: relative;
    cursor: pointer;
    transition: 300ms;
    overflow: hidden;
}

.ReelThumb {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center center;
    transition: 500ms;
}

.ContentAndFeedsItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    font-size: 13px;
    pointer-events: none;
}

.ContentAndFeedPlatform {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    margin: 10px;
}

.ContentAndFeedsBG {
    display: block;
    margin: 0 auto;
    width: 100%;
}


.ContentAndFeedsItem:hover {
    transform: scale(1.05);
}

.ContentAndFeedsItem:hover .ReelThumb {
    transform: scale(1.1) rotate(3deg);
}

.FeedsOverly {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mix-blend-mode: plus-lighter;
    opacity: 0.06;
    pointer-events: none;
}

.ContentAndFeedsArt {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 75%;
    z-index: -1;
    padding: 65px;
}

.ContentAndFeedsArtText {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0 70px;
}

.ContentAndFeedsArtText h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: bolder;
    color: var(--theme2);
    position: relative;
    z-index: 2;
    font-family: "Codystar", sans-serif;
    line-height: inherit;
    letter-spacing: 2px;
}

.HeaderButtons h6 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 0;
    color: var(--theme);
    font-weight: bold;
    border: solid 2px;
    padding: 5px 20px;
    padding-left: 40px;
    border-radius: 5px;
    position: relative;
    transition: 300ms;
    cursor: pointer;
}

.HeaderButtons h6 .setbg {
    position: absolute;
    left: 6px;
    top: 3px;
    width: auto;
    height: 80%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 1000px;
}

.HeaderButtons h6:hover {
    transform: scale(1.1);
    background: var(--theme);
    border-color: var(--theme);
    color: white;
}

.MyProfile {
    display: block;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    padding-top: 440px;
    background: #000000ab;
}

.MyProfileInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
    padding: 60px 0;
}

.MyProfileDiv {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding-left: 173px;
    padding-bottom: 50px;
    padding-right: 150px;
}

.MyProfileThumb {
    position: absolute;
    left: 0;
    top: -25px;
    width: 140px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    background-size: cover;
    background-position: center center;
}

.MyProfileDiv h1 {
    display: flex;
    margin: 0 auto;
    width: 100%;
    font-size: 33px;
    align-items: center;
}

.MyProfileDiv h1 strong {
    color: var(--theme);
    font-weight: bold;
    font-size: 40px;
    margin: 0 10px;
}

.MyProfileDiv label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
}

.MyProfileDiv label i {
    font-size: 18px;
    color: #676767;
}

.SignOutBtn {
    position: absolute;
    right: 0;
    top: 30px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    color: #e16f6f;
    border: solid 2px;
    background: none;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 40px;
    border-radius: 100px;
    transition: 300ms;
}

.SignOutBtn i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SignOutBtn:hover {
    background: #e16f6f;
    border-color: #e16f6f;
    color: aliceblue;
}


.MySessionsTitle {
    display: block;
    margin: 13px auto;
    width: 100%;
    background: #efefef;
    padding: 15px 18px;
    border-radius: 100px;
}

.MySessionsTitle h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 25px;
    color: var(--theme);
}

.MySessions {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 23px auto;
    flex-wrap: wrap;
}

.MySessionsItem {
    display: block;
    margin: 20px 1%;
    width: 31.3%;
    background: #efefef;
    position: relative;
    padding: 20px;
    padding-left: 85px;
    border-radius: 20px;
    min-width: 340px;
    border: solid 2px transparent;
}

.MySessionsItem h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
}

.MySessionsItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
}

.MySessionsItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    padding: 4px 0;
    border-bottom: solid 1px #d8d8d8;
}

.MySessionsItem p strong {
    float: right;
}

.MySessionsItem .JoinSessionBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 5px 12px;
    margin: 23px 0 0;
    background: var(--red);
    color: aliceblue;
    border: none;
    border-radius: 5px;
    position: relative;
    padding-left: 39px;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms;
}

.MySessionsItem .JoinSessionBtn:hover {
    transform: scale(1.1);
    filter: brightness(120%);
}

.MySessionsItem .JoinSessionBtn i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.MySessionsItem .JoinSessionBtn .LogoShine {
}

.Couch {
    position: absolute;
    left: 0;
    top: 0;
    width: 76px;
    padding: 13px;
}

.SessionHistory {
}

.SessionHistory .MySessionsItem {
}

.MySessionsItem p:last-of-type {
    border: 0;
}

.SessionToday {
    background: #f8f8f8;
    border-color: #d3d3d3;
}

.EditProfile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    font-size: 17px;
    color: #d6a82d;
    border: solid 2px;
    border-radius: 5px;
    background: none;
    transition: 300ms;
}


.EditProfile:hover {
    transform: scale(1.1);
    background: #d6a82d;
    border-color: #d6a82d;
    color: aliceblue;
}

.AboutExternal {
    margin: 0 auto;
    padding: 110px 0 20px;
    background: #efe6dc;
}

.AboutPageInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 50px 20px;
}

.AboutPageInner * {
    max-width: 100%;
}

.AboutPageInner h1,
.AboutPageInner h2,
.AboutPageInner h3,
.AboutPageInner h4,
.AboutPageInner h5,
.AboutPageInner h6,
.AboutPageInner h1 *,
.AboutPageInner h2 *,
.AboutPageInner h3 *,
.AboutPageInner h4 *,
.AboutPageInner h5 *,
.AboutPageInner h6 * {
    color: var(--theme);
}

.copyrights {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
}

.copyrights p {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-top: dashed 1px #ffffff45;
    letter-spacing: 1px;
}

.copyrights p a {
    text-decoration: none;
    font-weight: bold;
    color: #b9973b;
    transition: 300ms;
}

.copyrights p a:hover {
    transform: scale(1.1);
    filter: brightness(124%);
}

.SideMenuBtn {
    display: none;
}

.SideMenu {
    display: none;
}

.SessionsRF {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.SessionsRFDiv {
}

.SessionsRFDiv img {
    display: block;
    margin: 0 auto;
    width: 225px;
    height: auto;
    max-width: 100%;
}

.SessionsRFDiv h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.SessionsRFDiv button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    padding: 10px 19px;
    background: none;
    color: var(--theme);
    border: solid 2px;
    border-radius: 1000px;
    font-weight: 600;
    position: relative;
    padding-left: 40px;
    transition: 300ms;
}

.SessionsRFDiv button i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SessionsRFDiv button:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: aliceblue;
    transform: scale(1.1);
}

.ContactFocus {
    background: #00000021;
    border-radius: 10px;
    transform: scale(1.1);
    position: relative;
    overflow: hidden;
}

.ContactFocus .LogoShine {
    display: block;
    animation-duration: 1.5s;
    box-shadow: 1px 1px 60px 9px white;
}
