:root {
  --BLUE: #00208a;
  --BLUE_LIGHT: rgb(0, 32, 138, 0.15);
  --WHITE: rgba(255, 255, 255, 0.9);
  --BLACK: rgba(0, 0, 0, 0.9);
}

* {
  margin: 0px;
  padding: 0px;
  font-family: Montserrat;
  color: var(--BLUE);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;

}

h5 {
  font-size: 1.2rem;
  font-weight: 500;

}

h6 {
  font-size: 1rem;
  font-weight: 500;

}

header {
  background-image: url('./images/hero.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

header img {
  max-width: 513px;
  width: 80%;
  margin: 8rem auto 0;
}

header h1 {
  text-align: center;
  color: var(--BLUE)
}

header h4 {
  text-align: center;
  color: var(--BLUE)
}

.mail {
  margin: 6rem 0 4rem 0;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  background-color: var(--BLUE_LIGHT);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mail input {
  width: 20rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
}

.mail button {
  background-color: var(--BLUE);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.mail p {
  color: var(--BLUE);
  font-weight: 500;
  font-size: 0.7rem;
  margin-bottom: 5px;
}

.mail h6 {
  color: var(--BLUE);
  font-weight: 500;
  font-size: 1rem;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

article {
  max-width: 900px;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

article h4 {
  text-align: center;
  line-height: 2rem;
  margin-top: 2rem;
  color: var(--BLACK)
}

.screens {
  width: 80%;
  max-width: 1024px;
  margin: 0px 0px;
  display: flex;
  flex-direction: row;
  background-color: var(--BLUE_LIGHT);
  border-radius: 15px;
  padding: 2.5rem;
}

.screens .screen {
  width: 40%;
  margin: auto;
}

.screens .screen img {
  width: 100%;
  border-radius: 10px;
}

.screens .description {
  width: 50%;
  padding: 2rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.box {
  background: linear-gradient(90deg, rgba(0, 32, 138, 1) 0%, rgba(0, 32, 138, 0.75) 33%, rgba(0, 32, 138, 0.5) 100%);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  width: 80%;
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: row;

}

.box h4 {
  color: var(--WHITE);
  font-size: 1.5rem;
  margin-left: 1rem;
}

.bloque_factos {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 6rem;
}

.factos {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 1rem;
}

.facto {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33%;
}

.facto h4 {
  color: var(--BLUE);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 10px 0px
}

.facto .text p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--BLACK);
}

.facto .text p b {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--BLACK);
}


.facto .icono {
  width: 30%;
  background: linear-gradient(90deg, rgba(0, 32, 138, 1) 0%, rgba(0, 32, 138, 0.83) 33%, rgba(0, 32, 138, 0.64) 66%, rgba(0, 32, 138, 0.5) 100%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.porque {
  max-width: 1200px;
  background-color: var(--BLUE_LIGHT);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  padding: 4rem;
  border-radius: 15px;
}

.porque .imagen {
  width: 40%;
}

.porque .razones {
  width: 60%
}

.porque .imagen img {
  width: 90%;
  border-radius: 10px;
}

.razones h4 {
  color: var(--BLACK);
  margin: 2rem 0;
}

.aliados {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 4rem 0;
}

.aliados img {
  width: 30%
}

footer {
  background-color: var(--BLUE);
  color: var(--WHITE);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

footer .nosotras {
  background-color: var(--BLUE);
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: space-around;
  padding: 2rem;
  width: 70%;
}

.nosotras h4 {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--WHITE);
  text-align: left;
}

.nosotras .integrante {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;

}

.integrante img {
  width: 5rem;
  border-radius: 50%;
}

.integrante h5 {
  font-size: 1rem;
  margin-left: 1rem;
  color: var(--WHITE);
  font-weight: 400
}

footer .contacto {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto h4 {
  color: var(--WHITE) !important;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  margin-bottom: 1rem;
  ;
}

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


  .porque {
    max-width: 960px;
    background-color: var(--BLUE_LIGHT);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    padding: 4rem;
    border-radius: 15px;
  }

  .porque .imagen {
    width: 50%;
  }

  .porque .razones {
    width: 50%
  }

  .razones h4 {
    color: var(--BLACK);
    margin: 2rem 0;
    font-size: 1rem;
  }

  .integrante h5 {
    font-size: 0.8rem;
    margin-left: 0.7rem;
    color: var(--WHITE);
    font-weight: 400
  }
}

@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h4 {
    font-size: 1.2rem;
  }

  .mail {
    /* margin-top: 6rem;
    padding: 2rem; */
    width: 100%;
    padding: 3rem 0 2rem 0
  }

  .mail input {
    width: 80%;
    /* padding: 1rem; */
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
  }

  .screens {
    width: 80%;
    max-width: 768px;
    margin: 0px 0px;
    display: flex;
    flex-direction: column;
    background-color: var(--BLUE_LIGHT);
    border-radius: 10px;
  }

  .screens .screen {
    width: 80%;
    margin: auto;
  }

  .screens .description {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .factos {
    /* width: 80%; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
  }

  .facto {
    width: 95%;
  }

  .porque {
    max-width: 960px;
    background-color: var(--BLUE_LIGHT);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    padding: 4rem;
    border-radius: 15px;
  }

  .porque .imagen {
    width: 80%;
  }

  .porque .razones {
    width: 90%;
    padding: 3rem 0 1rem 0;
  }

  .razones {
    padding: 0;
  }

  .razones h4 {
    color: var(--BLACK);
    margin: 2rem 0;
    font-size: 1rem;
  }

  .aliados {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 1rem 0;
  }

  .aliados img {
    width: 80%;
    max-width: 300px;
    margin: 2rem 0;

  }

  footer {
    background-color: var(--BLUE);
    color: var(--WHITE);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .nosotras {
    background-color: var(--BLUE);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    width: 70%;
  }

  footer .contacto {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .integrante h5 {
    font-size: 1rem;
    margin-left: 0.7rem;
    color: var(--WHITE);
    font-weight: 400
  }

}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  header h4 {
    font-size: 1rem;
  }


  .mail {
    /* margin-top: 4rem;
    padding: 20px;
    padding-left: 20px; */
    width: 100%;
    padding: 1rem 0;
    margin: 4rem 0 2rem 0;
  }

  .mail .input-box {
    width: 90%;
  }

  .mail h6 {
    margin-top: 1rem;
    width: 90%;

  }

  .mail button {
    background-color: var(--BLUE);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .screens {
    width: 100%;
    margin: 0px 0px;
    display: flex;
    flex-direction: column;
    background-color: var(--BLUE_LIGHT);
    border-radius: 10px;
    padding: 1.5rem 0;
  }

  .screens .screen {
    width: 80%;
    margin: auto;
  }

  .screens .description {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}