@font-face {
  font-family: "work-sans";
  src: url(./fonts/work-sans.regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  font-family: "work-sans";
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

/* ----- PAGE-1 -----*/

/* ----- GRID ----- */

.grid {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0;
}

/* ----- COLUMN-1 ----- */

.grid .col1 {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 2rem 0rem 0rem 0rem;
  background: linear-gradient(41.7deg, #080d1b 0.47%, #111523 100%);
}

.grid .col1 .logo {
  margin-left: 6rem;
  margin-top: 1rem;
  cursor: pointer;
}

.grid .col1 .flex1 {
  width: 100%;
  height: 100vh;
  /* background-image: url(./images/Rectangle.png), url(./images/Rectangle2.png); */
  background-repeat: no-repeat;
  background-position: bottom right, top left;
  background-attachment: fixed fixed;
  color: #ffffff;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid .col1 .flex1 h2 {
  margin-top: 2rem;
  font-size: 3em;
  font-weight: 100;
}

.grid .col1 .flex1 h3 {
  font-size: 3em;
  font-weight: 900;
}

.grid .col1 .flex1 h3 span {
  color: #01b9e2;
}

.grid .col1 .flex1 p {
  margin-top: 1rem;
  font-size: 1.7em;
  color: #777981;
}

.grid .col1 .flex1 #btn {
  margin-top: 3rem;
  background: none;
  border: 1px solid #ffffff;
  padding: 1rem 3rem 1rem 3rem;
  border-radius: 8px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
  cursor: pointer;
}

.grid .col1 .flex1 #btn:hover {
  border-color: #01b9e2;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  transition: 0.6s;
}

/* ----- COLUMN-2 ----- */

.grid .col2 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 0rem 0rem;
  background-color: #111523;
}

.grid .col2 #sign {
  float: right;
  color: #777981;
  font-size: 0.7em;
}

.grid .col2 #sign #btn {
  background: none;
  border: none;
  outline: none;
  color: #01b9e2;
  cursor: pointer;
  text-decoration: underline;
}

.grid .col2 #sign #btn span {
  vertical-align: middle;
  font-size: 1.5em;
  margin-right: 0.2rem;
}

.grid .col2 .flex2 {
  color: #ffffff;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid .col2 .flex2 .heading h6 {
  font-size: 0.8em;
  color: #777981;
}
.grid .col2 .flex2 .heading h3 {
  margin-top: 1rem;
  font-size: 2.3em;
  font-weight: 100;
}
.grid .col2 .flex2 .heading h3 span {
  font-weight: 900;
}
.grid .col2 .flex2 .heading p {
  margin-top: 0.5rem;
  color: #777981;
  font-size: 1.1em;
}

.grid .col2 .flex2 .buttons {
  margin-top: 1.5rem;
}

.grid .col2 .flex2 .buttons #btn2 {
  background-color: #222633;
  border: none;
  padding: 0.7rem 2.8rem 0.7rem 2.8rem;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.8em;
  cursor: pointer;
}

.grid .col2 .flex2 .buttons #btn2:hover {
  background-color: #5c5c5c;
  transition: 0.6s;
}

.grid .col2 .flex2 .buttons i {
  font-size: 1.2em;
  vertical-align: middle;
}

.grid .col2 .flex2 .buttons .fa-facebook-f {
  color: #4282ff;
}

.grid .col2 .flex2 .buttons .fa-google {
  color: #fe4b3f;
}

.grid .col2 .flex2 .lines {
  margin-top: 2rem;
  width: 50%;
  position: relative;
}

.grid .col2 .flex2 .lines::after,
.lines::before {
  content: "";
  position: absolute;
  margin: auto;
  height: 1px;
  width: 30%;
  top: 45%;
}

.grid .col2 .flex2 .lines::after {
  left: 0;
  background-color: #777981;
}

.grid .col2 .flex2 .lines::before {
  right: 0;
  background-color: #777981;
}

.grid .col2 .flex2 .lines h5 {
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-weight: 100;
  color: #777981;
  text-align: center;
}

.grid .col2 .flex2 .form {
  margin-top: 2rem;
}

.grid .col2 .flex2 .form .name {
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: #191e2b;
  color: #ffffff;
}

