@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');

* {
    font-family: "Noto Kufi Arabic", serif;
    padding: 0px;
    margin: 0px;
    outline: none !important;
}

:root {
    overflow-x: hidden;
    --theme: #e5cd83;
}

::selection {
    background: var(--theme);
    color: aliceblue !important;
}

img, button {
    user-select: none !important;
}

body {
    background: #ffffff;
    direction: rtl;
}


html {
    overflow-x: hidden;
}

.Banner {
    background: #000000;
    position: relative;
    overflow: hidden;
    z-index: 2;
    overflow: hidden;
}

.Banner video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: grayscale(1) blur(2px);
    opacity: 0.2;
}

.BannerInner {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.BannerArt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    animation: BannerDrAnimation 4s infinite linear;
    filter: hue-rotate(-8deg) grayscale(18%) brightness(107%) contrast(105%);
}

.BannerQuote {
    position: absolute;
    right: 16%;
    top: 10%;
    width: 360px;
    height: fit-content;
    color: aliceblue;
    z-index: 2;
    padding: 20px;
    user-select: none;
}

.BannerQuote p {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.BannerQuote p u {
    position: absolute;
    right: 0;
    bottom: -25px;
    text-decoration: none;
    font-weight: bold;
}

header {
    position: relative;
    z-index: 2;
    background: #0a0a0a;
    padding-top: 10px;
    padding-bottom: 10px;
}

.HeaderLogo {
    display: flex;
    margin: 0 0;
    width: fit-content;
    position: relative;
    transition: 300ms;
    align-items: center;
    justify-content: start;
    user-select: none;
}

.HeaderLogo .setbg {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 63px;
    aspect-ratio: 1/0.5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 20px;
    cursor: pointer;
    transition: 300ms;
}

.QuoteIconParent {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    aspect-ratio: 1/1;
}

.QuoteIcon {
    position: absolute;
    right: -37px;
    top: -12px;
    width: 41px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    animation: rotation 4s infinite linear;
}


@keyframes rotation {
    0% {
        transform: rotate(5deg) scale(1.0);
    }
    50% {
        transform: rotate(-10deg) scale(1.1);
    }
    100% {
        transform: rotate(5deg) scale(1.0);
    }
}


@keyframes BannerDrAnimation {
    0% {
        left: 20px;
    }
    50% {
        left: 0px;
    }
    100% {
        left: 20px;
    }
}

.HeaderTabs {
    display: flex;
    justify-content: end;
    align-items: center;
    width: fit-content;
    height: 100%;
    padding: 0;
    margin: 0 0;
}

.HeaderTabs li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 4px 9px;
    color: aliceblue;
    height: 100%;
    margin: 0 10px;
    font-size: 15px;
    transition: 300ms;
    cursor: pointer;
    user-select: none;
}

.HeaderTabs li i {
    margin-left: 9px;
    font-size: 12px;
    vertical-align: baseline;
}

.HeaderTabs li:hover {
    transform: scale(1.1);
    color: var(--theme);
}

.ClinicAvailability {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
    height: fit-content;
}

.ClinicAvailability h4 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: #323232;
    color: aliceblue;
    padding: 5px 13px;
    border-radius: 5px;
    font-size: 13px;
    position: relative;
    padding-left: 31px;
    text-transform: uppercase;
}

.ClinicAvailability h4 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: 11px;
    color: #4c9d4f;
    animation: AvailabilityDotAnimation 2s infinite linear;
}

@keyframes AvailabilityDotAnimation {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: 0.2;
    }
}

.HomeAboutInner {
    display: block;
    margin: 95px auto;
    width: 100%;
    padding: 0;
}

.HomeAboutInner h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme);
    font-size: 60px;
    position: relative;
}

.HomeAboutInner p {
    display: block;
    margin: 17px auto;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    color: aliceblue;
    padding: 10px 0;
}

.HomeAboutInner button {
    display: block;
    margin: 50px 0 0;
    width: fit-content;
    padding: 13px 30px;
    color: var(--theme);
    border: solid 1px;
    background: none;
    border-radius: 3px;
    position: relative;
    padding-right: 39px;
    transition: 400ms;
}

