main {
  background: url("../img/contact.jpeg");
  background-position: center;
  background-size: cover;
}
main > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 350px;
  justify-content: center;
}
main > div h1 {
  font-family: "MullerExtrabold";
  font-size: 50px;
}
main > div p {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-family: "MullerReg";
  color: #2d4a8a;
}

/* contact_area */
.contact_area {
  position: relative;
}
.contact_area::after {
  width: 55vw;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #f7f9fe;
  content: "";
  z-index: -1;
}
.contact_area > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact_area > div .left_area,
.form_wrapper {
  padding: 9rem 0rem;
}
.contact_area > div .left_area h2,
.form_wrapper h2 {
  color: #2d4a8a;
  font-family: "MullerReg";
  font-size: 17px;
}
.contact_area > div .left_area h1,
.form_wrapper h1 {
  font-family: "MullerBold";
}

.contact_area > div .left_area > h1,
.form_wrapper h1 {
  font-size: 35px;
  margin-top: 10px;
  transform: translateX(-3px);
}
.contact_area > div ul {
  margin-top: 2rem;
}
.contact_area > div ul li {
  display: flex;
  align-items: center;
}
.contact_area > div ul > * + * {
  margin-top: 2rem;
}
.contact_area > div ul li .img_wrapper {
  min-width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background-color: #2d4a8a;
  margin-right: 1rem;
}
.contact_area > div ul li .img_wrapper i {
  font-size: 22px;
}
.contact_area > div ul li h1 {
  font-family: "MullerMedium";
  font-size: 20px;
  margin-bottom: 0.3rem;
}
.contact_area > div ul li p {
  font-family: "MullerReg";
  font-size: 15px;
  color: #6e6e6e;
}
.form_wrapper .input_grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.form_wrapper .input_grid input,
.form_wrapper .input_grid textarea {
  border: none;
  outline: none;
  padding: 0rem 1rem;
  color: #000;
  background-color: #fff;
  height: 50px;
  width: 100%;
  font-family: "MullerReg";
  font-size: 16px;
}
.form_wrapper .input_grid textarea {
  grid-column: span 2;
  height: 150px;
  resize: none;
  padding: 1rem;
}
.form_wrapper button {
  background-color: #2d4a8a;
  width: 150px;
  height: 50px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: "MullerReg";
  cursor: pointer;
}
.map_wrapper {
  background-color: #2d4a8ae1;
}
.map_wrapper iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1200px) {
  .contact_area > div {
    grid-template-columns: 1fr;
  }
  .contact_area::after {
    width: 100%;
    bottom: 0px;
    height: 800px;
    top: unset;
  }
}
@media screen and (max-width: 550px) {
  main > div h1 {
    font-size: 35px;
  }
  .contact_area > div .left_area > h1,
  .form_wrapper h1 {
    font-size: 25px;
  }
}
