@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=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=Dancing+Script:wght@700&display=swap');
/* font-family: 'Barriecito', cursive;
font-family: 'Dancing Script', cursive; */


:root {
  /*   padding: 100px 0; */
  --color-title: #001a49;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: content-box;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1280px;
  max-width: 1536px;
  margin: 0 auto;
  overflow: hidden;
  /* border: solid; */
}

/* header */
.header {
  color: #fff;
  width: 100%;
  height: 20vh;
  background-image: linear-gradient(180deg, #00000099 0%, #00000099 100%), url("/imagenes/notebooks_fuera_de_foco.jpg");
  background-size: cover;
}

/* nav */
.header__nav {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header__nav__logo {
  display: flex;
  align-items: flex-start;
}

.header__nav__title {
  font-weight: 300;
}

/**/
.contenedor-2 {
  display: flex;
  flex-direction: column;
  height: 100px;
  align-self: center;
  z-index: 10;
}

.boton-2 {
  margin: auto;
  height: 80%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: 25px 0;
}

.boton-2 div {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 40px;
}

.boton-2>div:first-of-type {
  top: 0;
  height: 23%;
  overflow: hidden;
  z-index: 10;
}

.boton-2>div {
  height: 18%;
  position: static;
  overflow: hidden;
  z-index: 20;
}

.boton-2>div:last-of-type {
  bottom: 0;
  height: 50%;
  overflow: hidden;
  z-index: 30;
}

.arriba {
  color: lightblue;
}

.medio {
  top: -18.5px;
  color: white;
}

.abajo {
  color: lightblue;
  top: -33px;
}

.arriba,
.medio,
.abajo {
  text-shadow: 0px 0px 5px white;
}

.header__nav__links {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-self: end;
}

.header__nav__items {
  list-style: none;
  margin: 10px;
  display: block;
}

.header__nav__link {
  color: #fff;
  text-decoration: none;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  padding-right: 5px;
}

.header__nav__menu {
  margin-left: auto;
  cursor: pointer;
  display: none;
}

.header__nav__img {
  display: block;
  width: 30px;
}

.header__nav__close {
  display: var(--show, none);
}

/* main */
main {
  flex: 1;
}

/* footer */
.footer {
  background-color: #1d293f;
  width: 100%;
}

.footer__container {
  padding: 30px 0;
  border-bottom: 1px solid #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer__nav__title {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.footer__title {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  text-decoration: none;
}

.footer__nav {
  display: block;
}

.footer__nav__links {
  display: flex;
  list-style: none;
  margin: 0;
}

.footer__nav__link {
  margin: 10px;
}

.footer__nav__item {
  color: #fff;
  text-decoration: none;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  padding-right: 5px;
}

.footer__nav__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer__newsletter {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.footer__inputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer__input {
  margin: 10px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}

.footer__submit {
  padding: 1rem;
  background-color: #2091f9;
  margin: 10px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
}

.footer__copy {
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

.footer__copyright {
  font-weight: 300;
  margin-bottom: 30px;
}

.footer__icons {
  margin-bottom: 10px;
}

.footer__img {
  width: 30px;
}

.footer__copyright>a {
  text-decoration: none;
  color: white;
  text-shadow: 0px 0px 5px white;
}
.boton-primary {
  display: inline-block;
  background-color: #2091f9;
  border: none;
  font-size: 1rem;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  padding: 1rem;
  text-decoration: none;
  justify-self: center;
}

@media (max-width: 1536px) {}

@media (max-width: 1280px) {}

@media (max-width: 1024px) {

  .arriba span:first-of-type,
  .medio span:first-of-type,
  .abajo span:first-of-type {
    display: none;
  }

  .arriba span:last-of-type,
  .medio span:last-of-type,
  .abajo span:last-of-type {
    display: inline;
  }

  .header__nav__logo {
    justify-self: start;
  }

  .header__nav {
    grid-template-columns: 250px 2fr;
  }

  .footer__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .footer__nav__links {
    display: flex;
    flex-direction: column;

  }

  .footer__nav__form {
    align-content: center;
    margin: 0 auto 0;
    width: 100%;
    display: grid;
    justify-content: center;
  }

  .footer__inputs {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    width: 80%;
  }

  .footer__title {
    margin: 20px 0;
  }

}

@media (max-width: 768px) {

  .header__nav__menu {
    display: block;
    margin-top: 30px;
  }

  .header__nav__links--menu {
    position: fixed;
    background-color: #1d293f;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: .7s opacity;
  }

  .header__nav__links--show {
    --show: block;
    opacity: 1;
    pointer-events: unset;

  }

  .header__nav__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    cursor: pointer;
  }

  .header__title {
    font-size: 2.5rem;
  }

  .arriba span:first-of-type,
  .medio span:first-of-type,
  .abajo span:first-of-type {
    display: inline;

  }

  .header__nav {
    display: flex;
    flex-direction: row;
  }

  .arriba span:last-of-type,
  .medio>span:last-of-type,
  .abajo span:last-of-type {
    display: inline;
  }

  .footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__nav__links {
    display: flex;
    flex-direction: column;
  }

  .footer__nav__form {
    align-content: center;
    margin: 0 auto 0;
    width: 100%;
    display: grid;
  }

  .footer__inputs {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 80%;

  }

}

@media (max-width: 640px) {

  .arriba span:last-of-type,
  .medio>span:last-of-type,
  .abajo span:last-of-type {
    display: none;
  }


  .header__title {
    font-size: xx-large;
  }

  .header__paragraph {
    font-size: medium;
  }

  .footer__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer__nav__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0px;
  }

  .footer__inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .footer__input {
    display: block;
    margin: 0;
    margin: 15px 0;
  }

  .footer__submit {
    padding: 1rem 0;
    margin: auto;
    display: inline;
    width: 100%;
    margin: 0;
  }

  .footer__nav__title {
    margin: 30px 0;
  }

  .footer__title {
    margin: 20px 0;
  }

}