@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    outline: none !important;
    font-family: 'Poppins', sans-serif;
}

.PageWallpaper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1;
}

img, button {
    user-select: none;
    user-focus: none;
    -webkit-user-drag: none;
}

.HeaderLogo {
    cursor: pointer;
    transition: 300ms;
}

.HeaderLogo img {
    display: block;
    margin: 0 0;
    width: auto;
    height: 37px;
}

.HeaderContactParent {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.HeaderContact {
    display: flex;
    width: fit-content;
    margin: 0 0;
    margin-right: 14px;
    height: 100%;
    align-items: center;
}

.HeaderContact p {
    display: flex;
    height: 100%;
    align-items: center;
    margin: 0 9px;
    padding: 0px 5px;
    font-size: 15px;
}

.HeaderContact p i {
    margin-right: 8px;
    /* color: #c3a863; */
}

#Header {
    padding-top: 10px;
    padding-bottom: 10px;
    background: white;
}

#Banner {
    position: relative;
    overflow: hidden;
    background: #d9d9d9;
}

.BannerBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    transform: translatey(0px);
    -webkit-animation: BannerBGAnimation 10s ease-in-out infinite;
    animation: BannerBGAnimation 10s ease-in-out infinite;
}

.BannerInner {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-height: 490px;
}

.BannerDiv {
    display: block;
    margin: 0 0;
    width: 50%;
}

.HeaderLoginBtn {
    width: fit-content;
    padding: 4px 11px;
    font-size: 14px;
    border-radius: 10px;
    border: solid 2px;
    color: var(--theme);
    background: none;
    font-weight: 600;
    transition: 300ms;
}

.HeaderLoginBtn i {
    color: var(--theme);
    margin-right: 5px;
}

.HeaderLoginBtn:hover {
    background: #4c4c4c;
    color: aliceblue;
    border-color: #4c4c4c;
}


@keyframes BannerBGAnimation {
    0% {
        top: -20%;
    }
    50% {
        top: 0%;
    }
    100% {
        top: -20%;
    }
}

@keyframes BannerMonitorAnimation {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes BannerMMobileAnimation {
    0% {
        right: 10%;
    }
    50% {
        right: 6%;
    }
    100% {
        right: 10%;
    }
}

.BannerMonitor {
    position: absolute;
    right: 5%;
    bottom: 23%;
    width: 532px;
    height: 412px;
    overflow: hidden;
    transform: translatey(0px);
    -webkit-animation: BannerMonitorAnimation 5s ease-in-out infinite;
    animation: BannerMonitorAnimation 5s ease-in-out infinite;
}

.BannerMonitor img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.BannerMonitor video {
    position: absolute;
    left: 2%;
    top: 3px;
    width: 96%;
    height: 315px;
    background: #4d4d4d;
    object-fit: cover;
    z-index: 0;
}

.BannerMob {
    position: absolute;
    right: 6%;
    bottom: 22%;
    width: 83px;
    height: 188px;
    z-index: 2;
    transform: translatey(0px);
    -webkit-animation: BannerMMobileAnimation 10s ease-in-out infinite;
    animation: BannerMMobileAnimation 10s ease-in-out infinite;
}

.BannerMob img {
    position: absolute;
    left: -2%;
    top: -2%;
    width: 104%;
    height: 104%;
}

.BannerMob video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c5c5c5;
    border-radius: 10px;
}

.BannerDiv h1 {
    display: block;
    margin: 21px auto;
    width: 100%;
    font-weight: bold;
    font-size: 39px;
}

.BannerDiv p {
}

.FeatureItem {
    display: block;
    margin: 24px auto;
    width: 90%;
    background: white;
    padding: 16px;
    text-align: center;
    border-radius: 20px;
    box-shadow: inset 80px -80px 109px -100px #ededed;
}

.FeatureItem img {
    display: block;
    margin: -29px auto 13px;
    width: auto;
    height: 85px;
    filter: sepia(20%) saturate(129%);
}

.FeatureItem h2 {
    display: block;
    margin: 0 auto;
    width: 95%;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 43px;
    color: var(--theme);
}

.FeatureItem p {
    display: block;
    margin: 13px auto;
    width: 94%;
    font-size: 12px;
    overflow: hidden;
    /* display: -webkit-box; */
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 72px;
}

#Features {
    background: #bfbfbf;
    padding-top: 65px;
    padding-bottom: 85px;
}