.grid .col2 .flex2 .form .name:focus {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col2 .flex2 .form #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
}

.grid .col2 .flex2 .form #enter {
  display: flex;
  padding: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: #191e2b;
}

.grid .col2 .flex2 .form #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col2 .flex2 .form #enter span {
  font-size: 1em;
  color: #777981;
  cursor: pointer;
  user-select: none;
}

.grid .col2 .flex2 .form .terms {
  margin-top: 1rem;
}

.grid .col2 .flex2 .form .terms label {
  font-size: 0.8em;
}

.grid .col2 .flex2 .form .terms label span {
  text-decoration: underline;
  cursor: pointer;
}

.grid .col2 .flex2 .form .terms label input[type="checkbox"] {
  accent-color: #01b9e2;
  vertical-align: middle;
  cursor: pointer;
}

/* ---- PAGE-5 QUERIES ---- */

.grid .col2 .flex2 .form1 {
  margin-top: 2rem;
  width: 470px;
}

.grid .col2 .flex2 .form1 .name {
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: #191e2b;
  color: #ffffff;
}

.grid .col2 .flex2 .form1 .name:focus {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col2 .flex2 .form1 #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
}

.grid .col2 .flex2 .form1 #enter {
  display: flex;
  padding: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: #191e2b;
}

.grid .col2 .flex2 .form1 #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col2 .flex2 .form1 #enter span {
  font-size: 1em;
  color: #777981;
  cursor: pointer;
  user-select: none;
}

.grid .col2 .flex2 .form1 .terms {
  margin-top: 0.5rem;
}

.grid .col2 .flex2 .form1 .terms span {
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.7em;
}

/* ---- PAGE-1 CONTINUE ---- */

.grid .col2 .flex2 #btn3 {
  margin-top: 3rem;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 8px;
  color: #ffffff;
}

.grid .col2 .flex2 #btn3:hover {
  background: none;
  outline: 1px solid #01b9e2;
  transition: 0.6s;
  color: #01b9e2;
}

.grid .col2 .buttons2 {
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}

.grid .col2 .buttons2 #btn4 {
  background: none;
  border: none;
  border-right: 2px solid #222633;
  padding: 0.5rem 0.7rem 0.5rem 0rem;
  text-decoration: underline;
  outline: none;
  color: #777981;
  cursor: pointer;
}
.grid .col2 .buttons2 #btn4:hover {
  color: #01b9e2;
  transition: 0.3s;
}

.grid .col2 .buttons2 #btn5 {
  background: none;
  border: none;
  text-decoration: underline;
  padding-left: 0.5rem;
  outline: none;
  color: #777981;
  cursor: pointer;
}
.grid .col2 .buttons2 #btn5:hover {
  color: #01b9e2;
  transition: 0.3s;
}

/* ----- PAGE-3 QUERIES ----- */

.grid .col3 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 0rem 0rem;
  background-color: #111523;
}

.grid .col3 #sign {
  float: right;
  color: #777981;
  font-size: 0.7em;
}

.grid .col3 #sign #btn {
  background: none;
  border: none;
  outline: none;
  color: #01b9e2;
  cursor: pointer;
  text-decoration: underline;
}

.grid .col3 #sign #btn span {
  vertical-align: middle;
  font-size: 1.5em;
  margin-right: 0.2rem;
}

.grid .col3 .flex2 {
  color: #ffffff;
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid .col3 .flex2 .heading h6 {
  font-size: 0.8em;
  color: #777981;
}

.grid .col3 .flex2 .heading h6 span {
  vertical-align: middle;
  color: #ffffff;
  font-size: 1.5em;
  cursor: pointer;
}

.grid .col3 .flex2 .heading h3 {
  margin-top: 1rem;
  font-size: 2em;
  font-weight: 100;
}
.grid .col3 .flex2 .heading h3 span {
  font-weight: 900;
}
.grid .col3 .flex2 .heading p {
  margin-top: 0.5rem;
  color: #777981;
  font-size: 1em;
}

.grid .col3 .flex2 .form {
  margin-top: 2rem;
  width: 525px;
}

.grid .col3 .flex2 .form .name {
  padding: 0.7rem 6.5rem 0.7rem 1rem;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-top: 1rem;
  background-color: #191e2b;
  color: #ffffff;
}

.grid .col3 .flex2 .form .name:focus {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col3 .flex2 .form #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
}

.grid .col3 .flex2 .form #enter {
  position: relative;
  display: flex;
  padding: 0.7rem 0.5rem 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  background-color: #191e2b;
  width: 100%;
}