.HomeAboutInner button i {
    position: absolute;
    right: -6px;
    top: 0;
    width: fit-content;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.HomeAbout {
    padding: 1px 0;
    background: #0a0a0a;
}

.HomeAboutInner button:hover {
    background: var(--theme);
    color: #0a0a0a;
    border-color: var(--theme);
}

.AboutContact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 55px auto;
    width: 100%;
}

.AboutContactItem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
    margin: 0 0;
    border-right: solid 1px #1c1c1c;
    padding: 23px 10px;
}

.AboutContactItem:last-child {
    border-left: solid 1px #1c1c1c;
}

.AboutContactItemInner {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.AboutContactItemInner h3 {
    display: block;
    margin: 0 auto 18px;
    width: 100%;
    font-size: 25px;
    color: var(--theme);
    text-align: center;
}

.AboutContactItemInner p {
    letter-spacing: 5px;
}

.AboutContactItemInner button {
    color: aliceblue;
    margin: 21px auto;
    padding: 10px 21px;
    padding-left: 45px;
}

.AboutContactItemInner button i {
    right: unset;
    left: 0;
}

.HomeAboutInner h1 a {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    color: aliceblue;
    font-weight: 200;
    transition: 300ms;
}

.HomeAboutInner h1 a i {
    margin-right: 16px;
}

.HomeAboutInner h1 a:hover {
    color: var(--theme);
}

.Nose3DGh {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}


.Nose3D {
    position: relative;
    background: #060503;
    padding: 0;
    z-index: 2;
}

.Nose3DText {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    padding-bottom: 100px;
}

.Nose3DText h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 55px;
    font-weight: bold;
    color: var(--theme);
}

.Nose3DText p {
    display: block;
    margin: 13px 0;
    width: 90%;
    font-size: 15px;
    color: aliceblue;
    font-weight: 100;
}

.Nose3DText button {
    display: block;
    margin: 39px 0 0;
    width: fit-content;
    color: var(--theme);
    background: none;
    border: solid 1px;
    padding: 15px 26px;
    border-radius: 5px;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    padding-right: 51px;
    transition: 300ms;
}

.Nose3DText button i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
}

.Nose3DGhFade {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset -504px -262px 305px -188px #060503;
    z-index: 3;
    pointer-events: none;
}


.ReviewsSlider {
    display: block;
    margin: 0 0;
    width: 90%;
    direction: ltr !important;
}

.ReviewsSliderItem {
}

.ReviewsSliderItemInner {
    display: block;
    margin: 43px auto;
    width: 90%;
    background: #0e0d0b;
    padding: 20px;
    border-radius: 10px;
    color: aliceblue;
    padding-right: 100px;
    position: relative;
    cursor: grab;
    box-shadow: 14px 16px 1px 1px #00000085;
    direction: rtl;
}

.ReviewerThumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 55px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10000px;
    border: solid 1px var(--theme);
    margin: 20px;
}

.ReviewsSliderItemDetails {
}

.ReviewsSliderItemDetails h6 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 13px;
    color: var(--theme);
}

