* {
   box-sizing: border-box;
   margin: 0px;
   font-size: 16px;
   scroll-behavior: smooth;
   transition: all 0.3s ease-in-out;
}

body {
   color: #d9d9d9;
   min-height: 100dvh;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   background-color: #000000;
   font-size: 16px;
   font-family: system-ui, -apple-system, BlinkMacSystemFont;
   letter-spacing: 0.8px;
}

body::-webkit-scrollbar {
   display: none;
}

/* ::-webkit-scrollbar {
   width: 10px;
   height: 10px;
}

::-webkit-scrollbar-track {
   background: #343434;
   border-radius: 10px;
}

::-webkit-scrollbar-thumb {
   background: #d9d9d9;
   border-radius: 6px;
   border: 2px solid #343434;
}

::-webkit-scrollbar-thumb:hover {
   background: #ffffff;
} */

@keyframes bounse {
   0% {
      transform: scale(90%);
   }

   50% {
      transform: scale(100%);
   }

   100% {
      transform: scale(90%);
   }
}

@keyframes blink {
   0% {
      opacity: 100%;
   }

   50% {
      opacity: 5%;
   }

   100% {
      opacity: 100%;
   }
}

@keyframes slide-left {
   0% {
      transform: translateX(100%);
   }

   100% {
      transform: translateX(0%);
   }
}

@keyframes grow {
   0% {
      transform: scale(0);
   }

   100% {
      transform: scale(1);
   }
}

.blink {
   animation: 1s blink infinite ease-in;
}

.bounse {
   animation: 1.4s bounse infinite ease-in;
}

img {
   max-width: 100%;
   max-height: 100%;
}

a {
   text-decoration: none;
   color: inherit;
   font-size: inherit;
}

button,
a.btn {
   text-align: center;
   font-weight: 500;
   cursor: pointer;
   padding: 8px 20px;
   border-radius: 8px;
   color: #000000;
   background-color: #fdff83;
   text-transform: uppercase;
}

button:hover,
a.btn:hover {
   color: #000000;
   background-color: #fdff83;
   transform: scale(1.05);
   font-weight: 700;
}

b {
   font-size: inherit;
}

section button,
section a.btn {
   min-width: 200px;
}

.btn1 {
   font-size: 0.9rem;
   background: transparent;
   color: #fdff83;
   border: 1px solid #fdff83;
}

.c1 {
   color: #fdff83;
}

.c2 {
   color: #343434;
}

.bac1 {
   background-color: #ffffffd6;
}

.bac2 {
   background-color: #343434eb;
}

h1 {
   color: #ffffff;
   font-size: 2rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   margin-bottom: 10px;
   text-shadow: 1px 1px 1px #000000;
}

h2 {
   font-size: 2rem;
   font-weight: 500;
   letter-spacing: 0.1em;
   color: inherit;
   text-transform: uppercase;
   margin-bottom: 20px;
}

h3 {
   color: #ffffff;
   font-size: 1.6rem;
   font-weight: 400;
   margin-bottom: 15px;
   text-transform: uppercase;
   letter-spacing: 0.2em;
}

h4 {
   color: #ffffff;
   font-size: 1.1rem;
   font-weight: 400;
}

h5 {
   font-size: 1rem;
   font-weight: 500;
   color: #838383;
   letter-spacing: 0.2em;
   text-transform: uppercase;
}

p {
   color: inherit;
}

i {
   font-style: normal;
   margin-right: 10px;
   font-size: 1.1em;
}

input[type='text'],
input[type='file'],
input[type='date'],
input[type='number'],
input[type='email'],
textarea,
select {
   padding: 10px 10px;
   border-radius: 4px;
   outline: 1px solid #a1a1a1;
   border: none;
   flex: 1;
   width: 100%;
   min-width: 100px;
   margin-top: 10px;
   color: #343434;
   background: transparent;
}

input[type='radio'],
input[type='checkbox'] {
   margin-right: 10px;
}

li {
   margin-bottom: 10px;
}

input:not([type='radio'], [type='checkbox']):focus {
   outline: 2px solid #343434;
   background-color: #ffffff;
}

div:has(input[type='radio']),
div:has(> input[type='checkbox']) {
   display: flex;
   flex-wrap: wrap;
   margin-top: 5px;
   align-self: flex-start;
}

#contact-form div :has(label) {
   display: flex;
   flex-direction: column;
}

label {
   color: #343434;
   font-size: 1rem;
   padding-right: 20px;
   text-align: justify;
}

#contact-form div > label:first-child {
   font-size: 0.9rem;
   margin-left: 4%;
   padding: 0px 5px;
   color: #343434;
   background-color: #ffffff;
   position: relative;
   align-self: flex-start;
   transform: translateY(80%);
}

form button {
   color: #d9d9d9;
   background: #343434;
   align-self: center;
   margin-top: 25px;
   font-size: 0.9rem;
}

form h5 {
   font-size: 1.2rem;
}

main {
   flex: 1;
}

section {
   padding: 8vw;
   min-height: 100dvh;
   box-shadow: 0px 1px 4px #343434;
   align-content: center;
}

div:has(table) {
   overflow: auto;
   max-width: 100%;
}

table {
   border-collapse: collapse;
   background-color: #ffffff;
   color: #343434;
}

thead {
   background-color: #000000;
}

th {
   font-weight: 500;
   font-size: 0.9rem;
   color: #ffffff;
}

td,
th {
   font-weight: 400;
   padding: 6px 10px;
   border: 1px solid #6f6f6f;
}

thead > tr > td {
   color: #ffffff;
}

