* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.hidden {
  display: none;
}

.wind {
  position: absolute;
  top: 25%;
  left: 50%;
  /* justify-content: center; */
  transform: translate(-50%, 50%);
  /* width: 50%; */
  background-color: white;
  padding: 6rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* .wind h3 {
  padding-top: 10px;
} */

.correct {
  width: 80%;
  height: 80%;
  padding-left: 30px;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}

.window_close {
  position: absolute;
  top: 0.1rem;
  right: 1.6rem;
  font-size: 3rem;
  color: black;
  cursor: pointer;
  border: none;
  background: none;
}

#nav-bg {
  background-color: #18264f;
  box-shadow: 0px 31px 77px -14px rgba(0, 0, 0, 0.41);
}

#img {
  background-image: url(img/Backgroundimg.jpg);
  background-size: cover;
  margin-top: 3.9%;
}

#requist {
  background-color: #18264f;

  padding: 8%;
  border-radius: 5%;
}
@font-face {
  font-family: "MyCustomFont";
  src: url("Fonts/RTL-Saudi-Bold.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MyCustomFont2";
  src: url("Fonts/Lalezar-Regular.ttf") format("woff");
  font-weight: lighter;
  font-style: normal;
}

#Text-1-S2 {
  color: #ffaa00;
  font-family: "MyCustomFont";
}

#Text-1-Nav {
  color: #18264f;
  font-family: "MyCustomFont";
}

#Text-1-Footer {
  color: #ffaa00;
  font-family: "MyCustomFont";
}

h6 {
  margin: 0px;
}

.title {
  font-family: "MyCustomFont";
}

#Section-2 {
  background-color: #18264f;
}

#Section-3 {
  background-color: #18264f;
}

#Section-Footer {
  background-color: #18264f;
  box-shadow: 0px -32px 77px -14px rgba(0, 0, 0, 0.41);
}

#Section-Copyright {
  background-color: #ffaa00;
}

/*  form style */

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 450px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
textarea {
  height: 130px;
  resize: none;
}

.title {
  font-size: 28px;
  color: #ffaa00;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #ffaa00;
}

.title::before {
  width: 18px;
  height: 18px;
  background-color: #ffaa00;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message,
.signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.signin {
  text-align: center;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  direction: rtl;
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  direction: rtl;
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  direction: rtl;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  top: 30px;
  direction: rtl;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  direction: rtl;
  color: #ffaa00;
}

.submit {
  border: none;
  outline: none;
  background-color: #ffaa00;
  padding: 10px;
  border-radius: 10px;
  color: #18264f;
  font-family: "MyCustomFont2";
  font-size: 20px;
  transform: 0.3s ease;
  transition-duration: 200ms;
}

.submit:hover {
  background-color: #e19600;
  transition-duration: 200ms;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

.radio-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-inputs > * {
  margin-left: 12px;
}

.radio-input:checked + .radio-tile {
  border-color: #ffaa00;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #ffaa00;
}

.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #ffaa00;
  border-color: #ffaa00;
}

.radio-input:checked + .radio-tile .radio-icon svg {
  stroke: #ffaa00;
  fill: #ffaa00;
}

.radio-input:checked + .radio-tile .radio-label {
  color: #ffaa00;
}

.radio-input:focus + .radio-tile {
  border-color: #ffaa00;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #ffefd0;
}

.radio-input:focus + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 80px;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}

.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.radio-tile:hover {
  border-color: #2260ff;
}

.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon svg {
  width: 2rem;
  height: 2rem;
  fill: #494949;
  stroke: #494949;
}

.radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 13px;
}

.radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#Image-S2 {
  transition-duration: 400ms;
}

#Image-S2:hover {
  box-shadow: 0px 0px 44px -20px rgba(255, 255, 255, 1);
  transition-duration: 400ms;
  scale: 105%;
}

#Icon-S3 {
  transition-duration: 400ms;
}

#Icon-S3:hover {
  transition-duration: 400ms;
  box-shadow: 0px 0px 44px -20px #ffaa00;
  scale: 110%;
}

#scrollBtn {
  font-weight: 900;

  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffaa00;
  color: white;
  cursor: pointer;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 16px;
  width: 65px;
  border-radius: 50%;
  font-size: 25px;
  transition-duration: 400ms;
}

#scrollBtn:hover {
  transition-duration: 400ms;
  background-color: #6c4800;
}

#Contact-P {
  transition-duration: 400ms;
}

#Contact-P:hover {
  transition-duration: 400ms;
}

#Contact-E {
  transition-duration: 400ms;
}

#Contact-E:hover {
  transition-duration: 400ms;
}

#Btn-color {
  background-color: #18264f;
}

#PopUp {
  opacity: 0;
  right: 23%;
  top: 40%;
  visibility: hidden;
  transition-duration: 400ms;
  position: absolute;
}

#PopUp.display {
  opacity: 1;
  right: 10%;
  top: 40%;
  visibility: visible;
  transition-duration: 400ms;
}

/* Responsive PopUp */
@media screen and (max-width: 575px) {
  #PopUp {
    opacity: 0;
    right: 14%;
    top: 80%;
    visibility: hidden;
    transition-duration: 400ms;
    position: absolute;
  }

  #PopUp.display {
    opacity: 1;
    right: 14%;
    top: 80%;
    visibility: visible;
    transition-duration: 400ms;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  #PopUp {
    opacity: 0;
    right: 31%;
    top: 80%;
    visibility: hidden;
    transition-duration: 400ms;
    position: absolute;
  }

  #PopUp.display {
    opacity: 1;
    right: 31%;
    top: 80%;
    visibility: visible;
    transition-duration: 400ms;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  #PopUp {
    opacity: 0;
    right: 35.5%;
    top: 80%;
    visibility: hidden;
    transition-duration: 400ms;
    position: absolute;
  }

  #PopUp.display {
    opacity: 1;
    right: 35.5%;
    top: 80%;
    visibility: visible;
    transition-duration: 400ms;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  #PopUp {
    opacity: 0;
    right: 15.5%;
    top: 40%;
    visibility: hidden;
    transition-duration: 400ms;
    position: absolute;
  }

  #PopUp.display {
    opacity: 1;
    right: 15.5%;
    top: 40%;
    visibility: visible;
    transition-duration: 400ms;
  }
}
