.contact_form_main {
  width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.social_icon_container {
  display: flex;
  gap: 30px;
  margin-top: 0;
  margin-bottom: 50px;
}

.social_icons {
  height: 50px;
  transition: .3s;
}

.social_icons:hover {
  scale: 1.3;
}

.contact-inputs {
  height: 30px;
  width: 400px;
  text-align: center;
  border: none;
  border-radius: 7px;
  outline: none;
  font-family: montserrat, arial;
  font-size: 16px;
  background-color: white;
}

.contact_form textarea {
  height: 190px;
}

.contact_form_main img {
  height: 80%;
}

input::placeholder,
textarea::placeholder {
  color: rgb(194, 194, 194); 
}

.contact_form_left {
  display: flex;
  justify-content: center;
}

.submit_button {
  background-color: white;
  color: #02205f;
}

.submit_button:hover {
  background-color: #02205f;
}

@media (max-width:1540px) {

  .contact_form_main {

  width: 900px;

}

}

@media (max-width:1030px) {
  .contact_form_main {
  width: 90vw;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
}

.contact_form_left {
  display: none;
}

.contact_form {
  margin-bottom: 40px;
}

.contact-inputs {
  width: 90vw;
  text-align: center;
}
}