* {
 margin: 0px;
 padding: 0px;
 box-sizing: border-box;
 font-size: 16px;
 color: #212429;
 font-family: system-ui, -apple-system, BlinkMacSystemFont;
 letter-spacing: 0.5px;
}

body {
 min-height: 100dvh;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

@keyframes bounse {
 0% {
  transform: scale(90%);
 }

 50% {
  transform: scale(100%);
 }

 100% {
  transform: scale(90%);
 }
}

@keyframes blink {
 0% {
  opacity: 100%;
 }

 50% {
  opacity: 0%;
 }

 100% {
  opacity: 100%;
 }
}

.blink {
 animation: 1s blink infinite ease-in;
}

.bounse {
 animation: 1.4s bounse infinite ease-in;
}

img {
 max-width: 100%;
}

a {
 text-decoration: none;
 color: inherit;
 font-size: inherit;
}

button {
 font-weight: 500;
 cursor: pointer;
 padding: 6px 20px;
 border-radius: 6px;
}

h1 {
 font-size: 2rem;
 font-weight: 600;
 text-transform: capitalize;
}

h2 {
 font-size: 1.6rem;
 font-weight: 500;
 color: inherit;
}

h3 {
 font-size: 1rem;
 font-weight: 500;
}

h4 {
 font-size: 1.1rem;
 font-weight: 400;
}

input[type='text'],
input[type='file'],
input[type='date'],
input[type='number'],
input[type='email'],
textarea {
 min-height: 40px;
 padding: 10px;
 border-radius: 4px;
 outline: 1px solid #c3c3c3;
 border: none;
 width: 100%;
 min-width: 100px;
 margin-bottom: 10px;
}

input[type='radio'],
input[type='checkbox'] {
 margin-right: 10px;
}

input:focus {
 outline: 2px solid #105674;
}

label {
 font-size: 1rem;
 padding-right: 20px;
}

main {
 padding: 50px 10vw;
}

table {
 border-collapse: collapse;
}

thead {
 background-color: #105674;
}

td, th {
 padding: 5px;
 border: 1px solid #6f6f6f;
}

thead > tr > th {
 color: #ffffff;
 font-weight: 400;
}

tbody > tr > td:last-child {
 color: #105674;
 font-weight: 600;
 font-style: italic;
 font-size: 0.8rem;
 background-color: #e4ecff;
}

marquee {
 color: #ffffff;
 font-size: 1rem;
 font-weight: 500;
 padding: 6px 0px;
}

ol,
ul {
 padding-left: 20px;
}

footer {
 background-color: #000000;
 text-align: center;
 padding: 40px;
}

.flex {
 display: flex;
}

.flex_col {
 display: flex;
 flex-direction: column;
}

.grow {
 flex-grow: 1;
}

.g1 {
 gap: 10px;
}
.g2 {
 gap: 20px;
}
.g3 {
 gap: 30px;
}
.g4 {
 gap: 40px;
}
.g5 {
 gap: 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: 50px;
}

.txt_ctr {
 text-align: center;
}
.just_ctr {
 justify-content: center;
 justify-items: center;
}

.wrap {
 flex-wrap: wrap;
}

.w5 {
 width: 50%;
}
.w10 {
 width: 100%;
}

.error {
 color: red;
 font-size: 0.8rem;
}

.btn1 {
 color: #ffffff;
 font-size: 1rem;
 background-color: #daab63;
 border: none;
}

.apply-btn {
 background-color: #105674;
 color: white;
 font-size: 1.1rem;
 min-width: 200px;
 border: 1px solid #000000;
 box-shadow: 2px 2px 2px #000000;
}

.sel_area {
 background-color: #ffd100;
 width: fit-content;
 padding: 8px 0px 8px 8px;
 border-radius: 6px;
 border: 1px solid #6f6f6f;
}

.sel_area > label {
 font-weight: 500;
}

.con_div {
 background-color: #105674;
 padding: max(20px, 2vw);
 flex-grow: 1;
 text-align: center;
 border-radius: 6px;
 color: #ffffff;
 flex-basis: 200px;
}

.con_div > a {
 color: #daab63;
 text-decoration: none;
 font-weight: 500;
}

.con_div > i {
 color: #ffffff;
 font-size: 1.6rem;
}

form {
 display: flex;
 flex-direction: column;
}

#regForm {
 gap: 10px;
}

