/*MAIN*/
#main {
  width: 100vw;
}
#main .touchpoint {
  background-color: var(--dfdede-color);
  display: flex;
  justify-content: space-between;
  gap: 1.2em;
}
#main .contact {
  background-color: var(--white);
  padding: 2em 2.5em;
  border-radius: 0.5em;
}
#main .touchpoint:nth-child(2) {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  /* gap: 1.2em; */
}
#main .touchpoint .map img {
  width: 100%;
}
#main .touchpoint .contactForm h4 {
  color: var(--black);
}
#main .touchpoint .contactForm p {
  margin-bottom: 1.5em;
}
#main .touchpoint .contactForm form input {
  width: 100%;
  background-color: var(--white);
  outline: 0;
  border: none;
  padding: 1em 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2em;
}
#main .touchpoint .contactForm form textarea {
  width: 100%;
  min-height: 19.25em;
  background-color: var(--white);
  outline: 0;
  border: none;
  padding: 1.5em 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2em;
}
#main .touchpoint .contactForm form input::placeholder,
#main .touchpoint .contactForm form textarea::placeholder {
  font-size: 1.4rem;
  font-family: "Nunito";
}
#main .touchpoint .contactForm button {
  background-color: var(--brand-orange-color);
  outline: 0;
  border: none;
  width: 100%;
  color: var(--white);
  padding: 1em 2em;
  border-radius: 0.35em;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Nunito";
}

/*NEWSLETTER*/
#newsletter {
  width: 100%;
  background-image: url(/images/cta-bg.png);
  background-color: rgba(17, 17, 17, 0.664);
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  padding: 40px 0;
}
#newsletter h4 {
  color: var(--white);
  margin-bottom: 2.5em;
}
#newsletter form {
  display: flex;
  gap: -0.5em;
}
#newsletter form input {
  background-color: var(--white);
  border-radius: 1.75em 0 0 1.75em;
  border: 0;
  outline: none;
  padding: 1em 1.75em;
}
#newsletter form input::placeholder {
  font-size: 1.4rem;
  font-family: "Nunito";
}
#newsletter form button {
  background-color: var(--brand-orange-color);
  color: var(--white);
  border-radius: 0 1.75em 1.75em 0;
  border: 0;
  outline: none;
  padding: 1em 1.75em;
  font-family: "Nunito";
  font-weight: 700;
}

/*TABLET VERSION STARTS HERE*/
@media (min-width: 665px) and (max-width: 1024px) {
  /*MAIN*/
  #main .touchpoint {
    gap: 1em;
    padding: 56px;
  }
  #main .touchpoint .contactForm h4 {
    color: var(--black);
  }
  #main .touchpoint .contactForm p {
    margin-bottom: 1em;
  }
  #main .touchpoint .contactForm form input {
    padding: 0.8em 1.2em;
    margin-bottom: 1.2em;
  }
  #main .touchpoint .contactForm form textarea {
    min-height: 16.25em;
    padding: 0.8em 0.8em;
    margin-bottom: 1em;
  }
  #main .touchpoint .contactForm form input::placeholder,
  #main .touchpoint .contactForm form textarea::placeholder {
    font-size: 1rem;
  }
  #main .touchpoint .contactForm button {
    border-radius: 20px;
  }
}

/*MOBILE VERSION STARTS HERE*/
@media (max-width: 664px) {
  /*MAIN*/
  #main .touchpoint {
    flex-direction: column;
    gap: 1.2em;
  }

  #main .touchpoint:nth-child(2) {
    margin-top: 4em;
    background-color: var(--dfdede-color);
  }
  #main .touchpoint .contact {
    display: flex;
    align-items: center;
    gap: 0.75em;
  }
  #main .touchpoint .contact img {
    max-width: 25%;
  }
  #main .touchpoint .contactForm button {
    border-radius: 20px;
    margin-bottom: 58px;
  }
}
