*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    scroll-behavior: smooth;
}
body{
    font-family: 'Open Sans', sans-serif;
}
.contenedor{
    width: 90%;
    overflow: hidden;
    margin: auto;
    padding: 30px 0;
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Header */
header::before {
  content: "";
  display: block;
  margin-bottom: 20px;
}
  /* COVER PAGE */
  .contenido-header {
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .contenido-header>img {
      height: 80%;
      animation: ease-in animat 2s;
      text-align: center;
      align-items: center;
  }
  @keyframes animat {
      0% {
          transform: scale(0);
      }
      100% {
          transform: scale(1);
      }
  }
  .textos-header {
      font-family: 'Public Sans', sans-serif;
      margin: 0 0 0 30px;
  }
  .titulo {
      font-size: 5em;
      color: #11AAC3;
  }
  .contenido-header p {
      font-size: medium;
      font-weight: 400;
      margin-top: 14px;
      margin-bottom: 60px;
      color: #00132C;
  }
  .button-51 {
    background-color: transparent;
    border: 1px solid #266DB6;
    box-sizing: border-box;
    color: #00132C;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    padding: 16px 23px;
    position: relative;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  .button-51:hover,
  .button-51:active {
    outline: 0;
  }
  .button-51:hover {
    background-color: transparent;
    cursor: pointer;
    color: white;
  }
  .button-51:before {
    background-color: #D5EDF6;
    content: "";
    height: calc(100% + 3px);
    position: absolute;
    right: -7px;
    top: -9px;
    transition: background-color 300ms ease-in;
    width: 100%;
    z-index: -1;
  }
  .button-51:hover:before {
    background-color: #11AAC3;
  }
/* Breakpoints responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 1000px){
  .titulo {
      font-size: 3em;
  }
  .contenido-header>img {
      height: 70%;
  }
}
@media screen and (max-width: 700px){
  .contenido-header>img {
      height: 50%;
  }
  .contenido-header p {
    font-size: small;
  }
}
@media screen and (max-width: 600px){
  header {
    text-align: center;
    align-items: center;
  }
  .contenido-header {
      flex-direction: column;
      justify-content: space-evenly;
      height: 720px;
  }
  .contenido-header>img {
      width: 50%;
  }
  .textos-header {
      margin: 0;
  }
  .button-51 {
    padding: 16px 32px;
  }
}
@media screen and (max-width: 400px){
  .titulo {
    font-size: 2em;
  }
  .contenido-header p {
    margin-bottom: 40px;
  }
}

/* NAVBAR
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.navigation {
    content: "";
    display: block;
    /* margin-bottom: 80px; */
}
    nav {
        width: 100%;
        height: 90px;
        background-color: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
        position: fixed;
        top: 0;
        z-index: 100;
        transition: ease-in-out 0.5s;
    }
    .nav {
        width: 100%;
        height: 88px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav .logo {
        height: 75px;
        margin-left: 66px;
    }
    .nav .logo img {
        height: 70%;
        vertical-align: top;
        margin-top: 10px;
    }
    .enlaces-header {
        font-weight: 700;
        transition: ease-in-out 0.5s;
        margin-right: 40px;
    }
    .enlaces-header .enlaces-nav{
        margin-top: 20px;
    }
    .enlaces-header .enlaces-icon{
        margin-left: 10%;
    }
    .enlaces-header .enlaces-icon a{
        color: black;
        text-decoration: none;
        margin-left: 44px;
    }
    .enlaces-header .enlaces-nav a {
        color: black;
        text-decoration: none;
        margin-left: 20px;
    }
    .enlaces-header .enlaces-nav .active {
        color: #11AAC3;
    }
    .enlaces-header a:hover {
        border-top: 2px solid #001A49;
        border-bottom: 2px solid #001A49;
    }
    .hamburguer {
        width: 80px;
        height: 80px;
        display: none;
        text-align: center;
        z-index: 100;
        cursor: pointer;
        transition: color 0.5s ease-in;
    }
    .hamburguer>i {
        font-size: 25px;
        line-height: 80px;
    }

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
    background: #dfe7ee;
    background-image: radial-gradient(circle at 50% -20.71%, #dff0db 0, #dbf0dd 6.25%, #d8f1e0 12.5%, #d5f1e3 18.75%, #d3f2e6 25%, #d1f2e9 31.25%, #cff2ec 37.5%, #cef2ef 43.75%, #cdf2f2 50%, #cdf2f5 56.25%, #cdf1f8 62.5%, #cef1fa 68.75%, #cff0fc 75%, #d1f0fe 81.25%, #d3efff 87.5%, #d6eeff 93.75%, #d9edff 100%);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 0.1px;
}
/* FOOTER SECCTION #1 */
.contenedor-one {
    width: 90%;
    margin: auto;
    overflow: hidden;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 40px;
}
.contact-us{
    width: 40%;
    color: #001A49;
}
.brand{
    font-weight: 700;
    font-size: 40px;
}
.brand+p{
    font-weight: 500;
    color: #001A49
    /* color: #3D302A; */
}
.social-media{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.social-media-icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #001A49;
    border-radius: 50%;
    text-align: center;
    color: #001A49;
}
.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}
.line{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    height: 2px;
    background: #11AAC3;
}
.social-media-icon:hover{
    background: #11AAC3;
    border: 1px solid #11AAC3;
    color:#ffffff;
}
/* FOOTER SECCTION #2 */
.two {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
    width: 90%;
    margin: auto;
}
.partFooter {
    width: 30%;
    text-align: left;
}
.partFooter h4 {
    color: #11AAC3;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.partFooter a {
    display: block;
    text-decoration: none;
    color: #00132C;
    font-weight: 500;
    transition: color .3s ease-in-out;
    margin-bottom: 10px;
}
.partFooter .left {
    margin-bottom: 30px;
}
.partFooter a:hover {
    color: #ffffff;
}
.partFooter img {
    width: 80%;
}
.sub-footer {
    margin-bottom: 10px;
    font-size: 14px;
    color: #00132C;
}
.copyright {
    color: #00132C;
}
.footer__inputs{
  margin-top: 10px;
  display: flex;
  overflow: hidden;
}
.footer__input{
  background-color: #fff;
  height: 50px;
  display: block;
  padding-left: 10px;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  border: none;
  margin-right: 16px;
}
.footer__submit{
  margin-left: auto;
  display: inline-block;
  height: 50px;
  padding: 0 20px ;
  background-color: #11AAC3;
  border: none;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
}
/* Breakpoints responsive NAVBAR & FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:1200px) {
  .footer__form{
    width: 100%;
    justify-content: space-evenly;
  }
  .footer__input{
    flex: 1;
  }
  .footer__inputs{
    flex-wrap: wrap;
  }
  .footer__input{
      flex-basis: 100%;
      margin: 0;
      margin-bottom: 16px;
  }
  .footer__submit{
      margin-right: auto;
      margin-left: 0;
  }
}
@media screen and (max-width:800px) {
    /* NAVIGATION */
    .nav .logo {
        margin: 0 0 0 30px;
    }
    .nav .logo img {
        height: 60%;
        vertical-align: top;
        margin-top: 20px;
    }
    /* Footer */
    .footer-content{
        justify-content: center;
    }
    .social-media{
        width: 80%;
        justify-content: space-evenly;
    }
    .social-media-icon{
        margin-left: 0;
    }
    .contact-us{
        text-align: center;
        width: 80%;
        margin-bottom: 40px;
    }
    footer {
        justify-content: space-evenly;
    }
    .partFooter {
        width: 40%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:700px) {
    /* NAVIGATION */
    .nav {
        padding: 0 10px;
    }
    .nav .logo {
        margin: 0 0 0 30px;
    }
    .nav .logo img {
        height: 60%;
        vertical-align: top;
        margin-top: 20px;
    }
    .enlaces-header {
        position: fixed;
        background: #667db6;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
        margin: 0;
    }
    .enlaces-header .enlaces-icon {
        margin: 40px 0 0 0;
    }
    .enlaces-header .enlaces-icon a {
        margin-left: 20px;
        font-size: 2em;
    }
    .enlaces-header .enlaces-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .enlaces-header .enlaces-nav a {
        margin: 40px 0 0 0;
        font-size: 1.2em;
    }
    .enlaces-header .enlaces-nav .active {
        color: #000000;
    }
    .nav .menudos {
        -webkit-clip-path: circle(150% at 100% 0);
        clip-path: circle(150% at 100% 0);
    }

    .nav .enlaces-header a {
        color: #fff;
    }

    .hamburguer {
        display: block;
    }
    /* Footer */
    .social-media{
        width: 100%;
        justify-content: space-evenly;
    }
    .social-media-icon{
        margin-left: 0;
    }
    .contact-us{
        text-align: center;
        width: 95%;
        margin-bottom: 40px;
    }
    .partFooter {
        width: 95%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 500px) {
  /* NAVIGATION */
  .nav {
      padding: 0 10px;
  }
  .nav .logo {
      margin: 0 0 0 10px;
  }
  .nav .logo img {
      height: 50%;
      vertical-align: top;
      margin-top: 20px;
  }
  .footer__inputs{
    flex-wrap: wrap;
  }
  .footer__input{
      flex-basis: 100%;
      margin: 0;
      margin-bottom: 16px;
  }
  .footer__submit{
      margin-right: auto;
      margin-left: 0;
  }
}

/* BOTON GO TO UP
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.go-top-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  z-index: -1;
}
.go-top-button {
  width: 0rem;
  height: 0rem;
  background: #11AAC3;
  border: 1px solid #1f415d;
  border-radius: 10%;
  cursor: pointer;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  text-align: center;
}
.go-top-button i {
  position: absolute;
  font-size: 1.7rem;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  transition: 0.2s;
}
.go-top-button i:hover {
  color: #000000;
}
.show {
  z-index: 10;
}
.show .go-top-button {
  animation: popup 0.3s ease-in-out;
  width: 3.6rem;
  height: 3.6rem;
  z-index: 11;
}
.show i {
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 600px) {
  .go-top-container {
    bottom: 2.5rem;
    right: 0.2rem;
  }
  .go-top-container .go-top-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .show .go-top-button {
    width: 2.6rem;
    height: 2.6rem;
  }
}

/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main_container {
  width: 90vw;
  overflow: hidden;
  margin: auto;
  position: relative;
}
.titulo-main {
  text-align: center;
  font-size: 4em;
  font-weight: 400;
  color: #1f415d;
}

/* About us
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about-us {
  background: #f2f2f2;
}
.contenedor-articulo {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  justify-content: space-around;
}
.articulo {
  width: 29%;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 45px 30px 60px 30px;
  transition: 0.5s;
}
.articulo:hover {
  box-shadow: 0 4px 10px rgba(17, 29, 48, .26);
}
.articulo>i {
  font-size: 30px;
  color: #fff;
  background: #001A49;
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  padding-top: 20px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}
.articulo>h3 {
  font-size: 24px;
  margin-top: 30px;
  color: #001A49;
}
.articulo>p {
  font-weight: 400;
  font-size: 14px;
  color: black;
  margin-top: 15px;
  padding-bottom: 20px;
}
.articulo>a {
  margin: 28px 0 0 0;
  width: 130px;
  display: inline-block;
  text-align: center;
  color: black;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}
.articulo>a:hover {
  color: white;
  transition: color .5s;
  box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 1000px){
  .titulo-main {
      font-size: 3em;
  }
}
@media screen and (max-width:800px) {
  .articulo {
    width: 45%;
  }
}
@media screen and (max-width:600px) {
  .articulo {
    width: 95%;
  }
}
@media screen and (max-width: 500px) {
  .titulo-main {
    font-size: 2.5em;
  }
}

/* WAVE INFO
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wave-info {
    width: 100%;
    height: 600px;
    background: #11AAC3;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(249, 95%, 50%, 0.459), hsla(197, 45%, 52%, 0.664)), url(../img/Home/wave-img.jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(249, 95%, 50%, 0.459), hsla(197, 45%, 52%, 0.664)), url(../img/Home/wave-img.jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.textos-wave {
  display: flex;
  height: 430px;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.textos-wave h1 {
  font-size: 50px;
  color:#fff;
}
.textos-wave h2 {
  font-size: 30px;
  font-weight: 300;
  color:#001A49;
}
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px; 
  overflow: hidden;
}
.wave-revista {
  background: #11AAC3;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, hsla(249, 95%, 50%, 0.459), hsla(197, 45%, 52%, 0.664)), url(../img/Gallery/computer.jpg);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, hsla(249, 95%, 50%, 0.459), hsla(197, 45%, 52%, 0.664)), url(../img/Gallery/computer.jpg);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:800px) {
  .wave-info{
    background-position: center;
  }
}
@media screen and (max-width: 500px) {
  .textos-wave h1{
    font-size: 35px;
  }
  .textos-wave h2{
    font-size: 20px;
  }
}

/* REVISTA HOME
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.revista {
  padding: 30px 0 60px 0;
}
.contenedor-revista{
  display: flex;
  justify-content: space-evenly;
  margin-top: 60px;
}
.imagen-revista{
  width: 48%;
}
.revista .contenido-textos{
  width: 48%;
}
.contenido-textos h3{
  margin-bottom: 15px;
  padding: 0;
}
.contenido-textos h3 span{
  background: #001A49;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  padding: 2px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
  margin-right: 5px;
}
.contenido-textos p{
  padding: 0px 0px 30px 15px;
  font-weight: 300;
  text-align: justify;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
  .contenedor-revista {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .revista .contenido-textos{
      width: 90%;
  }
  .imagen-revista{
      width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .imagen-revista{
    margin-bottom: 60px;
    width: 99%;
  }
  .revista .contenido-textos{
      width: 95%;
  }
}

/* Questions
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.questions{
  text-align: center;
}
.questions__container{
  display: grid;
  gap: 2em;
  padding-top: 50px;
  padding-bottom: 100px;
}
.questions__padding{
  padding: 0;
  transition: padding .3s;
  border: 1px solid #001A49;
  border-radius: 6px;
}
.questions__padding--add{
  padding-bottom: 30px;
}
.questions__answer{
  padding: 0 30px 0;
  overflow: hidden;
}
.questions__title{
  text-align: left;
  display: flex;
  font-size: 20px;
  padding: 30px 0 30px;
  cursor: pointer;
  color: #001A49;
  justify-content: space-between;
}
.questions__arrow{
  border-radius: 50%;
  background-color: #001A49;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  margin-left: 10px;
  transition:  transform .3s;
}
.questions__arrow--rotate{
  transform: rotate(180deg);
}
.questions__show{
  text-align: left;
  height: 0;
  transition: height .3s;
}
.questions__img{
  display: block;
}
.questions__copy{
  width: 60%;
  margin: 0 auto;
  margin-bottom: 40px;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
  .questions__copy{
    width: 100%;
  }
}
@media screen and (max-width:600px) {
  .questions__title{
    font-size: 1rem;
  }
}

/* REVISTA
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.revista-margin {
  margin-top: 70px;
}
.revista-header {
  margin-top: 90px;
}
.conborde{
  border: 3px dashed #11AAC3;
  height: 80vh;
  width: 40%;
}
.revista-img {
  text-align: center;
  align-items: center;
  margin-bottom: 100px;
}
.revista-img img {
  height: 50vh;
}
.separador {
  width: 90vw;
  text-align: center;
  margin-top: 30px;
}
.section-title {
	font-size: 28px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-weight: 400;
	display: inline-block;
	position: relative;
  color: #ffffff;
}
.section-title:after,
.section-title:before {
	content: "";
	position: absolute;
	bottom: 0;
}
.section-title:after {
	height: 2px;
	background-color: #99bbc0;
	left: 25%;
	right: 25%;
}
.section-title:before {
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	background-color: #11AAC3;
	left: 50%;
	transform: translatex(-50%);
	bottom: -6px;
	z-index: 9;
	border-radius: 50%;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
  .conborde{
    height: 80vh;
    width: 90%;
  }
  .conmargin{
    margin-top: 50px;
  }
}
@media screen and (max-width:600px) {
  .conborde{
    border: 2px dashed #11AAC3;
    height: 80vh;
    width: 80%;
  }
  .conmargin{
    margin-top: 60px;
  }
  .section-title {
    font-size: 18px;
  }
}

/* BLOG
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.blog {
  margin: 60px 0;
}
.mleft {
  margin-left: 77px;
}
.mright {
  margin-right: 77px;
}
.blogpage {
  padding: 30px 0 60px 0;
}
.contenedor-blog{
  display: flex;
  justify-content: space-evenly;
}
.imagen-blog{
  height: 84vh;
  width: 50%;
  box-shadow: 0px 0px 15px 15px #7bb8c2;
  -webkit-box-shadow: 0px 0px 15px 15px #7bb8c2;
}
.blogpage .blog-textos {
  font-family: 'Code Next', sans-serif;
  color: #001A49;
  align-items: center;
  width: 40%;
}
.blog-textos h1 {
  font-size: 4em;
  padding: 0;
  margin: 77px 0 5px 0;
}
.blog-textos span {
  font-size: small;
  font-weight: 300;
  font-style: italic;
}
.blog-textos p {
  font-size: large;
  font-weight: 500;
  line-height: 29px;
  text-align: justify;
  margin: 25px 0 40px 0;
}
.blog-complete {
  font-family: 'Code Next', sans-serif;
  color: #001A49;
  width: 100%;
}
.blog-complete h2 {
  font-size: 3em;
  color: #11AAC3;
  padding: 0;
  margin: 17px 0 25px 0;
}
.blog-complete p {
  font-size: large;
  font-weight: 500;
  line-height: 29px;
  text-align: justify;
  margin-top: 25px;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:1200px) {
  .card-revista h1 {
    font-size: 3em;
  }
}
@media screen and (max-width:900px) {
  .card-revista h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width:800px) {
  .contenedor-blog {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .blogpage .blog-textos {
      width: 90%;
  }
  .imagen-blog{
      width: 90%;
  }
  .mleft {
    margin-left: 0px;
  }
  .mright {
    margin-right: 0px;
  }
  .card-revista h1 {
    margin-top: 30px;
    font-size: 2.2em;
  }
}
@media screen and (max-width: 700px) {
  .blogpage .blog-textos h1 {
    margin-top: 30px;
    font-size: 3em;
  }
}
@media screen and (max-width: 500px) {
  .imagen-blog{
    margin-bottom: 40px;
    width: 84%;
  }
  .blogpage .blog-textos {
      width: 95%;
  }
  .blogpage .blog-textos h1 {
    margin-top: 10px;
    font-size: 2em;
  }
  .blog-complete h2 {
    font-size: 2em;
  }
}

/* OTROS BLOGS SLIDER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.testimony{
  background-color: #e5e5f7;
}
.testimony__container{
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  gap: 1em;
  align-items: center;
}
.testimony__body{
  display: grid;
  grid-template-columns: 1fr max-content;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  grid-column: 2/3;
  grid-row: 1/2;
  opacity: 0;
  pointer-events: none;
}
.testimony__body--show{
  pointer-events: unset;
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}
.testimony__img{
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  margin: 20px 0;
}
.testimony__texts{
  max-width: 700px;
}
.testimony__course{
  background-color: royalblue;
  color: #fff;
  display: inline-block;
  padding: 5px;
}
.testimony__arrow {
  width: 90%;
  cursor: pointer;
}
@media screen and (max-width:800px) {
  .testimony__container{
    grid-template-columns: 30px 1fr 30px;
  }
  .testimony__body{
      grid-template-columns: 1fr;
      grid-template-rows: max-content max-content;
      gap: 3em;
      justify-items:center ;
  }
  .testimony__img{
      width: 200px;
      height: 200px;
      
  }
}
@media screen and (max-width:800px) {
  .testimony{
    --padding-container: 60px 0;
  }
  .testimony__container{
    grid-template-columns: 28px 1fr 28px;
    gap: .9em;
  }
  .testimony__arrow{
    width: 100%;
  }
  .testimony__course{
    margin-top: 15px;
  }
}

/* COMENTARIOS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.comentarios {
  font-family: 'Code Next', sans-serif;
  color: #001A49;
  width: 100%;
}
.comentarios h2 {
  font-size: 3em;
  color: #11AAC3;
  padding: 0;
  margin: 17px 0 25px 0;
}
@media screen and (max-width:500px) {
  .comentarios h2 {
    font-size: 2em;
  }
}

/* ABOUT US
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 100px 0;
}
.about {
  text-align: center;
}
.subtitle {
  color: #001A49;
  font-size: 2rem;
  margin-bottom: 25px;
}
.about__paragraph {
  line-height: 1.7;
  margin-bottom: 25px;
}
.about__main {
  padding-top: 40px;
  display: grid;
  width: 90%;
  margin: 0 auto;
  gap: 1em;
  row-gap: 4em;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(260px, auto));
}
.about__main i {
  font-size: 30px;
  color: #fff;
  background: #001A49;
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  padding-top: 20px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}
.about__main h3 {
  padding: 0;
}
.about__icons {
  display: grid;
  gap: 1em;
  justify-items: center;
  width: 260px;
  overflow: hidden;
  margin: 0 auto;
}
.about__icon {
  width: 40px;
}
/* Knowledge */
.knowledge {
  background-color: #e5e5f7;
  background-image: radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  overflow: hidden;
}
.knowledge__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  align-items: center;
}
.knowledege__texts {
  margin-right: 50px;
}
.knowledge__picture {
  max-width: 500px;
}
.knowledge__paragraph {
  line-height: 1.7;
  margin-bottom: 15px;
}
.knowledge__img {
  width: 100%;
  display: block;
}
/* price */
.price {
  text-align: center;
}
.price__table {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
  justify-content: space-evenly;
  align-items: center;
}
.price__element {
  background-color: #e5e5f7;
  text-align: center;
  border-radius: 10px;
  width: 330px;
  padding: 40px;
  --color-plan: #696871;
  --color-price: #1D293F;
  --bg-cta: #fff;
  --color-cta: #5454D4;
  --color-items: #696871;
}
/* .price__element:hover {
  width: 370px;
  padding: 60px 40px;
  background-color: #FF7143;
  --color-plan: rgb(255 255 255 / 75%);
  --color-price: #fff;
  --bg-cta: #9F3919;
  --color-cta: #FFF;
  --color-items: #fff;
} */
.price__element--best {
  width: 370px;
  padding: 60px 40px;
  background-color: #FF7143;
  --color-plan: rgb(255 255 255 / 75%);
  --color-price: #fff;
  --bg-cta: #9F3919;
  --color-cta: #FFF;
  --color-items: #fff;
}
.price__name {
  color: var(--color-plan);
  margin-bottom: 15px;
  font-weight: 300;
}
.price__price {
  font-size: 2.5rem;
  color: var(--color-price);
}
.price__items {
  margin-top: 35px;
  display: grid;
  gap: 1em;
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: var(--color-items);
}
.price__cta {
  display: block;
  padding: 20px 0;
  border-radius: 10px;
  text-decoration: none;
  background-color: var(--bg-cta);
  font-weight: 600;
  color: var(--color-cta);
  box-shadow: 0 0 1px rgba(0, 0, 0, .5);
}
.price__cta:hover {
  background-color: #11AAC3;
  color: #001A49;
  box-shadow: 0 0 1px rgba(0, 0, 0, .5);
  box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}
.button-28 {
  appearance: none;
  background-color: transparent;
  border: 2px solid #001A49;
  border-radius: 15px;
  box-sizing: border-box;
  color: #001A49;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 30%;
  will-change: transform;
  margin-top: 25px;
}
.button-28:disabled {
  pointer-events: none;
}
.button-28:hover {
  color: #fff;
  border: 2px solid #11AAC3;
  background-color: #11AAC3;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}
.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:1200px){
  .button-28 {
    width: 50%;
  }
}
@media (max-width:800px){
  .about__main{
      gap: 2em;
  }
  /* .about__icons:last-of-type{
      grid-column: 1/1;
  } */
  .knowledge__container{
      grid-template-columns: 1fr;
      grid-template-rows: max-content 1fr;
      gap: 3em;
      text-align: center;
  }
  .knowledege__texts {
    margin: 0;
  }
  .knowledge__picture{
      grid-row: 1/2;
      justify-self: center;
  }
}
@media (max-width:600px){
  .button-28 {
    width: 70%;
  }
  .subtitle{
      font-size: 1.8rem;
  }
  .price__element{
      width: 90%;
  }
  .price__element--best{
      width: 90%;
      /* padding: 40px; */
  }
  .price__price{
      font-size: 2rem;
  }
}

/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in;
}
.modal.is-visible {
  visibility: visible;
  opacity: 1;
}
.modal-dialog {
  position: relative;
  max-width: 800px;
  max-height: 80vh;
  border-radius: 5px;
  background: #ffffff;
  overflow: auto;
  cursor: default;
}
.modal-dialog > * {
  padding: 1rem;
}
.modal-header,
.modal-footer {
  background: #efefef;
}
.modal-header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}
.modal-header .close-modal {
  font-size: 1.5rem;
  width: 20px;
  height: 20px;
  margin-left: 30px;
  border-color: transparent;
  background-color: transparent;
}
.modal p + p {
  margin-top: 1rem;
}
/* FORM
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input{
  background-color: #fbfbfb;
  width: 408px;
  height: 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #11AAC3;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}
textarea{
  background-color: #fbfbfb;
  width: 405px;
  height: 150px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #11AAC3;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
}
label{
  display: block;
  float: center;
}
button{
  height: 45px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  background-color: #11AAC3;
  border-color: #11abc373;
  border-style: solid;
  border-radius: 10px;
  width: 420px;
  cursor: pointer;
}
button p{
  color: #fff;
}
button:hover {
  background-color: #47b1c2;
}
span{
  color: #11AAC3;
}
.aviso{
  font-size: 13px;
  color: #001A49;
}
h1{
  font-size: 39px;
  text-align: letf;
  padding-bottom: 20px;
  color: #11AAC3;
}
h3{
  font-size: 16px;
  padding-bottom: 30px;
  color: #001A49;
}
p{
  font-size: 14px;
  color: #001A49;
}
::-webkit-input-placeholder {
  color: #a8a8a8;
}
::-webkit-textarea-placeholder {
  color: #a8a8a8;
}
.formulario input:focus{
  outline:0;
  border: 1px solid #97d848;
}
.formulario textarea:focus{
  outline:0;
  border: 1px solid #97d848;
}
/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[data-animation] .modal-dialog {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);;
}
[data-animation].is-visible .modal-dialog {
  opacity: 1;
  transition-delay: 0.2s;
}
[data-animation="slideInOutDown"] .modal-dialog {
  transform: translateY(100%);
}
[data-animation="slideInOutTop"] .modal-dialog {
  transform: translateY(-100%);
}
[data-animation="slideInOutLeft"] .modal-dialog {
  transform: translateX(-100%);
}
[data-animation="slideInOutRight"] .modal-dialog {
  transform: translateX(100%);
}
[data-animation="zoomInOut"] .modal-dialog {
  transform: scale(0.2);
}
[data-animation="rotateInOutDown"] .modal-dialog {
  transform-origin: top left;
  transform: rotate(-1turn);
}
[data-animation="mixInAnimations"].is-visible .modal-dialog {
  animation: mixInAnimations 2s 0.2s linear forwards;
}
[data-animation="slideInOutDown"].is-visible .modal-dialog,
[data-animation="slideInOutTop"].is-visible .modal-dialog,
[data-animation="slideInOutLeft"].is-visible .modal-dialog,
[data-animation="slideInOutRight"].is-visible .modal-dialog,
[data-animation="zoomInOut"].is-visible .modal-dialog,
[data-animation="rotateInOutDown"].is-visible .modal-dialog {
  transform: none;
}
@keyframes mixInAnimations {
  0% {
    transform: translateX(-100%);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: rotate(20deg);
  }
  30% {
    transform: rotate(-20deg);
  }
  40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(10deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}