.grid .col3 .flex2 .form .custom {
  position: relative;
  margin-top: 1rem;
}

.grid .col3 .flex2 .form .custom select {
  display: none;
}

.grid .col3 .flex2 .form .custom .select-selected {
  background-color: #191e2b;
  border-radius: 5px;
  padding: 0.7rem 1rem 0.7rem 1rem;
}

.grid .col3 .flex2 .form .custom .select-selected:after {
  position: absolute;
  content: "";
  top: 16px;
  right: 12px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-color: #5c5c5c transparent transparent transparent;
}

.grid .col3 .flex2 .form .custom .select-selected.select-arrow-active:after {
  border-color: #191e2b;
}

.grid .col3 .flex2 .form .custom .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 12px;
}

.grid .col3 .flex2 .form .custom .select-items div,
.select-selected {
  color: #777981;
  font-size: 0.8em;
  user-select: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.grid .col3 .flex2 .form .custom .select-items {
  position: absolute;
  background-color: #191e2b;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 5px;
}

.grid .col3 .flex2 .form .custom .select-hide {
  display: none;
}

.grid .col3 .flex2 .form .custom .select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.grid .col3 .flex2 .form .dropdown2 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.grid .col3 .flex2 .form .dropdown2 .custom {
  width: 100%;
}

.grid .col3 .flex2 .form #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid .col3 .flex2 .form #enter span {
  font-size: 1em;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.grid .col3 .flex2 .form .terms {
  margin-top: 1rem;
}

.grid .col3 .flex2 .form .terms label {
  font-size: 0.8em;
}

.grid .col3 .flex2 .form .terms label input[type="checkbox"] {
  accent-color: #01b9e2;
  vertical-align: middle;
  cursor: pointer;
}

.grid .col3 .flex2 #btn3 {
  margin-top: 3rem;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 8px;
  color: #ffffff;
}

.grid .col3 .flex2 #btn3:hover {
  background: none;
  outline: 1px solid #01b9e2;
  transition: 0.6s;
  color: #01b9e2;
}

.grid .col3 .buttons2 {
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}

.grid .col3 .buttons2 #btn4 {
  background: none;
  border: none;
  border-right: 2px solid #222633;
  padding: 0.5rem 0.7rem 0.5rem 0rem;
  text-decoration: underline;
  outline: none;
  color: #777981;
  cursor: pointer;
}
.grid .col3 .buttons2 #btn4:hover {
  color: #01b9e2;
  transition: 0.3s;
}

.grid .col3 .buttons2 #btn5 {
  background: none;
  border: none;
  text-decoration: underline;
  padding-left: 0.5rem;
  outline: none;
  color: #777981;
  cursor: pointer;
}
.grid .col3 .buttons2 #btn5:hover {
  color: #01b9e2;
  transition: 0.3s;
}

/* ----- PAGE-2 -----*/

/* ----- GRID ----- */

.grid2 {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0;
}

/* ----- COLUMN-1 ----- */

.grid2 .col1 {
  width: 100%;
  height: 100%;
  padding: 2rem 0rem 0rem 0rem;
  background: linear-gradient(41.7deg, #ecf0fa 0.47%, #f6f7fa 100%);
}

.grid2 .col1 .logo {
  margin-left: 6rem;
  margin-top: 1rem;
  cursor: pointer;
}

.grid2 .col1 .flex1 {
  width: 100%;
  height: 100vh;
  background-image: url(./images/Rectangle3.png), url(./images/Rectangle4.png);
  background-repeat: no-repeat;
  background-position: center right, top left;
  background-attachment: fixed fixed;
  color: #080d1b;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid2 .col1 .flex1 h2 {
  margin-top: 2rem;
  font-size: 3em;
  font-weight: 100;
}

.grid2 .col1 .flex1 h3 {
  font-size: 3em;
  font-weight: 900;
}

.grid2 .col1 .flex1 h3 span {
  color: #01b9e2;
}

.grid2 .col1 .flex1 p {
  margin-top: 1rem;
  font-size: 1.7em;
  color: #777981;
}

.grid2 .col1 .flex1 #btn {
  margin-top: 3rem;
  background: none;
  border: 1px solid #080d1b;
  padding: 1rem 3rem 1rem 3rem;
  border-radius: 8px;
  font-weight: 600;
  color: #080d1b;
  margin-bottom: 0.2rem;
  cursor: pointer;
}

