.contactInput::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: black;
  opacity: 1;
  font-size: 1.5rem;
}

.contactInput:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: black;
  opacity: 1;
  font-size: 1.5rem;
}

.contactInput::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: black;
  opacity: 1;
  font-size: 1.5rem;
}

.contactInput:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
  opacity: 1;
  font-size: 1.5rem;
}

.contactInput::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
  opacity: 1;
  font-size: 1.5rem;
}

.titleContainer {
  width: 90%;
  margin: 70px auto 40px;
  text-transform: uppercase;
  display: flex;
  max-width: 1400px;
  align-items: center;
  justify-content: space-between;
}
.contactTitle {
  text-align: center;
  color: #4da034;
  font-style: italic;
  font-size: 2.6rem;
  line-height: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 7rem 0 4.5rem;
}

.contactContainer {
  width: 90%;
  margin: 0 auto 7rem;
  display: flex;
  max-width: 1400px;
}
.informationContainer {
  width: 40%;
}
.contactFormContainer {
  width: 60%;
  display: flex;
  margin: auto;
}
.contactDiv {
  width: 90%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.info {
  color: #000000;
  font-size: 14px;
  width: 85%;
  margin: 0 auto 15px;
  line-height: 20px;
}
.inputContainer {
  height: 4.3rem;
  width: calc(50% - 1rem);
  float: left;
  margin-bottom: 2rem;
  box-sizing: border-box;
  display: block;
  border-radius: 2rem;
  background-color: #f9f9f9;
}
.contactInput {
  width: 100%;
  border: none;
  padding: 0px;
  margin: 0px;
  color: #000000;
  font-size: 1.5rem;
  line-height: 3.5rem;
  height: 100%;
  background: transparent;
  border-radius: 2rem;
  text-indent: 1.5rem;
}

.inputContainer.textAreaContainer {
  width: 100%;
  margin-bottom: 2.5rem;
  height: 16rem;
}
.btnContainer {
  width: 100%;
}
.sendContact {
  text-align: center;
  margin: auto;
  font-size: 1.6rem;
  width: 17rem;
  line-height: 3.7rem;
  font-weight: 600;
  height: 3.7rem;
  color: #ffffff;
  background-color: #4da034;
  letter-spacing: 0px;
}
.sendContact:hover {
  background-color: #4da034;
}
.contact_message {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
  box-sizing: border-box;
}
.titleCircle {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: url(../../files/bannerContactM.png);
  }
  .contactContainer {
    flex-direction: column;
    width: 85%;
    margin-top: 4rem;
  }
  .informationContainer {
    width: 100%;
    margin-bottom: 25px;
  }
  .info {
    width: 100%;
  }
  .contactFormContainer {
    width: 100%;
  }
  .contactDiv {
    width: 100%;
    flex-direction: column;
    max-width: 45rem;
  }
  .inputContainer {
    width: 100%;
  }
  .inputContainer.textAreaContainer {
    width: 100%;
    height: 134px;
  }
  .sendContact {
    font-size: 14px;
    width: 170px;
    line-height: 35px;
    height: 35px;
  }
  .titleContainer {
    margin: 30px auto 25px;
    width: 85%;
  }
  .contactTitle {
    position: absolute;
    margin: 0rem 0 2rem 5%;
    z-index: 1;
    bottom: 0;
    color: #ffffff;
  }
}
