.contact {
  display: flex;
  padding-bottom: 50px;
  background-image: url("../../assets/images/contact/bg.png");
  background-repeat: no-repeat;
}

.form-img-wrapper {
  flex: 1;

  text-align: center;
}
.form-details {
  flex: 1;
  box-sizing: border-box;
  padding: 0px 5%;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-img-wrapper img {
  border-radius: 48%;
  object-fit: contain;
  box-shadow: 0px 10px 10px grey;
}
.form-name {
  display: flex;
  justify-content: space-around;
  gap: 5px;
}

.form-details-wrapper textarea {
  min-height: 150px;
}
.form-details-wrapper input {
  color: #182d6c;
}
.form-details-wrapper button i {
  padding: 9px 15px;
  font-size: 17px;
  font-weight: 600;
}
.form-details-wrapper button {
  outline: none;

  color: #182d6c;

  float: right;
  cursor: pointer;
  margin: 7px auto;

  background-color: transparent;
  opacity: 0.8;
  border-radius: 8px;
  transition: 0.2s ease;
  border: 2px solid #182d6c;
}

.form-details-wrapper button:hover {
  background-color: #182d6c;
  border-radius: 5px;
  color: #fff;
}

.form-details-wrapper input,
textarea {
  outline: none;
  padding: 9px 15px;
  color: #182d6c;
  font-size: 17px;
  width: 100%;
  margin: 7px auto;
  font-weight: 600;
  background-color: transparent;
  opacity: 0.8;
  border-radius: 8px;
  border: 2px solid #182d6c;
}
#move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
@media screen and (max-width: 940px) {
  .contact {
    background-image: linear-gradient(#fff, #fff);
  }
}
@media screen and (max-width: 700px) {
  .main-info {
    margin-left: 0px !important;
  }

  .contact {
    flex-direction: column;
  }

  .form-img-wrapper img {
    width: 70%;
    margin-top: 40px;
  }
}
