.contact_form_wrapper {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 10px;
}
.contact_form_wrapper > *:first-child {
  background-color: #3e2092;
}
.main_heading {
  font-size: 50px;
  margin-bottom: 1rem !important;
}
.main_heading + p {
  color: #7e7fa3;
  font-size: 18px;
}
.contact_form_wrapper .left_side {
  background-color: #008c8c;
  padding: 3rem;
  border-radius: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact_form_wrapper .left_side::after {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #013737;
  content: "";
  position: absolute;
  right: -150px;
  bottom: -150px;
}
.contact_form_wrapper .left_side::before {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: #105b5b;
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.contact_form_wrapper .left_side h1 {
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_form_wrapper .left_side p {
  color: #ffff;
}

.contact_form_wrapper .right_side {
  background-color: #fff;
  padding: 3rem;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact_form_wrapper .right_side label {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 6px;
}
.contact_form_wrapper .right_side form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.contact_form_wrapper .right_side form > *:nth-child(3),
.contact_form_wrapper .right_side form > *:nth-child(4),
.contact_form_wrapper .right_side form > *:nth-child(5) {
  grid-column: span 2;
}
.contact_form_wrapper .right_side input {
  height: 50px;
  width: 100%;
  padding: 0rem 1rem;
  border-radius: 10px;
  outline: none;
  border: 1px solid #ddd;
}
.contact_form_wrapper .right_side .select_wrapper {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0rem 1rem;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form_wrapper .right_side .select_wrapper select {
  width: 100%;
  border: none;
  outline: none;
}
.contact_form_wrapper .right_side input:focus,
.contact_form_wrapper .right_side textarea:focus {
  border-color: #3e2092;
}
.contact_form_wrapper .right_side textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  resize: none;
}
.contact_form_wrapper .right_side .button_wrapper {
  display: flex;
  justify-content: flex-end;
}
.contact_form_wrapper .right_side .button_wrapper button {
  background-color: #008c8c;
  border: none;
  color: #fff;
  outline: none;
  width: 170px;
  height: 60px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .contact_form_wrapper {
    grid-template-columns: 1fr;
  }
  .contact_form_wrapper > *:first-child {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .contact_form_wrapper .right_side {
    padding: 3rem 2rem;
  }
  .contact_form_wrapper .right_side form {
    grid-gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .main_heading {
    font-size: 30px;
  }
  .main_heading + p {
    font-size: 15px;
  }
  .contact_form_wrapper .right_side label {
    font-size: 14px;
  }
  .contact_form_wrapper .right_side {
    padding: 2rem 1rem;
  }
  .contact_form_wrapper .right_side .button_wrapper button {
    height: 50px;
    width: 140px;
    font-size: 14px;
  }
  .contact_form_wrapper {
    margin-top: 2rem;
  }
}