#FrameWorks {
    padding-top: 70px;
    padding-bottom: 67px;
    position: relative;
}

#FrameWorks h1 {
    display: block;
    margin: 0 auto 70px;
    width: 96%;
    font-size: 40px;
    font-weight: bold;
    color: var(--theme);
}

.FrameWorksSliderItem {
}

.FrameWorksSliderItemInner {
    display: flex;
    margin: 0 auto;
    width: 135px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 90%;
    cursor: grab;
}

.FrameWorksSliderItemInner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}


.FrameWorksSlider {
    display: block;
    margin: 0 auto;
    direction: ltr;
    width: 100%;
}

.FrameWorksSlider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 50px auto 0;
    padding: 0;
}

.FrameWorksSlider .slick-dots li {
    width: fit-content;
    margin: 0 auto;
    width: fit-content;
    padding: 1px 7px;
    display: inline-block;
    cursor: pointer;
}

.FrameWorksSlider .slick-dots li div {
    width: 15px;
    height: 14px;
    background: #000000;
    border-radius: 10000px;
    opacity: 0.1;
    transition: 300ms;
}

.FrameWorksSlider .slick-dots .slick-active div {
    opacity: 1.0;
    width: 24px;
    background: var(--theme);
}

.CEOInner {
    display: block;
    margin: 0 auto;
    width: 100%;
}

#Lorans {
    background: #c5c5c5;
    padding-top: 35px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

#Lorans h1 {
    display: block;
    margin: 25px auto 18px;
    width: 100%;
    font-weight: bold;
    font-size: 67px;
    text-align: center;
    color: var(--theme);
}

#Lorans p {
    display: block;
    margin: 8px auto 40px;
    width: 740px;
    text-align: center;
    max-width: 90%;
}

#Lorans video {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    width: 800px;
}

.CEOBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    filter: grayscale(1);
    opacity: 0.3;
    min-height: 100%;
}

.OTPVerfication {
}

.OTPVerficationInner {
    background: #fff6d7;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.OTPVerficationBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    transform: translatey(0px);
    -webkit-animation: BannerBGAnimation 10s ease-in-out infinite;
    animation: BannerBGAnimation 10s ease-in-out infinite;
}

.OTPVerficationDiv {
    display: block;
    background: white;
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 18px -12px #00000061;
    border-radius: 10px;
    max-width: 85%;
    width: 450px;
}

.OTPVerficationDiv form {
}


#Footer {
    background: white;
    padding-top: 100px;
    padding-bottom: 100px;
    /* border-top: solid 1px #ebebeb; */
    background: whitesmoke;
}

.FooterSocialMedia {
}

.FooterSocialMedia img {
    display: block;
    margin: 45px auto 21px;
    width: 211px;
    max-width: 100%;
}

.SocialMediaGH {
    width: fit-content;
    display: flex;
    margin: 20px auto;
}

.SocialMediaGH a {
    margin: 0 4px;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    font-size: 25px;
    color: #4e4e4e;
    transition: 0.3s;
}

.SocialMediaGH a i {
}

.SocialMediaGH a:hover {
    color: var(--theme);
    transform: scale(1.3);
}

.FooterTabs {
    display: block;
    margin: 0 auto;
    width: 85%;
}

.FooterTabs ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.FooterTabs ul li {
    display: block;
    margin: 18px auto;
    width: 100%;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 300ms;
}

.FooterTabs ul li:hover {
    background: #ebebeb;
}

.FooterVision {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.FooterVision h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
}

.FooterVision p {
    display: block;
    margin: 29px auto;
    width: 100%;
    font-size: 15px;
}

.BannerOverlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
    object-fit: cover;
    filter: grayscale(1);
    mix-blend-mode: screen;
    opacity: 0.4;
    pointer-events: none;
}


::selection {
    color: #ffffff;
    background: #a17d26;
}

.StoresAnchors {
    display: flex;
    justify-content: start;
    width: fit-content;
    margin: 0 0;
}

.StoresAnchors img {
    width: auto;
    height: 35px;
    margin-right: 10px;
    transition: 300ms;
}


.StoresAnchors img:hover {
    transform: scale(1.1);
}


.GuestPreloader {
}

.GuestPreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.GuestPreloaderBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    transform: translatey(0px);
    -webkit-animation: BannerBGAnimation 10s ease-in-out infinite;
    animation: BannerBGAnimation 10s ease-in-out infinite;
    z-index: -1;
}

.GuestPreloaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.GuestPreloaderDiv img {
    width: auto;
    height: 66px;
    display: block;
    margin: 0 auto;
    transform: translatey(0px);
    -webkit-animation: PreloaderLogoAnimation 5s ease-in-out infinite;
    animation: PreloaderLogoAnimation 5s ease-in-out infinite;
}

.GuestPreloaderDiv label {
    display: block;
    margin: 16px auto;
    width: fit-content;
    font-size: 17px;
}

@keyframes PreloaderLogoAnimation {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}


.CallUsNow {
    display: none;
}

.TermsOfUserBannerBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    transform: translatey(0px);
    -webkit-animation: BannerBGAnimation 10s ease-in-out infinite;
    animation: BannerBGAnimation 10s ease-in-out infinite;
}

.TermsOfUserBannerLogo {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 80%;
    height: 95px;
}

.TermsOfUserGH {
    display: block;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 120px;
}

.TermsOfUserGH h1 {
    display: block;
    margin: 38px auto;
    width: 100%;
    color: #b99b51;
    font-weight: bold;
    text-align: center;
    font-size: 46px;
}

.TermsOfUserGH h2 {
    display: block;
    margin: 43px auto 10px;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
}

.TermsOfUserGH p {
    display: block;
    margin: 9px auto;
    width: 100%;
}

.TermsOfUserGH span {
    display: block;
    margin: 0 auto 42px;
    width: 100%;
    font-size: 16px;
}

.HeaderLogo:hover {
    transform: scale(1.2) rotate(-2deg);
}

.TermsOfUserBanner {
    position: relative;
    overflow: hidden;
    background: #f7f1dd;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    margin: 30px auto 26px;
}

.ScrollIndicatorAmountParent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
}

.ScrollIndicatorAmount {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #a17d26;
}

.BannerDiv button {
    display: block;
    margin: 34px 0;
    width: fit-content;
    padding: 11px 20px;
    padding-left: 48px;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: var(--theme);
    color: aliceblue;
    z-index: 2;
    transition: 300ms;
}

.BannerDiv button img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 11px;
    filter: invert(1);
}


@keyframes ButtonShineAnimation {
    0% {
        left: -20%;
    }
    100% {
        left: 120%;
    }
}

.ButtonShine {
    position: absolute;
    left: -20%;
    top: -15%;
    width: 0px;
    height: 140%;
    background: white;
    transform: rotate(19deg);
    box-shadow: 0px 0px 15px 3px white;
    -webkit-animation: ButtonShineAnimation 1s ease-in-out infinite;
    animation: ButtonShineAnimation 1s ease-in-out infinite;
}


.BannerDiv button:hover {
    transform: scale(1.1);
    background: #323539;
}

.PlaneItem {
    display: block;
    margin: 25px auto;
    max-width: 90%;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 35px -28px #0000006e;
    width: 315px;
    border-radius: 10px;
    padding-bottom: 99px;
    position: relative;
}

.PlaneItemIcon {
    display: block;
    margin: 14px auto;
    width: auto;
    max-width: 90%;
    height: 102px;
}

.PlaneItem h1 {
    display: block;
    margin: 23px auto 0;
    width: fit-content;
    text-align: center;
    font-size: 24px;
    color: #6baf63;
}

.PlaneItem h1 strong {
    font-size: 19px;
}

.PlaneItem h4 {
    display: block;
    margin: 10px auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.PlanFeatures {
    display: block;
    margin: 26px auto;
    width: 100%;
}

.PlanFeatures p {
    display: block;
    margin: 0 auto 25px;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}

.PlanFeatures p y {
    position: absolute;
    left: 0;
    top: 0;
}

#Plans {
    padding-top: 60px;
    padding-bottom: 140px;
    background: #00000012;
}

.PlaneItem label {
    display: block;
    margin: 8px auto;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    word-spacing: 4px;
    color: #977d3b;
}


.PlanPrice {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0px;
}


.PlanContact {
    display: block;
    margin: 0 auto 59px;
    width: 100%;
    text-align: center;
}

.PlanContact h4 {
}

.PlanContact h1 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
}

.PlanContact h1 i {
    color: #7bb577;
}

.PlanContact label {
}

.PlanContact label g {
}