.ReviewsSliderItemDetails p {
    display: block;
    margin: 6px auto;
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.Gallery {
}

.GallerySlider {
    direction: ltr !important;
}

.GallerySliderItem {
    filter: grayscale(80%);
    transition: 500ms;
    cursor: pointer;
    overflow: hidden;
}

.GallerySliderItem .setbg {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    transition: 333ms;
}

.GallerySliderItem:hover {
    filter: grayscale(0);
}

.GallerySliderItem:hover .setbg {
    transform: scale(1.1);
}

.Nose3DText button:hover {
    background: var(--theme);
    color: #0a0a0a;
    border-color: var(--theme);
}

.SocialMedia {
    position: relative;
    background: #000000;
    min-height: 800px;
    overflow: hidden;
    z-index: 2;
    padding: 80px 0;
}

.SocialMediaArt iframe {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.SocialMediaArt {
    position: absolute;
    width: 45%;
    left: 0;
    bottom: 0;
    height: 100%;
    padding: 0;
}

.SocialMediaArtFade {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset -79px -243px 252px 80px #010101;
    z-index: 22;
    pointer-events: none;
}

.SocialMediaGH {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.SocialMediaInner {
    display: block;
    margin: 0 auto;
    width: 80%;
}

.SocialMediaInner h1 {
    display: block;
    margin: 0 auto 36px;
    width: 100%;
    font-size: 50px;
    color: var(--theme);
}

.SocialMediaPlatformsGH {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.SocialMediaPlatformsGH h4 {
    display: block;
    margin: 0 0;
    width: fit-content;
    font-size: 14px;
    color: aliceblue;
    letter-spacing: 0;
    padding: 12px 21px;
    padding-right: 40px;
    position: relative;
    cursor: pointer;
    transition: 300ms;
    text-transform: uppercase;
    background: #e5cd831f;
    margin-right: 17px;
    transition: 500ms;
    border-radius: 10px;
    user-select: none;
}

.SocialMediaPlatformsGH h4 .setbg {
    position: absolute;
    right: 8px;
    top: 25%;
    width: auto;
    height: 50%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.SocialMediaBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.SocialMediaBG iframe {
}


.SocialMediaPlatformsGH h4:hover {
    /* letter-spacing: 5px; */
    transform: scale(1.1);
    background: #303030;
}

.SocialMediaBG video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: hue-rotate(-140deg) grayscale(50%);
}

.SocialMediaPostsGH {
    display: flex;
    justify-content: space-between;
    margin: 22px auto;
    width: 100%;
    flex-wrap: wrap;
}

.SocialMediaPostItem {
    width: 340px;
    max-width: 45%;
    background: #ffffff12;
    margin: 24px 0;
    color: aliceblue;
    border-radius: 20px;
    overflow: hidden;
    transition: 300ms;
    cursor: pointer;
    position: relative;
}

.SocialMediaPostThumb {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.7;
    transition: 400ms;
    filter: contrast(90%) brightness(85%);
    background-color: #00000099;
}

.SocialMediaPostDetails {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
}

.SocialMediaPostDetails p {
    display: block;
    margin: 12px auto;
    width: 100%;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.SocialMediaPostDetails label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
}

.SocialMediaPostDetails label i {
    margin-left: 6px;
}


.SocialMediaPostItem:hover {
    transform: scale(1.1);
}

.SocialMediaPostItem:hover .SocialMediaPostThumb {
    opacity: 1;
}

.SocialMediaPostIcon {
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    aspect-ratio: 1/1;
    z-index: 2;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 10px;
    filter: invert(1) drop-shadow(2px 2px 13px black);
}

.Nose3DGhPointerEvent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 71px;
    background: none;
    z-index: 22;
}

.ImagePreview {
    display: none;
}

.ImagePreviewInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999;
}

.ImagePreviewFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    background: #000000;
    opacity: 0.5;
}

.ImagePreviewDiv {
    display: block;
    margin: 0 auto;
    max-width: 85%;
    max-height: 85%;
    background: #000000;
    width: 800px;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.ImagePreviewDiv img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    background: #000000;
    padding-top: 60px;
    padding-bottom: 140px;
    color: aliceblue;
    position: relative;
}

.FooterFirst {
}

.FooterLogo {
    display: block;
    margin: 0 0;
    width: 160px;
    height: 60px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.FooterFirst p {
    display: block;
    margin: 20px auto;
    width: 100%;
    font-size: 14px;
    font-weight: 200;
}

.FooterCenter {
    display: block;
    margin: 15px auto;
    width: 85%;
}

.FooterCenter h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
    color: var(--theme);
}

.FooterCenter ul {
    display: block;
    margin: 24px auto;
    width: 100%;
    padding: 0;
}

.FooterCenter ul li {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    padding: 14px 17px;
    border-bottom: solid 1px #121212;
    cursor: pointer;
    transition: 300ms;
}

.FooterCenter ul li:hover {
    background: #080808;
}

.FooterLoacation {
    display: block;
    width: 95%;
    margin: 15px auto;
}

.FooterLoacation h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
    color: var(--theme);
}

.FooterLoacation iframe {
    display: block;
    margin: 20px auto;
    height: 173px;
    width: 100%;
    border-radius: 10px;
}

.Preloader {
}

.PreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: #060606;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PreloaderDiv {
}

.PreloaderDiv img {
    display: block;
    margin: 0 auto;
    width: 255px;
}

.PreloaderBG {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) brightness(0.5);
    opacity: 0.2;
}

