@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Medium.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Book.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-SemiBold.ttf);
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "ExpoArabic", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: #F2CA2F;
  color: #fff;
}
*::selection {
  background-color: #F2CA2F;
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: #E0D4BE;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #E0D4BE;
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(226, 214, 193, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(1, 1, 1);
  }
  100% {
    transform: rotate(10deg) scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #16403B;
  --secondary-color: #DBFF04;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(17%) sepia(16%) saturate(1920%) hue-rotate(124deg) brightness(94%) contrast(85%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --secondary-filter: invert(84%) sepia(96%) saturate(1129%) hue-rotate(10deg) brightness(100%) contrast(104%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
  width: 180px;
  height: 50px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  border: 2px solid transparent;
  gap: 10px;
}
.custom-btn.primary-bk img {
  filter: var(--light-filter);
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-btn.primary-bk span {
  color: var(--light-color);
}
.custom-btn.primary-bk span::after {
  background-color: var(--primary-color);
}
.custom-btn.primary-bk span::before {
  background-color: var(--light-color);
}
.custom-btn.primary-bk:hover {
  border-color: var(--primary-color);
}
.custom-btn.primary-bk:hover img {
  filter: var(--primary-filter);
}
.custom-btn.primary-bk:hover span {
  color: var(--primary-color);
}
.custom-btn.secondary-bk span {
  color: var(--light-color);
}
.custom-btn.secondary-bk span::after {
  background-color: var(--secondary-color);
}
.custom-btn.secondary-bk span::before {
  background-color: var(--light-color);
}
.custom-btn.secondary-bk:hover {
  border-color: var(--secondary-color);
}
.custom-btn.secondary-bk:hover span {
  color: var(--secondary-color);
}
.custom-btn span {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  border-radius: 0px;
  align-content: center;
  justify-content: center;
  position: absolute;
  transform: translateX(0px) scale(1);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s linear;
}
.custom-btn span::after, .custom-btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0px;
  transition: all 0.3s linear;
}
.custom-btn span::after {
  transform: translateY(0px) scale(1);
}
.custom-btn span::before {
  transform: translateY(100%) scale(1);
}
.custom-btn:hover span::after {
  transform: translateY(-100%);
}
.custom-btn:hover span::before {
  transform: translateY(0%);
}
.custom-btn:hover::after, .custom-btn:hover::before {
  transform: translateX(0px) !important;
}

.navbar {
  width: 100%;
  padding: 10px 0px !important;
  background-color: var(--light-color);
  z-index: 99;
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .brand-name img {
  width: 100px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  animation: translateY 1s linear infinite alternate;
}
@media (max-width: 960px) {
  .navbar .contain .brand-name img {
    height: 80px !important;
  }
}

header {
  width: 100%;
  padding: 40px 0px !important;
  background-color: #07312E;
}
header img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 960px) {
  header img {
    height: 200px;
  }
}
header .heading {
  width: 100%;
  text-align: center;
}
header .heading h1 {
  font-size: 40px;
  font-weight: 900;
  margin: 15px;
  color: var(--light-color);
}
@media (max-width: 960px) {
  header .heading h1 {
    font-size: 25px;
  }
}
header .heading h1 span {
  font-size: 40px;
  font-weight: 900;
}
@media (max-width: 960px) {
  header .heading h1 span {
    font-size: 25px;
  }
}
header .heading h1 span.primary {
  color: var(--primary-color);
}
header .heading h1 span.secondary {
  color: var(--secondary-color);
}

.data-contain {
  width: 100%;
  padding: 50px 0px 10px;
  position: relative;
}
.data-contain .image-contain {
  width: 100%;
  height: 400px;
  animation: translateY 1s linear infinite alternate;
}
@media (max-width: 960px) {
  .data-contain .image-contain {
    height: 120px;
  }
  .data-contain .image-contain img {
    -o-object-position: left;
       object-position: left;
  }
}
.data-contain .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.data-contain p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 20px;
}
.data-contain p b {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}