.form_left {
 padding: 10px 0px;
 min-width: 35%;
}

.form_right {
 width: 65%;
 flex-shrink: 0;
}

.flex_input {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
}

.inline_input {
 width: 49%;
}

#marquee_div {
 background-color: #105674;
}

#banner_div > img {
    width: 100%;
}

#banner_div > span > a {
 padding: 10px 20px;
 font-size: 1.1rem;
 font-weight: 500;
 text-decoration: none;
}

#manu_div {
 background-color: #105674;
 text-align: end;
}

#header_nav {
 padding: 5px 0px;
 min-height: 40px;
 align-content: center;
}

#nav_icon {
 display: none;
}

#manu_div > nav > a {
 font-size: 1.1rem;
 font-weight: 600;
 color: #ffffff;
 text-decoration: none;
 margin: 2px 0px;
 padding: 8px 20px;
}

#Copyright {
 color: #ffffff;
 font-size: 1.1rem;
 font-weight: 600;
}

#footerMenu a {
 color: #daab63;
 font-size: 0.8rem;
 text-decoration: none;
}

#footerMenu a:not(:last-child)::after {
 content: '|';
 color: #ffffff;
 padding: 0px 12px;
}

#project_sec {
 align-items: end;
 box-shadow: 0px 0px 10px -4px #00000050;
 border-radius: 6px;
 justify-content: space-between;
}

#head4 {
 color: #ffffff;
 background-color: #105674;
 padding: 6px 20px;
 border-radius: 6px 6px 0px 0px;
 justify-self: start;
}

#project_details {
 min-width: fit-content;
}

#project_doc {
 width: 100%;
 max-width: 500px;
}

#project_doc a:not(:last-child) {
 padding: 10px 10px;
 font-size: 16px;
 text-decoration: none;
 border: 1px solid #d3d3d3;
}

#project_doc > a > i {
 margin-right: 10px;
}

p#thnks_text {
 font-size: 2rem;
 font-weight: 700;
}

#count_down {
 color: green;
 font-weight: 500;
 font-size: 1.1rem;
}

#tc_div > ol > li {
 margin-bottom: 20px;
}

#kyc_form {
 border: 1px solid;
 border-color: #c3c3c3;
 border-radius: 6px;
 padding: 20px;
 max-width: 700px;
 width: 100%;
}

#kyc_form input {
 margin-top: 5px;
 margin-bottom: 0px;
}

#kyc_form div {
 width: 100%;
 margin-bottom: 4px;
}

#enquiryForm textarea {
 height: 40px;
}

#popUp_div {
 display: none;
 height: 100dvh;
 width: 100vw;
 position: fixed;
 background-color: #00000099;
 align-items: center;
 justify-content: center;
 z-index: 10;
 padding: 20px;
 transition: all 0.3s ease-in;
}

#popUp_content_div {
 padding: 20px;
 border-radius: 6px;
 background-color: #ffffff;
 width: min(500px, 100%);
}

#close_btn {
 display: flex;
 color: #000000;
 float: right;
 font-size: 1.4rem;
 line-height: 1.8rem;
 cursor: pointer;
}

/*Media Css start*/

@media screen and (min-width: 1200px) {
 #hero_sec,
 #marquee_div,
 #banner_div,
 #manu_div {
  padding-right: 10vw;
  padding-left: 10vw;
 }
}

@media screen and (max-width: 1200px) {
 main {
  padding: 50px 5vw;
 }
}

@media screen and (max-width: 650px) {
 main {
  padding: 50px 20px;
 }

 .flex {
  flex-wrap: wrap;
 }

 #header_nav {
  padding: 0px;
  display: none;
  flex-direction: column;
  text-align: justify;
 }

 #nav_icon {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 4px 10px;
 }

 #header_nav.active {
  display: flex;
 }

 .form_right {
  width: 100%;
 }

 #banner_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
 }

 #header_nav > a > button {
  width: 100%;
 }

 #kyc_form > div {
  flex-direction: column;
 }

 #popUp_form > div {
  gap: 0px;
 }
}