.FooterCopyRight {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.FooterCopyRightInner {
}

.FooterCopyRightInner p {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 20px 10px;
    border-top: solid 1px #121212;
    font-weight: 200;
}

.FooterCopyRightInner p a {
    text-decoration: none;
    margin: 0 4px;
}

.FooterCopyRightInner p a img {
    display: inline-block;
    vertical-align: sub;
    width: auto;
    height: 20px;
    filter: grayscale(1) brightness(5.5);
    transition: 300ms;
}

.ScrollIndicatorAmountParent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
    z-index: 99999999;
}

.ScrollIndicatorAmount {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--theme);
}

.ScrollerBtn {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 60px;
    aspect-ratio: 1/1;
    background: var(--theme);
    border-radius: 10px;
    margin: 35px;
    border: none;
    box-shadow: inset -42px 0px 38px -18px #00000094;
    justify-content: center;
    align-items: center;
    padding: 18px;
    z-index: 999999999;
    filter: drop-shadow(-3px -3px 10px black);
    transition: 300ms;
}

.ScrollerBtn .setbg {
    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) drop-shadow(0px -1px 11px black);
    transition: 400ms;
}


.FooterCopyRightInner p a img:hover {
    transform: scale(1.2);
}


.ScrollerBtn:hover {
    background: #4a4a4a;
}

.ScrollerBtn:hover .setbg {
    transform: rotate(360deg);
}

.EarliestAppointmentsInner {
}

.EarliestAppointmentsInner .EarliestAppointmentsInnerHeader {
    display: block;
    margin: 26px auto;
    width: 100%;
    font-size: 36px;
    color: var(--theme);
}

.EarliestAppointmentsItemsGH {
    display: block;
    margin: 50px auto;
    width: 100%;
}

.EarliestAppointmentsItem {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 38px 20px;
    padding-left: 100px;
    position: relative;
    border-bottom: solid 1px #2a2a2a;
    direction: ltr;
}

.EarliestAppointmentsItem h3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme);
    font-weight: 300;
}

.EarliestAppointmentsItem p {
    display: block;
    margin: 5px auto;
    width: 100%;
    font-size: 11px;
    letter-spacing: 2px;
}

.EarliestAppointmentsItem button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    color: #66b56d;
    border: solid 1px;
    border-radius: 10px;
    padding: 7px 23px;
    position: relative;
    padding-left: 37px;
    font-size: 14px;
    transition: 400ms;
}

.EarliestAppointmentsItem button i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EarliestAppointments {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #0a0a0a;
    color: aliceblue;
    position: relative;
}

.EarliestAppointmentsItemIcon {
    position: absolute;
    left: 0;
    top: 24px;
    width: 45px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 15px;
    filter: grayscale(1) brightness(3.5);
}

.EarliestAppointmentsItemBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EarliestAppointmentsItem button:hover {
    background: #66b56d;
    color: #000000;
    border-color: #66b56d;
    transform: scale(1.1);
}

.EarliestAppointmentsVideo {
    position: absolute;
    right: 0;
    top: 0;
    width: 47%;
    height: 100%;
    object-fit: cover;
}

.AppointmentForm {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 60px 0;
}

.AppointmentFormRow {
    display: block;
    margin: 20px auto;
    width: 100%;
}

.AppointmentFormRow label {
    display: block;
    margin: 6px auto;
    width: 100%;
    font-size: 15px;
    color: aliceblue;
}

.AppointmentFormHolder {
    display: block;
    margin: 16px auto;
    width: 100%;
    height: 45px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.AppointmentFormHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0 20px;
    padding-right: 50px;
    font-size: 14px;
    z-index: 0;
}

.AppointmentFormHolder g {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
    font-size: 14px;
}

main {
    background: #0c0c0c;
}


.AppointmentFormRow label u {
    text-decoration: none;
    color: #c75c5c;
}

.AvailableOnSelectedDate {
    display: none;
    margin: 24px auto;
}

.AvailableOnSelectedDateItem {
}

.AvailableOnSelectedDateItem h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 8px 13px;
    background: #ffffff36;
    margin: 10px;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
    color: aliceblue;
    cursor: pointer;
    border-radius: 5px;
    transition: 300ms;
}

