/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;700&family=Roboto:wght@100;300;500&family=Patrick+Hand&display=swap');

body{
  font-family: 'Roboto', sans-serif;
  background-color: black;
  overflow-x: hidden;
}
a{
  color: inherit;
}
a:hover{
  color: inherit;
  text-decoration: inherit;
}
.last-module{
  padding-bottom: 200px;
}
.force-opacity{
  opacity: 1 !important;
}
button:focus {
  outline:0;
}
.center-element{
  margin: 0 auto;
}
.title-green{
  font-family: 'Lora', serif;
  font-size: 38px;
  text-align: center;
  color: #A8E063;
  opacity: 0;
}
.title-white{
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  line-height: 39px;
  color:white;
  font-weight: 500;
}
.title-white2{
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  line-height: 45px;
  color:white;
  font-weight: 500;
}
.text-general{
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 35.16px;
  color:white;
  font-weight: 100;
}
.text-general-contacto{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 19.54px;
  color:white;
  font-weight: 100;
}
.text-no-resultados{
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 28px;
  color:white;
  font-weight: 400;
  text-align: center;
}
.icon-fail-search{
  width: 30%;
  min-width: 180px;
}
.btn-green{
  width: fit-content;
  display: table;
  padding: 4px 27px;
  background: rgb(168,224,99);
  background: linear-gradient(0deg, rgba(168,224,99,1) 0%, rgba(86,171,47,1) 99%);
  border: 2px solid;
  border-radius: 7px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #101010;
  cursor: pointer;
  transition: .5s;
}
.btn-green:hover{
  background: transparent;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to top, rgba(168,224,99,1), rgba(86,171,47,1));
  border-radius: 7px;
  color: white;
  transition: .5s;
}
@media (max-width: 915px) {
  .text-general {
    font-size: 18px;
    line-height: 22.16px;
  }
}
/***********************
        ALERTAS 
***********************/
.overlay-alerta{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 10;
  display: none;
}
.container-alert{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 550px;
  height: 450px;
  margin-left: -275px;
  margin-top: -225px;
  background-color: #101010;
  border-radius: 15px;
}
.close-btn{
  position: absolute;
  right: 15px;
  top: 15px;
  width: 25px;
  height: 25px;
  background-image: url(../img/close_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.content-alert{
  position: absolute;
  left: 5%;
  top: 40px;
  width: 90%;
  height: 385px;
}
.icon-alert{
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -65px;
  width: 130px;
  height: 110px;
}
.icon-alert-2{
  position: absolute;
  left: 50%;
  top: 40px;
  margin-left: -30px;
  width: 60px;
  height: 47px;
}
.content-info-alert{
  position: absolute;
  top: 120px;
  width: 100%;
  height: 265px;
}
.info-alert h6{
  color: white;
  text-align: center;
  font-size: 20px;
  padding-top: 10px;
}
.info-alert p{
  color: white;
  text-align: center;
  font-weight: 100;
  font-size: 17px;
  line-height: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.info-alert input{
  text-align: center;
}
.info-alert label{
  color: white;
  font-size: 14px;
  font-weight: 100;
}
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: -60px;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/***********************
          HEADER 
***********************/
.header-can{
  position: fixed;
  display: table;
  width: 100%;
  height: 100px;
  background-color: black;
  z-index: 10;
}
.cont-header{
  margin: 0 auto;
}
.cont-logo-header{
  padding-top: 30px;
}
.cont-logo-header img{
  width: 175px;
}
.cont-nav{
  position: relative;
  padding-top: 37px;
}
.nav-list-idioma{
  list-style: none;
  padding-left: 0px;
  font-weight: 500;
  font-size: 16px;
  color: white;
  display: none;
}
.nav-list-idioma li{
  float: right;
  padding-right: 50px;
  cursor: pointer;
}
.nav-list{
  list-style: none;
  padding-left: 0px;
  font-weight: 500;
  font-size: 16px;
  color: white;
}
.nav-list li{
  float: right;
  padding-right: 50px;
  cursor: pointer;
}
.nav-list li:hover{
  color: #64D30D;
}
.icon-iniciar-sesion{
  width: 21px;
  margin-right: 4px;
}
.link-nav-active{
  color: #64D30D;
}
/* SELECT IDIOMA */
.idioma-list{
  list-style: none;
  padding-left: 0px;
  margin-top: -5px;
}
.idioma-list li{
  position: relative;
  float: none;
  padding-bottom: 5px;
  padding-right: 0px;
}
.idioma-list li img{
  width: 30px;
}
.lang-active::after{
  content: '';
  position: absolute;
  left: 37px;
  width: 13px;
  height: 29px;
  background-image: url(../img/down-arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 1s;
}
.lang-inactive{
  display: block;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 1s;
  padding-bottom: 0px !important;
}
.rotate-icon::after{
  transform: rotate(180deg);
  transition: 1s;
}
.lang-show{
  height: 60px;
  opacity: 1;
}
.cont-menu-movil{
  display: none;
}
.btn-menu-movil{
  position: absolute;
  left: 25px;
  top: 23px;
  width: 30px;
  height: 50px;
  background-image: url(../img/menu.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: none;
}
@media (max-width: 1110px) {
  .cont-header{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 915px) {
  .nav-list{
    display: none;
  }
  .nav-list-idioma{
    display: block;
  }
  .cont-menu-movil, .btn-menu-movil{
    display: block;
  }
  .cont-logo-header{
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }
  .logo{
    position: absolute;
    left: 50%;
    margin-left: -92.5px;
    top: 40px;
  }
  .cont-nav, .cont-menu-movil{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 380px) {
  .nav-list-idioma li {
    padding-right: 6px;
  }
}
/********* MENU MOVIL ********/
.cont-menu-movil-left{
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: #000000;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3;
  width: 60%;
  min-width: 320px;
  height: 100vh;
  padding-top: 100px;
  transition: 1s;
  transform: translateX(-100%);
  display: none;
}
.view-menu-movil{
  transform: translateX(0%);
}
.close-btn-menu-mov{
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(../img/close_btn.png);
  background-repeat: no-repeat;
  background-position: center;
  float: right;
  top: 10px;
  margin-right: 10px;
}
.cont-int-menu-movil{
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  top: 30px;
}
.avatar-menu-movil{
  position: relative;
  left: 24px;
  width: 75px;
  height: 75px;
  border-radius: 80px;
  background-image: url(../img/no-photo.png);
  background-position: center;
  background-size: cover;
}
.nombre-user-menu-movil{
  position: relative;
  top: 20px;
  left: 24px;
  color: white;
  font-size: 16px;
  line-height: 14px;
  font-weight: 400;
}
.nav-menu-movil{
  position: relative;
  top: 80px;
  padding-left: 24px;
}
.nav-menu-movil h4{
  color: #A8E063;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 15px;
}
.nav-menu-movil ul{
  padding-left: 0px;
  list-style: none;
  color: white;
  font-weight: 300;
  font-size: 18px;
}
.nav-menu-movil ul li{
  padding-bottom: 15px;
  cursor: pointer;
}
.nav-menu-movil ul li:hover{
  color: #A8E063;
}
.footer-menu-movil{
  position: relative;
  width: 100%;
  top: 90px;
}
.logo-footer-menu-movil{
  position: relative;
  width: 160px;
  left: 25px;
}
.footer-menu-movil-ap-tc{
  position: relative;
  top: 10px;
  left: 25px;
  cursor: pointer;
  color: white;
  font-weight: 200;
  font-size: 12px;
}
.footer-menu-movil-ap-tc:hover{
  color: #A8E063;
}
@media (max-width: 915px) {
  .cont-menu-movil-left{
    display: block;
  }
}
/******************************
            VIDEO HOME
******************************/
.main-video-home{
  overflow: hidden;
}
.home-video-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 980px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.home-video-wrapper video {
  width: 100%;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
}
.caption-video-home{
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 15px;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.7315301120448179) 69%, rgba(70,108,87,0) 109%);
  padding-top: 30px;
  padding-bottom: 20px;
  z-index: 2;
}
.title-caption{
  font-family: 'Lora', serif;
  color: white;
  font-size: 50px;
  line-height: 49px;
  max-width: 800px;
  text-shadow: 2px 1px 2px #000000;
}
.patrocinio{
  width: 250px;
  padding-bottom: 15px;
}
.text-patrocionio{
  color: white;
  text-shadow: 2px 1px 2px #000000;
  padding-right: 130px;
}
.btn-play-video{
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  background-image: url(../img/play.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .5;
  cursor: pointer;
  display: none;
}
@media (max-width: 1700px) {
  .home-video-wrapper {
    height: 880px;
  }
}
@media (max-width: 1520px) {
  .home-video-wrapper {
    height: 768px;
  }
}
@media (max-width: 1340px) {
  .home-video-wrapper {
    height: 640px;
  }
}
@media (max-width: 1270px) {
  .title-caption {
    font-size: 40px;
    line-height: 46px;
    max-width: 520px;
  }
  .patrocinio {
    width: 200px;
  }
  .text-patrocionio {
    padding-right: 70px;
  }
}
@media (max-width: 1100px) {
  .home-video-wrapper {
    height: 620px;
  }
}
@media (max-width: 860px) {
  .home-video-wrapper {
    height: 500px;
  }
  .title-caption {
    font-size: 28px;
    line-height: 33px;
    max-width: 390px;
  }
  .patrocinio {
    width: 147px;
  }
  .text-patrocionio {
    padding-right: 50px;
    font-size: 13px;
  }
}
@media (max-width: 720px) {
  .home-video-wrapper {
    height: 470px;
  }
  .title-caption {
    font-size: 28px;
    line-height: 33px;
    max-width: 390px;
  }
  .patrocinio {
    width: 147px;
  }
  .text-patrocionio {
    padding-right: 50px;
    font-size: 13px;
  }
}
@media (max-width: 650px) {
  .home-video-wrapper {
    height: 500px;
  }
  .home-video-wrapper video {
    width: 100%;
    height: 380px;
    min-height: initial;
    min-width: 100%;
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .caption-video-home {
    background: rgb(0,0,0) !important;
  }
  .title-caption {
    font-size: 33px;
    line-height: 40px;
    max-width: 100%;
    text-align: center;
  }
  .cont-text-caption{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cont-patrocinio{
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }
  .text-patrocionio {
    padding-right: 0px;
    padding-top: 40px;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .home-video-wrapper video {
    height: 340px;
    top: 75px;
  }
}
@media (max-width: 500px) {
  .home-video-wrapper {
    height: 440px;
  }
}
@media (max-width: 450px) {
  .home-video-wrapper video {
    height: 380px;
  }
}
/***********************
       CARRUSEL HOME
************************/
.owl-carousel{
  opacity: 0;
}
.subtitle-carrusel {
  width: 80%;
  margin: 30px auto;
  color: white;
  font-size: 28px;
  opacity: 0;
}
.item {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
.owl-nav{
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0px;
  margin-top: -35px;
  z-index: -1;
}
.owl-prev span, .owl-next span{
  font-size: 60px;
  line-height: 40px;
  color: white;
}
.owl-next{
  position: absolute;
  left: -50px;
}
.owl-prev{
  position: absolute;
  right: -50px;
}
.btn-play-thumb{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -40px;
  background-image: url(../img/play.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  cursor: pointer;
}
@media (max-width: 840px) {
  .subtitle-carrusel {
    text-align: center;
  }
}
/******************************
        MISIÃ“N HOME
******************************/
.view-text-hide-home{
  max-height: 100% !important;
  transition: 1s;
}
.hide-btn{
  display: none;
}
#texthidehome{
  height: auto;
  max-height: 0px;
  overflow: hidden;
  transition: 1s;
}
.mascota-center-movil{
  display: none;
  margin: 20px auto 50px auto;
}
.col-left-mision, .col-right-mision, .col-total-mision{
  opacity: 0;
}
@media (max-width: 840px) {
  .mascota-left {
    display: none;
  }
  .mascota-center-movil{
    display: block;
  }
  .col-right-mision{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/******************************
        CARDS ARTÃCULOS HOME
******************************/
.main{
  padding-bottom: 120px;
}
.card-cont{
  max-width: 330px;
  opacity: 0;
}
.img-card-cont{
  height: 280px;
}
.cont-img-card{
  height:280px;
  width: 100%;
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
}
.parallax-inner{
  background-size: cover;
}
.card{
  background-color: transparent;
  color: white;
}
.card-body {
  padding: 10px 0px;
}
.small-text-card{
  font-size: 12px;
  font-weight: 300;
}
.card-title{
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  padding-top: 10px;
}
.card-text{
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #A8E063;
}
.card-pos-2{
  padding-top: 80px;
}
.card-pos-3{
  padding-top: 160px;
}
@media (max-width: 915px) {
  .card{
    max-width: 310px;
    margin: 0 auto;
  }
}
@media (max-width: 860px) {
  .card-cont{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .card-pos-1, .card-pos-2, .card-pos-3 {
    padding-top: 20px;
  }
  .parallax-inner {
    background-position: center;
  }
}
/******************************
      BLOG MÃ“DULO HOME
******************************/
.square-blog{
  background: rgb(168,224,99);
  background: linear-gradient(0deg, rgba(168,224,99,1) 0%, rgba(86,171,47,1) 99%);
  padding: 20px 30px 50px 30px;
  border-radius: 20px;
  opacity: 0;
}
.title-sq-blog{
  font-size: 26px;
  line-height: 33.28px;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #000000;
}
.cont-thumb-blog{
  min-width: 110px;
}
.thumb-blog{
  width: 83px;
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  border-radius: 10px;
  transition: background-size .5s ease-in;
  -moz-transition: background-size .5s ease-in;
  -ms-transition: background-size .5s ease-in;
  -o-transition: background-size .5s ease-in;
  -webkit-transition: background-size .5s ease-in;
}
.cont-thumb-info-blog{
  max-width: 275px;
}
.title-blog{
  width: fit-content;
  display: table;
  font-family: 'Lora', serif;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 17.92px;
  border-bottom: 2px solid black;
  padding: 8px 3px 15px 3px;
  margin-bottom: 6px;
  transition: .5;
}
.tag-blog{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 16.41px;
  color: #000000;
}
.item-blog{
  cursor: pointer;
}
.zoom-thumb{
  background-size: 130%;
  transition: background-size .5s ease-in;
  -moz-transition: background-size .5s ease-in;
  -ms-transition: background-size .5s ease-in;
  -o-transition: background-size .5s ease-in;
  -webkit-transition: background-size .5s ease-in;
}
.hover-title-blog{
  color: white;
  border-bottom: 2px solid white;
  transition: .5;
}
.hover-tag-blog{
  color: white;
  transition: .5;
}
.cont-esp-text-img-note{
  padding-right: 130px;
}
@media (max-width: 950px) {
.cont-esp-text-img-note{
  padding-left: 60px;
  padding-right: 20px;
}
}
@media (max-width: 915px) {
  .last-module{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px;
  }
  .square-blog{
    border-radius: 0px;
  }
}
@media (max-width: 800px) {
  .item-blog, .cont-notes-blog {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .item-blog .row{
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
  }
}

/****************************
            FOOTER
*****************************/
.footer{
  background-color: #000000;
}
.logo-footer{
  width: 148px;
}
.title-footer{
  color: #A8E063;
  margin-bottom: 20px;
}
.link-footer{
  color: white;
  font-weight: 100;
  font-size: 14px;
}
.link-footer:hover{
  color: #A8E063;
}
.copyright-footer{
  position: absolute;
  right: 0px;
  top: 40px;
  color: white;
  font-weight: 100;
  font-size: 14px;
}
.list-rs-footer{
  position: absolute;
  right: 0px;
  width: 160px;
  height: 23px;
  padding-left: 0px;
  list-style: none;
}
.list-rs-footer li{
  width: 40px;
  text-align: center;
  float: left;
}
.list-rs-footer li img{
  width: 25px;
  cursor: pointer;
}
.list-rs-footer li img:hover{
  opacity: 0.6;
}
.col-links-footer-movil{
  display: none;
}
@media (max-width: 1260px) {
  .cont-footer{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    max-width: 95%;
  }
  .logo-footer {
    width: 135px;
  }
  .link-footer {
    color: white;
    font-weight: 100;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .col-links-footer{
    padding-right: 0px;
  }
  .col-logo-footer{
    padding-left: 0px;
  }
}
@media (max-width: 860px) {
  .logo-footer {
    width: 150px;
  }
  .col-logo-footer{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-links-footer{
    display: none;
  }
  .col-links-footer-movil{
    display: block;
  }
  
}
/*****************************
        INICIAR SESIÃ“N
*****************************/
.mascota-inicio-sesion{
  margin: 150px auto 20px auto;
}
.cont-tab-iniciar-sesion{
  border-bottom: 0px;
}
.tab-iniciar-sesion{
  width: 50%;
  text-align: center;
}
.tab-iniciar-sesion .nav-link{
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: white !important;
  border-top: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
  border-bottom: 2px solid white;
}
.tab-iniciar-sesion .active{
  background-color: transparent !important;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  border-bottom: 2px solid #FF9900 !important;
  border-top: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
  color: #FF9900 !important;
}
#sesionTabContent{
  padding: 50px;
}
#forminiciarsesion .form-group label{
  color: white;
  font-weight: 400;
}
#forminiciarsesion .form-group{
  margin-bottom: 40px;
}
.restablecer-pass:hover{
  color: #A8E063 !important;
  cursor: pointer;
}
.cont-form-reg-intotab{
  max-width: 870px;
  margin: 0 auto;
}
/*****************************
    RESTABLECER CONTRASEÃ‘A
*****************************/
.space-blank-restablecer{
  height: 180px;
}
/*****************************
        REGISTRARSE
*****************************/
.title-avatar{
  color: white;
  font-weight: 100;
}
#formregistro .form-group label{
  color: white;
  font-weight: 100;
}
#formregistro .form-group{
  margin-bottom: 40px;
}
#formregistro .form-group small{
  color: white;
  font-weight: 100;
}
.avatars-options{
  list-style: none;
  padding-left: 0px;
  display: flex;
}
.first-option-avatars{
  padding-left: 0px !important;
  padding-right: 10px;
}
.avatars-options li{
  flex: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.avatar-active{
  border: 3px solid #A8E063;
}
.btn-avatar{
  width: 55px;
  cursor: pointer;
  border-radius: 40px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.btn-upload-avatar{
  width: 55px;
  cursor: pointer;
  border-radius: 40px;
}
.cont-form-sesion-register{
  min-width: 660px;
}

@media (max-width: 730px) {
  .tab-iniciar-sesion .nav-link{
    font-size: 18px;
  }
  .cont-form-sesion-register{
    min-width: 100%;
  }
  .title-green-session{
    font-size: 24px;
  }
  .mascota-inicio-sesion{
    width: 106px;
  }
  .avatars-options li {
    flex: inherit;
  }
  .first-option-avatars {
    padding-left: 10px !important; 
  }
}
@media (max-width: 480px) {
  .btn-avatar, .btn-upload-avatar {
    width: 45px;
    cursor: pointer;
  }
  #avatarmovil {
    width: 315px;
  }
}
@media (max-width: 450px) {
  .btn-avatar, .btn-upload-avatar {
    width: 40px;
    cursor: pointer;
  }
  #avatarmovil {
    width: 250px;
}
  .avatars-options li {
    padding-left: 5px;
    padding-right: 5px;
  }
  .first-option-avatars {
    padding-left: 5px !important;
  }
}
/********************************
              BLOG
********************************/
.hero-header-blog{
  height: 450px;
  background-image: url(../img/blog/hero-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-header-blog-note{
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.title-blog-content{
  color: white;
  font-family: 'Lora', serif;
  font-size: 37px;
  line-height: 45px;
}
.title-blog-content-int{
  position: relative;
  color: white;
  font-family: 'Lora', serif;
  font-size: 37px;
  line-height: 45px;
  padding-left: 45px;
  margin-bottom: 50px;
}
.title-blog-content-int::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 40px;
  left: 0px;
  top: 50%;
  margin-top: -20px;
  background-image: url(../img/chevron-left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#gobackpost{
  position: absolute;
  left: 0px;
  top: 50%;
  width: 25px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  z-index: 10;
}
#gonextpost{
  position: absolute;
  right: 0px;
  top: 50%;
  width: 25px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  z-index: 10;
  display: none;
}
.space-blank-col-left-blog{
  height: 105px;
}
.subtitle-info-art{
  color: #A8E063;
  font-size: 14px;
  margin-bottom: 0px;
}
.text-info-art{
  color: white;
  font-weight: 200;
  font-size: 14px;
}
.body-articulo{
  color: white;
  font-weight: 200;
}
/** FILTRO DE TEMAS **/
.filtro-temas-blog{
  padding-top: 40px;
  padding-bottom: 40px;
}
.list-temas{
  list-style: none;
  padding-left: 0px;
  font-weight: 100;
  color: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.list-temas li{
  flex-basis: 33.3%;
  padding: 16px;
  line-height: 18.75px;
  text-align: center;
}
.list-temas li:hover{
  cursor: pointer;
  color: #A8E063;
}
.active-filter-tema{
  color: #FF9900;
  border-bottom: 2px solid #FF9900;
}
.active-filter{
  color: #FF9900;
}
.cont-clear-filters{
  text-align: center;
  position: relative;
  top: 50px;
  height: 40px;
  padding-top: 7px;
}
/** ARTICULO BLOG **/
.content-item-art-blog{
  padding-bottom: 80px;
  opacity: 0;
}
.img-art-blog{
  width: 100%;
  height: calc((100vw/2 - 30px) * .7);
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.legales-foto-blog{
  font-size: 12px;
  padding-top: 10px;
  font-weight: 100;
  color: white;
}
.btn-link{
  color: white;
  font-size: 20px;
  white-space: normal;
  padding-right: 40px !important;
}
.btn-link:hover{
  color: #A8E063;
}
#accordion .card{
  min-width: 100%;
}
.card-header-blog, .card-header-blog h5 .btn{
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  text-align: left;
  text-decoration: none !important;
}
 .card-header-blog h5 .btn::after{
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 20px;
  background-image: url(../img/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  transition: 1s;
}
.card-header-blog h5{
  position: relative;
}
.rotate-arrow-list::after{
  transform: rotate(0deg);
}
.card-body-blog{
  color: white;
  font-weight: 200;
  font-size: 15px;
}
.tema-articulo{
  color: #A8E063;
  font-size: 14px;
}
.fecha-articulo{
  font-weight: 100;
  color: white;
  font-size: 14px;
}
.title-article-item-blog{
  color: white;
  font-family: 'Lora', serif;
  font-size: 26px;
}
.text-article-item-blog{
  font-weight: 200;
  color: white;
  font-size: 15px;
}
.text-note-blog{
  font-weight: 200;
  font-size: 15px;
  line-height: 18px;
  color: white;
}
.img-article-into{
  max-width: 280px;
  width: 100%;
}
.img-article-into2{
  max-width: 150px;
  width: 100%;
}
.footer-img-article{
  font-weight: 200;
  color: white;
  font-size: 12px;
  margin-bottom: 0px;
}
.title-note-into{
  color: white;
}

/** WIDGET RIGHT BLOG **/
.title-widget-blog-right{
  color: white;
  width: 100%;
  font-size: 16px;
}
.filtros-blog{
  list-style: none;
  padding-left: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.filtros-blog li{
  flex: 1 0 33.333%;
  max-width: 33.333%;
  padding: 2px 10px 2px 0px;
  margin-bottom: 5px;
}
.btn-filtro{
  text-align: center;
  color: #000000;
  background-color: #A8E063;
  height: 100%;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
}
.btn-filtro:hover{
  text-align: center;
  color: #000000;
  background-color: white;
  padding: 8px;
  border-radius: 10px;
}
.btn-segmentos-movil{
  position: relative;
  text-align: left;
  color: #000000;
  background-color: #A8E063;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}
.btn-segmentos-movil::after{
  content: '';
  position: absolute;
  width: 31px;
  height: 25px;
  background-image: url(../img/arrow-black.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0px;
}
.btn-segmentos-movil:hover{
  text-align: left;
  color: #000000;
  background-color: white;
  padding: 8px;
}
.btn-seg-active{
  border-bottom-left-radius:0px;
  border-bottom-right-radius:0px;
}
.btn-seg-active::after{
  transform: rotate(90deg);
}
.list-filter-movil{
  background-color: #A8E063;
  padding: 0px;
  height: 0px;
  overflow: hidden;
  border-bottom-left-radius:10px;
  border-bottom-right-radius:10px;
}
.showlist-filter{
  height: auto;
  padding: 5px;
}
.list-filter-movil ul{
  list-style: none;
  padding-left: 0px;
}
.list-filter-movil ul li{
  width: 100% !important;
  max-width: 100%;
  cursor: pointer;
  font-size: 12px;
}
.list-filter-movil ul li:hover{
  color: #FF9900;
}
.btn-active-filtro{
  text-align: center;
  color: #000000;
  background-color: white;
  padding: 8px;
  border-radius: 10px;
}
.list-archivos-blog{
  padding-left: 15px;
  color: white;
  font-weight: 200;
}
.list-archivos-blog li {
  list-style-image: url(../img/triangule-list.png);
  padding-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
}
.list-archivos-blog li:hover {
  color: #A8E063;
}
.fecha-activa {
  color: #A8E063;
}
.item-ultimas-pub, .item-interes{
  cursor: pointer;
  padding-bottom: 25px;
}
.title-blog-wcr{
  width: fit-content;
  display: table;
  font-family: 'Lora', serif;
  color: white;
  font-size: 14px;
  line-height: 17px;
  border-bottom: 2px solid #A8E063;
  padding: 8px 3px;
  margin-bottom: 6px;
  transition: .5;
}
.tag-blog-wcr {
  font-family: 'Lora', serif;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: white;
}

/*** CALIFICADOR DE NOTA BLOG ***/
.title-mod-calif{
  color: white;
  text-align: center;
  font-size: 22px;
}
.btn-calif{
  cursor: pointer;
  transition: 1s;
}
.btn-calif:hover{
  transform: scale(1.2);
}
.count-votos{
  color: white;
  font-size: 22px;
}
.dejar-comentario{
  position: relative;
  width: fit-content;
  color: white;
  text-align: center;
  font-size: 22px;
  padding-right: 30px;
  margin: 0 auto;
  cursor: pointer;
}
.dejar-comentario::after{
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0px;
  top: 50%;
  margin-top: -7.5px;
  background-image: url(../img/arrow-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: .5s;
}
.comentario-box{
  width: 100%;
  height: 150px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 15px;
  resize: none;
}
.view-textarea-comment{
  height: 300px !important;
}
.rotate-arrow-comment::after{
  transform: rotate(90deg);
}
#comentblogsend{
  position: relative;
  height: 0px;
  overflow: hidden;
  transition: 1s;
}
.cont-filtros-movil{
  display: none;
}
.cont-filtros-movil .filtros-blog{
  position: absolute;
  width: 96%;
  z-index: 2;
}
.img-left-list-note1{
  min-width: 84px;
}
@media (max-width: 1525px) {
  .cont-thumb-info-blog {
    max-width: 200px;
  }
  .btn-filtro {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1150px) {
  .img-left-list-note1{
    min-width: 74px;
  }
}
@media (max-width: 1110px) {
  .cont-img-and-text-note{
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important;
  }
  .cont-img-note{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .cont-img-note .footer-img-article{
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
  }
  .cont-text-img-note{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cont-ilust-dogs{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cont-img-ilustra{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 964px) {
  .col-cont-list-dogs-note{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img-left-list-note1{
    max-width: 90px;
  }
}
@media (max-width: 915px) {
  #contentblog, #contnota{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cont-img-list-note{
    max-width: 150px;
    text-align: center;
  }
  .cont-text-list-note{
    max-width: 320px;
  }
  .title-blog-content{
    text-align: center;
  }
  .content-item-art-blog {
    max-width: 560px;
    margin: 0 auto;
  }
  .text-article-item-blog{
    display: none;
  }
  .contenedor-notas{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .filtro-temas-blog, .contenedor-filtros{
    display: none;
  }
  .cont-filtros-movil{
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .filtros-blog li {
    padding: 2px 15px 2px 15px;
  }
  .tema-articulom, .fecha-articulo{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .btn-green-blog{
    margin: 0 auto;
    font-size: 21px;
    float: inherit !important;
  }
  .title-blog-content-int {
    padding-right: 45px;
  }
  .title-blog-content-int::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    right: 0px;
    top: 50%;
    margin-top: -20px;
    background-image: url(../img/chevron-right.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .cont-datos-nota .col-4, .cont-datos-nota .col-8{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 820px) {
  .body-articulo .col-6, .body-articulo .col-8{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img-art-blog {
    height: calc((100vw/2 - -120px) * .7);
  }
  .cont-img-list-note{
    max-width: 100px !important;
  }
  .cont-text-list-note{
    max-width: 250px !important;
  }
  .cont-text-img-note2{
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 66.666667% !important;
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .cont-list-turid{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .filtros-blog li {
    padding: 2px 5px 2px 5px;
  }
  .list-filter-movil ul li {
    font-size: 11px;
  }
}
/********************************
              KIDS
********************************/
.bg-container{
  min-height: 100vh;
}
.zoomContainer {
  margin:0;
  padding:0;
  position:relative;
}
.zoomViewport {
  position: absolute;
  background-image: url(../img/kids/bg_pizarron.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1642px;
  height: 920px;
  top: 40px;
  left: 50%;
  margin-left: -821px;
}
.activezone{
  font-family: 'Patrick Hand', cursive;
}
.btn-menu{
  position: fixed;
  right: 3px;
  top: 18px;
  width: 91px;
  height: 90px;
  background-repeat: no-repeat;
  background-image: url(../img/kids/btn-kids-menu.png);
  background-position: center;
  background-size: contain;
  cursor: pointer;
  z-index: 10;
}
.menu-movil{
  position: fixed;
  transform: translateX(153px);
  right: -28px;
  top: 30px;
  z-index: 9;
  background-image: url(../img/kids/menu.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 490px;
  transition: 1s;
}
.buscador-movil{
  position: absolute;
  right: 20px;
  top: 60px;
  width: 105px;
  height: 104px;
  background-image: url(../img/kids/buscar-movil.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.buscador-movil p{
  color: #192581;
  font-size: 12px;
  font-family: 'Patrick Hand', cursive;
  padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
.buscador-movil p span{
  cursor: pointer;
}
.postit-movil{
  position: absolute;
  right: 14px;
  top: 150px;
  width: 125px;
  height: 135px;
  background-image: url(../img/kids/postit_oruga.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.postit-movil p{
  color: #192581;
  font-size: 12px;
  font-family: 'Patrick Hand', cursive;
  padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
.postit-movil p span{
  cursor: pointer;
}
.lista-movil{
  position: absolute;
  right: 14px;
  top: 250px;
  width: 101px;
  height: 243px;
  background-image: url(../img/kids/capsulta_tiempo.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.lista-movil-eng{
  background-image: url(../img/kids/capsulta_tiempo-eng.png) !important;
}
.lista-movil p{
  color: #192581;
  font-size: 10px;
  font-family: 'Patrick Hand', cursive;
  padding-top: 48px;
  padding-left: 4px;
  padding-right: 27px;
  text-align: center;
}
.lista-movil p span{
  cursor: pointer;
  border-bottom: #192581 solid 1px;
}
.showmenu{
  transform: translateX(0px);
}
.btn-click{
  display: none;
  font-size: 7px;
  padding-top: 5px;
  background-color: blue;
  text-align: center;
  color: white;
  cursor:pointer;
}
.overlay-popup-kids{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #19258195;
  overflow: auto;
  z-index: 10;
}
.btn1-into{
  width: 60px;
  height: 25px;
}
#btn1-piza{
  position: absolute;
  background-image: url(../img/kids/titulo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 600px;
  height: 140px;
  left: 42px;
  top: 40px;
}
.btn1-piza-ing{
  background-image: url(../img/kids/titulo-ing.png) !important;
}
#btn2-piza{
  position: absolute;
  background-image: url(../img/kids/nubes.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 733px;
  height: 140px;
  left: 732px;
  top: 40px;
}
#btn3-piza{
  position: absolute;
  background-image: url(../img/kids/perrito-globo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 170px;
  height: 290px;
  left: 1422px;
  top: 40px;
  z-index: 5;
}
#btn4-piza{
  position: absolute;
  background-image: url(../img/kids/postit-sol-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 390px;
  height: 350px;
  left: 30px;
  top: 170px;
  cursor:pointer;
}
#btn4-piza p{
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.70);
  color: white;
  padding-top: 23%;
  font-size: 48px;
  line-height: 52px;
  padding-left: 10%;
  padding-right: 10%;
}
#btn5-piza{
  position: absolute;
  background-image: url(../img/kids/postit-folder-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 650px;
  height: 440px;
  left: 410px;
  top: 163px;
  cursor: pointer;
}
#btn5-piza p{
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.70);
  color: white;
  padding-top: 13%;
  font-size: 61px;
  line-height: 72px;
  padding-left: 8%;
  padding-right: 12%;
  text-align: center;
}
#btn6-piza{
  position: absolute;
  background-image: url(../img/kids/mundo-perritos-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 390px;
  left: 40px;
  top: 497px;
  cursor:pointer;
}
.text-world{
  position: absolute;
  width: 280px;
  left: 24px;
  top: -1px;
}
#btn7-piza{
  position: absolute;
  background-image: url(../img/kids/perro-maceta-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 280px;
  height: 270px;
  left: 332px;
  top: 570px;
  cursor:pointer;
}
.btn7-piza-ing{
  background-image: url(../img/kids/perro-maceta-desk-ingles.png) !important;
}
#btn8-piza{
  position: absolute;
  background-image: url(../img/kids/gato-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 270px;
  height: 270px;
  left: 592px;
  top: 602px;
  cursor: pointer;
}
.btn8-piza-ing{
  background-image: url(../img/kids/gato-desk-ing.png) !important;
}
#btn9-piza{
  position: absolute;
  background-image: url(../img/kids/juegos-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 257px;
  height: 190px;
  left: 852px;
  top: 694px;
  cursor: pointer;
}
#btn10-piza{
  position: absolute;
  background-image: url(../img/kids/postit-dibujos-desk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 408px;
  height: 260px;
  left: 769px;
  top: 501px;
  z-index: 3;
  cursor: pointer;
}
.btn10-piza-ing{
  background-image: url(../img/kids/postit-dibujos-desk-ing.png) !important;
}
#btn10-piza p{
  position: absolute;
  top: 117px;
  left: 28px;
  width: 112px;
  height: 35px;
  color: black;
  font-size: 17px;
  line-height: 16px;
  text-align: center;
  overflow: auto;
}
.dibujo-mes{
  position: absolute;
  right: 55px;
  top: 70px;
  width: 170px;
  height: 135px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#btn11-piza{
  position: absolute;
  background-image: url(../img/kids/arbol-desk.png);
  background-size: 560px;
  background-repeat: no-repeat;
  width: 560px;
  height: 670px;
  left: 1080px;
  top: 190px;
  cursor:
  pointer;
}
.btn11-piza-ing{
  background-image: url(../img/kids/arbol-desk-ing.png) !important;
}
#btn11-piza p{
  position: absolute;
  bottom: 45px;
  left: 189px;
  color: #192581;
  font-size: 26px;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 1660px) {
  .zoomViewport {
    width: 1340px;
    height: 760px;
    top: 40px;
    left: 50%;
    margin-left: -670px;
  }
  #btn1-piza{
    position: absolute;
    background-image: url(../img/kids/titulo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 470px;
    height: 120px;
    left: 42px;
    top: 30px;
  }
  #btn2-piza{
    position: absolute;
    background-image: url(../img/kids/nubes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 593px;
    height: 90px;
    left: 602px;
    top: 40px;
  }
  #btn3-piza{
    position: absolute;
    background-image: url(../img/kids/perrito-globo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 130px;
    height: 210px;
    left: 1172px;
    top: 40px;
    z-index: 5;
  }
  #btn4-piza{
    position: absolute;
    background-image: url(../img/kids/postit-sol-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 270px;
    left: 39px;
    top: 140px;
    cursor:
    pointer;
  }
  #btn5-piza{
    position: absolute;
    background-image: url(../img/kids/postit-folder-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 549px;
    height: 370px;
    left: 330px;
    top: 129px;
    cursor: pointer;
  }
  #btn6-piza{
    position: absolute;
    background-image: url(../img/kids/mundo-perritos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 290px;
    left: 40px;
    top: 407px;
    cursor:
    pointer;
  }
  #btn7-piza{
    position: absolute;
    background-image: url(../img/kids/perro-maceta-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 220px;
    height: 220px;
    left: 273px;
    top: 470px;
    cursor:
    pointer;
  }
  #btn8-piza{
    position: absolute;
    background-image: url(../img/kids/gato-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 180px;
    left: 492px;
    top: 512px;
    cursor: pointer;
  }
  #btn9-piza{
    position: absolute;
    background-image: url(../img/kids/juegos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 197px;
    height: 140px;
    left: 711px;
    top: 572px;
    cursor: pointer;
  }
  #btn10-piza{
    position: absolute;
    background-image: url(../img/kids/postit-dibujos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 345px;
    height: 220px;
    left: 624px;
    top: 401px;
    z-index: 3;
    cursor: pointer;
  }
  #btn11-piza{
    position: absolute;
    background-image: url(../img/kids/arbol-desk.png);
    background-size: 470px;
    background-repeat: no-repeat;
    width: 440px;
    height: 560px;
    left: 870px;
    top: 130px;
    cursor:
    pointer;
  }
  #btn4-piza p {
    font-size: 38px;
    line-height: 43px;
  }
  #btn5-piza p {
    padding-top: 7%;
    font-size: 56px;
    line-height: 57px;
    padding-left: 10%;
    padding-right: 17%;
  }
  #btn10-piza p {
    top: 97px;
    left: 18px;
    width: 105px;
    height: 35px;
  }
  .text-world {
    position: absolute;
    width: 230px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 30px;
    left: 153px;
  }
  
}
@media (max-width: 1345px) {
  .zoomViewport {
    width: 1120px;
    height: 630px;
    top: 90px;
    left: 50%;
    margin-left: -560px;
  }
  #btn1-piza{
    position: absolute;
    background-image: url(../img/kids/titulo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 399px;
    height: 100px;
    left: 32px;
    top: 20px;
  }
  #btn2-piza{
    position: absolute;
    background-image: url(../img/kids/nubes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 493px;
    height: 90px;
    left: 502px;
    top: 24px;
  }
  #btn3-piza{
    position: absolute;
    background-image: url(../img/kids/perrito-globo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 110px;
    height: 190px;
    left: 972px;
    top: 40px;
    z-index: 5;
  }
  #btn4-piza{
    position: absolute;
    background-image: url(../img/kids/postit-sol-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 260px;
    height: 230px;
    left: 29px;
    top: 110px;
    cursor:
    pointer;
  }
  #btn5-piza{
    position: absolute;
    background-image: url(../img/kids/postit-folder-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 454px;
    height: 310px;
    left: 280px;
    top: 109px;
    cursor: pointer;
  }
  #btn6-piza{
    position: absolute;
    background-image: url(../img/kids/mundo-perritos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 230px;
    height: 240px;
    left: 20px;
    top: 327px;
    cursor:
    pointer;
  }
  #btn7-piza{
    position: absolute;
    background-image: url(../img/kids/perro-maceta-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 220px;
    left: 223px;
    top: 380px;
    cursor:
    pointer;
  }
  #btn8-piza{
    position: absolute;
    background-image: url(../img/kids/gato-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 186px;
    height: 180px;
    left: 402px;
    top: 409px;
    cursor: pointer;
  }
  #btn9-piza{
    position: absolute;
    background-image: url(../img/kids/juegos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 167px;
    height: 120px;
    left: 591px;
    top: 472px;
    cursor: pointer;
  }
  #btn10-piza{
    position: absolute;
    background-image: url(../img/kids/postit-dibujos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 295px;
    height: 220px;
    left: 514px;
    top: 333px;
    z-index: 3;
    cursor: pointer;
  }
  #btn11-piza{
    position: absolute;
    background-image: url(../img/kids/arbol-desk.png);
    background-size: 380px;
    background-repeat: no-repeat;
    width: 370px;
    height: 450px;
    left: 730px;
    top: 117px;
    cursor:
    pointer;
  }
  #btn4-piza p {
    font-size: 30px;
    line-height: 34px;
    padding-top: 30%;
  }
  #btn5-piza p {
    padding-top: 15%;
    font-size: 42px;
    line-height: 43px;
    padding-left: 10%;
    padding-right: 17%;
    text-transform: uppercase;
  }
  #btn10-piza p {
    top: 82px;
    left: 18px;
    width: 81px;
    height: 35px;
  }
  .text-world {
    position: absolute;
    width: 202px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 14px;
    left: 120px;
    font-size: 23px;
    line-height: 24px;
  }
}
@media (max-width: 1125px) {
  .zoomViewport {
    width: 1020px;
    height: 580px;
    top: 90px;
    left: 50%;
    margin-left: -512px;
  }
  #btn1-piza{
    position: absolute;
    background-image: url(../img/kids/titulo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 361px;
    height: 90px;
    left: 32px;
    top: 22px;
  }
  #btn2-piza{
    position: absolute;
    background-image: url(../img/kids/nubes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 453px;
    height: 80px;
    left: 460px;
    top: 24px;
  }
  #btn3-piza{
    position: absolute;
    background-image: url(../img/kids/perrito-globo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 170px;
    left: 892px;
    top: 40px;
    z-index: 5;
  }
  #btn4-piza{
    position: absolute;
    background-image: url(../img/kids/postit-sol-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 230px;
    height: 201px;
    left: 29px;
    top: 110px;
    cursor:
    pointer;
  }
  #btn5-piza{
    position: absolute;
    background-image: url(../img/kids/postit-folder-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 417px;
    height: 282px;
    left: 256px;
    top: 95px;
    cursor: pointer;
  }
  #btn6-piza{
    position: absolute;
    background-image: url(../img/kids/mundo-perritos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 206px;
    height: 221px;
    left: 20px;
    top: 304px;
    cursor:
    pointer;
  }
  #btn7-piza{
    position: absolute;
    background-image: url(../img/kids/perro-maceta-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 172px;
    height: 174px;
    left: 211px;
    top: 351px;
    cursor:
    pointer;
  }
  #btn8-piza{
    position: absolute;
    background-image: url(../img/kids/gato-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 166px;
    height: 146px;
    left: 369px;
    top: 379px;
    cursor: pointer;
  }
  #btn9-piza{
    position: absolute;
    background-image: url(../img/kids/juegos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 157px;
    height: 110px;
    left: 541px;
    top: 432px;
    cursor: pointer;
  }
  #btn10-piza{
    position: absolute;
    background-image: url(../img/kids/postit-dibujos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 269px;
    height: 170px;
    left: 471px;
    top: 303px;
    z-index: 3;
    cursor: pointer;
  }
  #btn11-piza{
    position: absolute;
    background-image: url(../img/kids/arbol-desk.png);
    background-size: 339px;
    background-repeat: no-repeat;
    width: 334px;
    height: 405px;
    left: 672px;
    top: 117px;
    cursor:
    pointer;
  }
  #btn4-piza p {
    font-size: 26px;
    line-height: 27px;
    padding-top: 31%;
  }
  #btn5-piza p {
    padding-top: 9%;
    font-size: 40px;
    line-height: 43px;
    padding-left: 10%;
    padding-right: 17%;
  }
  #btn10-piza p {
    top: 74px;
    left: 18px;
    width: 81px;
    height: 27px;
    font-size: 12px;
  }
  .text-world {
    position: absolute;
    width: 185px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 19px;
    left: 110px;
    font-size: 19px;
    line-height: 18px;
  }
}
@media (max-width: 1023px) {
  .zoomViewport {
    background-image: url(../img/kids/bg-blackboard-vert.jpg);
    width: 765px;
    height: 1024px;
    top: 0px;
    left: 50%;
    margin-left: -382.5px;
  }
  #btn1-piza{
    position: absolute;
    background-image: url(../img/kids/titulo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 307px;
    height: 80px;
    left: 22px;
    top: 22px;
  }
  #btn2-piza{
    position: absolute;
    background-image: url(../img/kids/nubes.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 416px;
    height: 80px;
    left: 330px;
    top: 30px;
  }
  #btn3-piza{
    position: absolute;
    background-image: url(../img/kids/perrito-globo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 190px;
    left: 609px;
    top: 320px;
    z-index: 5;
  }
  #btn4-piza{
    position: absolute;
    background-image: url(../img/kids/postit-sol-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 275px;
    height: 251px;
    left: 35px;
    top: 92px;
    cursor:
    pointer;
  }
  #btn5-piza{
    position: absolute;
    background-image: url(../img/kids/postit-folder-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 424px;
    height: 294px;
    left: 316px;
    top: 95px;
    cursor: pointer;
  }
  #btn6-piza{
    position: absolute;
    background-image: url(../img/kids/mundo-perritos-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 274px;
    height: 321px;
    left: 44px;
    top: 326px;
    cursor:
    pointer;
  }
  #btn7-piza{
    position: absolute;
    background-image: url(../img/kids/perro-maceta-movil.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 236px;
    height: 234px;
    left: 196px;
    top: 772px;
    cursor:
    pointer;
  }
  .btn7-piza-ing{
    background-image: url(../img/kids/perro-maceta-movil-ingles.png) !important;
  }
  #btn8-piza{
    position: absolute;
    background-image: url(../img/kids/gato-desk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 196px;
    height: 163px;
    left: 561px;
    top: 820px;
    z-index: 10;
    cursor: pointer;
  }
  #btn9-piza{
    position: absolute;
    background-image: url(../img/kids/juegos-movil.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 157px;
    height: 128px;
    left: 31px;
    top: 849px;
    cursor: pointer;
  }
  #btn10-piza{
    position: absolute;
    background-image: url(../img/kids/postit-dibujos-movil.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 339px;
    height: 210px;
    left: 53px;
    top: 597px;
    z-index: 3;
    cursor: pointer;
  }
  .btn10-piza-ing{
    background-image: url(../img/kids/postit-dibujos-movil-ing.png) !important;
  }
  #btn11-piza{
    position: absolute;
    background-image: url(../img/kids/arbol-movil.png);
    background-size: 432px;
    background-repeat: no-repeat;
    width: 435px;
    height: 597px;
    left: 326px;
    top: 374px;
    cursor:
    pointer;
  }
  .btn11-piza-ing{
    background-image: url(../img/kids/arbol-movil-ing.png) !important;
  }
  #btn4-piza p {
    font-size: 37px;
    line-height: 35px;
    padding-top: 24%;
  }
  #btn5-piza p {
    padding-top: 9%;
    font-size: 42px;
    line-height: 43px;
    padding-left: 10%;
    padding-right: 17%;
  }
  #btn10-piza p {
    top: 101px;
    left: 208px;
    width: 101px;
    height: 27px;
    font-size: 14px;
  }
  .text-world {
    position: absolute;
    width: 253px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 36px;
    left: 129px;
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .zoomViewport {
    width: 680px;
    height: 914px;
    top: 50px;
    left: 50%;
    margin-left: -340px;
  }
  #btn1-piza{
    width: 271px;
    height: 70px;
    left: 17px;
    top: 19px;
  }
  #btn2-piza {
    width: 356px;
    height: 60px;
    left: 292px;
    top: 27px;
  }
  #btn3-piza {
    width: 120px;
    height: 190px;
    left: 546px;
    top: 285px;
  }
  #btn4-piza{
    width: 251px;
    height: 220px;
    left: 30px;
    top: 89px;
  }
  #btn5-piza{
    width: 380px;
    height: 264px;
    left: 280px;
    top: 80px;
  }
  #btn6-piza {
    width: 262px;
    height: 255px;
    left: 42px;
    top: 294px;
  }
  #btn7-piza {
    width: 231px;
    height: 219px;
    left: 164px;
    top: 678px;
    z-index: 2;
  }
  #btn8-piza {
    width: 171px;
    height: 144px;
    left: 496px;
    top: 725px;
  }
  #btn9-piza{
    width: 150px;
    height: 131px;
    left: 21px;
    top: 746px;
  }
  #btn10-piza {
    width: 306px;
    height: 195px;
    left: 24px;
    top: 527px;
  }
  #btn11-piza {
    background-size: 371px;
    width: 355px;
    height: 526px;
    left: 286px;
    top: 350px;
  }
  #btn4-piza p {
    font-size: 31px;
    line-height: 35px;
    padding-top: 24%;
  }
  #btn5-piza p {
    padding-top: 9%;
    font-size: 38px;
    line-height: 43px;
    padding-left: 10%;
    padding-right: 17%;
  }
  #btn10-piza p {
    top: 95px;
    left: 195px;
    width: 91px;
    height: 27px;
    font-size: 14px;
  }
  .text-world {
    position: absolute;
    width: 216px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 41px;
    left: 110px;
    font-size: 24px;
    line-height: 25px;
  }
}
@media (max-width: 685px) {
  .zoomViewport {
    width: 560px;
    height: 754px;
    top: 80px;
    left: 50%;
    margin-left: -280px;
  }
  #btn1-piza{
    width: 226px;
    height: 60px;
    left: 13px;
    top: 11px;
  }
  #btn2-piza {
    width: 294px;
    height: 50px;
    left: 241px;
    top: 20px;
  }
  #btn3-piza {
    width: 98px;
    height: 170px;
    left: 446px;
    top: 227px;
  }
  #btn4-piza{
    width: 214px;
    height: 182px;
    left: 27px;
    top: 69px;
  }
  #btn5-piza{
    width: 315px;
    height: 211px;
    left: 233px;
    top: 67px;
  }
  #btn6-piza{
    width: 242px;
    height: 229px;
    left: 23px;
    top: 236px;
  }
  #btn7-piza{
    width: 178px;
    height: 175px;
    left: 137px;
    top: 556px;
  }
  #btn8-piza{
    width: 142px;
    height: 122px;
    left: 408px;
    top: 596px;
  }
  #btn9-piza{
    width: 120px;
    height: 111px;
    left: 20px;
    top: 612px;
  }
  #btn10-piza {
    width: 247px;
    height: 157px;
    left: 20px;
    top: 433px;
  }
  #btn11-piza {
    background-size: 311px;
    width: 317px;
    height: 437px;
    left: 231px;
    top: 282px;
  }
  #btn4-piza p {
    font-size: 25px;
    line-height: 27px;
    padding-top: 31%;
  }
  #btn5-piza p {
    padding-top: 13%;
    font-size: 25px;
    line-height: 34px;
    padding-left: 10%;
    padding-right: 17%;
  }
  #btn10-piza p {
    top: 74px;
    left: 155px;
    width: 78px;
    height: 27px;
    font-size: 12px;
  }
  .text-world {
    position: absolute;
    width: 191px;
    left: 12px;
    top: -3px;
  }
  #btn11-piza p {
    bottom: 31px;
    left: 96px;
    font-size: 19px;
    line-height: 19px;
  }
}

