html {
    margin:0;
    padding:0;
	width: 100%; 
	height: 100%;
	display: flex;
    flex-direction: column;
    align-items: center;
}

p,span,div,h1,h2,h3,h4 {
  user-select: none;
}

body {
    margin:0;
    padding:0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
	overflow-y: scroll;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.crumb {
    min-height: 200px;
    padding-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #5C54FC;
    background-image: url(images/bck.png);
    background-size: cover;
}

span.crumbInnerSpan {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    max-width: 400px;
    gap: 10px
}

span.headerButton2 {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    border-radius: 50px;
    background: #5C54FC;
    padding: 0 15px;
    color: white;
    font-size: 14px;
}

h3.crumbPageTitle {
    color: white;
    font-size: 45;
    font-weight: 800;
}


/* For webkit-based browsers (Chrome, Safari) */
body::-webkit-scrollbar {
    opacity: 0;
  display: none; /* Hide the scrollbar */
}

/* For Firefox */
body {
  scrollbar-width: 0; /* Hide scrollbar */
  scrollbar-opacity: 0;
}

/* width */
::-webkit-scrollbar {
  width: 0;
}

p,h1,h2,h3,h4,span {
margin: 0;
padding: 0;
font-family: system-ui;
}

.headerDiv2 {
display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    min-width: 20%;
    cursor: pointer;
}

.headerDiv3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 20px;
    min-width: 40%;
}

i.menu {
display: none;    
}

img.headerLogo {
    height: 30px;
    cursor: pointer;
}

img.appStoreIcon {
    height: 35px;
    cursor: pointer;
}

