.contact-section {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: url('../images/contact-bg.png') no-repeat rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
}

.form-container {
  min-height: calc(100vh - 220px);
  height: 100%;
}

.map-section {
  width: 100%;
  height: calc(100vh - 220px);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  padding: 50px;
  border: 0;
}

.contact-form {
  width: 100%;
  height: calc(100vh - 220px);
}

.contact-form form {
  width: 100%;
  height: 100%;
  padding: 50px;
}

.contact-form form .form-group,
.contact-form form .message-area {
  width: 100%;
}

.contact-form form .form-group input {
  width: 100%;
  height: 40px;
  font-size: 16px;
  color: #212529;
  border: 0;
  border-radius: 0;
}

.contact-form form .form-group textarea {
  width: 100%;
  font-size: 16px;
  color: #212529;
  border: 0;
  border-radius: 0;
}

.contact-form form button {
  display: flex;
  float: right;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  background: #ff0000;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.7);
  border-radius: 0;
  outline: none;
}

.contact-form form button:hover {
  background: #be0808;
  color: #fff;
  transform: scale(1.05);
}

.contact-form form button:focus {
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.7);
}

.iframe-form {
  display: none;
}

@media screen and (max-width: 1024px) {
  .contact-section {
    width: 100vw;
    height: 100%;
  }

  .map-section iframe {
    padding: 25px 3%;
  }
  
  .contact-form {
    height: 100%;
    padding: 0 0 100px 0;
  }
  
  .contact-form form {
    padding: 25px 3%;
  }
  
  .contact-form form button {
    width: 100%;
  }
}

@media screen and (max-height: 720px) {
  .form-container {
    padding-bottom: 50px;
  }
}
