* {
  padding: 0;
  margin: 0;
  font-size: 1em;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

body {
  max-width: 1380px;
  margin: auto;
  background-color: #000;
}

header {
  width: 100%;
  height: 130px;
  background-color: #000;
  text-align: center;
}

header img {
  width: 200px;
  margin-top: 15px;
}

/** INFO 1 **/

.container {
  width: 100%;
  display: flex;
   flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.half {
  width: 50%;
  margin: 0px;
}

.formulario {
  background-color: #000;
  padding: 25px  60px;
  color: #fff;
  margin: 0px;
}

.mc-field-group {
  width: 100%;
  display: flex;
   flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  color: #fff;
  padding: 5px;
}

.mc-field-group label {
  color: #c1c1c1;
  margin-left: 5px;
}

.mc-field-group input {
  height: 30px;
  background-color: #000;
  color: #fff;
  margin: 5px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.indicates-required {
  padding: 5px;
  align-self: flex-end;
  text-align: right;
  font-size: 9px;
  color: #999999;
}

.optionalParent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

input[type=submit] {
  margin: 10px;
  padding: 10px 20px;
  background-color: #383838;
  font-weight: 400;
  align-self: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer
}

.features {
  width: 45%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  color: #fff;
}

.features h1 {
  font-size: 30px;
  font-weight: 700;
}

.features ul {
  margin-left: 25px;
  padding: 25px;
}

.features ul li {
  font-size: 20px;
  font-weight: 300;
  padding: 5px;
}

.container .foto {
  width: 33.33%;
  height: 150px;
  padding: 25px;
  background-size: cover;
  background-position: center;
}

.f1 {
  background-image: url(image/foto1.jpg);
}
.f2 {
  background-image: url(image/foto2.jpg);
}
.f3 {
  background-image: url(image/foto3.jpg);
}

.descargar {
  color: #db9600;
  padding: 5px 10px;
  margin: 0px;
  text-decoration: none;
}

.descargar:hover {
  color: #999999;
  text-decoration: underline;
}

.descargar:visited {
  color: #666666;
}


/** FOOTER **/

footer {
  width: 100%;
  background-color: #000;
  padding: 22px;
  text-align: center;
}

footer p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}

footer p a {
  font-weight: 400;
  color: #e5e5e5;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
  color: #c4c5c6;
}

.whatsapp {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
}

.whatsapp a {
  text-decoration: none;
}

.whatsapp a img {
  width: 100%;
}

.whatsapp a:hover img {
  width: 102%;
}

/**#mce-success-response:before {
    content: '<div class="pop"><a href="MACROLOTES_DISTRITO_MESETA.pdf" download> DESCARGA AQUÍ</a></div>';
    position: fixed;
    top: 15px;
    left: 40%;
    background: darkgray;
    text-align: center;
    padding: 50px;
    color: #fff;
}**/

/** -- MEDIA QUERYES -- **/

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

.container {
  flex-direction: column;
}

.half {
  width: 100%;
}

.features {
  width: 90%;
}

.container .foto {
  width: 60%;
  height: 120px;
  margin-bottom: 10px;
}

.f1 {
  margin-left: 50px;
}
.f2 {
  margin-right: 40px;
}
.f3 {
   margin-left: 70px;
}

.whatsapp {
  width: 45px;
  height: 45px;
}

}

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

.container .foto {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}

.f1 {
  margin-left: 0px;
}
.f2 {
  margin-right: 0px;
}
.f3 {
   margin-left: 0px;
}

}