.grid2 .col1 .flex1 #btn:hover {
  border-color: #01b9e2;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  color: #ffffff;
  transition: 0.6s;
}

/* ----- COLUMN-2 ----- */

.grid2 .col2 {
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 0rem 0rem;
  background-color: #ffffff;
  position: relative;
}

.grid2 .col2 #sign {
  float: right;
  color: #777981;
  font-size: 0.7em;
}

.grid2 .col2 #sign #btn {
  background: none;
  border: none;
  outline: none;
  color: #01b9e2;
  cursor: pointer;
  text-decoration: underline;
}

.grid2 .col2 #sign #btn span {
  vertical-align: middle;
  font-size: 1.5em;
  margin-right: 0.2rem;
}

.grid2 .col2 .flex2 {
  color: #080d1b;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid2 .col2 .flex2 .heading h6 {
  font-size: 0.8em;
  color: #777981;
}
.grid2 .col2 .flex2 .heading h3 {
  margin-top: 1rem;
  font-size: 2.3em;
  font-weight: 100;
}
.grid2 .col2 .flex2 .heading h3 span {
  font-weight: 900;
}
.grid2 .col2 .flex2 .heading p {
  margin-top: 0.5rem;
  color: #777981;
  font-size: 1.1em;
}

.grid2 .col2 .flex2 .buttons {
  margin-top: 1.5rem;
}

.grid2 .col2 .flex2 .buttons #btn2 {
  background-color: #f7f8fa;
  border: none;
  padding: 0.7rem 2.8rem 0.7rem 2.8rem;
  border-radius: 5px;
  color: #080d1b;
  font-size: 0.8em;
  cursor: pointer;
}

.grid2 .col2 .flex2 .buttons #btn2:hover {
  background-color: #d1d0d0;
  transition: 0.6s;
}

.grid2 .col2 .flex2 .buttons i {
  font-size: 1.2em;
  vertical-align: middle;
}

.grid2 .col2 .flex2 .buttons .fa-facebook-f {
  color: #4282ff;
}

.grid2 .col2 .flex2 .buttons .fa-google {
  color: #fe4b3f;
}

.grid2 .col2 .flex2 .lines {
  margin-top: 2rem;
  width: 50%;
  position: relative;
}

.grid2 .col2 .flex2 .lines::after,
.lines::before {
  content: "";
  position: absolute;
  margin: auto;
  height: 1px;
  background-color: #c3c5c8;
  width: 30%;
  top: 45%;
}

.grid2 .col2 .flex2 .lines::after {
  left: 0;
  background-color: #777981;
}

.grid2 .col2 .flex2 .lines::before {
  right: 0;
  background-color: #777981;
}

.grid2 .col2 .flex2 .lines h5 {
  width: 25%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-weight: 100;
  color: #777981;
}

.grid2 .col2 .flex2 .form {
  margin-top: 2rem;
}

.grid2 .col2 .flex2 .form .name {
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  border: 1px solid #dddee0;
  outline: none;
  border-radius: 5px;
  margin-top: 0.5rem;
  background: none;
}

.grid2 .col2 .flex2 .form .name:focus {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid2 .col2 .flex2 .form #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #080d1b;
}

.grid2 .col2 .flex2 .form #enter {
  display: flex;
  border: 1px solid #dddee0;
  padding: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  background: none;
}

.grid2 .col2 .flex2 .form #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid2 .col2 .flex2 .form #enter span {
  font-size: 1em;
  color: #777981;
  cursor: pointer;
  user-select: none;
}

.grid2 .col2 .flex2 .form .terms {
  margin-top: 1rem;
}

.grid2 .col2 .flex2 .form .terms label {
  font-size: 0.8em;
  margin-top: 2rem;
}

.grid2 .col2 .flex2 .form .terms label span {
  text-decoration: underline;
  cursor: pointer;
}

.grid2 .col2 .flex2 .form .terms label input[type="checkbox"] {
  accent-color: #01b9e2;
  vertical-align: middle;
  cursor: pointer;
}

/* ---- PAGE-6 QUERIES ---- */

.grid2 .col2 .flex2 .form2 {
  margin-top: 2rem;
  width: 470px;
}

.grid2 .col2 .flex2 .form2 .name {
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  border: 1px solid #dddee0;
  outline: none;
  border-radius: 5px;
  margin-top: 0.5rem;
  background: none;
}

.grid2 .col2 .flex2 .form2 .name:focus {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid2 .col2 .flex2 .form2 #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #080d1b;
}

.grid2 .col2 .flex2 .form2 #enter {
  display: flex;
  border: 1px solid #dddee0;
  padding: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  background: none;
}

.grid2 .col2 .flex2 .form2 #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid2 .col2 .flex2 .form2 #enter span {
  font-size: 1em;
  color: #777981;
  cursor: pointer;
  user-select: none;
}

.grid2 .col2 .flex2 .form2 .terms {
  margin-top: 0.5rem;
}

.grid2 .col2 .flex2 .form2 .terms span {
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.7em;
}

/* ---- PAGE-2 CONTINUE ---- */

.grid2 .col2 .flex2 #btn3 {
  margin-top: 3rem;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 8px;
  color: #ffffff;
}

.grid2 .col2 .flex2 #btn3:hover {
  background: none;
  outline: 1px solid #01b9e2;
  transition: 0.6s;
  color: #01b9e2;
}

.grid2 .col2 .buttons2 {
  right: 2rem;
  bottom: 0.5rem;
  position: absolute;
}

.grid2 .col2 .buttons2 #btn4 {
  background: none;
  border: none;
  border-right: 2px solid #222633;
  padding: 0.5rem 0.7rem 0.5rem 0rem;
  text-decoration: underline;
  outline: none;
  color: #777981;
  cursor: pointer;
}

.grid2 .col2 .buttons2 #btn4:hover {
  color: #01b9e2;
  transition: 0.3s;
}

.grid2 .col2 .buttons2 #btn5 {
  background: none;
  border: none;
  text-decoration: underline;
  padding-left: 0.5rem;
  outline: none;
  color: #777981;
  cursor: pointer;
}

.grid2 .col2 .buttons2 #btn5:hover {
  color: #01b9e2;
  transition: 0.3s;
}

/* ----- PAGE-4 QUERIES ----- */

.grid2 .col3 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 0rem 0rem;
  background-color: #ffffff;
}

.grid2 .col3 #sign {
  float: right;
  color: #777981;
  font-size: 0.7em;
}

.grid2 .col3 #sign #btn {
  background: none;
  border: none;
  outline: none;
  color: #01b9e2;
  cursor: pointer;
  text-decoration: underline;
}

.grid2 .col3 #sign #btn span {
  vertical-align: middle;
  font-size: 1.5em;
  margin-right: 0.2rem;
}

.grid2 .col3 .flex2 {
  color: #080d1b;
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid2 .col3 .flex2 .heading h6 {
  font-size: 0.8em;
  color: #777981;
}

.grid2 .col3 .flex2 .heading h6 span {
  vertical-align: middle;
  color: #080d1b;
  font-weight: 600;
  font-size: 1.5em;
  cursor: pointer;
}

.grid2 .col3 .flex2 .heading h3 {
  margin-top: 1rem;
  font-size: 2em;
  font-weight: 100;
}
.grid2 .col3 .flex2 .heading h3 span {
  font-weight: 900;
}
.grid2 .col3 .flex2 .heading p {
  margin-top: 0.5rem;
  color: #777981;
  font-size: 1em;
}

.grid2 .col3 .flex2 .form {
  margin-top: 2rem;
  width: 525px;
}

.grid2 .col3 .flex2 .form #enter input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #191e2b;
}

.grid2 .col3 .flex2 .form #enter {
  position: relative;
  display: flex;
  padding: 0.7rem 0.5rem 0.7rem 1rem;
  border: 1px solid #dddee0;
  border-radius: 5px;
  margin-top: 1rem;
  background-color: #ffffff;
  width: 100%;
}

