@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

header::before {
  content: "";
  display: block;
  margin-bottom: 70px;
}

/*MENU*/
nav {
  width: 100%;
  height: 70px;
  background-color: #0042836b;
  border-bottom: 1px solid transparent;
  box-shadow: 1px 1px 0 rgba(100, 64, 233, 0.5);
  position: fixed;
  top: 0;
  z-index: 2;
  transition: ease-in-out 0.5s;
}

.container-nav {
  display: flex;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  align-items: center;
  padding: 0 40px;
}

.container-nav .logo {
  height: 60px;
}

.container-nav .logo img {
  height: 100%;
  vertical-align: top;
  margin-left: 10px;
}

.enlaces-header {
  font-weight: 300;
  transition: ease-in-out 0.5s;
}

.enlaces-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;

  margin-right: 80px;
}

.enlaces-header ul li a {
  padding: 25px 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: all 0.5s;
}

.enlaces-header ul li a:hover {
  background-color: #004183;
  color: #d1d1e2;
}

.hamburguer {
  width: 80px;
  height: 80px;
  display: none;
  text-align: center;
  z-index: 1;
  cursor: pointer;
  transition: color 0.5s ease-in;
}

.hamburguer > i {
  font-size: 25px;
  line-height: 80px;
}

#select {
  background-color: #004183;
}
/*FORMULARIO*/

.container--contac {
  background-color: #8ba9c5;
}

form {
  width: 450px;
  margin: auto;
  background-color: #004183;
  padding: 10px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 7px;
}

h2 {
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 7px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-size: 17px;
  border: none;
}

textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}

#boton {
  background-color: #640808;
  color: #fff;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}

#boton:hover {
  background-color: #a31f1f;
  cursor: pointer;
}

/*FOOTER*/
footer {
  background-color: #00428391;
}

.content__footer {
  display: flex;
  justify-content: center;
}

.footer-img {
  width: 300px;
  margin-top: 10px;
}

.titulo__foot {
  text-align: center;
  background-color: #073c8d;
  color: #c5c8cf;
  font-weight: 300;
  height: 50px;
  font-size: 1.2em;
  padding-top: 50px;
  margin-bottom: 0px;
}

/*RESPONSIVE*/
@media screen and (max-width: 800px) {
  /* MENU*/
  .container-nav .logo img {
    height: 100%;
    vertical-align: top;
    margin-top: 5px;
    margin-left: -20px;
  }

  /*FOOTER*/
  footer {
    display: block;
    padding: 1px;
  }

  .logoFooter {
    display: flex;
    justify-content: center;
    height: 100px;
    width: 150px;
  }

  .logoFooter > img {
    height: 150px;
    margin-top: -2px;
  }

  .textFooter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 250px;
    margin-bottom: -10px;
  }

  .textFooter h2 p {
    font-size: 0.5em;
    margin-top: 10px;
  }
}

@media screen and (max-width: 600px) {
  /*MENU*/
  .enlaces-header {
    height: 650px;
  }

  .container__nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .enlaces-header ul li a {
    font-size: 18px;
  }

  .enlaces-header {
    position: fixed;
    background: #191a69df;
    top: 0;
    right: 0;
    width: 100%;
    clip-path: circle(0% at 100% 0);
  }

  .container-nav ul {
    flex-direction: column;
    margin-left: 50px;
  }

  nav ul li {
    margin: 50px 0px;
  }

  .enlace-header ul li a:hover {
    color: #fff;
  }

  .hamburguer {
    display: block;
    margin-right: 40px;
  }

  .container-nav .menudos {
    -webkit-clip-path: circle(150% at 100% 0);
    clip-path: circle(150% at 100% 0);
  }

  .container-nav .enlaces-header a {
    color: #fdfafa;
  }

  .container-nav .logo img {
    margin-left: -35px;
  }

  form {
    width: 80%;
  }

  /*FOOTER*/
  footer {
    height: 200px;
    display: block;
    align-items: center;
  }

  .logoFooter {
    height: 100px;
    width: 5 0%;
  }

  .textFooter {
    margin-top: -20px;
    margin-left: 200px;
    position: relative;
  }

  .textFooter h2 {
    margin-right: 190px;
    margin-top: 10px;
    z-index: 1;
  }

  .titulo__foot {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 300px) {
  nav li a {
    font-size: 10px;
    text-align: center;
  }

  /*FOOTER*/
  footer {
    height: 200px;
    width: 100%;
    display: block;
    z-index: -1;
  }

  .logoFooter {
    height: 100px;
    width: 100%;
    margin-left: 90px;
  }

  .textFooter {
    width: 100%;
    margin-bottom: 40px;
    margin-left: 10px;
    position: relative;
  }

  .textFooter h2 {
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .titulo__foot {
    font-size: 0.7em;
  }
}
