@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");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit: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");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --color-esqueleto-transparent: rgba(239, 243, 245, 0.5);
  --blue-light: #0b92a7;
  --blue-medium: #0b3f8b;
  --blue-transparent: #082864ce;
  --blue-light-transparent: #0b92a794;
  --blue-dark: #020d22fa;
  --blue-dark-transparent: #020d22dc;
  --gray-medium: #373737;
  --gray-dark: 242424;
  --gray-transpárent: #20202049;
  --sub-title: "Poppins", sans-serif;
  --paragraph: "Nunito", sans-serif;
  --title: "Kanit", sans-serif;
}

body {
  background-color: var(--blue-light-transparent);
  height: 100%;
  overflow-x: hidden;
}

/******* *NAVIGATION* *******/
.menu {
  background-color: var(--blue-light-transparent);
  height: 70px;
  width: 90%;
  font-family: var(--title);
  position: fixed;
  margin-left: 60px;
  border-radius: 10px;
  border-bottom: 2px solid #fff;
  top: 20px;
  z-index: 999;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.menu__links {
  display: flex;
  height: 100%;
  margin-right: 10px;
  transition: transform 0.5s;
}

.menu__item {
  list-style: none;
  height: 100%;
  position: relative;
}

.menu__link {
  color: var(--blue-dark);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: 0.4s;
}

.menu__link:hover {
  background-color: var(--blue-light-transparent);
  color: #fff;
}

.logo {
  width: 70px;
  margin-left: 30px;
  margin-top: 5px;
}

.logo img {
  width: 100%;
}

.menu__hamburguer {
  height: 90%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-right: 100px;
  cursor: pointer;
  transition: 0.4s;
  display: none;
}

.menu__hamburguer:hover {
  background-color: var(--blue-medium);
}

.menu__img {
  display: block;
  width: 35px;
}

#select {
  background-color: var(--blue-light-transparent);
  color: #fff;
}

/******* *COVER* *******/
.container-cover {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: #fff;
}