.grid2 .col3 .flex2 .form .custom {
  position: relative;
  margin-top: 1rem;
}

.grid2 .col3 .flex2 .form .custom select {
  display: none;
}

.grid2 .col3 .flex2 .form .custom .select-selected {
  background-color: #ffffff;
  border: 1px solid #dddee0;
  border-radius: 5px;
  padding: 0.7rem 1rem 0.7rem 1rem;
}

.grid2 .col3 .flex2 .form .custom .select-selected:after {
  position: absolute;
  content: "";
  top: 16px;
  right: 12px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-color: #5c5c5c transparent transparent transparent;
}

.grid2 .col3 .flex2 .form .custom .select-selected.select-arrow-active:after {
  border-color: transparent transparent #191e2b transparent;
  top: 12px;
}

.grid2 .col3 .flex2 .form .custom .select-items div,
.select-selected {
  color: #777981;
  font-size: 0.8em;
  user-select: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.grid2 .col3 .flex2 .form .custom .select-items {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #dddee0;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 5px;
}

.grid2 .col3 .flex2 .form .custom .select-hide {
  display: none;
}

.grid2 .col3 .flex2 .form .custom .select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.grid2 .col3 .flex2 .form .dropdown2 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.grid2 .col3 .flex2 .form .dropdown2 .custom {
  width: 100%;
}

.grid2 .col3 .flex2 .form #enter:focus-within {
  outline: 2px solid #01b9e2;
  box-shadow: 0 0 0 5px rgba(59, 178, 71, 0.07);
}

.grid2 .col3 .flex2 .form #enter span {
  font-size: 1em;
  color: #5c5c5c;
  cursor: pointer;
  user-select: none;
}

.grid2 .col3 .flex2 .form .terms {
  margin-top: 1rem;
}

.grid2 .col3 .flex2 .form .terms label {
  font-size: 0.8em;
}

.grid2 .col3 .flex2 .form .terms label input[type="checkbox"] {
  accent-color: #01b9e2;
  vertical-align: middle;
  cursor: pointer;
}

.grid2 .col3 .flex2 #btn3 {
  margin-top: 3rem;
  background: linear-gradient(to left, #01bde5 0%, #02508d 100%) !important;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 1rem 4rem 1rem 4rem;
  border-radius: 8px;
  color: #ffffff;
}

.grid2 .col3 .flex2 #btn3:hover {
  background: none;
  outline: 1px solid #01b9e2;
  transition: 0.6s;
  color: #01b9e2;
}

.grid2 .col3 .buttons2 {
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}

.grid2 .col3 .buttons2 #btn4 {
  background: none;
  border: none;
  border-right: 2px solid #222633;
  padding: 0.5rem 0.7rem 0.5rem 0rem;
  text-decoration: underline;
  outline: none;
  color: #777981;
  cursor: pointer;
}

.grid2 .col3 .buttons2 #btn4:hover {
  color: #01b9e2;
  transition: 0.3s;
}

.grid2 .col3 .buttons2 #btn5 {
  background: none;
  border: none;
  text-decoration: underline;
  padding-left: 0.5rem;
  outline: none;
  color: #777981;
  cursor: pointer;
}

.grid2 .col3 .buttons2 #btn5:hover {
  color: #01b9e2;
  transition: 0.3s;
}

/* ----- MEDIA QUERIES -----*/

