/* Background Video Container */
.bg-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s all;
  z-index: -1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video-container::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 31, 91, 0.9);
}

.bg-video-container .bg-video {
  object-fit: cover;
  width: 100%;
  height: 100dvh;
}

/* Intro Video Container */
.intro-video {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  transition: 0.5s all;
  z-index: 10 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 31, 91, 1);
}

html.intro-video-active {
  overflow: hidden !important;
}

.intro-video.hide {
  transform: translateY(-100%);
}

.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-video__overlay .volume-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.intro-video__overlay .volume-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.play-icon-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s all;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  padding-bottom: 2rem;
  transition: 0.5s all;
  z-index: 10 !important;
  cursor: pointer;
}

.play-icon-container.hide {
  display: none;
}

.play-icon {
  position: fixed;
  top: 48%;
  left: 47.8%;
  width: fit-content;
  height: fit-content;
  text-align: center;
  background-color: var(--primary);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.play-icon.hide {
  display: none;
}

.play-icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  transition: all 0.3s;
}

.play-icon-container:hover .play-icon {
  transform: scale(1.05);
}

.intro-video__overlay .play-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.main-video-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transition: 0.5s all;
  height: 100dvh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  padding-bottom: 2rem;
  transition: 0.5s all;
  z-index: 10 !important;
}

.main-video-container.hide {
  transform: translateY(-100%);
}

.skip-intro-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  padding-top: 10rem;
}

.skip-intro-btn-wrapper:hover .bottom-line {
  display: block;
}

.skip-intro-btn {
  color: #fff;
  font-family: var(--en-regular-font)!important;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background-color: transparent;
  border: 0;
}

.skip-intro-btn-wrapper:hover .skip-intro-btn {
  cursor: pointer;
  width: auto;
  border-radius: 0px;
  padding: 5px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  padding-inline: 20px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  padding-block: 8px;
  transition: 0.3s;
  box-shadow: none;
}

.skip-intro-btn-wrapper:hover .skip-intro-btn:hover {
  /* background-color: #f05d69;
  border-color: #f05d69; */
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  transform: translateY(-1px);
}

.bottom-line {
  display: none;
  animation: fadein-translateup 250ms ease-in-out;
}

@media screen and (max-width: 991px) {
  .intro-video video {
    /* object-fit: contain; */
  }
  .skip-intro-btn-wrapper {
    padding: 0;
  }
  .skip-intro-btn {
    cursor: pointer;
    width: auto;
    border-radius: 0px;
    padding: 5px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    padding-inline: 20px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    padding-block: 8px;
    transition: 0.3s;
    box-shadow: none;
  }
  .skip-intro-btn-wrapper .bottom-line {
    display: none !important;
  }
  .play-icon {
    top: 45%;
    left: 45%;
  }

  .main-video-container {
    height: 100dvh;
    width: 100vw;
    padding: 3rem 0;
  }
}

@media screen and (max-width: 577px) {
  .play-icon {
    top: 48%;
    left: 40%;
  }
}

/* Form */
.form-container {
  transition: 0.5s all;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0;
  padding-bottom: 2rem;
  transition: 0.5s all;
  gap: 4rem;
}

.form-container .form-body {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form-body .form-image img {
  width: 527px;
  height: 527px;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.form-body h3 {
  color: #fff;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
}

.form-body h4 {
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
}

.form-body h5 {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.form-body .form-label,
.form-body .form-control::placeholder {
  color: rgba(255, 255, 255, 1) !important;
}

.form-body .form-control {
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 0.75px solid #fff !important;
  box-shadow: none !important;
  caret-color: #fff !important;
  position: relative !important;
  color: #fff !important;
  padding-left: 2px !important;
  font-family: var(--en-regular-font) !important;
}

html.ar .form-body .form-label {
  font-family: var(--en-regular-font) !important;
}

.form-body .form-floating.required::before {
  content: "*";
  position: absolute;
  top: 18px;
  right: 10px;
  color: var(--red);
  font-size: 16px;
}

html.ar .form-body .form-floating.required::before {
  right: auto;
  left: 18px;
}

html.ar .form-body .form-floating .form-label {
  left: auto;
  right: 0;
}

.form-body .submit-btn {
  border: 1px solid #fff;
  border-radius: 24px;
  background-color: transparent;
  transition: 0.3s;
  padding: 6px 24px;

  color: #fff;
  font-size: 18.95px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

html.ar .form-body .submit-btn {
  padding: 2px 24px;
}

.form-body .submit-btn:hover {
  background-color: #fff;
  color: var(--primary);
}

.form-description {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  padding-top: 1rem;
}

html.ar .form-description {
  font-weight: 400;
}

.form-description a {
  transition: border-color 0.3s;
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.form-description a:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (min-width: 992px) and (max-width: 1500px) {
  .form-body h3 {
    font-size: 48px;
  }
}

@media screen and (max-width: 991px) {
  .form-body h4 {
    font-size: 36px;
  }

  .form-body h3 {
    font-size: 60px;
  }

  .form-body h5 {
    font-size: 18px;
  }

  .form-body .form-image img {
    width: 100%;
    height: auto;
  }

  .form-body .submit-btn {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .form-body h4 {
    font-size: 36px;
  }

  .form-body h3 {
    font-size: 60px;
  }

  .form-body h5 {
    font-size: 18px;
  }

  .form-body .form-image img {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .form-body h4 {
    font-size: 24px;
  }

  .form-body h3 {
    font-size: 40px;
  }

  .form-body h5 {
    font-size: 16px;
  }
}
