* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  background: none;
  outline: none;
  cursor: pointer;
}

ul {
  list-style: circle;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Roboto', sans-serif;
  /*IE FIX*/
  /*display: flex;
  flex-direction: column;*/
}

/* CONTAINER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  min-height: 100vh;
  background: "";
  /*background: url("") no-repeat
  center / cover;*/
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-blend-mode: luminosity;
  color: white;
}
.wrapper:before {
  content:'';
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.6);
}

.wrapper > * {
  padding: 15px;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  background: rgba(62, 171, 56, 0.6);
  margin: 0;
  border-bottom: none;
  z-index: 1;
}


/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-height: 350px;
  z-index: 1000;

}
.formulario {
  display: flex;
  justify-content: center;
  text-align: center;
}
.formulario img {
  width: 60%;
}
.form-top {
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
.form-top h3 {
  font-weight: 600;
  color: #3eab38
}
.form-group {
    margin-bottom: 15px;
}
h3, h4 {
    font-size: 14px;
  }
.form-top p {
  font-weight: 300;
  color: #888;
}
p, li {
    font-size: 12px;
}
h3 {
  margin-top: 20px;
}
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.enlace:hover {
  color: #3eab38;
}
.form-bottom {
    padding: 10px 15px 15px 15px;
    background: #eee;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    text-align: left;
}
.form-bottom form button.btn {
    width: 100%;
}
button.btn {
    background: #3eab38 !important;
}
input[type="text"], input[type="password"], textarea, textarea.form-control {
    height: 40px;
    font-size: 14px;
}
button.btn {
    height: 40px;
    font-size: 14px;
    line-height: 0;
  }
/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  display: flex;
  flex-direction: column-reverse;
  background: rgba(62, 171, 56, 0.6);
  color: white;
  z-index: 1;
}
.page-footer img {
  width: 30%;
  display: none;
}
/*.list-footer {
  display: none;
}*/
.page-footer ul {
  margin-bottom: 5px;
}
/*
.page-footer ul li:not(:last-child) {
  margin-right: 20px;
  margin-left: 40px;
}*/
.page-footer ul li {
  margin-right: 20px;
  margin-left: 40px;
}



/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header ul {
    width: auto;
    margin-top: 0;
  }

  .page-header .cta-contact {
    order: 1;
  }

  .page-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-footer ul {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 12px;
  }
  .page-footer img {
      width: 90%;
      display: block;
  }
  /*
  .list-footer {
    display: block;
  }*/
  h3 {
    font-weight: 500;
    font-size: 24px;
  }
  h4 {
    font-size: 14px;
  }
  p {
    font-size: 15px;
  }
  li{
    font-size: 12px;
  }
  input[type="text"], input[type="password"], textarea, textarea.form-control {
    height: 50px;
    font-size: 16px;
  }
button.btn {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
  .form-bottom {
    padding: 15px 20px 20px 20px;
  }
}

@media screen and (min-width: 1400px) {
  .page-footer img {
      width: 70%;
      display: block;
  }
  .formulario img {
    width: 50%;
  }
}
/*MODAL*/
.modal-header {
  background-color: #01512c;
  color: #fff;
}
.btn-close {
  color: #fff !important;
}
.btn-formulario {
  background-color: #7fb927 !important;
  color: #fff !important;
}
.close {
    text-shadow: 0 1px 0 #fff;
    color: #fff !important;
}
.modal-body {
    text-align: justify;
}