@media (max-width: 870px) {
  .grid5 {
    display: flex !important;
    flex-direction: column !important;
  }

  .grid6 {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 470px) {
  .delegateBox {
    display: flex !important;
    flex-direction: column !important;
  }

  .delegateBox > .buttons {
    margin: 1em;
    margin-left: 0.3rem !important;
    margin-right: 0.3rem !important;
  }

  .grid-col-2 .section-top {
    flex-direction: column;
  }

  .grid-col-2 .section-top .drpdwn-searcher .searcher {
    margin: 1em;
  }

  .grid6 .grid-col-2 .main-section .table4 tr .col-2 .flex2 .confirm {
    flex-direction: column;
  }

  .grid6 .grid-col-2 .main-section .table4 tr .col-3 .flex2 .confirm {
    flex-direction: column;
  }

  .grid6 .grid-col-2 .main-section .table4 tr .col-2 .flex2 .confirm button {
    margin-top: 1em;
  }

  .grid6 .grid-col-2 .main-section .table4 tr .col-3 .flex2 .confirm button {
    margin-top: 1em;
  }
}

@media (max-width: 1000px) {
  /* ---- GRID ---- */

  .grid {
    grid-template-columns: repeat(1, 1fr);
    overflow: auto;
  }
  .grid .col1 .flex1 {
    height: max-content;
  }
  .grid .col1 .flex1 #btn {
    margin-bottom: 1rem;
  }
  .grid .col2 .flex2 {
    margin-top: 5rem;
  }
  .grid .col2 .flex2 .lines h5 {
    width: 50%;
    font-size: 1em;
    text-align: center;
  }
  .grid .col2 .flex2 #btn3 {
    margin-bottom: 1rem;
  }

  /* -----PAGE-3----- */

  .grid .col3 .flex2 {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
  .grid .col3 .flex2 .heading h6 {
    font-size: 0.8em;
  }

  .grid .col3 .flex2 .heading h6 span {
    font-size: 1.5em;
  }
  .grid .col3 .flex2 .form {
    width: 450px;
  }
  .grid .col3 .flex2 .heading h3 {
    font-size: 1.7em;
  }
  .grid .col3 .flex2 .heading h3 span {
    font-weight: 900;
  }
  .grid .col3 .flex2 .heading p {
    font-size: 1em;
  }

  /* -----PAGE-4----- */

  .grid2 .col3 .flex2 {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
  .grid2 .col3 .flex2 .heading h6 {
    font-size: 0.8em;
  }

  .grid2 .col3 .flex2 .heading h6 span {
    font-size: 1.5em;
  }
  .grid2 .col3 .flex2 .form {
    width: 450px;
  }
  .grid2 .col3 .flex2 .heading h3 {
    font-size: 1.7em;
  }
  .grid2 .col3 .flex2 .heading h3 span {
    font-weight: 900;
  }
  .grid2 .col3 .flex2 .heading p {
    font-size: 1em;
  }

  /*----- GRID-2 -----*/

  .grid2 {
    grid-template-columns: repeat(1, 1fr);
    overflow: auto;
  }
  .grid2 .col1 .flex1 {
    height: 100%;
  }
  .grid2 .col1 .flex1 #btn {
    margin-bottom: 1rem;
  }
  .grid2 .col2 .flex2 {
    margin-top: 5rem;
  }
  .grid2 .col2 .flex2 .lines h5 {
    width: 50%;
    font-size: 1em;
    text-align: center;
  }
  .grid2 .col2 .flex2 #btn3 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  /*---- GRID ---- */

  .grid .col1 .logo {
    margin-left: 2rem;
    margin-top: 0rem;
    cursor: pointer;
  }
  .grid .col1 .flex1 img {
    width: 350px;
  }
  .grid .col1 .flex1 h2 {
    font-size: 2em;
  }
  .grid .col1 .flex1 h3 {
    font-size: 2em;
  }
  .grid .col1 .flex1 p {
    font-size: 1.1em;
  }
  .grid .col1 .flex1 #btn {
    margin-bottom: 1rem;
  }
  .grid .col2 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .grid .col2 .flex2 {
    margin-top: 4rem;
  }
  .grid .col2 .flex2 .heading h3 {
    font-size: 1.6em;
  }
  .grid .col2 .flex2 .heading p {
    font-size: 0.8em;
  }
  .grid .col2 .flex2 .buttons #btn2 {
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
  }
  .grid .col2 .flex2 .lines {
    width: 100%;
  }
  .grid .col2 .flex2 .lines::after,
  .lines::before {
    margin: auto;
    width: 30%;
    top: 45%;
    background-color: #777981;
  }
  .grid .col2 .flex2 .lines h5 {
    width: 50%;
    font-size: 0.7em;
    text-align: center;
  }
  .grid .col2 .flex2 .form .name {
    width: 100%;
  }
  .grid .col2 .flex2 #btn3 {
    margin-bottom: 2rem;
  }
  .grid .col2 .buttons2 {
    right: 1rem;
  }
  .grid .col2 .buttons2 #btn4 {
    font-size: 0.6em;
  }
  .grid .col2 .buttons2 #btn5 {
    font-size: 0.6em;
  }
  .grid .col2 .flex2 .form1 {
    width: 340px;
  }

  /* -----PAGE-3----- */

  .grid .col3 .flex2 {
    margin-left: 0.5rem;
    margin-right: -1.3rem;
  }
  .grid .col3 .flex2 .heading h6 {
    font-size: 0.8em;
  }
  .grid .col3 .flex2 .heading h6 span {
    font-size: 1.2em;
  }
  .grid .col3 #sign {
    margin-right: -0.5rem;
  }
  .grid .col3 .flex2 .form {
    width: 340px;
  }
  .grid .col3 .flex2 .heading h3 {
    font-size: 1.3em;
  }
  .grid .col3 .flex2 .heading h3 span {
    font-weight: 900;
  }
  .grid .col3 .flex2 .heading p {
    font-size: 0.8em;
  }
  .grid .col3 .buttons2 {
    right: 1.2rem;
  }
  .grid .col3 .buttons2 #btn4 {
    font-size: 0.6em;
  }
  .grid .col3 .buttons2 #btn5 {
    font-size: 0.6em;
  }

  /* -----PAGE-4----- */

  .grid2 .col3 .flex2 {
    margin-left: 0.5rem;
    margin-right: -1.3rem;
  }
  .grid2 .col3 .flex2 .heading h6 {
    font-size: 0.8em;
  }
  .grid2 .col3 .flex2 .heading h6 span {
    font-size: 1.2em;
  }
  .grid2 .col3 #sign {
    margin-right: -0.5rem;
  }
  .grid2 .col3 .flex2 .form {
    width: 340px;
  }
  .grid2 .col3 .flex2 .heading h3 {
    font-size: 1.3em;
  }
  .grid2 .col3 .flex2 .heading h3 span {
    font-weight: 900;
  }
  .grid2 .col3 .flex2 .heading p {
    font-size: 0.8em;
  }
  .grid2 .col3 .buttons2 {
    right: 1.2rem;
  }
  .grid2 .col3 .buttons2 #btn4 {
    font-size: 0.6em;
  }
  .grid2 .col3 .buttons2 #btn5 {
    font-size: 0.6em;
  }

  /*---- GRID-2 ----*/

  .grid2 .col1 .logo {
    margin-left: 2rem;
    margin-top: 0rem;
    cursor: pointer;
  }
  .grid2 .col1 .flex1 img {
    width: 350px;
  }
  .grid2 .col1 .flex1 h2 {
    font-size: 2em;
  }
  .grid2 .col1 .flex1 h3 {
    font-size: 2em;
  }
  .grid2 .col1 .flex1 p {
    font-size: 1.1em;
  }
  .grid2 .col1 .flex1 #btn {
    margin-bottom: 1rem;
  }
  .grid2 .col2 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .grid2 .col2 .flex2 {
    margin-top: 4rem;
  }
  .grid2 .col2 .flex2 .heading h3 {
    font-size: 1.6em;
  }
  .grid2 .col2 .flex2 .heading p {
    font-size: 0.8em;
  }
  .grid2 .col2 .flex2 .buttons #btn2 {
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
  }
  .grid2 .col2 .flex2 .lines {
    width: 100%;
  }
  .grid2 .col2 .flex2 .lines::after,
  .lines::before {
    margin: auto;
    width: 30%;
    top: 45%;
    background-color: #777981;
  }
  .grid2 .col2 .flex2 .lines h5 {
    width: 50%;
    font-size: 0.7em;
    text-align: center;
  }
  .grid2 .col2 .flex2 .form .name {
    width: 100%;
  }
  .grid2 .col2 .flex2 #btn3 {
    margin-bottom: 2rem;
  }
  .grid2 .col2 .buttons2 {
    right: 1rem;
  }
  .grid2 .col2 .buttons2 #btn4 {
    font-size: 0.6em;
  }
  .grid2 .col2 .buttons2 #btn5 {
    font-size: 0.6em;
  }
  .grid2 .col2 .flex2 .form2 {
    width: 340px;
  }
}
