.orbit-container {
  position: relative;
  width: 100%;
  height: auto;
  background-size: 0;
  display: flex;
  justify-content: center;
}

.middle-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10rem 0 10rem 0;
}
.menu.medium-horizontal .button-set-contact{
  margin: 0 15px 0 25px;
}

.middle-grid .grid-container {
  background-color: #b5b3e8dd;
  backdrop-filter: blur(0.50rem);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}     

.contactimg {
  width: 44.5rem;
  margin-left: 25px;
}

form {
  width: 25rem;
}
form .title {
  height: 1.5em;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  text-align: center;
  margin: 10px 0 10px 0;
}
form .form-control {
  background-color: #f2f6f8;
  border-radius: 2rem;
  border: none;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}
form .form-control.thick {
  padding: 0.5rem 3.5rem;
}
form .form-control:focus {
  background-color: #f2f6f8;
  border: none;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}
form .message .form-control {
  max-height: 50rem;
  padding: 0.5rem 1.8rem;
}
form ::placeholder {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #838788;
  position: relative;
  left: 0;
}
form input,
form textarea {
  font-family: 'Manrope', sans-serif;
  color: #212529;
  font-size: 1.1rem;
}
form #icon {
  color: #57565c;
  height: 3rem;
  position: absolute;
  left: 1.5rem;
  top: 0.7rem;
}

.btn.btn-primary {
  font-family: 'Manrope', sans-serif;
  color: white;
  font-weight: bold;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

@media screen and (max-width: 39.9375em) {
  .middle-grid{
    flex-direction: column;
    margin: 15rem 0 5rem 0;
  }
  .middle-grid .grid-container{
    width: 85%
  }
  .contactimg {
    display: none;
  }
}