tr > td:nth-child(n + 4):not(:nth-last-child(-n + 2))::before {
   content: 'AED ';
}

tr > td:nth-last-child(2)::before {
   content: 'INR ';
}

tbody > tr > td:last-child {
   color: #b0b300;
   font-style: italic;
   font-size: 0.8rem;
   font-weight: 500;
}

marquee {
   color: #ffffff;
   font-size: 0.9rem;
   font-weight: 400;
   padding: 2px 0px 6px 0px;
   background-color: #343434;
   margin-bottom: -4px;
}

ol,
ul {
   padding-left: 20px;
}

details {
   padding: 10px 20px;
   background-color: #343434;
   margin-bottom: 2px;
   border-radius: 4px;
}

details:open summary {
   color: #fdff83;
   margin-bottom: 20px;
   font-size: 1.01rem;
}

.hide {
   display: none !important;
}

.active {
   display: flex;
}

.error,
#name-error {
   color: red;
   font-weight: 500;
   font-size: 0.8em !important;
   margin-bottom: 5px;
}

p#thnks-text {
   font-size: 2rem;
   font-weight: 700;
}

#count-down {
   color: green;
   font-weight: 500;
   font-size: 1.1rem;
}

#table-sec p {
   font-size: 0.92rem;
}

#reg-sec {
   justify-items: center;
}

#regForm {
   width: 100%;
   display: flex;
   flex-direction: column;
}

#regForm > div {
   width: 100%;
   display: grid;
   grid-template-columns: 1.1fr 2fr;
   gap: 12px 10px;
}

#regForm label {
   background-color: transparent;
}

#regForm > div > div:nth-child(odd) {
   padding-top: 12px;
}

#regForm > div > div:nth-child(odd) label {
   font-size: 0.9rem;
}

#regForm > div > div > div:has(div) {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0px 10px;
}

#regForm p {
   color: #202020;
   margin-bottom: 10px;
}

#regForm button {
   color: #d9d9d9;
   background: #202020;
   align-self: center;
   margin-top: 20px;
   font-size: 1rem;
   border-radius: 4px;
   border: 1px solid #d9d9d9;
   box-shadow: 2px 2px 5px #303030;
   justify-self: flex-start;
}

.select-size-div > div {
   margin-right: 10px;
   margin-bottom: 5px;
   background-color: #ffffff;
   padding: 6px 10px;
   border-radius: 4px;
   border: 1px solid #000000;
}

.select-size-div label {
   font-weight: 500;
   font-size: 0.9rem;
}

/*Kyc FOrm*/
#kyc-form {
   max-width: 700px;
   justify-self: center;
   padding: 2vw;
   background-color: #ffffff;
   border-radius: 6px;
}

#kyc-form > div:has(div) {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px 20px;
}

#kyc-form label {
   line-height: 2em;
   font-size: 0.9rem;
}

#pop-contact-form {
   width: min(400px, 100%);
   display: flex;
   flex-direction: column;
}

#pop-contact-form input,
#pop-contact-form textarea,
#pop-contact-form select {
   color: #000000;
   background-color: #cbcbcb82;
   outline: 1px solid #000000;
   margin-top: 15px;
   padding: 12px;
}

#pop-contact-form input:focus,
#pop-contact-form textarea:focus,
#pop-contact-form select:focus {
   background-color: #ffffff;
}

#pop-contact-form input::placeholder,
#pop-contact-form textarea::placeholder {
   color: #343434;
}

#pop-contact-form button {
   color: #d9d9d9;
   background: #202020;
   border: 1px solid #d9d9d9;
   box-shadow: 2px 2px 5px #303030;
}

#pop-close-btn {
   right: -10px;
   top: -10px;
   position: absolute;
   color: #ffffff;
   border: 1px solid #ffffff;
   background-color: #343434;
   border-radius: 50%;
   width: 30px;
   height: 30px;
   line-height: 1.7em;
   text-align: center;
   font-weight: 700;
   cursor: pointer;
}

#pop-close-btn:hover {
   color: #000000;
   background-color: #ffffff;
}

/* Class Css Here*/

.flex {
   display: flex;
}

.flex-col {
   display: flex;
   flex-direction: column;
}

.grow {
   flex-grow: 1;
}

.g1 {
   gap: 10px 10px;
}
.g2 {
   gap: 10px 20px;
}
.g3 {
   gap: 10px 30px;
}
.g4 {
   gap: 10px 40px;
}
.g5 {
   gap: 10px 50px;
}

.mb1 {
   margin-bottom: 10px;
}
.mb2 {
   margin-bottom: 20px;
}
.mb3 {
   margin-bottom: 30px;
}
.mb5 {
   margin-bottom: 50px;
}

.pad1 {
   padding: 10px;
}
.pad2 {
   padding: 20px;
}
.pad5 {
   padding: min(50px, 6vw);
}

.txt-ctr {
   text-align: center;
}
.just-ctr {
   justify-content: center;
   justify-items: center;
}

.self-ctr {
   align-self: center;
}

.ali-ctr {
   align-items: center;
}

.wrap {
   flex-wrap: wrap;
}

.w5 {
   width: 50%;
}
.w10 {
   width: 100%;
}

/*flex css*/
.spc-btwn {
   display: flex;
   justify-content: space-between;
}

/*Phone Css For CLass*/
@media screen and (max-width: 1000px) {
   section {
      padding: 8vw 5vw;
   }

   .flex {
      flex-wrap: wrap;
   }
}

@media screen and (max-width: 650px) {
   #regForm > div {
      grid-template-columns: 1fr;
      row-gap: 0px;
   }
}
