@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;
}

/*MENU*/
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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;
}

/*COVER*/
.container--cover {
  width: 100%;
  height: 600px;
  background-image: url(../images/55.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

.cover {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container--cover .text {
  max-width: 400px;
}

.container--cover .text h1 {
  font-size: 3.5em;
  font-weight: 800;
  color: #2a0e72;
  text-shadow: 0 0 4px #fff;
}

.container--cover .text p {
  width: 550px;
}

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

.container--cover .img2 img {
  margin-top: 40px;
  width: 550px;
  animation: move 5s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}

/*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: 30px;
  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;
  }

  /*COVER*/
  .container--cover {
    width: 100%;
  }

  .container--cover .img2 img {
    width: 400px;
    margin-top: 20px;
    margin-right: 10px;
  }

  .container--cover .text h1 {
    font-size: 2.5em;
    margin-left: 10px;
  }

  .container--cover .text p {
    font-size: 0.9em;
    margin-left: 10px;
    width: 90%;
  }

  /*FOOTER*/
}

@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: 60px;
  }

  .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;
  }

  /*COVER*/
  .cover {
    display: flex;
    flex-direction: column;
  }

  .container--cover .img2 img {
    width: 350px;
    margin-top: -100px;
    margin-right: 10px;
  }

  .container--cover .text p {
    font-size: 0.8em;
    margin-left: 10px;
  }

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

  .content__footer h1 {
    font-size: 2em;
  }

  .titulo__foot {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
    height: 100%;
  }
}

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

  /*COVER*/
  .container--cover .img2 img {
    width: 350px;
    margin-bottom: 40px;
    margin-right: 10px;
  }

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

  .content__footer h1 {
    font-size: 2em;
  }

  .titulo__foot {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
    height: 100%;
  }
}

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

  /*COVER*/
  .container--cover .text {
    width: 95%;
  }

  .container--cover .img2 img {
    width: 280px;
    margin-bottom: 40px;
    margin-right: 10px;
  }

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

  .content__footer h1 {
    font-size: 2em;
  }

  .titulo__foot {
    text-align: center;
    font-size: 0.7em;
    margin-bottom: 20px;
    height: 100%;
  }
}
