/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@200;300;400;700&display=swap");
h1 {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 128px;
}

/* Main Style */
#input-form {
  display: flex;
  min-height: 100vh;
  align-items: start;
  justify-content: start;
  color: #303030;
}

/* Input Style */
.my-form {
  position: relative;
  width: 50%;
  margin: 0 32px;
  padding-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 0 300px -100px #161616;
}
.my-form p {
  position: relative;
  margin: 64px 32px;
}

label {
  position: absolute;
  font-size: 32px;
  bottom: 100%;
}

.input {
  background: #E0E0E0;
  width: 100%;
  height: 16px;
  padding: 16px 6px;
  border: none;
  border-bottom: solid 2px #000000;
  font-size: 18px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  color: #303030;
  transition: all 0.4s ease-in-out;
}
.input:focus, .input:valid {
  border-radius: 12px;
  border-bottom: solid 2px #000000;
}

.message {
  font-size: 16px;
  border: solid 2px #000000;
  border-radius: 12px;
  height: 200px;
}

/* Buttnos */
.buttons {
  position: relative;
  display: flex;
  justify-content: space-around;
}
.buttons .btn {
  border: none;
  background: #D1D1D1;
  width: 24%;
  height: 32px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 100%;
  color: #303030;
  transition: all 0.2s linear;
}
.buttons .btn:hover {
  transform: scale(1.2);
}

.offer {
  width: 50%;
  margin: 0 32px;
}
.offer .quality {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.offer .quality li {
  border-radius: 8px;
  box-shadow: 0 0 20px #D1D1D1;
  display: flex;
  margin-bottom: 10px;
  padding: 10px;
  justify-content: space-between;
  align-items: flex-end;
}
.offer .quality li div:nth-child(1) {
  flex-basis: 58%;
}
.offer .quality li div:nth-child(2) {
  flex-basis: 14%;
}
.offer .quality li div:nth-child(3) {
  flex-basis: 14%;
}
.offer .quality li div:nth-child(4) {
  flex-basis: 14%;
}
.offer .quality li:first-child {
  background: #000000;
  color: #FFFFFF;
}

@media only screen and (max-width: 1060px) {
  .my-form, .offer {
    margin: 0 8px;
  }
  label {
    font-size: 28px;
  }
  .input {
    padding: 6px;
  }
}
@media only screen and (max-width: 700px) {
  #input-form {
    flex-direction: column;
  }
  .my-form, .offer {
    width: calc(100% - 16px);
  }
  .offer {
    margin-bottom: 32px;
  }
}/*# sourceMappingURL=contactstyle.css.map */