.form-contain .form-group {
  width: 100%;
  margin-bottom: 16px;
}
.form-contain .form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--semi-dark);
  margin-bottom: 12px;
  display: block;
  opacity: 0.65;
}
.form-contain .form-group .form-control,
.form-contain .form-group .select2-container--default .select2-selection--multiple,
.form-contain .form-group .select2-container--default.select2-container--focus .select2-selection--multiple {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(18, 17, 39, 0.12);
  border-radius: 8px;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  padding: 0px 16px;
  text-align: start;
}
.form-contain .form-group .form-control.text-area,
.form-contain .form-group .select2-container--default .select2-selection--multiple.text-area,
.form-contain .form-group .select2-container--default.select2-container--focus .select2-selection--multiple.text-area {
  height: 110px;
  resize: none;
  padding: 16px;
}
.form-contain .form-group .form-control::-moz-placeholder, .form-contain .form-group .select2-container--default .select2-selection--multiple::-moz-placeholder, .form-contain .form-group .select2-container--default.select2-container--focus .select2-selection--multiple::-moz-placeholder {
  color: rgba(18, 17, 39, 0.12);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control::placeholder,
.form-contain .form-group .select2-container--default .select2-selection--multiple::placeholder,
.form-contain .form-group .select2-container--default.select2-container--focus .select2-selection--multiple::placeholder {
  color: rgba(18, 17, 39, 0.12);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control:hover,
.form-contain .form-group .select2-container--default .select2-selection--multiple:hover,
.form-contain .form-group .select2-container--default.select2-container--focus .select2-selection--multiple:hover {
  border-color: var(--primary-color);
}
.form-contain .form-group small {
  font-size: 12px;
  font-weight: 700;
  color: rgba(18, 31, 29, 0.4);
  display: block;
  margin-top: 8px;
}
.form-contain .form-group .form-icon {
  width: 100%;
  height: 52px;
  position: relative;
  z-index: 9;
}
.form-contain .form-group .form-icon img {
  width: 32px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 10px);
  left: 16px;
}
.form-contain .form-group .form-icon .form-control {
  padding-inline-start: 56px;
}
.form-contain .form-group .form-icons {
  width: 100%;
  height: 52px;
  position: relative;
  z-index: 9;
}
.form-contain .form-group .show-pass {
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  display: flex;
}
.form-contain .form-group .show-pass img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  opacity: 0.7;
}
.form-contain .form-group .show-pass img.slash-icon {
  display: none;
  transform: scale(0);
  transition: all 0.3s linear;
}
.form-contain .form-group .show-pass.active .slash-icon {
  display: block;
  transform: scale(1);
}
.form-contain .form-group .show-pass.active .icon {
  display: none;
}
.form-contain .form-group .upload-img {
  width: 100%;
  padding: 16px;
  border: 1px dashed var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 9;
  cursor: pointer;
  flex-wrap: wrap;
}
.form-contain .form-group .upload-img input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.form-contain .form-group .upload-img .upload-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
.form-contain .form-group .upload-img .upload-contain img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-contain .form-group .upload-img .upload-contain .upload-data {
  width: -moz-fit-content;
  width: fit-content;
}
.form-contain .form-group .upload-img .upload-contain .upload-data h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--semi-dark);
  margin-bottom: 10px;
}
.form-contain .form-group .upload-img .upload-contain .upload-data p {
  color: rgba(18, 31, 29, 0.45);
  font-size: 12px;
  font-weight: 500;
  margin: 0px;
}
.form-contain .form-group .show-pass {
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  display: flex;
}
.form-contain .form-group .show-pass img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
}
.form-contain .form-group .show-pass img.slash-icon {
  display: none;
  transform: scale(0);
  transition: all 0.3s linear;
}
.form-contain .form-group .show-pass.active .slash-icon {
  display: block;
  transform: scale(1);
}
.form-contain .form-group .show-pass.active .icon {
  display: none;
}
.form-contain .form-group .custom-input-contain {
  width: 100%;
  height: 84px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media (max-width: 960px) {
  .form-contain .form-group .custom-input-contain {
    height: 100px;
    margin-bottom: 16px;
  }
}
.form-contain .form-group .custom-input-contain .form-custom-select {
  width: 100%;
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
  text-align: center;
  border: 1px solid #D5D4DC;
  border-radius: 8px;
  position: relative;
  z-index: 9;
  gap: 10px;
}
.form-contain .form-group .custom-input-contain .form-custom-select:checked {
  border-color: var(--primary-color);
}
.form-contain .form-group .custom-input-contain .form-custom-select:checked img {
  filter: var(--primary-filter);
}
.form-contain .form-group .custom-input-contain .form-custom-select:checked span {
  color: var(--primary-color);
}
.form-contain .form-group .custom-input-contain .form-custom-select:checked .icon {
  border: 5px solid var(--primary-color) !important;
}
.form-contain .form-group .custom-input-contain .form-custom-select img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
}
.form-contain .form-group .custom-input-contain .form-custom-select .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ADB5BD;
  transition: all 0.3s linear;
}
.form-contain .form-group .custom-input-contain .form-custom-select span {
  color: rgba(18, 31, 29, 0.8);
  font-size: 14px;
  font-weight: 700;
}
.form-contain .form-group .custom-input-contain .custom-input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
  z-index: 9;
}
.form-contain .form-group .custom-input-contain .custom-input:checked + .form-custom-select {
  border-color: var(--primary-color);
}
.form-contain .form-group .custom-input-contain .custom-input:checked + .form-custom-select img {
  filter: var(--primary-filter);
}
.form-contain .form-group .custom-input-contain .custom-input:checked + .form-custom-select span {
  color: var(--primary-color);
}
.form-contain .custom-btn {
  width: 100%;
}
.form-contain .switch {
  position: relative;
  cursor: pointer;
}
.form-contain .switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  cursor: pointer;
}
.form-contain .switch input:checked ~ .check {
  background-color: var(--primary-color);
}
.form-contain .switch input:checked ~ .check::after {
  transform: translateX(0px);
}
.form-contain .switch input:checked ~ .check::before {
  transform: translateX(50px) !important;
}
.form-contain .switch .check {
  width: 42px;
  height: 24px;
  position: relative;
  display: block;
  background-color: var(--danger-color);
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in;
}
.form-contain .switch .check::after, .form-contain .switch .check::before {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  transition: all 0.5s ease-in;
  border-radius: 50%;
}
.form-contain .switch .check::before {
  background-color: var(--light-color);
  right: 0px;
}
.form-contain .switch .check::after {
  transform: translateX(-60px);
  background-color: var(--light-color);
  left: 0;
}
.form-contain .code_input .code-container input {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 8px;
  margin: 5px;
  border: 1px solid rgba(18, 17, 39, 0.12);
}
.form-contain .code_input .code-container input:hover {
  border-color: var(--secondary-color);
}
.form-contain strong {
  margin-inline-start: 10px;
  color: var(--primary-color);
}
.form-contain .underline {
  color: var(--primary-color);
  text-decoration: underline;
}
.form-contain .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
}
.form-contain .wrapper .radio-check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid #5b5b5b !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.form-contain .wrapper .radio-check.radio-circle {
  border-radius: 50%;
}
.form-contain .wrapper .radio-check.radio-circle::before {
  background: var(--primary-color);
  border-radius: 50%;
}
.form-contain .wrapper .radio-check.radio-circle::after {
  background-color: var(--light-color);
}
.form-contain .wrapper .radio-check::after, .form-contain .wrapper .radio-check::before {
  content: "";
  position: absolute;
  transition: all 0.2s linear;
}
.form-contain .wrapper .radio-check::before {
  background: url("../images/icons/check.svg") center/contain no-repeat;
  transform: scale(0);
  z-index: -1;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
}
.form-contain .wrapper .radio-check::after {
  width: 100%;
  height: 0px;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -2;
}
.form-contain .wrapper .radio-check:checked {
  border-color: var(--primary-color) !important;
}
.form-contain .wrapper .radio-check:checked::before {
  transform: scale(1);
}
.form-contain .wrapper .radio-check:checked::after {
  height: 100%;
}
.form-contain .wrapper .radio-title {
  width: calc(100% - 30px);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  word-spacing: 4px;
  cursor: pointer;
  margin-bottom: 0px !important;
  margin: 0px !important;
}
.form-contain .wrapper .radio-title .link {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */