/* Importing Font */
@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;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Color Variables */
/* Functions to ease up building the UI later on */
/* Styling starts here */
body {
  background-color: #F6F6F6;
  font-family: Poppins;
  color: #000000;
}

.hero {
  background: url("../images/herobg.jpg");
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.hero button {
  background: #000000;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #ffffff;
}
.hero button:hover {
  background-color: #21CAF9;
  color: #000000;
  transition: 0.6s ease-in-out;
}

.logo {
  width: 100%;
}

.heromenu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.heromenu nav {
  display: flex;
}
.heromenu nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.heromenu nav li {
  margin: 0 20px;
}
.heromenu nav a {
  text-decoration: none;
  outline: none;
  color: #000000;
  font-weight: 400;
  transition: color 0.6s ease-in-out;
}
.heromenu nav a:hover {
  color: #21CAF9;
}

.hamburger {
  width: 70px;
  height: auto;
  display: flex;
  margin-left: auto;
  margin-top: 20px;
}

.hamburger:hover {
  scale: 1.063;
  transition: 0.43s ease-in-out;
}

.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  z-index: 6;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
}
.mobile-menu li a {
  font-size: 1.36rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.mobile-menu li a:hover {
  color: #21CAF9;
  transition: 0.43s ease-in-out;
}

.close-menu {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #21CAF9;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.heromid {
  text-align: center;
  margin-top: 9%;
}
.heromid p {
  margin-top: 20px;
}

h1 {
  font-size: 2.23rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #000000;
}
h1 span {
  font-weight: 700;
}

p {
  font-size: 1.23rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #000000;
}

.heroaction {
  margin-top: 40px;
  margin-bottom: 40px;
}
.heroaction button {
  background: #000000;
  width: 190px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.heroaction .buttonsec {
  background: #21CAF9;
  width: 190px;
  color: #000000;
}
.heroaction .buttonsec:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.6s ease-in-out;
}

.dashboards {
  width: 100%;
  margin-bottom: 0px;
}

.dashboards:hover {
  scale: 1.063;
  transition: 0.43s ease-in-out;
}

.about {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about h1 {
  margin-bottom: 20px;
}
.about img {
  width: 30vw;
  margin-top: 20px;
}
.about img:hover {
  scale: 1.063;
  transition: 0.6s ease-in-out;
}

.registeract {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 40px;
  padding-left: 40px;
  margin-top: 0px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 63px 0px rgba(0, 0, 0, 0.16);
}
.registeract h1 {
  color: #ffffff;
  margin-top: 20px;
}
.registeract p {
  color: #ffffff;
  margin-top: 20px;
  font-weight: 400;
}
.registeract button {
  background: #21CAF9;
  width: 230px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #000000;
}
.registeract button:hover {
  scale: 1.063;
  transition: 0.6s ease-in-out;
}
.registeract img {
  width: 70%;
}
.registeract .regarrow {
  width: 160px;
  margin-right: 20px;
}

.fcont {
  display: flex;
  justify-content: space-between;
}

.feature {
  background-color: #ffffff;
  box-shadow: 4px 4px 63px 0px rgba(0, 0, 0, 0.16);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 0px;
  margin-bottom: 20px;
  border-top: 6px solid #000000;
  border-radius: 10px;
  flex: 1;
}
.feature img {
  width: 103px;
  height: auto;
}
.feature h2 {
  margin-top: 20px;
}
.feature p {
  font-size: 1rem;
  margin-top: 10px;
}
.feature .minbutton {
  width: 45px;
  height: auto;
  cursor: pointer;
}
.feature .minbutton:hover {
  scale: 1.13;
  transition: 0.43s ease-in-out;
}

.feature:hover {
  transform: translateY(-30px);
  transition: 0.6s ease-in-out;
}

.halfsec {
  margin-top: 40px;
  margin-bottom: 20px;
}
.halfsec img {
  width: 100%;
  height: auto;
}
.halfsec img:hover {
  scale: 1.063;
  transition: 0.6s ease-in-out;
}
.halfsec h1 {
  margin-top: 50px;
}
.halfsec p {
  margin-top: 20px;
  font-size: 1rem;
}
.halfsec .halfseccontent {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  padding-left: 40px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 10px;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 40px;
  margin-bottom: 0px;
  text-align: center;
}
.footer h4 {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
}
.footer .buttonsec {
  border: 2px solid #21CAF9;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #21CAF9;
  background-color: transparent;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 160px;
  margin-right: 20px;
}
.footer .buttonsec:hover {
  background-color: #21CAF9;
  color: #000000;
  transition: 0.6s ease-in-out;
}
.footer button {
  background-color: #21CAF9;
  color: #000000;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #000000;
  border-radius: 5px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 160px;
  border: none;
}
.footer button:hover {
  scale: 1.063;
  transition: 0.6s ease-in-out;
}

.gate {
  background-color: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 63px 0px rgba(0, 0, 0, 0.16);
}

.gateinner {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.gateinner img {
  width: 160px;
}
.gateinner label {
  margin-top: 20px;
}
.gateinner input[type=submit] {
  margin-top: 40px;
}
.gateinner h1 {
  margin-top: 40px;
}

.gatebg {
  width: 100%;
  height: auto;
}

input {
  background-color: #F6F6F6;
  border: 1px solid #D9D9D9;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #000000;
  outline: none;
  border-radius: 5px;
}

input:focus {
  border: 3px solid #21CAF9;
}

input[type=submit] {
  background-color: #21CAF9;
  border: none;
  width: 190px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #000000;
}

input[type=submit]:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.6s ease-in-out;
}

label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #000000;
}

.gatefooter {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
}
.gatefooter a {
  color: #21CAF9;
  text-decoration: none;
}
.gatefooter a:hover {
  color: #D9D9D9;
  transition: 0.6s ease-in-out;
}

.backbtn {
  width: 76px;
  height: auto;
}

.backbtn:hover {
  scale: 1.063;
  transition: 0.6s ease-in-out;
}

.onboarding {
  background-color: #ffffff;
  box-shadow: 4px 4px 63px 0px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 40px;
  margin-bottom: 0px;
}
.onboarding button {
  background: #21CAF9;
  width: 190px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #000000;
  margin-right: 30px;
}
.onboarding button:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.6s ease-in-out;
}

.onboardprogress {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.onboardprogress .active {
  background-color: #21CAF9;
}

.prbar {
  width: 103px;
  height: 10px;
  border-radius: 40px;
  background-color: #D9D9D9;
  margin-left: 20px;
  margin-top: 30px;
}

.onboardhead {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.onboardhead h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #D9D9D9;
}
.onboardhead h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 700;
  color: #D9D9D9;
  margin-top: 15px;
}

.onboardbody {
  background-color: #F6F6F6;
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: auto;
}
.onboardbody p {
  font-size: 1.13rem;
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 400;
  color: #000000;
}
.onboardbody img {
  width: 260px;
}

@media (max-width: 1024px) {
  .about img {
    width: 60vw;
  }
}
@media (max-width: 768px) {
  .about img {
    width: 70vw;
  }
  .onboardbody {
    display: block;
    text-align: center;
  }
  .onboardbody p {
    margin-bottom: 30px;
  }
  .onboardbody img {
    width: 70%;
  }
  .onboardhead {
    display: block;
  }
  .onboardhead h4 {
    margin-top: 20px;
  }
}/*# sourceMappingURL=styles.css.map */