.AvailableOnSelectedDateItem h4 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: 14px;
}

.AvailableOnSelectedDateInner {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    padding: 15px 0;
}

.AvailableOnSelectedDateLoader {
}

.AvailableOnSelectedDateLoaderInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0c0c0c;
    z-index: 22;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AvailableOnSelectedDateLoaderInner .setbg {
    display: block;
    margin: 0 auto;
    width: 60px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    filter: hue-rotate(50deg) contrast(0.5) saturate(140%);
}

.AvailableOnSelectedDateItem h4:hover {
    transform: scale(1.2);
    background: #585858;
}

.AvailableOnSelectedDate h1 {
    display: block;
    margin: 12px auto;
    width: 100%;
    color: aliceblue;
    font-size: 17px;
}

.AvailableOnSelectedDateItem .SelectedClock {
    background: var(--theme) !important;
    color: #0c0c0c !important;
}

.AppointmentFormSubmit {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto;
}

.AppointmentFormSubmit button {
    border: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: #66b56d;
    color: aliceblue;
    padding: 15px 26px;
    position: relative;
    border-radius: 5px;
    padding-left: 70px;
    overflow: hidden;
    transition: 400ms;
    text-transform: uppercase;
}

.AppointmentFormSubmit button i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000002b;
}

.AppointmentFormSubmit button:hover {
    transform: scale(1.05);
    background: #448d4a;
    box-shadow: -11px -9px 1px 1px #00000094;
}

.SideMenuBtn {
    display: none;
}

.SideMenu {
    display: none;
}


.AboutTextEditorContentGH {
    display: block;
    margin: 36px auto;
    width: 100%;
    padding: 33px 0;
    border: solid 1px;
    border-right: none;
    border-left: none;
    border-color: #ffffff0f;
}

.AboutTextEditorContentGH * {
    color: aliceblue;
    max-width: 100%;
}


.AboutTextEditorContentGH h1,
.AboutTextEditorContentGH h2,
.AboutTextEditorContentGH h3,
.AboutTextEditorContentGH h4,
.AboutTextEditorContentGH h5,
.AboutTextEditorContentGH h6,
.AboutTextEditorContentGH h7 {
    color: var(--theme) !important;
}


.EarliestAppointmentsRF {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1/1;
}

.EarliestAppointmentsRFInner {
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.EarliestAppointmentsRFInner .setbg {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 240px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
}

.EarliestAppointmentsRFInner h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    color: #d13636;
}

.EarliestAppointmentsRFInner p {
    display: block;
    margin: 12px auto;
    width: 360px;
    text-align: center;
    font-size: 15px;
    max-width: 100%;
}

.EarliestAppointmentsRFCircle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
}

.EarliestAppointmentsRFCircle div {
    display: flex;
    width: 100%;
    height: 100%;
    background: #ffffff08;
    border-radius: 100000px;
}


.AppointmentsRF {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.AppointmentsRFInner {
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.AppointmentsRFInner .setbg {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 240px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
}

.AppointmentsRFInner h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    color: #d13636;
}

.AppointmentsRFInner p {
    display: block;
    margin: 20px auto;
    width: 360px;
    text-align: center;
    font-size: 15px;
    max-width: 100%;
    color: aliceblue;
}

.AppointmentsRFCircle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
}

.AppointmentsRFCircle div {
    display: flex;
    width: 100%;
    height: 100%;
    background: #ffffff08;
    border-radius: 100000px;
}

.ReservationSuccess {
}

.ReservationSuccessInner {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #121212;
    color: aliceblue;
    padding-top: 80px;
    overflow-y: auto;
}

.ReservationSuccessDiv {
    display: block;
    margin: 0 auto;
    width: 520px;
    max-width: 100%;
    background: #242424;
    padding: 20px;
    max-height: 90%;
    overflow-y: auto;
    border-radius: 10px;
    color: aliceblue;
}

.ReservationSuccessDiv img {
}

.ReservationSuccessDiv h2 {
    display: block;
    margin: 0 auto 21px;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    color: aliceblue;
    text-transform: uppercase;
}

.ReservationSuccessDiv h4 {
    display: block;
    margin: 9px auto;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.ReservationSuccessDiv h4 strong {
}

.ReservationSuccessDiv p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    padding: 11px 0;
    border-bottom: solid 1px #353535;
}

