.contact-header .navbar-container {
  position: initial;
}

.form-contact-container {
  max-width: 75%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #FAFAFA;
  box-shadow: 1px 1px 6px 2px #0001;
}

.form-contact-all-container {
  max-width: 740px;
}

.form-contact-container h2 {
  font-size: 26px;
  width: 100%;
  margin: 0;
  padding: 10px;
  color: black;
  background: #eee;
  box-sizing: border-box;
  border-radius: 4px 4px 0 0;
}

.form-contact-container form {
  padding: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  max-width: 400px;
}


.form-group label, .form-group-big label{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 3px;
}

.form-group input, .form-group select {
  height: 26px;
  font-size: 16px;
  padding-left: 10px;
}

.form-group-big {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  max-width: 700px;
}

.form-group-big textarea {
  padding: 10px;
  font-size: 16px;
  font-family: Roboto;
}

.form-errors {
  text-align: center;
  color: orangered;
}
.form-but {
  width: 100px;
  margin-left: 100%;
  transform: translateX(-100%);
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 640px;
}
.form-contact-all-container .contact-body {
  grid-template-columns: 1fr;
}
.contact-body-img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-align: right;
  border-radius: 0 0 4px 0;
}

.contact-body-img img {
  height: 100%;
  border-radius: 0 0 4px 0;
}

.contact-pro-body .contact-body-img {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}

.contact-pro-body .contact-body-img img {
  height: 340px;
}

.contact-pro-body .contact-body-img p {
  padding: 20px;
  text-align: center;
}


@media screen and (max-width: 1000px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-body-img {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .form-contact-container {
    max-width: 90%;
  }
}