@media (max-width: 562px) {
  .zoomViewport {
    width: 480px;
    height: 644px;
    top: 40px;
    left: 50%;
    margin-left: -240px;
  }
  #btn1-piza{
    width: 194px;
    height: 50px;
    left: 12px;
    top: 10px;
  }
  #btn2-piza {
    width: 254px;
    height: 40px;
    left: 207px;
    top: 20px;
  }
  #btn3-piza {
    width: 80px;
    height: 130px;
    left: 386px;
    top: 200px;
  }
  #btn4-piza{
    width: 180px;
    height: 157px;
    left: 23px;
    top: 60px;
  }
  #btn5-piza{
    width: 270px;
    height: 182px;
    left: 199px;
    top: 57px;
  }
  #btn5-piza p {
    font-size: 24px;
    line-height: 26px;
  }
  #btn6-piza{
    width: 177px;
    height: 197px;
    left: 25px;
    top: 204px;
  }
  #btn7-piza{
    width: 151px;
    height: 152px;
    left: 120px;
    top: 476px;
  }
  #btn4-piza p {
    font-size: 21px;
    line-height: 23px;
    padding-top: 29%;
  }
  #btn8-piza{
    width: 120px;
    height: 104px;
    left: 351px;
    top: 510px;
  }
  #btn9-piza{
    width: 110px;
    height: 96px;
    left: 24px;
    top: 523px;
  }
  #btn10-piza {
    width: 215px;
    height: 137px;
    left: 17px;
    top: 372px;
  }
  #btn10-piza p {
    top: 66px;
    left: 138px;
    width: 64px;
    height: 21px;
    font-size: 10px;
  }
  .text-world {
    position: absolute;
    width: 158px;
  }
  #btn11-piza {
    background-size: 265px;
    width: 250px;
    height: 379px;
    left: 200px;
    top: 242px;
  }
  #btn11-piza p {
    bottom: 31px;
    left: 82px;
    font-size: 15px;
    line-height: 16px;
  }
}
@media (max-width: 490px) {
  .zoomViewport {
    width: 380px;
    height: 511px;
    top: 40px;
    left: 50%;
    margin-left: -190px;
  }
  #btn1-piza{
    width: 148px;
    height: 40px;
    left: 12px;
    top: 10px;
  }
  #btn2-piza {
    width: 198px;
    height: 33px;
    left: 162px;
    top: 16px;
  }
  #btn3-piza {
    width: 65px;
    height: 110px;
    left: 304px;
    top: 159px;
  }
  #btn4-piza{
    width: 146px;
    height: 127px;
    left: 12px;
    top: 43px;
  }
  #btn5-piza{
    width: 219px;
    height: 149px;
    left: 151px;
    top: 41px;
  }
  #btn5-piza p {
    font-size: 19px;
    line-height: 23px;
  }
  #btn6-piza{
    width: 145px;
    height: 157px;
    left: 14px;
    top: 158px;
  }
  #btn7-piza{
    width: 121px;
    height: 121px;
    left: 92px;
    top: 376px;
  }
  #btn4-piza p {
    font-size: 17px;
    line-height: 19px;
    padding-top: 29%;
  }
  #btn8-piza{
    width: 92px;
    height: 82px;
    left: 278px;
    top: 407px;
  }
  #btn9-piza{
    width: 85px;
    height: 76px;
    left: 11px;
    top: 416px;
  }
  #btn10-piza {
    width: 171px;
    height: 108px;
    left: 10px;
    top: 294px;
  }
  #btn10-piza p {
    display: none;
  }
  .text-world {
    width: 125px;
  }
  #btn11-piza {
    background-size: 215px;
    width: 219px;
    height: 312px;
    left: 151px;
    top: 186px;
  }
  #btn11-piza p {
    bottom: 26px;
    left: 66px;
    font-size: 13px;
    line-height: 14px;
  }
}
@media (max-width: 380px) {
  .zoomViewport {
    width: 320px;
    height: 430px;
    top: 40px;
    left: 50%;
    margin-left: -160px;
  }
  #btn1-piza{
    width: 129px;
    height: 33px;
    left: 8px;
    top: 10px;
  }
  #btn2-piza {
    width: 166px;
    height: 27px;
    left: 138px;
    top: 13px;
  }
  #btn3-piza {
    width: 50px;
    height: 82px;
    left: 264px;
    top: 140px;
  }
  #btn4-piza{
    width: 124px;
    height: 108px;
    left: 11px;
    top: 37px;
  }
  #btn4-piza p {
    font-size: 14px;
    line-height: 16px;
    padding-top: 28%;
  }
  #btn5-piza{
    width: 184px;
    height: 127px;
    left: 131px;
    top: 37px;
  }
  #btn5-piza p {
    font-size: 16px;
    line-height: 20px;
  }
  #btn6-piza{
    width: 124px;
    height: 131px;
    left: 11px;
    top: 136px;
  }
  #btn7-piza{
    width: 105px;
    height: 104px;
    left: 78px;
    top: 318px;
  }
  #btn8-piza{
    width: 79px;
    height: 77px;
    left: 236px;
    top: 344px;
  }
  #btn9-piza{
    width: 73px;
    height: 66px;
    left: 11px;
    top: 352px;
  }
  #btn10-piza {
    width: 145px;
    height: 96px;
    left: 10px;
    top: 253px;
  }
  .text-world {
    width: 102px;
    top: -1px;
  }
  #btn11-piza {
    background-size: 181px;
    width: 177px;
    height: 257px;
    left: 131px;
    top: 161px;
  }
  #btn11-piza p {
    bottom: 13px;
    left: 57px;
    font-size: 10px;
    line-height: 11px;
  }
  /* MENU */
  .btn-menu {
    position: fixed;
    right: 3px;
    top: -12px;
    width: 71px;
    height: 70px;
  }
  .menu-movil {
    right: -28px;
    top: 2px;
    width: 105px;
    height: 410px;
  }
  .buscador-movil {
    right: 20px;
    top: 40px;
    width: 86px;
    height: 85px;
  }
  .postit-movil {
    right: 16px;
    top: 106px;
    width: 100px;
    height: 96px;
  }
  .lista-movil {
    right: 14px;
    top: 180px;
    width: 91px;
    height: 233px;
  }
}
/***************************
        CONTACTO
***************************/
.hero-header-contacto{
  height: 450px;
  background-image: url(../img/contacto/hero-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cont-square-n-e{
  position: relative;
  height: 130px;
}
.cont-nuestro-equipo{
  position: absolute;
  min-width: 800px;
  height: 130px;
  background-color: #A8E063;
  border-radius: 20px;
  left: 50%;
  margin-left: -400px;
}
.cont-circle-small{
  position: relative;
}
.team-circle-small{
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50px;
  margin: 0 auto;
}
.team-circle-big{
  width: 140px;
  height: 140px;
  background-color: #FFFFFF;
  border-radius: 140px;
  margin: -48px auto 0 auto;
  border: 8px solid black;
}
.cont-aviso-contacto{
  color: white;
  font-weight: 200;
  text-decoration: underline;
  text-align: right;
  font-size: 15px;
  cursor: pointer;
}
.cont-terminos-contacto{
  color: white;
  font-weight: 200;
  text-decoration: underline;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}
.cont-aviso-contacto p:hover, .cont-terminos-contacto p:hover{
  color: #A8E063;
}
@media (max-width: 915px) {
  .cont-nuestro-equipo {
    min-width: 620px;
    height: 110px;
    margin-left: -310px;
  }
  .team-circle-big {
    height: 103px;
  }
  .cont-gnrl-contacto, .cont-form-contacto{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .title-white2{
    font-size: 20px;
    line-height: 28px;
  }
  .text-general-contacto {
    padding-top: 20px !important;
  }
}
@media (max-width: 700px) {
  .cont-big-circle{
    position: absolute;
  }
  .cont-square-n-e{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    height: 220px;
  }
  .cont-nuestro-equipo {
    min-width: 100%;
    height: 220px;
    margin-left: inherit;
    left: 0px;
  }
  .cont-nuestro-equipo .col-5{
    height: 100px;
    margin-top: 100px;
  }
  .cont-big-circle .row{
    width: 104px !important;
  }
}
@media (max-width: 615px) {
  .cont-square-n-e{
    max-width: 460px !important;
  }
  .team-circle-small {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50px;
    margin: 0 auto;
    margin-left: -10px;
  }
}
@media (max-width: 500px) {
  .cont-square-n-e{
    max-width: 300px !important;
  }
  .team-circle-small {
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border-radius: 50px;
    margin: 0 auto;
    margin-left: -10px;
  }
  .team-circle-big {
    width: 160px;
    height: 143px;
    margin-left: -40px;
  }
}
/***********************
      MI CUENTA
***********************/
.hero-header-micuenta{
  height: 450px;
  background-image: url(../img/mi-cuenta/hero-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cont-header-user-m-c{
  position: relative;
  min-width: 915px;
}
.addimage-header-micuenta{
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}
#datosusermicuenta input, #datosusermicuenta select{
  background-color: transparent;
  border-bottom: 1px solid white;
  font-weight: 200;
  color: white;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
#datosusermicuenta input::placeholder{
  color: white;
  font-weight: 200;
}
*:focus{
  outline: none;
}
#avatar, #headerimg, #avatarmobile{
  display: none;
}
#iconuploadavatar{
  cursor: pointer;
}
.cont-edit-cuenta p{
  width: fit-content;
  display: table;
  float: right;
  font-weight: 200;
  color: #A8E063;
  cursor: pointer;
}
.cont-edit-cuenta p:hover{
  font-weight: 500;
}
.eliminar-mascota{
  margin-top: 20px;
  cursor: pointer;
}
.btn-agregar-mascota{
  position: relative;
  width: fit-content;
  display: table;
  float: right;
  color: white;
  font-weight: 200;
  padding-right: 40px;
  cursor: pointer;
}
.btn-agregar-mascota:hover{
  color: #A8E063;
}
.btn-agregar-mascota::after{
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url(../img/mi-cuenta/add-mascota.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0px;
  top: -3px;
}
.btn-eliminar-cuenta{
  width: fit-content;
  display: table;
  float: right;
  color: white;
  font-weight: 200;
  cursor: pointer;
}
.btn-eliminar-cuenta:hover{
  color: #A8E063;
}

@media (max-width: 915px) {
  .cont-header-user-m-c{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .cont-avatar-icon {
    max-width: 80px;
  }
  .cont-avatar-icon img {
    width: 60px;
  }
}
/* DIBUJO DEL MES */

#dibujomespop{
  display: none;
}
.cont-dibujo-mes{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/dibujo-del-mes/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cont-dibujo-mes-eng{
  background-image: url(../img/kids/dibujo-del-mes/bg-eng.png) !important;
}
.cont-dibujo{
  position: absolute;
  left: 125px;
  top: 211px;
  width: 410px;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.close-btn-dm{
  position: absolute;
  width: 165px;
  height: 100px;
  right: 15px;
  top: 30px;
  background-image: url(../img/kids/dibujo-del-mes/btn_menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.close-btn-dm-eng{
  background-image: url(../img/kids/dibujo-del-mes/btn_menu-eng.png) !important;
}
.img-dib{
  cursor: pointer;
}
.btn-env-dm{
  position: absolute;
  bottom: 80px;
  right: 37px;
  width: 150px;
  height: 60px;
  background-image: url(../img/kids/dibujo-del-mes/btn_enviar.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.btn-env-dm-eng{
  background-image: url(../img/kids/dibujo-del-mes/btn_enviar-eng.png) !important;
}
/* POPUP DIBUJO DEL MES */
.cont-dibujo-mes-popup{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/dibujo-del-mes/enviar/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
.cont-dibujo-mes-popup-eng{
  background-image: url(../img/kids/dibujo-del-mes/enviar/bg-eng.png) !important;
}
.btn-regresar-dm{
  position: absolute;
  width: 83px;
  height: 90px;
  top: 20px;
  left: 60px;
  background-image: url(../img/kids/dibujo-del-mes/enviar/btn_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.btn-regresar-dm-eng{
  background-image: url(../img/kids/dibujo-del-mes/enviar/btn_back-eng.png) !important;
}
.btn-enviar-dm{
  position: absolute;
  width: 180px;
  height: 80px;
  bottom: 110px;
  right: 210px;
  background-image: url(../img/kids/dibujo-del-mes/enviar/btn_enviar.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.btn-enviar-dm-eng{
  background-image: url(../img/kids/dibujo-del-mes/enviar/btn_enviar-eng.png) !important;
}
.directions-form-dm{
  position: absolute;
  left: 50%;
  width: 550px;
  margin-left: -275px;
  top: 120px;
  font-size: 21px;
  color: #192581;
  line-height: 26px;
  font-family: 'Patrick Hand', cursive;
}
.thanks-form-dm{
  position: absolute;
  left: 50%;
  width: 550px;
  margin-left: -275px;
  bottom: 40px;
  font-size: 21px;
  color: #192581;
  line-height: 26px;
  font-family: 'Patrick Hand', cursive;
}
#formsenddibujo {
  position: absolute;
  top: 317px;
  width: 580px;
  left: 50%;
  margin-left: -275px;
  font-family: 'Patrick Hand', cursive;
}
#formsenddibujo label{
  font-size: 21px;
  color: #192581;
}
.cont-prevista-dibujo{
  position: absolute;
  bottom: 110px;
  left: 60px;
  width: 210px;
  height: 180px;
  background-image: url(../img/kids/img-carga.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* SLIDER THUMBS*/
.cont-gen-slider{
  position: absolute;
  bottom: 168px;
  left: 15px;
  width: 660px;
  height: 95px;
}
.back-slider{
  position: absolute;
  left: 0px;
  width: 40px;
  height: 95px;
}
.back-slider::after{
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: 23px;
  width: 25px;
  height: 57px;
  background-image: url(../img/kids/dibujo-del-mes/btn_izq.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.next-slider{
  position: absolute;
  right: 0px;
  width: 40px;
  height: 95px;
}
.next-slider::after{
  content: '';
  position: absolute;
  right: 50%;
  margin-right: -15px;
  top: 23px;
  width: 25px;
  height: 57px;
  background-image: url(../img/kids/dibujo-del-mes/btn_der.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.content-items{
  position: absolute;
  width: 580px;
  height: 95px;
  left: 40px;
  overflow: hidden;
}
.general-items{
  display: -webkit-inline-box;
  transition: 1s;
  transform: translateX(0px);
}
.item-thumb-slider-content{
  position: relative;
  background-position: center;
  background-size: cover;
  margin-right: 5px;
  height: 95px;
  width: 150px;
  cursor: pointer;
}
@media (max-width: 1660px) {
  .dibujo-mes {
    right: 41px;
    top: 59px;
    width: 155px;
    height: 112px;
  }
  .cont-dibujo-mes {
    position: absolute;
    left: 50%;
    margin-left: -235px;
    top: 30px;
    width: 570px;
    height: 762px;
    background-image: url(../img/kids/dibujo-del-mes/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .cont-dibujo {
    position: absolute;
    left: 102px;
    top: 174px;
    width: 345px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .cont-gen-slider {
    position: absolute;
    bottom: 129px;
    left: 15px;
    width: 541px;
    height: 95px;
  }
  .content-items {
    position: absolute;
    width: 460px;
    height: 95px;
    left: 40px;
    overflow: hidden;
  }
  .btn-env-dm {
    position: absolute;
    bottom: 60px;
    right: 17px;
    width: 150px;
    height: 60px;
    background-image: url(../img/kids/dibujo-del-mes/btn_enviar.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .close-btn-dm {
    position: absolute;
    width: 125px;
    height: 70px;
    right: 15px;
    top: 30px;
    background-image: url(../img/kids/dibujo-del-mes/btn_menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .cont-dibujo-mes-popup {
    position: absolute;
    left: 50%;
    margin-left: -235px;
    top: 30px;
    width: 570px;
    height: 762px;
    background-image: url(../img/kids/dibujo-del-mes/enviar/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
  }
  .directions-form-dm {
    position: absolute;
    left: 50%;
    width: 500px;
    margin-left: -220px;
    top: 111px;
    font-size: 17px;
    color: #192581;
    line-height: 26px;
    font-family: 'Patrick Hand', cursive;
  }
  #formsenddibujo label {
    font-size: 17px;
    color: #192581;
  }
  #formsenddibujo {
    position: absolute;
    top: 281px;
    width: 480px;
    left: 50%;
    margin-left: -232px;
    font-family: 'Patrick Hand', cursive;
  }
  .btn-enviar-dm {
    position: absolute;
    width: 130px;
    height: 60px;
    bottom: 110px;
    right: 160px;
    background-image: url(../img/kids/dibujo-del-mes/enviar/btn_enviar.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .cont-prevista-dibujo {
    position: absolute;
    bottom: 60px;
    left: 30px;
    width: 210px;
    height: 150px;
    background-image: url(../img/kids/img-carga.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .thanks-form-dm {
    position: absolute;
    left: 50%;
    width: 380px;
    margin-left: -190px;
    bottom: 0px;
    font-size: 17px;
    color: #192581;
    line-height: 26px;
    font-family: 'Patrick Hand', cursive;
  }
}
@media (max-width: 1345px) {
  .dibujo-mes {
    right: 36px;
    top: 51px;
    width: 131px;
    height: 97px;
  }
}
@media (max-width: 1125px) {
  .dibujo-mes {
    right: 33px;
    top: 46px;
    width: 121px;
    height: 89px;
  }
}
@media (max-width: 1023px){
  .dibujo-mes {
    right: 156px;
    top: 61px;
    width: 146px;
    height: 103px;
  }
  .cont-dibujo-mes, .cont-dibujo-mes-popup{
    margin-left: -285px;
  }
}
@media (max-width: 767px){
  .dibujo-mes {
    right: 137px;
    top: 52px;
    width: 137px;
    height: 103px;
  }
}

@media (max-width: 685px){
  .dibujo-mes {
    right: 112px;
    top: 43px;
    width: 109px;
    height: 79px;
  }
}
@media (max-width: 562px){
  .dibujo-mes {
    right: 97px;
    top: 38px;
    width: 95px;
    height: 69px;
  } 
}
@media (max-width: 585px){
  .cont-dibujo-mes {
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .cont-dibujo {
    left: 88px;
    top: 147px;
    width: 285px;
    height: 216px;
  }
  .close-btn-dm {
    width: 95px;
    height: 90px;
    right: 11px;
    top: 22px;
  }
  .cont-gen-slider {
    position: absolute;
    bottom: 118px;
    left: 9px;
    width: 461px;
    height: 65px;
  }
  .back-slider::after {
    margin-left: -13px;
    top: 15px;
    width: 17px;
    height: 38px;
  }
  .content-items {
    position: absolute;
    width: 375px;
    height: 65px;
    left: 40px;
    overflow: hidden;
  }
  .next-slider::after {
    margin-right: -13px;
    top: 15px;
    width: 17px;
    height: 38px;
  }
  .btn-env-dm {
    bottom: 40px;
    width: 120px;
  }
  .item-thumb-slider-content {
    height: 65px;
    width: 183px;
  }
  .cont-dibujo-mes-popup{
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .directions-form-dm {
    width: 430px;
    margin-left: -201px;
  }
  #formsenddibujo {
    top: 281px;
    width: 400px;
    margin-left: -192px;
  }
  .cont-prevista-dibujo{
    display: none;
  }
  .btn-enviar-dm {
    bottom: 37px;
    right: 110px;
  }
}
@media (max-width: 505px){
  .cont-dibujo-mes {
    margin-left: -200px;
    top: 40px;
    width: 400px;
    height: 536px;
  }
  .close-btn-dm {
    width: 80px;
    height: 48px;
    right: 9px;
    top: 18px;
  }
  .cont-dibujo {
    left: 74px;
    top: 123px;
    width: 235px;
    height: 176px;
  }
  .cont-gen-slider {
    position: absolute;
    bottom: 98px;
    left: 9px;
    width: 383px;
    height: 55px;
  }
  .item-thumb-slider-content {
    height: 55px;
    width: 151px;
  }
  .content-items {
    position: absolute;
    width: 307px;
    height: 57px;
    left: 40px;
    overflow: hidden;
  }
  .btn-env-dm {
    bottom: 40px;
    width: 100px;
    height: 41px;
  }
  .cont-dibujo-mes-popup{
    margin-left: -200px;
    top: 40px;
    width: 400px;
    height: 536px;    
  }
  .btn-regresar-dm {
    width: 63px;
    height: 80px;
    top: 10px;
    left: 30px;
  }
  .directions-form-dm {
    font-size: 14px;
    line-height: 21px;
    width: 360px;
    top: 92px;
    margin-left: -171px;
  }
  #formsenddibujo label {
    font-size: 12px;
    color: #192581;
  }
  #formsenddibujo {
    top: 221px;
    width: 330px;
    margin-left: -162px;
  }
  .thanks-form-dm {
    width: 290px;
    margin-left: -130px;
    bottom: -5px;
    font-size: 13px;
    line-height: 26px;
  }
  .btn-enviar-dm {
    bottom: 27px;
    right: 90px;
    width: 90px;
    height: 50px;
  }
  .form-control-file {
    font-size: 12px;
  }
}
@media (max-width: 490px){
  .dibujo-mes {
    right: 78px;
    top: 30px;
    width: 74px;
    height: 54px;
  }
}
@media (max-width: 400px){
  .cont-dibujo-mes {
      margin-left: -157.5px;
      top: 40px;
      width: 315px;
      height: 427px;
  }
  .cont-dibujo {
    left: 58px;
    top: 96px;
    width: 189px;
    height: 146px;
  }
  .close-btn-dm {
    width: 74px;
    height: 39px;
    right: 7px;
    top: 13px;
  }
  .cont-gen-slider {
    position: absolute;
    bottom: 83px;
    left: 9px;
    width: 383px;
    height: 41px;
  }
  .cont-gen-slider {
    position: absolute;
    bottom: 83px;
    left: 9px;
    width: 299px;
    height: 41px;
  }
  .back-slider, .next-slide {
    height: 45px;
  }
  .back-slider::after {
    margin-left: -13px;
    top: 8px;
    width: 13px;
    height: 38px;
  }
  .next-slider::after {
    margin-right: -13px;
    top: 8px;
    width: 13px;
    height: 38px;
  }
  .content-items {
    position: absolute;
    width: 227px;
    height: 40px;
    left: 37px;
    overflow: hidden;
  }
  .item-thumb-slider-content {
    height: 45px;
    width: 111px;
  }
  .btn-env-dm {
    bottom: 40px;
    width: 80px;
    height: 31px;
  }
  .cont-dibujo-mes-popup {
    margin-left: -157.5px;
    top: 40px;
    width: 315px;
    height: 427px;
  }
  .btn-regresar-dm {
    width: 43px;
    height: 60px;
    top: 10px;
    left: 30px;
  }
  .directions-form-dm {
    font-size: 11px;
    line-height: 17px;
    width: 280px;
    top: 76px;
    margin-left: -131px;
  }
  #formsenddibujo label {
    font-size: 10px;
    color: #192581;
  }
  .form-control {
    font-size: 12px;
  }
  #formsenddibujo {
    top: 180px;
    width: 280px;
    margin-left: -129px;
    line-height: 7px;
  }
  .btn-enviar-dm {
    bottom: 27px;
    right: 76px;
    width: 82px;
    height: 50px;
  }
  .thanks-form-dm {
    width: 290px;
    margin-left: -124px;
    bottom: -7px;
    font-size: 12px;
    line-height: 26px;
  }
}
@media (max-width: 380px){
  .dibujo-mes {
    right: 66px;
    top: 26px;
    width: 63px;
    height: 45px;
  }
}
/* HISTORIAS DE MESTIZOS KIDS */
#historiamestizos{
  display: none;
}
.cont-historias-mestizos{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/historias-de-mestizos/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cont-h-m-eng{
  background-image: url(../img/kids/historias-de-mestizos/bg-eng.png) !important;
}
.close-btn-hm{
  position: absolute;
  width: 155px;
  height: 90px;
  right: 26px;
  top: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.jueguemos-btn-hm{
  position: absolute;
  width: 245px;
  height: 60px;
  right: 325px;
  bottom: 110px;
  background-image: url(../img/kids/historias-de-mestizos/btn-juguemos.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.jueguemos-btn-hm-eng{
  background-image: url(../img/kids/historias-de-mestizos/btn-juguemos-eng.png) !important;
}
.titulo-h-m-k{
  position: absolute;
  width: 260px;
  height: 50px;
  top: 152px;
  left: 105px;
  margin-bottom: 0px;
  font-family: 'Patrick Hand', cursive;
  font-size: 30px;
  text-align: center;
  color:#361E7A;
}
.body-h-m-k{
  position: absolute;
  left: 70px;
  top: 250px;
  width: 350px;
  height: 485px;
  overflow: auto;
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  line-height: 21px;
  color:#361E7A;
}
.menu-enterate-h-m-k{
  position: absolute;
  right: 70px;
  top: 180px;
  width: 180px;
  height: 100px;
}
.menu-enterate-h-m-k ul{
  list-style: none;
  padding-left: 0px;
  font-family: 'Patrick Hand', cursive;
  color: #F8C361;
  font-size: 23px;
}
.menu-enterate-h-m-k ul li{
  cursor: pointer;
}
.menu-historias-h-m-k{
  position: absolute;
  right: 52px;
  top: 400px;
  width: 160px;
  height: 170px;
  overflow: auto;
}
.menu-historias-h-m-k ul{
  list-style: none;
  padding-left: 0px;
  font-family: 'Patrick Hand', cursive;
  color: #172270;
  text-transform: uppercase;
  font-size: 17px;
}
.menu-historias-h-m-k ul li{
  cursor: pointer;
}
@media (max-width: 1660px){
  .cont-historias-mestizos {
      position: absolute;
      left: 50%;
      margin-left: -293.5px;
      top: 30px;
      width: 587px;
      height: 772px;
      background-image: url(../img/kids/historias-de-mestizos/bg.png);
      background-size: contain;
      background-repeat: no-repeat;
  }
  .titulo-h-m-k {
    position: absolute;
    width: 230px;
    height: 50px;
    top: 126px;
    left: 85px;
    margin-bottom: 0px;
    font-family: 'Patrick Hand', cursive;
    font-size: 26px;
    text-align: center;
    color: #361E7A;
  }
  .body-h-m-k {
    position: absolute;
    left: 60px;
    top: 185px;
    width: 299px;
    height: 425px;
    overflow: auto;
    font-family: 'Patrick Hand', cursive;
    font-size: 15px;
    line-height: 19px;
    color: #361E7A;
  }
  .jueguemos-btn-hm {
    position: absolute;
    width: 195px;
    height: 49px;
    right: 285px;
    bottom: 86px;
    background-image: url(../img/kids/historias-de-mestizos/btn-juguemos.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .menu-enterate-h-m-k {
    position: absolute;
    right: 50px;
    top: 151px;
    width: 170px;
    height: 100px;
  }
  .menu-enterate-h-m-k ul {
    list-style: none;
    padding-left: 0px;
    font-family: 'Patrick Hand', cursive;
    color: #F8C361;
    font-size: 19px;
  }
  .menu-historias-h-m-k {
    position: absolute;
    right: 44px;
    top: 332px;
    width: 140px;
    height: 150px;
    overflow: auto;
  }
  .menu-historias-h-m-k ul {
    font-size: 15px;
  }
}
@media (max-width: 585px){
  .cont-historias-mestizos {
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .titulo-h-m-k {
    width: 178px;
    height: 37px;
    top: 107px;
    left: 77px;
    font-size: 19px;
  }
  .body-h-m-k {
    left: 60px;
    top: 155px;
    width: 234px;
    height: 355px;
    font-size: 14px;
    line-height: 18px;
  }
  .jueguemos-btn-hm {
    width: 195px;
    height: 49px;
    right: 225px;
    bottom: 73px;
  }
  .menu-enterate-h-m-k {
    position: absolute;
    right: 45px;
    top: 121px;
    width: 130px;
    height: 76px;
  }
  .menu-enterate-h-m-k ul {
    font-size: 14px;
  }
  .menu-historias-h-m-k {
    position: absolute;
    right: 37px;
    top: 272px;
    width: 109px;
    height: 123px;
    overflow: auto;
  }
  .menu-historias-h-m-k ul {
    font-size: 13px;
  }
}
@media (max-width: 505px){
  .cont-historias-mestizos{
    margin-left: -200px;
    top: 40px;
    width: 400px;
    height: 536px;
    }
    .close-btn-hm {
      width: 92px;
      height: 60px;
      right: 14px;
      top: 14px;
    }
    .titulo-h-m-k {
      width: 166px;
      height: 27px;
      top: 92px;
      left: 56px;
      font-size: 15px;
    }
    .body-h-m-k {
      left: 40px;
      top: 135px;
      width: 204px;
      height: 295px;
      font-size: 14px;
      line-height: 18px;
    }
    .jueguemos-btn-hm {
      width: 165px;
      height: 35px;
      right: 174px;
      bottom: 66px;
    }
    .menu-enterate-h-m-k {
      position: absolute;
      right: 32px;
      top: 104px;
      width: 120px;
      height: 56px;
    }
    .menu-historias-h-m-k {
      position: absolute;
      right: 29px;
      top: 222px;
      width: 93px;
      height: 103px;
      overflow: auto;
    }
    .menu-historias-h-m-k ul {
      font-size: 11px;
    }
}
@media (max-width: 400px){
  .cont-historias-mestizos {
      margin-left: -157.5px;
      top: 40px;
      width: 315px;
      height: 427px;
  }
  .close-btn-hm {
    width: 73px;
    height: 45px;
    right: 10px;
    top: 14px;
  }
  .titulo-h-m-k {
    width: 123px;
    height: 22px;
    top: 72px;
    left: 46px;
    font-size: 12px;
  }
  .body-h-m-k {
    left: 34px;
    top: 103px;
    width: 158px;
    height: 239px;
    font-size: 11px;
    line-height: 14px;
  }
  .jueguemos-btn-hm {
    width: 125px;
    height: 28px;
    right: 144px;
    bottom: 56px;
  }
  .menu-enterate-h-m-k {
    position: absolute;
    right: 29px;
    top: 79px;
    width: 87px;
    height: 54px;
  }
  .menu-enterate-h-m-k ul {
    font-size: 11px;
  }
  .menu-historias-h-m-k {
    position: absolute;
    right: 24px;
    top: 182px;
    width: 72px;
    height: 75px;
    overflow: auto;
  }
  .menu-historias-h-m-k ul {
    font-size: 9px;
  }
}
/* RECOMENDACIONES KIDS */
#recomendaciones{
  display: none;
}
.cont-recomendaciones{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/recomendaciones/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cont-recomendaciones-eng{
  background-image: url(../img/kids/recomendaciones/bg-eng.png) !important;
}
.close-btn-rd{
  position: absolute;
  width: 155px;
  height: 90px;
  right: 15px;
  top: 36px;
  background-image: url(../img/kids/recomendaciones/btn_menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.close-btn-rd-eng{
  background-image: url(../img/kids/recomendaciones/btn_menu_eng.png) !important;
}
.cont-recomenda-1{
  position: absolute;
  width: 370px;
  height: 600px;
  left: 60px;
  top: 140px;
  font-family: 'Patrick Hand', cursive;
  color: #6f42c1;
  font-size: 18px;
  line-height: 23px;
}
.cont-recomenda-2{
  position: absolute;
  width: 413px;
  height: 600px;
  left: 208px;
  top: 576px;
  font-family: 'Patrick Hand', cursive;
  color: #6f42c1;
  font-size: 18px;
  line-height: 23px;
}
@media (max-width: 1660px){
  .cont-recomendaciones {
    position: absolute;
    left: 50%;
    margin-left: -285px;
    top: 30px;
    width: 570px;
    height: 762px;
    background-image: url(../img/kids/recomendaciones/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .cont-recomenda-1 {
    position: absolute;
    width: 300px;
    height: 280px;
    left: 51px;
    top: 120px;
    font-family: 'Patrick Hand', cursive;
    color: #6f42c1;
    font-size: 16px;
    overflow: auto;
    line-height: 21px;
  }
  .cont-recomenda-2 {
    position: absolute;
    width: 353px;
    height: 220px;
    left: 168px;
    top: 456px;
    font-family: 'Patrick Hand', cursive;
    color: #6f42c1;
    font-size: 16px;
    overflow: auto;
    line-height: 21px;
  }
}
@media (max-width: 585px){
  .cont-recomendaciones{
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .cont-recomenda-1 {
    width: 240px;
    height: 230px;
    left: 51px;
    top: 100px;
  }
  .cont-recomenda-2 {
    width: 293px;
    height: 180px;
    left: 148px;
    top: 386px;
  }
  .close-btn-rd {
    width: 105px;
    height: 60px;
    right: 11px;
    top: 28px;
  }
}
@media (max-width: 505px){
  .cont-recomendaciones{
    margin-left: -200px;
    top: 40px;
    width: 400px;
    height: 536px;
  }
  .close-btn-rd {
    width: 85px;
    height: 50px;
    right: 9px;
    top: 21px;
  }
  .cont-recomenda-1 {
    width: 214px;
    height: 210px;
    left: 37px;
    top: 80px;
  }
  .cont-recomenda-2 {
    width: 244px;
    height: 151px;
    left: 118px;
    top: 322px;
  }
}
@media (max-width: 400px){
  .cont-recomendaciones{
      margin-left: -157.5px;
      top: 40px;
      width: 315px;
      height: 427px;
  }
  .close-btn-rd {
    width: 65px;
    height: 38px;
    right: 7px;
    top: 16px;
  }
  .cont-recomenda-1 {
    width: 174px;
    height: 163px;
    left: 27px;
    top: 67px;
    font-size: 12px;
    line-height: 15px;
  }
  .cont-recomenda-2 {
    width: 194px;
    height: 118px;
    left: 94px;
    top: 252px;
    font-size: 12px;
    line-height: 15px;
  }
}
/* SABIAS QUE KIDS */
#sabiasquepop{
  display: none;
}
.cont-sabias-que{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/sabias-que/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cont-sabias-que-eng{
  background-image: url(../img/kids/sabias-que/bg-eng.png) !important;
}
.close-btn-sq{
  position: absolute;
  width: 165px;
  height: 100px;
  right: 15px;
  top: 30px;
  background-image: url(../img/kids/sabias-que/btn_menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.close-btn-sq-eng{
  background-image: url(../img/kids/sabias-que/btn_menu-eng.png) !important;
}
.item-note-sq{
  position: absolute;
  font-size: 26px;
  padding-top: 45px;
  padding-right: 50px;
  padding-left: 50px;
  text-align: center;  
  font-family: 'Patrick Hand', cursive;
  color: #361E7A;
  cursor: pointer;
}
.item-sq-1 {
  width: 305px;
  height: 279px;
  top: 108px;
  left: 111px;
}
.item-sq-2 {
  width: 305px;
  height: 279px;
  top: 262px;
  left: 357px;
}
.item-sq-3 {
  width: 305px;
  height: 279px;
  top: 408px;
  left: 111px;
}
.item-sq-4 {
  width: 305px;
  height: 279px;
  top: 558px;
  left: 357px;
}
.cont-sabias-que-popup{
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: 30px;
  width: 690px;
  height: 922px;
  background-image: url(../img/kids/sabias-que/pop-up/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
.cont-sabias-que-popup-eng{
  background-image: url(../img/kids/sabias-que/pop-up/bg-eng.png) !important;
}
.btn-regresar-sq{
  position: absolute;
  width: 83px;
  height: 90px;
  top: 20px;
  left: 60px;
  background-image: url(../img/kids/sabias-que/pop-up/btn_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.btn-regresar-sq-eng{
  background-image: url(../img/kids/sabias-que/pop-up/btn_back-eng.png) !important;
}
.jueguemos-btn-sq{
  position: absolute;
  width: 278px;
  height: 180px;
  right: 44px;
  bottom: 29px;
  background-image: url(../img/kids/sabias-que/pop-up/btn_juguemos.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.jueguemos-btn-sq-eng{
  background-image: url(../img/kids/sabias-que/pop-up/btn_juguemos-eng.png) !important;
}
.text-note-sq{
  position: absolute;
  top: 110px;
  left: 50%;
  margin-left: -290px;
  overflow: auto;
  width: 600px;
  height: 590px;
  padding-top: 29px;
  font-size: 22px;
  line-height: 28px;
  font-family: 'Patrick Hand', cursive;
  color: #192581;
}

@media (max-width: 1660px){
  .cont-sabias-que {
    position: absolute;
    left: 50%;
    margin-left: -285px;
    top: 30px;
    width: 570px;
    height: 762px;
    background-image: url(../img/kids/sabias-que/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .item-note-sq {
    position: absolute;
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
    font-size: 20px;
    font-family: 'Patrick Hand', cursive;
    color: #361E7A;
    cursor: pointer;
  }
  .item-sq-1 {
    width: 255px;
    height: 209px;
    top: 88px;
    left: 93px;
  }
  .item-sq-2 {
    width: 255px;
    height: 209px;
    top: 219px;
    left: 297px;
  }
  .item-sq-3 {
    width: 255px;
    height: 209px;
    top: 348px;
    left: 91px;
  }
  .item-sq-4 {
    width: 255px;
    height: 209px;
    top: 458px;
    left: 297px;
  }
  .close-btn-sq {
    width: 135px;
  }
  .cont-sabias-que-popup {
    position: absolute;
    left: 50%;
    margin-left: -285px;
    top: 30px;
    width: 570px;
    height: 762px;
    background-image: url(../img/kids/sabias-que/pop-up/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
  }
  .jueguemos-btn-sq {
    position: absolute;
    width: 188px;
    height: 124px;
    right: 74px;
    bottom: 29px;
    background-image: url(../img/kids/sabias-que/pop-up/btn_juguemos.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .text-note-sq {
    position: absolute;
    top: 110px;
    left: 50%;
    margin-left: -233px;
    overflow: auto;
    width: 500px;
    height: 490px;
    padding-top: 29px;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Patrick Hand', cursive;
    color: #192581;
  }
}
@media (max-width: 585px){
  .cont-sabias-que{
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .close-btn-sq {
    width: 165px;
    width: 102px;
    right: 11px;
    top: 24px;
  }
  .item-note-sq {
    padding-top: 31px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 19px;
  }
  .item-sq-1 {
    width: 195px;
    height: 209px;
    padding-right: 25px;
    padding-left: 10px;
    top: 77px;
    left: 93px;
  }
  .item-sq-2 {
    width: 195px;
    height: 209px;
    top: 203px;
    left: 260px;
  }
  .item-sq-3 {
    width: 195px;
    height: 209px;
    top: 308px;
    left: 91px;
  }
  .item-sq-4 {
    width: 195px;
    height: 209px;
    top: 368px;
    left: 257px;
    padding-right: 16px;
    padding-left: 20px;
  }
  .cont-sabias-que-popup {
    margin-left: -235px;
    top: 40px;
    width: 480px;
    height: 642px;
  }
  .text-note-sq {
    margin-left: -193px;
    width: 430px;
    height: 370px;
    padding-top: 10px;
    font-size: 18px;
  }
}
@media (max-width: 505px){
  .cont-sabias-que{
    margin-left: -200px;
    top: 40px;
    width: 400px;
    height: 536px;
    }
    .close-btn-sq {
      width: 165px;
      width: 102px;
      right: 11px;
      top: 24px;
    }
    .item-note-sq {
      padding-top: 31px;
      padding-right: 10px;
      padding-left: 10px;
      font-size: 19px;
    }
    .item-sq-1 {
      width: 195px;
      height: 162px;
      padding-right: 36px;
      padding-left: 20px;
      top: 57px;
      left: 66px;
      font-size: 17px;
    }
    .item-sq-2 {
      width: 169px;
      height: 209px;
      top: 148px;
      padding-right: 20px;
      padding-left: 28px;
      left: 208px;
      font-size: 17px;
    }
    .item-sq-3 {
      width: 145px;
      height: 151px;
      top: 246px;
      left: 84px;
      font-size: 17px;
    }
    .item-sq-4 {
      width: 176px;
      height: 179px;
      top: 308px;
      left: 207px;
      padding-right: 16px;
      font-size: 16px;
      padding-left: 20px;
    }
    .cont-sabias-que-popup {
      margin-left: -200px;
      top: 40px;
      width: 400px;
      height: 536px;
    }
    .text-note-sq {
      margin-left: -193px;
      width: 430px;
      height: 370px;
      padding-top: 10px;
      font-size: 18px;
    }
    .btn-regresar-sq {
      position: absolute;
      width: 63px;
      height: 70px;
      top: 10px;
      left: 30px;
      background-image: url(../img/kids/sabias-que/pop-up/btn_back.png);
      background-size: contain;
      background-repeat: no-repeat;
      cursor: pointer;
    }
    .text-note-sq {
      margin-left: -163px;
      width: 360px;
      height: 310px;
      padding-top: 10px;
      font-size: 16px;
      top: 86px;
    }
    .jueguemos-btn-sq {
      position: absolute;
      width: 128px;
      height: 124px;
      right: 54px;
      bottom: -17px;
      background-image: url(../img/kids/sabias-que/pop-up/btn_juguemos.png);
      background-size: contain;
      background-repeat: no-repeat;
      cursor: pointer;
    }
}
@media (max-width: 400px){
  .cont-sabias-que {
    margin-left: -157.5px;
    top: 40px;
    width: 315px;
    height: 427px;
}
.close-btn-sq {
  width: 165px;
  width: 72px;
  height: 39px;
  right: 7px;
  top: 15px;
}
.item-note-sq {
  padding-top: 31px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 19px;
}
.item-sq-1 {
  width: 143px;
  height: 132px;
  padding-right: 20px;
  padding-left: 23px;
  padding-top: 20px;
  top: 47px;
  left: 50px;
  font-size: 14px;
}
.item-sq-2 {
  width: 139px;
  height: 129px;
  top: 120px;
  padding-right: 17px;
  padding-left: 19px;
  padding-top: 19px;
  left: 164px;
  font-size: 14px;
}
.item-sq-3 {
  width: 138px;
  height: 115px;
  top: 198px;
  left: 56px;
  font-size: 14px;
}
.item-sq-4 {
  padding-top: 11px;
  width: 139px;
  height: 179px;
  top: 255px;
  left: 164px;
  padding-right: 16px;
  font-size: 14px;
  line-height: 15px;
  padding-left: 16px;
}
.cont-sabias-que-popup {
  margin-left: -157.5px;
  top: 40px;
  width: 315px;
  height: 427px;
}
.text-note-sq {
  margin-left: -193px;
  width: 430px;
  height: 370px;
  padding-top: 10px;
  font-size: 18px;
}
.btn-regresar-sq {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  left: 34px;
  background-image: url(../img/kids/sabias-que/pop-up/btn_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.text-note-sq {
  margin-left: -130px;
  width: 286px;
  height: 280px;
  padding-top: 10px;
  font-size: 13px;
  top: 37px;
}
.jueguemos-btn-sq {
  position: absolute;
  width: 128px;
  height: 124px;
  right: 54px;
  bottom: -17px;
  background-image: url(../img/kids/sabias-que/pop-up/btn_juguemos.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
}