/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #A6A6A6;
  font-weight: 300;
}

input[type=date], input[type=time] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-moz-placeholder {
  color: #A6A6A6;
  font-weight: 300;
}

::placeholder {
  color: #A6A6A6;
  font-weight: 300;
}

body {
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  background: #F6F6F6;
}

.loading {
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 998;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  top: 0;
}
.loading .loading_wrapper {
  width: 75px;
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_wrapper .outer_svg {
  position: absolute;
  animation: icon_rotate1 linear 2.5s infinite;
}
.loading .loading_wrapper .inner_svg {
  position: absolute;
  animation: icon_rotate2 linear 1.5s infinite;
}

.loading_show {
  display: flex;
}

@keyframes icon_rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes icon_rotate2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Extra small devices (phones, 360px and down) max-width: 360; */
.alert {
  max-width: 360px;
  position: fixed;
  height: 100vh;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  z-index: 999;
  padding-top: 48px;
}
.alert .message_box {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 64px 0;
}
.alert .message_box .check {
  margin-bottom: 32px;
  height: 64px;
  width: 64px;
}
.alert .message_box .ms {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.alert .message_box .message {
  font-size: 1rem;
  text-align: center;
  width: 80%;
}
.alert .message_box .ok_btn {
  margin-top: 32px;
  width: 140px;
  height: 40px;
  background: #4F0C16;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: ease-in-out 0.2s;
  box-shadow: 4px 4px 0px #909090;
}
.alert .message_box .ok_btn span {
  font-size: 1rem;
  color: #FFFFFF;
}
.alert .message_box .ok_btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px #909090;
}

.alert_show {
  display: flex;
}

.apply_section {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: flex;
  padding-top: 48px;
  align-items: center;
  justify-content: center;
}
.apply_section .apply_container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  position: relative;
  padding-top: 160px;
}
.apply_section .apply_container .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  transform-style: preserve-3d;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 100%;
  height: 920px;
}
.apply_section .apply_container .form input {
  font-family: "Poppins", sans-serif;
}
.apply_section .apply_container .form .card_1 {
  background: #FFFFFF;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  backface-visibility: hidden;
  position: absolute;
}
.apply_section .apply_container .form .card_1 .welcome {
  font-size: 1.2rem;
  color: #4F0C16;
  font-weight: 600;
}
.apply_section .apply_container .form .card_1 .line {
  width: 100%;
  height: 1px;
  background: #A6A6A6;
  margin: 32px 0;
}
.apply_section .apply_container .form .card_1 .p {
  width: 100%;
  font-size: 1rem;
  color: #4F0C16;
  font-weight: 500;
  margin-bottom: 16px;
}
.apply_section .apply_container .form .card_1 .p2 {
  margin-top: 18px;
}
.apply_section .apply_container .form .card_1 .input_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 14px;
}
.apply_section .apply_container .form .card_1 .input_wrapper .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.apply_section .apply_container .form .card_1 .input_wrapper .inp {
  font-size: 1rem;
  height: 38px;
  outline: none;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 8px;
}
.apply_section .apply_container .form .card_1 .last_name {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.apply_section .apply_container .form .card_1 .last_name .a {
  width: 70%;
}
.apply_section .apply_container .form .card_1 .last_name .b {
  width: 20%;
}
.apply_section .apply_container .form .card_1 .last_name .input_wrapper {
  display: flex;
  flex-direction: column;
}
.apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
  font-size: 1rem;
  height: 38px;
  outline: none;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 8px;
}
.apply_section .apply_container .form .card_1 .date_of_birth {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply_section .apply_container .form .card_1 .date_of_birth .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
  align-self: start;
}
.apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}
.apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
  width: 100%;
  font-size: 1rem;
  height: 38px;
  outline: none;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  z-index: 1;
}
.apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
  position: absolute;
  right: 0;
  height: 38px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #A6A6A6;
}
.apply_section .apply_container .form .card_1 .contact_number {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply_section .apply_container .form .card_1 .contact_number .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
  align-self: start;
}
.apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}
.apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
  text-align: center;
  font-size: 1rem;
  height: 38px;
  position: absolute;
  width: 45px;
  outline: none;
  border: none;
  border-right: 1px solid #A6A6A6;
}
.apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
  width: 100%;
  font-size: 1rem;
  height: 38px;
  outline: none;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  z-index: 1;
  padding-left: 53px;
}
.apply_section .apply_container .form .card_1 .next {
  background: #4F0C16;
  border-radius: 12px;
  width: 120px;
  height: 40px;
  cursor: pointer;
  margin-top: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 2px 0px #909090;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply_section .apply_container .form .card_1 .next .next_span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}
.apply_section .apply_container .form .card_1 .next:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #909090;
}
.apply_section .apply_container .form .card_2 {
  background: #FFFFFF;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  position: absolute;
}
.apply_section .apply_container .form .card_2 .welcome {
  font-size: 1.2rem;
  color: #4F0C16;
  font-weight: 600;
}
.apply_section .apply_container .form .card_2 .line {
  width: 100%;
  height: 1px;
  background: #A6A6A6;
  margin: 32px 0;
}
.apply_section .apply_container .form .card_2 .p {
  width: 100%;
  font-size: 1rem;
  color: #4F0C16;
  font-weight: 500;
  margin-bottom: 16px;
}
.apply_section .apply_container .form .card_2 .date_of_birth {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.apply_section .apply_container .form .card_2 .date_of_birth .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
  align-self: start;
}
.apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}
.apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
  width: 100%;
  font-size: 1rem;
  height: 38px;
  outline: none;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  z-index: 1;
}
.apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
  position: absolute;
  right: 0;
  height: 38px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #A6A6A6;
}
.apply_section .apply_container .form .card_2 .btn_wrapper {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 40px;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .back {
  border: 2px solid #A6A6A6;
  border-radius: 12px;
  width: 120px;
  height: 40px;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
  font-size: 1rem;
  font-weight: 600;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
  transform: translate(-2px, -2px);
}
.apply_section .apply_container .form .card_2 .btn_wrapper .submit {
  border: none;
  outline: none;
  background: #4F0C16;
  border-radius: 12px;
  width: 120px;
  height: 40px;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 2px 0px #909090;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #909090;
}
.apply_section .apply_container .form .card_2 .btn_wrapper .disable {
  pointer-events: none;
}
.apply_section .apply_container .navigator {
  position: absolute;
  left: 0;
  top: 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}
.apply_section .apply_container .navigator .line {
  top: 18px;
  height: 1px;
  width: 30%;
  background: #A6A6A6;
  margin-left: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.apply_section .apply_container .navigator .wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.apply_section .apply_container .navigator .wrapper .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid #A6A6A6;
}
.apply_section .apply_container .navigator .wrapper .active {
  background: #DDA82C;
  border: none;
}
.apply_section .apply_container .navigator .wrapper .textt {
  font-size: 0.8rem;
  font-weight: 500;
  color: #A6A6A6;
}

/* small devices (phones,  360px and up) max-width: 600;  */
@media only screen and (min-width: 360px) {
  .alert {
    max-width: 600px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 48px;
  }
  .alert .message_box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .apply_section {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 48px;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
    position: relative;
    padding-top: 160px;
  }
  .apply_section .apply_container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 100%;
    height: 860px;
  }
  .apply_section .apply_container .form input {
    font-family: "Poppins", sans-serif;
  }
  .apply_section .apply_container .form .card_1 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    backface-visibility: hidden;
    position: absolute;
  }
  .apply_section .apply_container .form .card_1 .welcome {
    font-size: 1.2rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_1 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_1 .p2 {
    margin-top: 18px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .apply_section .apply_container .form .card_1 .last_name .a {
    width: 70%;
  }
  .apply_section .apply_container .form .card_1 .last_name .b {
    width: 20%;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper {
    display: flex;
    flex-direction: column;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .contact_number .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
    text-align: center;
    font-size: 1rem;
    height: 38px;
    position: absolute;
    width: 45px;
    outline: none;
    border: none;
    border-right: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
    padding-left: 53px;
  }
  .apply_section .apply_container .form .card_1 .next {
    background: #4F0C16;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    cursor: pointer;
    margin-top: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container .form .card_1 .next .next_span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    position: absolute;
  }
  .apply_section .apply_container .form .card_2 .welcome {
    font-size: 1.2rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_2 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back {
    border: 2px solid #A6A6A6;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
    transform: translate(-2px, -2px);
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit {
    background: #4F0C16;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .navigator {
    position: absolute;
    left: 0;
    top: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .apply_section .apply_container .navigator .line {
    top: 18px;
    height: 1px;
    width: 30%;
    background: #A6A6A6;
    margin-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .apply_section .apply_container .navigator .wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .apply_section .apply_container .navigator .wrapper .dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #A6A6A6;
  }
  .apply_section .apply_container .navigator .wrapper .active {
    background: #DDA82C;
    border: none;
  }
  .apply_section .apply_container .navigator .wrapper .textt {
    font-size: 0.8rem;
    font-weight: 500;
    color: #A6A6A6;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) max-width: 768px;  */
@media only screen and (min-width: 600px) {
  .alert {
    max-width: 768px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 48px;
  }
  .alert .message_box {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .apply_section {
    max-width: 768px;
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 48px;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
    position: relative;
    padding-top: 160px;
  }
  .apply_section .apply_container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 100%;
    height: 840px;
  }
  .apply_section .apply_container .form input {
    font-family: "Poppins", sans-serif;
  }
  .apply_section .apply_container .form .card_1 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    backface-visibility: hidden;
    position: absolute;
  }
  .apply_section .apply_container .form .card_1 .welcome {
    font-size: 1.2rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_1 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_1 .p2 {
    margin-top: 18px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .apply_section .apply_container .form .card_1 .last_name .a {
    width: 70%;
  }
  .apply_section .apply_container .form .card_1 .last_name .b {
    width: 20%;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper {
    display: flex;
    flex-direction: column;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .contact_number .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
    text-align: center;
    font-size: 1rem;
    height: 38px;
    position: absolute;
    width: 45px;
    outline: none;
    border: none;
    border-right: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
    padding-left: 53px;
  }
  .apply_section .apply_container .form .card_1 .next {
    background: #4F0C16;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    cursor: pointer;
    margin-top: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container .form .card_1 .next .next_span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    position: absolute;
  }
  .apply_section .apply_container .form .card_2 .welcome {
    font-size: 1.2rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_2 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back {
    border: 2px solid #A6A6A6;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
    transform: translate(-2px, -2px);
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit {
    background: #4F0C16;
    border-radius: 12px;
    width: 120px;
    height: 40px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .navigator {
    position: absolute;
    left: 0;
    top: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .apply_section .apply_container .navigator .line {
    top: 18px;
    height: 1px;
    width: 40%;
    background: #A6A6A6;
    margin-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .apply_section .apply_container .navigator .wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .apply_section .apply_container .navigator .wrapper .dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #A6A6A6;
  }
  .apply_section .apply_container .navigator .wrapper .active {
    background: #DDA82C;
    border: none;
  }
  .apply_section .apply_container .navigator .wrapper .textt {
    font-size: 0.8rem;
    font-weight: 500;
    color: #A6A6A6;
  }
}
/* Medium devices (landscape tablets, 768px and up) max-width: 992px;  */
@media only screen and (min-width: 768px) {
  .alert {
    max-width: 992px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 48px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .apply_section {
    max-width: 992px;
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 48px;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 82px 0;
    position: relative;
  }
  .apply_section .apply_container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 400px;
    height: 880px;
  }
  .apply_section .apply_container .form input {
    font-family: "Poppins", sans-serif;
  }
  .apply_section .apply_container .form .card_1 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    position: absolute;
  }
  .apply_section .apply_container .form .card_1 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_1 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_1 .p2 {
    margin-top: 18px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .apply_section .apply_container .form .card_1 .last_name .a {
    width: 80%;
  }
  .apply_section .apply_container .form .card_1 .last_name .b {
    width: 20%;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper {
    display: flex;
    flex-direction: column;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .contact_number .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
    text-align: center;
    font-size: 1rem;
    height: 38px;
    position: absolute;
    width: 45px;
    outline: none;
    border: none;
    border-right: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
    padding-left: 53px;
  }
  .apply_section .apply_container .form .card_1 .next {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    cursor: pointer;
    margin-top: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container .form .card_1 .next .next_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    position: absolute;
  }
  .apply_section .apply_container .form .card_2 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_2 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back {
    border: 2px solid #A6A6A6;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
    transform: translate(-2px, -2px);
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .navigator {
    position: absolute;
    left: 0;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
  }
  .apply_section .apply_container .navigator .line {
    position: relative;
    height: 50px;
    width: 1px;
    background: #A6A6A6;
    margin-left: 25px;
    left: 0;
    transform: translateX(0);
    top: 0;
  }
  .apply_section .apply_container .navigator .wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .apply_section .apply_container .navigator .wrapper .dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #A6A6A6;
  }
  .apply_section .apply_container .navigator .wrapper .active {
    background: #DDA82C;
    border: none;
  }
  .apply_section .apply_container .navigator .wrapper .textt {
    font-size: 1rem;
    font-weight: 500;
    color: #A6A6A6;
  }
}
/* Large devices (laptops/desktops, 992px and up) max-width: 1200px;  */
@media only screen and (min-width: 992px) {
  .alert {
    max-width: 1200px;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 80px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .apply_section {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 82px 0;
    position: relative;
  }
  .apply_section .apply_container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 440px;
    height: 880px;
  }
  .apply_section .apply_container .form input {
    font-family: "Poppins", sans-serif;
  }
  .apply_section .apply_container .form .card_1 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    position: absolute;
  }
  .apply_section .apply_container .form .card_1 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_1 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_1 .p2 {
    margin-top: 18px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .apply_section .apply_container .form .card_1 .last_name .a {
    width: 80%;
  }
  .apply_section .apply_container .form .card_1 .last_name .b {
    width: 20%;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper {
    display: flex;
    flex-direction: column;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .contact_number .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
    text-align: center;
    font-size: 1rem;
    height: 38px;
    position: absolute;
    width: 45px;
    outline: none;
    border: none;
    border-right: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
    padding-left: 53px;
  }
  .apply_section .apply_container .form .card_1 .next {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    cursor: pointer;
    margin-top: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container .form .card_1 .next .next_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    position: absolute;
  }
  .apply_section .apply_container .form .card_2 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_2 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back {
    border: 2px solid #A6A6A6;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
    transform: translate(-2px, -2px);
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .navigator {
    position: absolute;
    left: 0;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
  }
  .apply_section .apply_container .navigator .line {
    position: relative;
    height: 50px;
    width: 1px;
    background: #A6A6A6;
    margin-left: 25px;
    left: 0;
    transform: translateX(0);
    top: 0;
  }
  .apply_section .apply_container .navigator .wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .apply_section .apply_container .navigator .wrapper .dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #A6A6A6;
  }
  .apply_section .apply_container .navigator .wrapper .active {
    background: #DDA82C;
    border: none;
  }
  .apply_section .apply_container .navigator .wrapper .textt {
    font-size: 1rem;
    font-weight: 500;
    color: #A6A6A6;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) max-width: 100%;  */
@media only screen and (min-width: 1200px) {
  .alert {
    max-width: 100%;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    z-index: 999;
    padding-top: 80px;
  }
  .alert .message_box {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 64px 0;
  }
  .alert .message_box .check {
    margin-bottom: 32px;
    height: 64px;
    width: 64px;
  }
  .alert .message_box .ms {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .alert .message_box .message {
    font-size: 1rem;
    text-align: center;
    width: 80%;
  }
  .alert .message_box .ok_btn {
    margin-top: 32px;
    width: 140px;
    height: 40px;
    background: #4F0C16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    box-shadow: 4px 4px 0px #909090;
  }
  .alert .message_box .ok_btn span {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .alert .message_box .ok_btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #909090;
  }
  .alert_show {
    display: flex;
  }
  .apply_section {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container {
    width: 1180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 82px 0;
    position: relative;
  }
  .apply_section .apply_container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 600px;
    height: 850px;
  }
  .apply_section .apply_container .form input {
    font-family: "Poppins", sans-serif;
  }
  .apply_section .apply_container .form .card_1 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    position: absolute;
  }
  .apply_section .apply_container .form .card_1 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_1 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_1 .p2 {
    margin-top: 18px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .apply_section .apply_container .form .card_1 .last_name .a {
    width: 80%;
  }
  .apply_section .apply_container .form .card_1 .last_name .b {
    width: 20%;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper {
    display: flex;
    flex-direction: column;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .apply_section .apply_container .form .card_1 .last_name .input_wrapper .inp {
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_1 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .apply_section .apply_container .form .card_1 .contact_number .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .num {
    text-align: center;
    font-size: 1rem;
    height: 38px;
    position: absolute;
    width: 45px;
    outline: none;
    border: none;
    border-right: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_1 .contact_number .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
    padding-left: 53px;
  }
  .apply_section .apply_container .form .card_1 .next {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    cursor: pointer;
    margin-top: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply_section .apply_container .form .card_1 .next .next_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_1 .next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    position: absolute;
  }
  .apply_section .apply_container .form .card_2 .welcome {
    font-size: 1.5rem;
    color: #4F0C16;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .line {
    width: 100%;
    height: 1px;
    background: #A6A6A6;
    margin: 32px 0;
  }
  .apply_section .apply_container .form .card_2 .p {
    width: 100%;
    font-size: 1rem;
    color: #4F0C16;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .lbl {
    font-size: 0.8rem;
    margin-bottom: 8px;
    align-self: start;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .inp {
    width: 100%;
    font-size: 1rem;
    height: 38px;
    outline: none;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
    z-index: 1;
  }
  .apply_section .apply_container .form .card_2 .date_of_birth .input_wrapper .date_svg {
    position: absolute;
    right: 0;
    height: 38px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A6A6A6;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back {
    border: 2px solid #A6A6A6;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back .back_span {
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .back:hover {
    transform: translate(-2px, -2px);
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit {
    background: #4F0C16;
    border-radius: 12px;
    width: 200px;
    height: 48px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 2px 0px #909090;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit .submit_span {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #909090;
  }
  .apply_section .apply_container .form .card_2 .btn_wrapper .disable {
    pointer-events: none;
  }
  .apply_section .apply_container .navigator {
    position: absolute;
    left: 0;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
  }
  .apply_section .apply_container .navigator .line {
    position: relative;
    height: 50px;
    width: 1px;
    background: #A6A6A6;
    margin-left: 25px;
    left: 0;
    transform: translateX(0);
    top: 0;
  }
  .apply_section .apply_container .navigator .wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .apply_section .apply_container .navigator .wrapper .dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #A6A6A6;
  }
  .apply_section .apply_container .navigator .wrapper .active {
    background: #DDA82C;
    border: none;
  }
  .apply_section .apply_container .navigator .wrapper .textt {
    font-size: 1rem;
    font-weight: 500;
    color: #A6A6A6;
  }
}/*# sourceMappingURL=apply.css.map */