@keyframes changebgColor {
  0% {
    background: linear-gradient();
  }
}
@keyframes scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes increaseWidth {
  0% {
    width: 0%;
    background: linear-gradient(90deg, #5AA36A, white);
  }
  100% {
    width: 100%;
    background: linear-gradient(90deg, white, #5AA36A);
  }
}
@keyframes dropdown {
  0% {
    margin-top: -60vh;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes gradient {
  0% {
    background: linear-gradient(70deg, #0B308D, #078BE0, #0B308D);
  }
  50% {
    background: linear-gradient(70deg, #078BE0, #0B308D, #078BE0);
  }
  100% {
    background: linear-gradient(70deg, #0B308D, #078BE0, #0B308D);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes popup {
  0% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1.01);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes marquee-loader {
  0% {
    transform: translateX(-1vw);
  }
  100% {
    transform: translateX(75vw);
  }
}
@font-face {
  font-family: "Avenir next";
  src: url(../assets/font/avenir-next/AvenirNextLTPro-Regular.otf);
}
@font-face {
  font-family: "Avenir bold";
  src: url(../assets/font/avenir-next/AvenirNextLTPro-Bold.otf);
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/font/Bebas_Neue,Urbanist/Bebas_Neue/BebasNeue-Regular.ttf");
}
@font-face {
  font-family: "Biryani";
  src: url("../assets/font/Biryani/Biryani/Biryani-Regular.ttf");
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Avenir next";
}

#root, #root-0 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  font-family: "Avenir next";
}

a {
  text-decoration: none;
}

.clickable {
  cursor: pointer;
  pointer-events: all;
}

.hide {
  display: none;
}

.hidden {
  display: none;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: white;
  height: 10vw;
}
header .wrapper {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .logo {
  width: auto;
}
header .wrapper .logo img {
  width: 8vw;
  height: auto;
}
header .wrapper nav {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper nav .nav-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: auto;
}
header .wrapper nav .nav-1 a {
  font-family: "Avenir next";
  font-size: 1vw;
  font-weight: 600;
  margin: 0 2.3vw;
  color: black;
  display: flex;
  align-items: center;
}
header .wrapper nav .nav-1 a svg {
  margin-left: 0.5vw;
  width: 0.8vw;
  height: auto;
}
header .wrapper nav .nav-search {
  margin-left: 3vw;
}
header .wrapper nav .nav-search svg {
  width: 1.2vw;
  height: auto;
}
header .wrapper nav button {
  width: 10vw;
  height: 3vw;
  padding: 10px;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 1vw;
  font-weight: 300;
  margin-left: 3vw;
  outline: none;
  border: none;
  border-radius: 5px;
  color: white;
}
header .wrapper nav button:hover {
  animation: gradient 0.8s;
}
header .wrapper nav button:active {
  animation: scale 0.8s;
}

.header {
  padding: 2vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header img {
  width: 8vw;
  height: auto;
}

.wrap {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap .text {
  width: 100%;
  height: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F47226;
  font: 400 1.2vw "Avenir next";
}
.wrap .wrap-0 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
  padding: 0.6vw 0;
}
.wrap .wrap-0 .w0 {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 0.3vw 0;
}
.wrap .wrap-0 .w0 a {
  font: 600 1vw "Avenir next";
  color: black;
}
.wrap .wrap-0 .w0 a svg {
  width: 1vw;
  margin-right: 0.1vw;
}
.wrap .wrap-0 .wa {
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 0.5vw;
  padding: 2vw 10vw;
}
.wrap .wrap-0 .wa a, .wrap .wrap-0 .wa button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20vw;
  width: 20vw;
  height: 4vw;
  margin: 1vw 0;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
  color: white;
}
.wrap .wrap-0 .w00 {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 0.5vw;
  padding: 2vw 0;
}
.wrap .wrap-0 .w00 a, .wrap .wrap-0 .w00 button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: 4vw;
  margin: 1vw 0;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
  color: white;
}
.wrap .wrap-0 .w00 a:hover, .wrap .wrap-0 .w00 button:hover {
  animation: gradient 0.8s;
}
.wrap .wrap-0 .w00 a:active, .wrap .wrap-0 .w00 button:active {
  animation: scale 0.8s;
}
.wrap .wrap-0 .w00 .input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16vw;
  height: 4vw;
  margin: 1vw 0;
  background-color: #EAEAEA;
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap .wrap-0 .w00 .w000 .group, .wrap .wrap-0 .w00 .w000 .group-s {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrap .wrap-0 .w00 .w000 .group .box, .wrap .wrap-0 .w00 .w000 .group-s .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16vw;
  height: 4vw;
  margin: 1vw 0;
  background-color: #EAEAEA;
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 .group .box select, .wrap .wrap-0 .w00 .w000 .group-s .box select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap .wrap-0 .w00 .w000 .group .box input, .wrap .wrap-0 .w00 .w000 .group-s .box input {
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap .wrap-0 .w00 .w000 .group .box-g, .wrap .wrap-0 .w00 .w000 .group-s .box-g {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: auto;
  margin: 1vw 0;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .oppBox, .wrap .wrap-0 .w00 .w000 .group-s .box-g .oppBox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 16vw;
  height: 4vw;
  margin: 1vw 0;
  background-color: rgba(7, 139, 224, 0.5333333333);
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .oppBox span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .oppBox span {
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s {
  width: 6vw;
  height: 1.3vw;
  padding: 1vw;
  margin: 1vw;
  background-color: #EAEAEA;
  border-radius: 0.7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s span {
  font-family: "Biryani";
  font-size: 0.8vw;
  font-weight: 300;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg label, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg label {
  margin: 0 0.5vw;
  display: flex;
  align-items: center;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg label svg, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg label svg {
  width: 1vw;
  height: auto;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg span {
  font-family: "Biryani";
  font-size: 0.8vw;
  font-weight: 300;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .box-h, .wrap .wrap-0 .w00 .w000 .group-s .box-g .box-h {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16vw;
  height: 4vw;
  margin: 1vw 0;
  background-color: rgba(7, 139, 224, 0.5333333333);
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 .group .box-g .box-h div, .wrap .wrap-0 .w00 .w000 .group-s .box-g .box-h div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap .wrap-0 .w00 .w000 .group .box-g select, .wrap .wrap-0 .w00 .w000 .group-s .box-g select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap .wrap-0 .w00 .w000 .group .box-g input, .wrap .wrap-0 .w00 .w000 .group-s .box-g input {
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap .wrap-0 .w00 .w000 .group textarea, .wrap .wrap-0 .w00 .w000 .group-s textarea {
  width: 16vw;
  height: 10vw;
  background-color: #EAEAEA;
  resize: none;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  padding-top: 2vw;
  border: none;
  outline: none;
}
.wrap .wrap-0 .w00 .w000 .group .wrap--0 span, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 span {
  margin-top: -58px;
  margin-left: 32px;
}
.wrap .wrap-0 .w00 .w000 .group .wrap--0 span svg, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 span svg {
  margin-left: 32px;
  width: 2.5vw;
  height: auto;
}
.wrap .wrap-0 .w00 .w000 .group .box-s, .wrap .wrap-0 .w00 .w000 .group-s .box-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 16vw;
  height: 4vw;
  margin: 1vw 0;
  background-color: rgba(7, 139, 224, 0.5333333333);
  padding: 0 2vw;
  color: black;
  cursor: pointer;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.wrap .wrap-0 .w00 .w000 .group .box-s select, .wrap .wrap-0 .w00 .w000 .group-s .box-s select {
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap .wrap-0 .w00 .w000 .group .box-s input, .wrap .wrap-0 .w00 .w000 .group-s .box-s input {
  width: 100%;
  height: 90%;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  border: none;
  outline: none;
  background-color: transparent;
  color: black;
}
.wrap .wrap-0 .w00 .w000 .group .box-s input::-moz-placeholder, .wrap .wrap-0 .w00 .w000 .group-s .box-s input::-moz-placeholder {
  color: black;
}
.wrap .wrap-0 .w00 .w000 .group .box-s input::placeholder, .wrap .wrap-0 .w00 .w000 .group-s .box-s input::placeholder {
  color: black;
}
.wrap .wrap-0 .w00 .w000 .group .box-s div, .wrap .wrap-0 .w00 .w000 .group-s .box-s div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wrap .wrap-0 .w00 .w000 .group-s {
  flex-direction: column;
  justify-content: center;
}

.login-section {
  width: 100%;
  padding: 3vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-section .wrapper:nth-child(1) {
  background-image: url("../assets/img/login/1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.login-section .wrapper {
  width: 35vw;
  height: 35vw;
  background-color: #EAEAEA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-section .wrapper .wrap {
  width: 90%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-section .wrapper .wrap .title {
  width: 100%;
  text-align: left;
  font: 600 1vw "Avenir bold";
}
.login-section .wrapper .wrap .box {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4vw;
}
.login-section .wrapper .wrap .box .input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18vw;
  height: 4.3vw;
  margin: 1vw 0;
  background-color: white;
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.login-section .wrapper .wrap .box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10vw;
  height: 3vw;
  margin-top: 4vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
  color: white;
}
.login-section .wrapper .wrap .box button:hover {
  animation: gradient 0.8s;
}
.login-section .wrapper .wrap .box button:active {
  animation: scale 0.8s;
}

.status {
  min-width: 8vw;
  width: auto;
  height: 1.1vw;
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 1.7vw 2.2vw;
  color: white;
  margin-bottom: 1.5vw;
  border-top-left-radius: 1vw;
  border-bottom-left-radius: 1vw;
  animation: alternate-reverse;
}
.status span {
  font: bold 1.2vw "Avenir next";
}

@media screen and (max-width: 840px) {
  .hide {
    display: flex;
  }
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    height: 20vw;
  }
  header .wrapper {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }
  header .wrapper .logo {
    width: auto;
    display: flex;
    align-items: center;
  }
  header .wrapper .logo label {
    margin-right: 4vw;
  }
  header .wrapper .logo label svg {
    width: 8vw;
    height: auto;
  }
  header .wrapper .logo img {
    width: 15vw;
    height: auto;
  }
  header .wrapper nav {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .wrapper nav .nav-1 {
    position: absolute;
    margin-top: 101vw;
    background-color: rgba(255, 255, 255, 0.8);
    left: 0;
    z-index: 8888;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  header .wrapper nav .nav-1 a {
    font-family: "Avenir next";
    font-size: 4.5vw;
    font-weight: 600;
    padding: 2vw 0;
    margin: 0 auto;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 10vw;
  }
  header .wrapper nav .nav-1 a:hover {
    background-color: white;
  }
  header .wrapper nav .nav-1 a svg {
    margin-left: 0.5vw;
    width: 0.8vw;
    height: auto;
  }
  header .wrapper nav .nav-search {
    margin-left: 1vw;
  }
  header .wrapper nav .nav-search svg {
    width: 4vw;
    height: auto;
  }
  header .wrapper nav button {
    width: 25vw;
    height: 8.5vw;
    padding: 10px;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 3vw;
    font-weight: 300;
    margin-left: 3vw;
    outline: none;
    border: none;
    border-radius: 5px;
    color: white;
  }
  header .wrapper nav button:hover {
    animation: gradient 0.8s;
  }
  header .wrapper nav button:active {
    animation: scale 0.8s;
  }
  .header {
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
  }
  .header img {
    width: 12vw;
    height: auto;
  }
  .wrap {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .wrap .text {
    width: 100%;
    height: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F47226;
    font: 400 3vw "Avenir next";
  }
  .wrap .wrap-0 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #D9D9D9;
    padding: 5vw 0;
  }
  .wrap .wrap-0 .w0 {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 1vw 0;
  }
  .wrap .wrap-0 .w0 a {
    font: 600 3vw "Avenir next";
    color: black;
  }
  .wrap .wrap-0 .w0 a svg {
    width: 2vw;
    margin-right: 0.5vw;
  }
  .wrap .wrap-0 .wa {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 0.5vw;
    padding: 2vw 0;
  }
  .wrap .wrap-0 .wa a, .wrap .wrap-0 .wa button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 10vw;
    margin: 1vw 0;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 2vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
    color: white;
  }
  .wrap .wrap-0 .w00 {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 0.5vw;
    padding: 2vw 0;
  }
  .wrap .wrap-0 .w00 a, .wrap .wrap-0 .w00 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 10vw;
    margin: 1vw 0;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 2vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
    color: white;
  }
  .wrap .wrap-0 .w00 a:hover, .wrap .wrap-0 .w00 button:hover {
    animation: gradient 0.8s;
  }
  .wrap .wrap-0 .w00 a:active, .wrap .wrap-0 .w00 button:active {
    animation: scale 0.8s;
  }
  .wrap .wrap-0 .w00 .input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 8vw;
    margin: 2vw 0;
    background-color: #EAEAEA;
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wrap .wrap-0 .w00 .w000 .group, .wrap .wrap-0 .w00 .w000 .group-s {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .wrap .wrap-0 .w00 .w000 .group .box, .wrap .wrap-0 .w00 .w000 .group-s .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 8vw;
    margin: 2vw 0;
    background-color: #EAEAEA;
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 .group .box select, .wrap .wrap-0 .w00 .w000 .group-s .box select {
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .wrap .wrap-0 .w00 .w000 .group .box input, .wrap .wrap-0 .w00 .w000 .group-s .box input {
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g, .wrap .wrap-0 .w00 .w000 .group-s .box-g {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: auto;
    margin: 1vw 0;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .oppBox, .wrap .wrap-0 .w00 .w000 .group-s .box-g .oppBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 8vw;
    margin: 1vw 0;
    background-color: rgba(7, 139, 224, 0.5333333333);
    padding: 0 2vw;
    color: black;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .oppBox span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .oppBox span {
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 95%;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s {
    width: 38%;
    height: 3vw;
    padding: 1.4vw;
    margin: 1vw;
    background-color: #EAEAEA;
    border-radius: 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s span {
    font-family: "Biryani";
    font-size: 1.8vw;
    font-weight: 300;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg label, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg label {
    margin: 0 0.5vw;
    display: flex;
    align-items: center;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg label svg, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg label svg {
    width: 2.3vw;
    height: auto;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .det .s .sg span, .wrap .wrap-0 .w00 .w000 .group-s .box-g .det .s .sg span {
    font-family: "Biryani";
    font-size: 1.8vw;
    font-weight: 300;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .box-h, .wrap .wrap-0 .w00 .w000 .group-s .box-g .box-h {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 8vw;
    margin: 1vw 0;
    background-color: rgba(7, 139, 224, 0.5333333333);
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g .box-h div, .wrap .wrap-0 .w00 .w000 .group-s .box-g .box-h div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g select, .wrap .wrap-0 .w00 .w000 .group-s .box-g select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 0.9vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-g input, .wrap .wrap-0 .w00 .w000 .group-s .box-g input {
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 0.9vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .wrap .wrap-0 .w00 .w000 .group textarea, .wrap .wrap-0 .w00 .w000 .group-s textarea {
    width: 90%;
    height: 20vw;
    background-color: #EAEAEA;
    resize: none;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    padding-top: 2vw;
    border: none;
    outline: none;
  }
  .wrap .wrap-0 .w00 .w000 .group .wrap--0, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
  }
  .wrap .wrap-0 .w00 .w000 .group .wrap--0 .wrapping, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 .wrapping {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .wrap .wrap-0 .w00 .w000 .group .wrap--0 .wrapping .box-s, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 .wrapping .box-s {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 8vw;
    margin: 1vw 0;
    background-color: rgba(7, 139, 224, 0.5333333333);
  }
  .wrap .wrap-0 .w00 .w000 .group .wrap--0 span, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 span {
    position: static;
    margin: 0px;
    margin-right: 2vw;
    width: auto;
    padding: 0;
    display: flex;
    justify-content: right;
  }
  .wrap .wrap-0 .w00 .w000 .group .wrap--0 span svg, .wrap .wrap-0 .w00 .w000 .group-s .wrap--0 span svg {
    width: 4vw;
    height: auto;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-s, .wrap .wrap-0 .w00 .w000 .group-s .box-s {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 8vw;
    margin: 1vw 0;
    background-color: rgba(7, 139, 224, 0.5333333333);
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-s select, .wrap .wrap-0 .w00 .w000 .group-s .box-s select {
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-s input, .wrap .wrap-0 .w00 .w000 .group-s .box-s input {
    width: 100%;
    height: 90%;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    border: none;
    outline: none;
    background-color: transparent;
    color: black;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-s input::-moz-placeholder, .wrap .wrap-0 .w00 .w000 .group-s .box-s input::-moz-placeholder {
    color: black;
  }
  .wrap .wrap-0 .w00 .w000 .group .box-s input::placeholder, .wrap .wrap-0 .w00 .w000 .group-s .box-s input::placeholder {
    color: black;
  }
  .wrap .wrap-0 .w00 .w000 .group-s {
    justify-content: center;
  }
  .login-section {
    width: 100%;
    padding: 17vw 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .login-section .wrapper:nth-child(1) {
    background-image: url("../assets/img/login/1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .login-section .wrapper {
    width: 80%;
    height: 75vw;
    background-color: #EAEAEA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .login-section .wrapper .wrap {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .login-section .wrapper .wrap .wrap-0 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .login-section .wrapper .wrap .wrap-0 a {
    font: 600 2vw "Avenir bold";
  }
  .login-section .wrapper .wrap .wrap-0 a svg {
    width: 2vw;
    height: auto;
  }
  .login-section .wrapper .wrap .wrap-0 .free {
    width: 20.5vw;
    height: 1vw;
    background-color: white;
    border-radius: 0.4vw;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 400 2vw "Avenir next";
  }
  .login-section .wrapper .wrap .title {
    margin-top: 4vw;
    width: 100%;
    text-align: left;
    font: 600 3vw "Avenir bold";
  }
  .login-section .wrapper .wrap .sub {
    width: 100%;
    text-align: left;
    font: 400 2vw "Avenir next";
    margin-top: 2vw;
  }
  .login-section .wrapper .wrap .box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vw;
  }
  .login-section .wrapper .wrap .box .input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 7.3vw;
    margin: 1.5vw 0;
    background-color: white;
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 3vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .login-section .wrapper .wrap .box button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25vw;
    height: 7vw;
    margin-top: 10vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 5vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
    color: white;
  }
  .login-section .wrapper .wrap .box button:hover {
    animation: gradient 0.8s;
  }
  .login-section .wrapper .wrap .box button:active {
    animation: scale 0.8s;
  }
  .status {
    min-width: 25vw;
    width: auto;
    height: 5.1vw;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 3vw 6vw;
    color: white;
    margin-bottom: 2.5vw;
    border-top-left-radius: 1vw;
    border-bottom-left-radius: 1vw;
    animation: alternate-reverse;
  }
  .status span {
    font: bold 5vw "Avenir next";
  }
}/*# sourceMappingURL=style.css.map */