.mainDivInner2 {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.mainImg {
    height: 350px;
    border-radius: 10px;
    width: 350px;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

span.mobileMenuActionSpan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.prefooter {
    display: flex;
    background: #f8f7ff;
    width: calc(100% - 100px);
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

span.mobileMenuList {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

h2.appSectonTitle {
    font-size: 30px;
    color: #5C54FC;
}

p.appSectionDescr {
    font-size: 16px;
    color: #191919;
}

span.appSectionWriteupSpan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.prefooterInner1 {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

footer.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    background-color: #5C54FC;
}

p.footerAboutText {
    width: 80%;
    font-size: 13px;
    color: white;
    font-weight: 300;
}

.innerFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 100px);
    gap: 30px;
}

.groupFooterMenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

img.socialImg {
    width: 100%;
}

span.footerLogoSpan {
    width: 100%;
}

img.footerLogoImg {
    height: 30px;
}

span.scanAppGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.scanAppQrSpan {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 10px;
    background: #5C54FC;
}

h3.contactUsTitle {
    font-size: 25px;
    color: black;
}

p.contactUsDescr {
    font-size: 15px;
    color: #848484;
}

span.contactUsFormInputGroup {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contactUsForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

span.contactBoxHeading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.contactBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    max-width: 450px;
    gap: 30px;
    padding: 30px 20px;
    background: white;
    box-shadow: 1px 1px 11px 3px #80808030;
    border-radius: 20px;
}

button.contactUsSubmitBtn {
    height: 45px;
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    color: white;
    background: #5C54FC;
    cursor: pointer;
    margin-top: 30px;
}

button.contactUsSubmitBtn:hover {
background: #d2c2ff;
    color: #5C54FC;    
}

input.contactUsInput {
    height: 45px;
    border-radius: 10px;
    border: 0;
    background: #eaeaea;
    padding: 0 10px;
}

select.contactUsInput {
    height: 45px;
    border-radius: 10px;
    border: 0;
    background: #eaeaea;
    padding: 0 10px;
}

textarea.contactUsInput {
    height: 115px;
    border-radius: 10px;
    border: 0;
    background: #eaeaea;
    padding: 10px;
    font-family: system-ui;
}

div.map {
    width: 40%;
    height: 400px;
    max-width: 400px;
    border-radius: 20px;
}

textarea.contactUsInput,
input.contactUsInput,
select.contactUsInput {
  outline: 0;
}

textarea.contactUsInput:focus,
input.contactUsInput:focus,
select.contactUsInput:focus {
  border: solid 2px #5C54FC;
  outline: none;
}

b.requred {
    color: red;
}

.contactUsDiv {
    padding: 50px 0;
    width: calc(100% - 50px);
    display: flex;
    justify-content: space-around;
}

img.qrImg {
    width: 100%;
    height: 100%;
}

span.scanAppTxt {
    width: 60px;
    height: 60px;
    padding: 10px;
    border: 2px solid #5C54FC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    color: #5C54FC;
    font-family: fangsong;
}

span.headerMenu {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
}

span.headerMenu:hover {
color: #5C54FC;    
}

span.headerButton:hover {
    background: #d1c1ff;
    color: #5C54FC;
}

i {
display: flex;
}

i.downloadApp {
    transform: rotate(316deg);
    font-size: 16px;
}

span.headerMenu.active {
    color: #5C54FC;
}

span.headerButton {
display: flex;
    align-items: center;
    gap: 10px;
    height: 35px;
    padding: 0 15px;
    background: #5C54FC;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-size: 13px;
}

span.switchModeSpan {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 2px grey;
    border-radius: 50px;
    cursor: pointer;
}

img.switchCountryFlagImg {
    height: 25px;
    width: 25px;
    border-radius: 50px;
    cursor: pointer;
    padding: 5px;
    background: #1ac91a2e;
}

div.countryListModal {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    background: white;
    box-shadow: 1px 1px 6px 1px #80808024;
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 100000;
    border-radius: 20px;
}

span.errorNotice {
    width: auto;
    max-width: 300px;
    height: auto;
    background: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    position: fixed;
    top: 90px;
    border-radius: 10px;
    gap: 10px;
    z-index: 100000;
    box-shadow: 1px 1px 3px 2px #80808070;
    transition: right 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}


.faqBox {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.questionSpan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background: #f5f5f5;
}

.questionSpan .arrow {
  border: solid #5C54FC;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faqBox.active .arrow {
  transform: rotate(-135deg); /* arrow points down when open */
}

.answer {
  max-height: 0;
  font-family: system-ui;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faqBox.active .answer {
  max-height: 500px; /* adjust based on content */
  padding: 15px 20px;
}

.faqBoxes {
    width: calc(100% - 50px);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.errorNotice.show {
  right: 20px; /* slide in */
  opacity: 1;
}

p.noticeMsg {
    font-size: 19px;
    color: black;
}

i.error {
    font-size: 21px;
    color: red;
}

i.success {
    color: #0cbb0c;
    font-size: 21px;
}

div.mobileMenuModal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: white;
    z-index: 10000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px
}

img.appstorIconMobile {
    height: 45px;
}
h3.mobileMenu.active {
    color: #5C54FC;
}

h3.mobileMenu {
    color: #929292;
    font-size: 21px;
}

i.closeMenu {
    font-size: 25px;
    color: red;
    margin: 15px 10px;
    padding: 5px;
    background: #ffe4e4;
    border-radius: 50px;
}

span.closeMenuModalSpan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.headerDiv3 {
    padding-right: 15px;
}

div.policyBody {
    padding: 40px 0;
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

span.countrySwitchSpan {
    display: flex;
    gap: 10px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 10px;
    align-items: center;
}

h3.switchCountryListName {
    font-size: 17px;
}

span.countrySwitchSpan:hover {
background: #ededff;
}

img.switchCountryListFlag {
    width: 20px;
    height: 20px;
    border-radius: 50px;
}

h3.switchCountryListName {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.headerDiv1 {
    display: flex;
    align-items: center;
    padding-left: 20px;
    min-width: 15%;
}


header.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-height: 70px;
    position: fixed;
    top: 0;
    z-index: 10000;
    box-shadow: 1px 1px 11px 3px #8080804d;
    background: white;
}

.footerMenuDiv {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footerMenuDivInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 20%;
}

h3.footerMenuTitle {
    color: white;
    font-size: 15px;
    text-align: left;
}

.footerMenuList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    gap: 5px;
}

h3.footerMenu {
    font-size: 13px;
    color: #ffffffc9;
    font-weight: 500;
    cursor: pointer;
}

.socialsGroup {
    display: flex;
    gap: 10px;
}

.prodSection {
    width: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px 0;
}

i.selectContact {
    font-size: 35px;
    color: #5C54FC;
}

span.prodSectionCallToActionSpan {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

img.prodPic {
    width: 350px;
    height: auto;
    border-radius: 10px;
    animation: bounce 2s infinite ease-in-out;
}

h3.prodSectActionTxt {
    font-size: 14px;
    font-weight: 500;
}

h2.prodSecTitle {
    font-size: 21;
    color: #5C54FC;
    font-weight: 900;
    line-height: 30px;
}

p.prodSecDesc {
    color: #000000;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
}

span.prodSectionCallToActionSpan {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 25px;
    border-radius: 30px;
    color: #5C54FC;
}

.prodSectionInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 30%;
    width: 30%;
    gap: 20px;
}

span.prodSectionCallToActionSpan:hover {
background: #eae3ff;
    padding: 7px 15px;
    color: #5C54FC;
}

span.prodSectionCallToActionSpan.dark:hover {
background: #eae3ff;
    padding: 7px 15px;
    color: #5C54FC;
}

span.socialSpan {
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 50px;
    background: #ffffff66;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

span.socialSpan:hover {
background: white;    
}

.mainDivInner1 {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

img.appDisPrefooter {
    width: 350px;
    height: 350px;
    border-radius: 10px;
}

.prefooterInner2 {
    min-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

span.mainCountryCountSpan {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #5C54FC;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: solid 4px white;
    margin-left: -15px;
}

img.mainCountryFlag.jstt {
    margin-left: -15px;
}

img.mainCountryFlag {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 4px solid white;
}

span.mainCountryListSpan {
    display: flex;
    justify-content: flex-start;
}

.mainWriteUpBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

h3.footerMenu:hover {
color: white;     
}

div.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000000;
    top: 0;
    background: #ffffffd9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #5C54FC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mainDiv {
    padding-top: 150px;
    width: calc(100% - 100px);
    display: flex;
    justify-content: center;
    padding-bottom: 70px;
    align-items: center;
}

h2.mainDivTitle {
    font-size: 31px;
    color: #5C54FC;
}

p.mainDivDescr {
    color: #8a8a8a;
}

.postFooterDiv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    border-top: #ffffff57 solid 1px;
}

span.footerAboutSpan {
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}


div.hide, span.hide, button.hide {
display: none;    
}

/* DARK MODE   */

body.body.dark {
    background: #151515;
    box-shadow: 1px 1px 11px 3px #0000004d;
}

h2.policyTitle.dark {
    color: white;
}

h3.policyHead.dark {
    color: white;
}

p.policTxt.dark {
    color: white;
}

p.policyDescription.dark {
    color: white;
}

li.dark {
    color: white;
}

p.lead.dark {
    color: white;
}

h3.mobileMenu.dark {
    color: white;
}

div.mobileMenuModal.dark {
    background: black;
}

.contactBox.dark {
    background: black;
    box-shadow: none;
}

.questionSpan.dark {
    background: black;
}

h3.question.dark {
    color: white;
}

.answer.dark {
    color: white;
}

.crumb.dark {
    background-color: #040010;
}

h3.contactUsTitle.dark {
    color: white;
}

p.contactUsDescr.dark {
    color: #dadada;
}

label.contactUsLabel.dark {
    color: #e6e6e6;
}

button.contactUsSubmitBtn.dark {
    background: #dbceff;
    color: #5C54FC;
}

span.headerMenu.active.dark {
    color: white;
}

span.headerMenu.dark {
    color: #afafaf;
}

div.countryListModal.dark {
background: black;    
}

h3.switchCountryListName.dark {
color: white;    
}

span.countrySwitchSpan.dark:hover {
background: #ffffff40;
}



i.mode.dark {
    color: white;
}

img.switchCountryFlagImg.dark {
    background: #ffffff57; 
}

span.headerButton.dark {
    color: #5C54FC;
    background: #d7cef1;
}

footer.footer.dark {
    background: black;
}

.prefooter.dark {
    background: black;
}

h2.appSectonTitle.dark {
    color: white;
}

span.scanAppTxt.dark {
    color: white;
    border: solid 2px white;
}

span.scanAppQrSpan.dark {
    background: #9b7eee;
}

p.appSectionDescr.dark {
    color: #c6c6c6;
}

h2.mainDivTitle.dark {
    color: white;
}

img.mainCountryFlag.dark {
border: 4px solid #151515;    
}

span.mainCountryCountSpan.dark {
    border: 4px #151515 solid;
}

h2.prodSecTitle.dark {
    color: white;
}

p.prodSecDesc.dark {
    color: white;
}

span.prodSectionCallToActionSpan.dark {
    color: #e8e0ff;
}

p.mainDivDescr.dark {
    color: #dfdfdf;
}

header.header.dark {
    background: black;
    box-shadow: none;
}




/* Mobile-friendly buttons */
@media (max-width: 600px) {
span.headerButton2 {
    display: none;
}

span.headerButton {
        height: 55px;
    padding: 0 55px;
    font-size: 19px;
}

.headerDiv2 {
    display: none;
}

.mainDiv {
    width: 100%;
    flex-direction: column;
    gap: 50px;
}

.mainDivInner1 {
    max-width: 100%;
    align-items: center;
}

.mainWriteUpBox {
    align-items: center;
    gap: 20px;
}

h2.mainDivTitle {
    text-align: center;
    padding: 0 10px;
}

img.mainCountryFlag {
    width: 40px;
    height: 40px;
}

i.actionIcon {
    font-size: 19px;
}

span.mainCountryCountSpan {
    width: 40px;
    height: 40px;
}

p.mainDivDescr {
    text-align: center;
    padding: 0 15px;
    font-size: 18px;
    color: #242424;
}

.headerDiv1 {
    padding: 0;
    min-width: 40%;
    justify-content: flex-start;
}

img.headerLogo {
    margin-left: 5px;
    height: 40px;
    width: auto;
}

img.switchCountryFlagImg {
    width: 30px;
    height: 30px;
}

span.switchModeSpan {
    width: 30px;
    height: 30px;
}

img.switchCountryListFlag {
    width: 30px;
    height: 30px;
}

img.mainImg {
    width: 90%;
}

.mainDivInner2 {
    width: 100%;
}

.prodSection {
    flex-direction: column;
    width: 100%;
    gap: 50px;
}

h2.prodSecTitle {
    text-align: center;
    font-size: 26;
    padding: 0 15px;
}

h3.prodSectActionTxt {
    font-size: 19px;
    font-weight: 500;
}

img.footerLogoImg {
    height: 50px;
    margin-left: 10px;
    cursor: pointer;
}

.prodSection.right {
    flex-direction: column-reverse;
}

span.appIconsGroup {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.prefooter {
    width: 100%;
    flex-direction: column;
}

.prefooterInner1 {
    width: 100%;
    justify-content: center;
}

.innerFooter {
    width: 100%;
}

.footerMenuDiv {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    width: calc(100% - 30px);
}

.postFooterDiv {
    height: 70px;
}

img.footerLogoImg {
    height: 50;
}

h2.appSectonTitle {
    text-align: center;
    padding: 0 15px;
}

p.appSectionDescr {
    text-align: center;
}

i.menu.dark {
    color: white;
}

span.scanAppTxt {
    width: 100px;
    height: 100px;
    font-size: 23px;
}

span.scanAppQrSpan {
    width: 100px;
    height: 100px;
}

span.scanAppGroup {
    display: none;
}

img.appStoreIcon {
    height: 50px;
}

p.prodSecDesc {
    text-align: center;
    font-size: 16px;
    padding: 0 15px;
    font-weight: 400;
}

span.footerAboutSpan {
    width: calc(100% - 30px);
}

p.footerAboutText {
    width: 100%;
    font-size: 17px;
}

h3.footerMenuTitle {
    font-size: 19px;
}

div.policyBody {
    width: calc(100% - 10px);
}

h3.footerMenu {
    font-size: 16px;
}

.footerMenuDivInner {
    max-width: 50%;
    width: 40%;
}

.prodSectionInner {
    width: 100%;
    max-width: 100%;
    align-items: center;
}

h3.crumbPageTitle {
font-size: 35px;
}

span.crumbInnerSpan {
width: 60%;
}

div.countryListModal {
    gap: 10px;
}

.contactUsDiv {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

input.contactUsInput {
    height: 55px;
    font-size: 18px;
    font-weight: 500;
}

textarea.contactUsInput {
    font-size: 18px;
}

button.contactUsSubmitBtn {
    height: 55px;
}

select.contactUsInput {
    height: 55px;
    font-size: 18px;
    font-weight: 500;
}
.contactBox {
    width: calc(100% - 70px);
}

div.map {
    width: calc(100% - 20px);
}

i.selectContact.dark {
    color: #e0d6ff;
}

i.menu {
    font-size: 25px;
    display: flex;
}

.faqBoxes {
    width: calc(100% - 20px);
}
}