.ReservationSuccessDiv p strong {
    float: right;
}

.ReservationSuccessDiv p i {
    margin-right: 14px;
}

.DownloadCardBtn {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
    padding: 11px 35px;
    border: none;
    background: #913131;
    color: aliceblue;
    text-transform: uppercase;
    border-radius: 5px;
}

.DownloadCardBtn i {
    margin-right: 7px;
}

.ReservationSuccessArt {
    display: block;
    margin: 0 auto 28px;
    width: auto;
    max-width: 100%;
    height: 93px;
}

.ReservationQR {
}

.ReservationQRInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    overflow-y: auto;
}

.ReservationQRDiv {
    display: block;
    margin: 19px auto;
    width: 510px;
    background: #141414;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: aliceblue;
    max-width: 100%;
}

.ReservationQRDiv #qrcode img {
    display: block;
    margin: 30px auto;
    width: 45%;
}

.ReservationQRDiv h2 {
    display: block;
    margin: 0 auto 26px;
    width: 90%;
    font-size: 19px;
    font-weight: 200;
}

.ReservationQRDiv button {
    display: block;
    margin: 17px auto;
    width: fit-content;
    padding: 9px 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: #a33333;
    border: none;
    border-radius: 10px;
    transition: 300ms;
}

.ReservationQRDiv button i {
    margin-right: 11px;
}

.ReservationQRDiv button:hover {
    transform: scale(1.1);
    background: #6e1f1f;
}


.ReservationQRDiv h1 {
    display: block;
    margin: 0 auto 13px;
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    color: #3d7e4e;
}


.ReservationSuccessDiv h2 strong {
    color: var(--theme);
}


.ReservationSuccessDiv p:last-of-type {
    border-bottom: none
}

.ReservationDownloadBtn {
    margin: 31px auto 0;
    width: fit-content;
    padding: 9px 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: #a33333;
    border: none;
    border-radius: 10px;
    transition: 300ms;
}

.ReservationDownloadBtn i {
    margin-right: 11px;
}

.ReservationDownloadBtn:hover {
    transform: scale(1.1);
    background: #6e1f1f;
}

.ReservationSuccessDiv h7 {
    display: block;
    margin: 0 auto;
    width: 95%;
    text-align: center;
}

.ContactUs {
}

.ContactUsCover {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.ContactUsCover img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.ContactUsBody {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px 30px;
    color: aliceblue;
}

.ContactUsBody h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--theme);
}

.ContactUsBody h2 {
    display: block;
    margin: 20px auto;
    width: 100%;
    padding: 14px 0;
    font-size: 40px;
    letter-spacing: 2px;
}

.ContactUsSocialMedia {
    display: flex;
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin: 0 0;
}

.ContactUsSocialMedia a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    aspect-ratio: 1/1;
    background: #000000;
    margin-right: 17px;
    border-radius: 5px;
    text-decoration: none;
    transition: 400ms;
    padding: 15px;
}

.ContactUsSocialMedia a .setbg {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.ContactUsBody h2 i {
    margin-right: 20px;
}


.ContactUsSocialMedia a:hover {
    transform: scale(1.1);
    background: #ffffff;
}

.AppointmentFormHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0 14px;
    font-size: 13px;
    cursor: pointer;
    padding-right: 50px;
}

.FormValidation {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #753f3f;
    color: #ffb3b3;
    border-radius: 10px;
    border: solid 2px #a73e3e;
    padding: 20px;
    position: relative;
    padding-right: 70px;
}

.FormValidation i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    font-size: 25px;
    margin: 17px;
}

.FormValidation h4 {
    display: block;
    margin: 3px auto;
    width: 100%;
    font-size: 17px;
}

.SocialMediaArt .setbg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90%;
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    margin: 0;
    mix-blend-mode: exclusion;
    filter: hue-rotate(5deg) saturate(120%) contrast(110%);
}

.HeaderLogo .setbg:hover {
    transform: scale(1.2);
    filter: hue-rotate(-20deg);
}

.AppointmentFormHolder input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.AppointmentFormHolder input::-webkit-outer-spin-button,
.AppointmentFormHolder input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
