.contact-container {
  background-color: #D8FFF3;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto;
}
.contact-info {
  padding: auto;
  display: grid;
  grid-template-columns: 400px 400px;
  grid-template-rows: auto;
  gap: 0 0;
  justify-content: center;
}

.contact-info h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.contact-info img {
  width: 400px;
  height: auto;
  grid-row: 1 / span 5;
  grid-column: 2;
}

.contact-link {
  color: black;
  text-decoration: none;
  font-size: 20px;
  height: 40px;
  margin-right: auto;
  padding: auto;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 15px;
  justify-content: left;
  transition-duration: .25s;
}
.contact-link:hover {
  color:#00422c;
}
.contact-link svg {
  fill: currentColor;
  height: 40px;
  width: 40px;
  text-decoration: none;
}
.contact-link span {
  height: 100%;
  margin-top: 5px;
  padding-right: 15px;
}

.contact-form form {
  display: grid;
  justify-content: center;
  grid-template-columns: 400px 400px;
  font-size: 20px;
  padding-bottom: 20px;
}
.contact-form h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  grid-column: 1 / span 2;
  text-align: center;
  margin: 40px 0 10px;
}
.form {
  width: 90%;
  padding: 10px 5%;
}
.form-input {
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  width: 90%;
  border: #4C301F solid 1px;
  transition-duration:.5s;
}
.form-input:focus {
  background-color: #fff8c7;
}
.form-message {
  grid-column: 1 / span 2;
  padding: 10px 2.5%;
}
.form-message > textarea {
  width: 100%;
  resize: none;
}
.form-submit button {
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  color: white;
  border:#4C301F solid 1px;
  border-radius: 10px;
  background-color: #006E4B;
  cursor: pointer;
  transition-duration: .3s;
}
.form-submit button:hover {
  color: #fff8c7;
  background-color: #00a16e;
}

.simms-img-2 {
  display: none;
}

footer {
  width: 100%;
  display:block;
  text-align: center;
  padding-left: 0;
}
footer h3 {
  color: white;
  font-size: 8vw;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 850px) {

  .contact-info {
    grid-template-columns: auto;
    gap: 15px 0;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .contact-info img {
    grid-row: 6;
    grid-column: 1;
    width: 100%;
  }

  .contact-link {
    width: 90%;
    margin: auto;
  }

  .contact-form form {
    grid-template-columns: auto;
    width: 92%;
    justify-content: center;
    margin: auto;
    padding: 0 5%;
  }
  .contact-form h3 {
    grid-column: 1;
  }
  .form {
    width: 100%;
    padding: 10px 0;
  }
  .form input {
    width: 50%;
  }
  .form-message {
    grid-column: 1;
    padding: 10px 0;
    width: 80%;
  }

}

@media only screen and (max-width: 550px) {
  .contact-info {
    max-width: 100%;
  }
  .contact-info h3 {
    width: 90%;
    padding: 0 20px;
    margin: 30px 0 10px;
  }
  .contact-link {
    width: 85%;
    margin: auto;
    font-size: 5vw;
    height: 10vw;
  }
  .contact-link svg {
    width: 10vw;
    height: 10vw;
  }

  .contact-form form {
    font-size: 4.5vw;
  }
  
  .contact-info img {
    display: none;
  }
  .simms-img-2 {
    display: flex;
    width: 100%;
    border-top:#4C301F solid 3px;
  }
}