@import "colors.css";
@import url("https://fonts.googleapis.com/css?family=Play&display=swap");
@import url("https://fonts.googleapis.com/css?family=Almarai&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Galada&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "play";
  box-sizing: border-box;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  transition: background 0.8s, color 0.8s;
  font-family: "Amiri", "play", "Roboto", "Galada", sans-serif;
}

/* ------------------------ section-1 ---------------------------------------------------- */
.section-1 {
  position: relative;
  background-color: var(--background-color9);
  margin: 0px 0 30px 0;
  height: 400px;
  background-image: url(../image/cyber-3400789_640.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-1 .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  max-width: 100%;
}

.title-container {
  display: block;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title-container h1 {
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 5px;
  word-spacing: 5px;
  color: var(--title-color);
  margin-top: 80px;
  margin-bottom: 40px;
  overflow: hidden;
}

/* ------------------------ section-2 ---------------------------------------------------- */
.section-2 {
  height: 700px;
  position: relative;
  margin-bottom: 50px;
}

.section-2 .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: auto;
}

.section-2 .container .container-find-us {
  width: calc(50% - 200px);
}
.section-2 .container .Contact-Form-container {
  width: calc(50% - 200px);
}

.section-2 .container h2 {
  text-align: start;
  font-size: 25px;
  color: var(--title-color);
  padding-bottom: 20px;
}
.container-find-us span {
  display: block;
  color: var(--text-color);
  font-size: 16px;
  padding-bottom: 3px;
  padding-top: 15px;
}
.container-find-us p {
  display: block;
  color: var(--title-color);
  font-size: 20px;
  padding-bottom: 35px;
}

input[type="text1"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #04aa6d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* ------------------------- end -------------------------- */
@media only screen and (max-width: 767px) {
  /* ------------------------ section-1 ------------------------------- */
  .section-1 {
    margin: 0px 0 60px 0;
    height: 500px;
  }
  .section-1 .container {
    height: 100%;
    max-width: 100%;
  }
  .title-container {
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 1;
  }
  .title-container h1 {
    font-size: 60px;
    letter-spacing: 2px;
    word-spacing: 3px;
  }
  /* ------------------------ section-2 -------------------------------------- */
  .section-2 {
    height: auto;
  }
  .section-2 .container {
    flex-direction: column;
    align-items: center;
  }
  .section-2 .container h2 {
    text-align: center;
  }
  .section-2 .container .container-find-us,
  .section-2 .container .Contact-Form-container {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 20px;
  }
  .container-find-us span {
    font-size: 16px;
    text-align: center;
  }

  .container-find-us p {
    font-size: 24px;
    padding-bottom: 35px;
    text-align: center;
  }

  input[type="text1"],
  select,
  textarea {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
}
