.module1 {
  width: 100%;
  padding: 80px 5%;
  margin-top: 60px;
  background: var(--bg-gradient);
  text-align: center;
}
.module1 h1 {
  font-size: var(--font-size1);
  color: var(--white);
}
.module1 p {
  font-size: 16px;
  color: var(--para-color);
  margin-block: 24px 32px;
}
.module1 button {
  background: var(--btn-gradient);
  color: var(--white);
  font-size: var(--font-size4);
  font-weight: var(--font-semibold);
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.module2 {
  width: 100%;
  padding: 32px 5%;
}
.module2_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.img_wrapper {
  width: 50%;
  text-align: center;
}
.img_wrapper img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
.text_wrapper {
  width: 50%;
}
.text_wrapper span {
  font-size: 32px;
  font-weight: var(--font-semibold);
  text-transform: capitalize;
  color: #000;
}
.text_wrapper h3 {
  font-size: 20px;
  font-weight: var(--font-semibold);
  margin-top: 8px;
}
.text_wrapper p {
  color: var(--para-color);
  font-size: 14px;
  margin-top: 16px;
}
.module3 {
  width: 100%;
  padding: 32px 5%;
  text-align: center;
}
.module3 h1 {
  font-size: var(--font-size2);
}
.grid_container {
  width: 100%;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 auto;
  margin-top: 48px;
}
.grid_card {
  width: 100%;
  text-align: left;
}
.grid_card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.grid_card h3 {
  font-size: 20px;
  font-weight: var(--font-semibold);
}
.grid_card p {
  font-size: 14px;
  color: var(--para-color);
  margin-top: 16px;
}
.module4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 64px 5%;
  max-width: 1600px;
  margin: 0 auto;
}
.module4_left {
  width: 50%;
  height: 100%;
}
.form_wrapper {
  width: 100%;
  height: 100%;
  gap: 20px;
}
.form_wrapper h1 {
  font-size: var(--font-size2);
  font-weight: var(--font-medium);
}
form {
  margin-top: 32px;
}
form label span {
  color: red;
}
.form_wrapper form input {
  width: 65%;
  display: block;
  margin: 4px 0 24px 0;
  padding: 14px 24px;
  border-radius: 5px;
  border: 1px solid var(--para-color);
}
.form_wrapper form input:focus {
  outline: 1px solid #10528b;
}
.form_wrapper form input:nth-child(7) {
  border: none;
  background: var(--btn-gradient);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}
.module4_right {
  width: 50%;
  height: 100%;
  padding-left: 5%;
}
.module4_right .office {
  width: 100%;
}
.office h3 {
  font-size: var(--font-size4);
  color: var(--para-color);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
}
.office p {
  margin: 16px 0 0 0;
}
.office a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
@media screen and (max-width: 768px) {
  .module1 h1 {
    font-size: var(--font-size2);
  }
  .form_wrapper form input {
    width: 85%;
  }
  .module4_right {
    padding: 0;
  }
  .module4_right .office {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .module1 {
    text-align: left;
  }
  .module1 h1 {
    font-size: 40px;
  }
  .module1 p {
    font-size: var(--font-size5);
  }
  .module3 h1 {
    font-size: var(--font-size3);
  }
  .grid_container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .box {
    flex-direction: column;
  }
  .img_wrapper {
    width: 100%;
  }
  .text_wrapper {
    width: 100%;
  }
  .module4 {
    flex-direction: column;
    gap: 48px;
    padding: 32px 5%;
  }
  .module4_left,
  .module4_right {
    width: 100%;
    padding: 0;
  }
  .module4_left {
    text-align: center;
  }
  .form_wrapper h1 {
    font-size: var(--font-size3);
  }
  form {
    text-align: left;
  }
  .form_wrapper form input {
    width: 100%;
  }
  .module4_right .office {
    width: 100%;
  }
}