.cover {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.image__cover {
  width: 100%;
  display: flex;
  justify-content: center;
}

.image__cover img {
  width: 450px;
}

.content__cover {
  h1 {
    /*TITULO DEL COVER*/
    width: 100%;
    font-size: 3rem;
    font-family: var(--title);
    text-align: center;
    margin-bottom: 70px;
    color: var(--blue-medium);
  }

  span {
    color: var(--blue-medium);
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 2px 4px 4px var(--blue-light);
  }

  h2 {
    color: var(--blue-medium);
    margin-top: 80px;
    font-size: 2rem;
    font-family: var(--title);
    font-weight: 500;
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    text-align: center;
    margin-top: 80px;
  }

  /* **MEDIDAS DE LOS CHECK** */
  .fa-check {
    font-size: 25px;
    color: var(--blue-medium);
    text-shadow: 2px 4px 4px var(--blue-light);
  }
}

/* **PARRAFOS DEL COVER** */
.content__cover p {
  font-size: 1.2rem;
  font-family: "Nunito", sans-serif;
  letter-spacing: 1px;
  color: var(--gray-medium);
  text-align: center;
  line-height: 1.6;
}

.content__cover .paragraph {
  text-align: left;
  margin-top: 20px;
}

.content__cover .paragraph {
  margin-top: 20px;
  font-size: 1.2rem;
  font-family: "Nunito", sans-serif;
  letter-spacing: 1px;
  text-align: left;
  color: var(--gray-medium);
}

.paragraph .name {
  text-shadow: none;
  font-size: 1.5rem;
}

.finish-paragraph {
  margin-top: 60px;
  margin-bottom: 80px;
  margin-left: 80px;
  text-align: center;
}

.btn {
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  background-color: var(--blue-medium);
  margin-top: 0px;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 50px;
  border-radius: 10px;
  font-family: var(--paragraph);
  letter-spacing: 2px;
  border: 3px solid #0b92a7;
  transition: 0.5s;
  z-index: 1;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 8px 20px var(--blue-light);
}

/***** BANNER COOKIES *****/
.banner__cookies {
  display: none;
  background: var(--blue-dark);
  padding: 20px;
  width: 100%;
  line-height: 150%;
  border: 1px solid #fff;
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  padding-top: 40px;
  box-shadow: 0px 2px 20px 10px var(--blue-medium);
  text-align: center;
}

.banner__cookies.activo {
  display: block;
}

.title__cookies {
  color: #fff;
  font-family: var(--title);
  font-weight: 400;
  font-size: 1.8rem;
}

.paragraph__cookies {
  color: #fff;
  font-family: var(--paragraph);
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
}

.boton {
  font-family: var(--sub-title);
  margin-right: 20px;
  padding: 5px 20px;
  color: var(--blue-medium);
  background-color: #757070;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}

.boton:hover {
  background-color: #fff;
  color: var(--blue-light);
}

.enlace {
  font-family: var(--sub-title);
  color: #fff;
  font-weight: 200;
  font-size: 0.9rem;
  transition: 0.3s;
}

.enlace:hover {
  color: var(--blue-light);
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.background-cookies {
  display: none;
  background: var(--blue-dark-transparent);
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.background-cookies.activo {
  display: block;
}


/******* *FOOTER* *******/
footer {
  position: relative;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.158);
  border-left: 1px solid rgba(255, 255, 255, 0.664);
  border-top: 1px solid rgba(255, 255, 255, 0.664);
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
}

.footer__container {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.partFooter {
  width: 20%;
  text-align: center;
}

.partFooter .blue:hover {
  color: var(--blue-light);
}

.partFooter img {
  width: 50%;
  margin-top: 10px;
}

.partFooter h4 {
  color: var(--blue-light);
  font-size: 1.3em;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
}

.partFooter a {
  display: block;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  transform: color 0.3s ease-in-out;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
}

.partFooter a:hover {
  color: var(--blue-transparent);
}

.social__media {
  display: flex;
  justify-content: space-around;
  width: 250px;
}
.social__media a {
  display: inline-block;
  margin: 0px;
  width: 190px;
  transition: 1s;
  cursor: pointer;
  animation: move 6s ease-in-out infinite;
}

.social__media a img {
  width: 50px;
}

.social__media a:hover {
  box-shadow: 0 0 5px rgba(253, 251, 253, 0.726);
}

@keyframes move {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.footer__copy {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 1em;
  font-family: var(--title);
  font-weight: 300;
  color: rgb(253, 253, 253);
  border-top: 2px solid #fff;
}

.footer--copyright {
  height: 30px;
  & p {
    margin-top: 15px;
  }
}

/******* *MEDIA QUIERIES* *******/
@media screen and (max-width: 992px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 50px;
  }
  .menu__links {
    margin-right: 30px;
  }

  /******* *COVER* *******/
  .cover {
    margin-top: 70px;
  }

  .image__cover img {
    width: 350px;
  }

  .content__cover h1 {
    font-size: 3.5rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    width: 100%;
  }

  .partFooter {
    margin-right: 30px;
  }

  .partFooter h4 {
    font-size: 1.2rem;
    margin-right: 20px;
  }

  .partFooter a {
    font-size: 0.9rem;
  }

  .social__media a img {
    width: 45px;
  }

  .social__media {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 40px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 20px;
  }

  .logo {
    margin-left: 20px;
  }

  .menu__item {
    --clip: 0;
    overflow: hidden;
  }

  .menu__item--active {
    --transform: rotate(0);
  }

  .menu__item--show {
    background-color: var(--blue-light-transparent);
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 90px;
    bottom: 0;
    right: -50px;
    background-color: var(--blue-light-transparent);
    display: flex;
    overflow: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }

  .menu__links--show {
    transform: unset;
    width: 100%;
  }

  .menu__link {
    padding: 25px 0;
    padding-left: 30px;
    height: auto;
  }

  .menu__arrow {
    margin-left: auto;
    margin-right: 20px;
  }

  .menu__nesting {
    display: grid;
    position: unset;
    width: 100%;
    transform: translateY(0);
    height: 0;
    transition: height 0.3s;
  }

  .menu__nesting--inside {
    width: 90%;
    margin-left: auto;
    border-left: 1px solid var(#fff);
  }

  /******* *COVER* *******/
  .content__cover {
    width: 100%;
    margin-left: auto;

    h1 {
      /*TITULO DEL COVER*/
      width: 100%;
      font-size: 2.5rem;
    }

    .title {
      font-size: 2rem;
    }

    .subtitle {
      text-align: center;
      margin-top: 80px;
    }
  }

  .image__cover img {
    width: 350px;
  }

  /* **MEDIDAS DE LOS CHECK** */
  .paragraph span {
    font-size: 25px;
  }

  .finish-paragraph {
    margin-right: 15%;
  }

  .btn {
    margin-left: auto;
  }

  /******* *FOOTER* *******/
  .footer__container {
    width: 95%;
  }

  .partFooter img {
    width: 100px;
  }

  .partFooter h4 {
    font-size: 1.1em;
    width: 150px;
  }

  .partFooter a {
    font-size: 0.8em;
  }

  .social__media a img {
    width: 40px;
  }

  .social__media {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 600px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 40px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 20px;
  }

  .logo {
    margin-left: 20px;
  }

  .menu__item {
    --clip: 0;
    overflow: hidden;
  }

  .menu__item--active {
    --transform: rotate(0);
  }

  .menu__item--show {
    background-color: var(--blue-light-transparent);
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 90px;
    bottom: 0;
    right: -50px;
    background-color: var(--blue-light-transparent);
    display: flex;
    overflow: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }

  .menu__links--show {
    transform: unset;
    width: 100%;
  }

  .menu__link {
    padding: 25px 0;
    padding-left: 30px;
    height: auto;
  }

  .menu__arrow {
    margin-left: auto;
    margin-right: 20px;
  }

  .menu__nesting {
    display: grid;
    position: unset;
    width: 100%;
    transform: translateY(0);
    height: 0;
    transition: height 0.3s;
  }

  .menu__nesting--inside {
    width: 90%;
    margin-left: auto;
    border-left: 1px solid var(#fff);
  }

  /******* *COVER* *******/
  .container-cover {
    margin-top: -35px;
  }

  .cover {
    width: 100%;
  }

  .image__cover img {
    width: 300px;
  }

  .finish-paragraph {
    margin-left: 50px;
  }

  .btn {
    margin-left: 20%;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 90px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 25px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}

@media screen and (max-width: 400px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 60px;
    top: 20px;
    right: 15px;
  }

  .logo {
    .logo {
      margin-left: 20px;
      width: 60px;
    }
  }

  .menu__hamburguer {
    height: 90%;
    width: 50px;
    padding: 0 10px;
    margin-right: 20px;
  }

  /******* *COVER* *******/
  .content__cover {
    width: 100%;
    margin-left: auto;

    h1 {
      /*TITULO DEL COVER*/
      width: 100%;
      font-size: 1.5rem;

      .title {
        font-size: 1.5rem;
      }
    }

    .subtitle {
      text-align: center;
      margin-top: 80px;
      font-size: 1.5rem;
    }

    .paragraph {
      font-size: 0.9rem;
    }

    .name {
      font-size: 1rem;
    }
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .image__cover img {
    width: 200px;
  }

  /***** MEDIDAS DE LOS CHECK *****/
  .paragraph {
    font-size: 1rem;

    .fa-check {
      font-size: 1rem;
    }
  }

  .paragraph span {
    font-size: 1rem;
  }

  .container-cover .finish-paragraph {
    font-size: 1rem;
    margin-left: 5px;
  }

  .btn {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1rem;
  }
  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 90px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 25px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}

