@media only screen and (max-width: 1024px) {

/* Cabecera general */
.header{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.header.scrolled{
  padding: 0 0;
  background: #190D01;
}
.header-content{
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.header-logo{
  width: 70px;
  height: 70px;
}
.header-logo__src{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.header-content__options{
  display: none;
}
.responsive-options{
  display: block;
  margin: auto 0;
}
.responsive-options i{
  color: #fff;
  font-size: 25px;
}

/* Redes sociales y correo */
.social{
  display: none;
}

/* Menú responsivo */
.responsive-menu{
  display: none;
  width: 50%;
  height: 96vh;
  background: var(--web-color);
  z-index: 5;
  position: fixed;
  padding: 0px 20px;
  box-sizing: border-box;
  right: 10px;
  top: 15px;
  border-radius: 15px;
}
.responsive-menu__close{
  padding-top: 15px;
  color: #000;
  display: flex;
  justify-content: right;
}
.responsive-menu__options{
  padding-top: 25px;
}
.responsive-menu__options h3{
  color: #0009;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 10px;
}
.responsive-menu__options li{
  list-style: none;
  box-sizing: border-box;
  padding: 12px 10px;
}
.responsive-menu__options a{
  color: #121212;
  font-size: 15px;
}

/* Inicio */
.main{
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  top: 150px;
}
.main-content{
  width: 100%;
}
.dog-house{
  width: 100%;
  height: 77vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-main{
  padding-bottom: 50px;
  width: 300px;
  margin: auto;
  display: flex;
}
.image-main__src{
  width: 100%;
  z-index: 1;
  cursor: pointer;
  transition: 1s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(https://i.gifer.com/XZ5V.gif);
  animation: scaleLoop 4s ease-in-out infinite;
}

@keyframes scaleLoop {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Sobre nosotros */
.about-us{
  width: 100%;
  margin-bottom: 10vh;
  display: flex;
}
.about-us__content{
  width: 95%;
  margin: auto;
  color: #fff;
}
.au-head__title{
  font-size: 1.3em;
  padding-bottom: 15px;
}
.au-body{
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-y: hidden;
}
.au-body__card{
  width: 60%;
  flex: 0 0 auto;
}
.au-body__card h2{
  font-size: 18px;
}

/* Jugamos En... */
.we-play-in{
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: #121212;
  padding-bottom: 100px;
}
.wpi-head__content{
  width: 85%;
  margin: auto;
  color: #fff;
}
.wpi-head__content h1{
  font-size: 1.3em;
  padding-bottom: 15px;
}
.wpi-head__content p{
  font-size: 1.1em;
  padding-top: 10px;
  color: #ccc;
}
.wpi-border{
  display: none;
}
.wpi-body{
  width: 95%;
  padding: 10px 0;
  box-sizing: border-box;
  justify-content: space-between;
  flex-direction: column;
}
.wpi-card{
  width: 100%;
  border-radius: 15px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  color: #fff;
}
.wpi-card__content{
  width: 95%;
  padding: 20px 0;
  margin: auto;
}
.wpi-card__service{
  font-size: 18px;
  padding: 12px 20px;
}
.wpi-card__service.center{
  justify-content: inherit;
}
.wpi-card__service.right{
  justify-content: inherit;
}
.wpi-card__sevices-list{
  padding-top: 50px;
}
.wpi-card__sevices-list i{
  margin-right: 10px;
  color: var(--web-color);
}
.wpi-card__sevices-list.right{
  justify-content: inherit;
  text-align: inherit;
}
.wpi-card__sevices-list.center{
  justify-content: inherit;
  text-align: inherit;
}
.wpi-card__sevices-list li:hover{
  color: #FDDBBA;
}
/* Slider */
.wpi-slider{
  width: 95%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.wpi-slider__buttons{
  height: 160px;
}
.wpi-slider__buttons .btn i{
  color: #fff;
  font-size: 23px;
}
.numeration span{
  font-size: 50px;
}


/* Formulario de contancto */
.throw-the-ball{
  width: 95%;
  height: 100vh;
  margin: auto;
  border-top: 1px solid #fff4;
}
.tht-content{
  width: 100%;
}
.tht-content__body{
  padding: 50px 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}
.tht-body__image{
  display: none;
}
.tht-body__msn{
  width: 100%;
  display: flex;
  justify-content: right;
}
.tht-body__msn-form h2{
  color: #fff;
  font-size: 1.2em;
  padding-bottom: 25px;
}
.tht-body__msn-form input,
.tht-body__msn-form textarea{
  font-size: 14px;
}

/* Pie de página  */
footer{
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  background: #ccc2;
}
.footer-text{
  width: 85%;
  font-size: 15px;
  padding: 20px;
}

}