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

p,span,div,h1,h2,h3,h4,label {
  user-select: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;   
  margin: 0;
}

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

p,span,div,h1,h2,h3,h4,label {
 font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;   
}

img.pages-img {
    width: 250px;
}

img.header-logo {
    width: 130px;
    cursor: pointer;
}

i { 
    display: flex;
}

button.header-cta-btn:hover {
    background: #a169e0;
}

p.header-menu-text {
    font-size: 14px;
    font-weight: 500;
    color: #626262;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-about-div {
    width: 30%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.footer-menu-div {
    width: 60%;
    display: flex;
    justify-content: space-around;
}

.footer-inner-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
}

p.footer-menu-title {
    color: #ffffffad;
    font-size: 17px;
}

h3.footer-menu-text {
    cursor: pointer;
    color: white;
    font-weight: 400;
    font-size: 16px;
}

.footer-menu-inner-div {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mobile-menu-top-div {
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

i.closeMenu {
    font-size: 20px;
    color: #808080;
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #777777;
}

.mobile-menu-bottom-div {
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-content-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

p.menuSectionTitle {
    font-size: 17px;
    color: #747474;
}

.menuListDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mobile-menu-main-div {
    height: 100%;
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    overflow-y: scroll;
    padding: 20px 0;
}

button.mobile-menu-cta-btn {
    width: 300px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 0;
    border-radius: 20px;
    background: #550080;
    color: white;
}

.mobile-menu-bar {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000000;
    background: white;
    left: 0;
    top: 0;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

img.mobile-menu-logo {
    width: 130px;
}

.header-cta-menu-icon-div {
    display: none;
}

i.header-menu-icon {
    font-size: 20px;
    padding: 5px;
    border: solid 1px grey;
    border-radius: 5px;
    color: #969696;
}

div.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000000000000;
    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 #552fc2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btnLoader {
    width: 15px;
    height: 15px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000000000000;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #error { background: #e74c3c; }
  #success { background: #2ecc71; }
  .popup.showw { opacity: 1; }
  .popup.hide { opacity: 0; }
  

span.header-menu-span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 15px 5px;
}

footer.footer {
    background: #410e77;
    width: 100%;
    height: auto;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.status-container.errorpage {
margin-top: 150px;
margin-bottom: 70px;
}

span.header-menu-icon-span.purple {
    background: #8a1cec3d;
}

h3.footer-menu-text:hover {
    color: #ffd700;
}

img.footer-social:hover {
opacity: 0.6;
}

.footer-div-1 {
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-around;
}

img.footer-social {
    width: 25px;
    cursor: pointer;
}

img.footer-logo {
    width: 150px;
    cursor: pointer;
}

.footer-social-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

p.short-footer-about {
    color: #ffffffde;
    font-size: 15px;
    letter-spacing: 0.5px;
}

p.footer-bottom-text {
    color: #ffffffbd;
    text-align: center;
}

header.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    box-shadow: 1px 1px 9px 0px #e5e5e5;
    position: fixed;
    background: white;
}

.footer-div-2 {
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: solid 1px #ffffff59;
}

.header-menu-div {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-logo-div {
    display: flex;
    padding-left: 20px;
    align-items: center;
}

img.header-modal-img {
    height: 17px;
    width: 17px;
}

span.header-menu-icon-span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffefd1;
    border-radius: 50px;
}

span.header-menu-icon-span.green {
    background: #5ad15a42;
}

span.header-menu-icon-span.blue {
    background: #0053ff2e;
}

span.header-menu-icon-span.red {
    background: #ffdfdf;
}

span.header-modalSpan {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    width: calc(100% - 20px);
    cursor: pointer;
}

p.header-modal-text {
    font-size: 14px;
    font-weight: 500;
    color: #474747;
}

span.header-modalSpan:hover {
background: #e7e7ff;    
}

p.header-menu-text:hover {
color: #410e77
}

.headerModal {
    position: fixed;
    top: 50px;
    display: none; /* hide by default */
  z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: max-content;
    background: white;
    padding: 20px 10px;
    border: 0;
    border-radius: 10px;
    box-shadow: 1px 1px 8px 2px #dfdfdf;
}

.header-menu-span:hover .headerModal {
  display: flex;
}

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

.header-cta-div {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

button.header-cta-btn {
    height: 40px;
    padding: 0 25px;
    border: 0;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    background: #2e009c;
    cursor: pointer;
}

.status-container {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

h1.headTitle {
    font-size: 21px;
    color: black;
}

p.hdjss {
    color: grey;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
    max-width: calc(100% - 40px);
}

b.contctEmail {
    color: #8c03b6;
    font-weight: 600;
    cursor: pointer;
}

p.contctUs {
    color: grey;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
    max-width: calc(100% - 40px);
}





div.hide, span.hide, p.hide, i.hide, section.hide, input.hide, select.hide, ul.hide {
display: none;
}



 @media (max-width:900px){ 
.header-menu-div {
    gap: 30px;
}

.footer-about-div {
    width: 100%;
}

.footer-div-1 {
    flex-direction: column;
    gap: 50px;
}

.footer-menu-div {
    width: 100%;
}
     
 }
 
 
 
  @media (max-width:500px){ 
     
 .header-logo-div {
    padding-left: 10px;
}

.header-menu-div {
    display: none;
}

.header-cta-div {
    display: none;
}

.footer-div-1 {
    flex-direction: column;
    gap: 50px;
}

.footer-about-div {
    width: 100%;
}

.footer-inner-div {
    width: 45%;
}

p.footer-bottom-text {
    max-width: calc(100% - 50px);
}

p.short-footer-about {
    font-size: 16px; 
}

.footer-menu-div {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

.header-cta-menu-icon-div {
    padding-right: 15px;
    display: flex
;
}
 }
