@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* ----------------
   reglas generales
   ---------------- */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    min-height: 100vh;
  }
  
  .contenedora {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem;
  }




/* ----------------
   INTRO
   ---------------- */

*, *:before, *:after {
    box-sizing: border-box;
}

.intro {
    /*background: url('../Imagenes/fondo2.jpg') no-repeat center center;
    background-size: cover;*/
    background-color: #FFF1DC;
    color: #9e9e9e;
    margin-top: 1.5rem;
}

#logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  
  #logo img {
    max-width: 20%;
  }
  
  .titulo {
    font-size: 16px;
    margin-top: 0.6rem;
  }


.slide-container {
    margin: auto;
    width: 30rem;
    text-align: center;
}
.wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.wrapper:focus {
    outline: 0;
}
.clash-card {
    background: white;
    width: 19rem;
    display: inline-block;
    margin: auto;
    border-radius: 2rem;
    position: relative;
    text-align: center;
    box-shadow: -1px 15px 30px -16px black;
    z-index: 9999;
}



.clash-card__image {
    position: relative;
    height: 12rem;
    margin-bottom: 2rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.clash-card__image--bienvenido {
    background: #FFB2B1;
}
.clash-card__image--bienvenido img {
    width: 19rem;
    position: absolute;
    top: -4rem;
    left: -0.8rem;
}
.clash-card__image--dinamica {
    background: #FFB2B1;
}
.clash-card__image--dinamica img {
    width: 19rem;
    position: absolute;
    top: -4rem;
}
.clash-card__image--acumar {
    background: #FFB2B1;
}
.clash-card__image--acumar img {
    width: 10rem;
    position: absolute;
    top: -1rem;
    left: 4.5rem;
}

.clash-card__image--video video {
  width: 19rem;
  height: auto;
  border-radius: 2rem 2rem 0 0;
}

.clash-card__unit-name {
    font-size: 22px;
    color: #3564BB;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.clash-card__unit-description {
    padding: 0 1.25rem 1.25rem 1.25rem;
    margin-bottom: 0.6rem;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.slick-prev {
    left: 100px;
    z-index: 999;
}
.slick-next {
    right: 100px;
    z-index: 999;
}

#intro-boton-comenzar {
    display: flex;
    justify-content: center;
}

#intro-boton-comenzar a {
  color: #fbfaeb;
  font-size: 20px;
  padding: 1rem 3rem;  
  margin-bottom: 2rem;
  font-weight: 600;
  background: #3564BB;
  border-radius: 2rem;
  box-shadow: -1px 15px 15px -16px black;
}

#intro-boton-comenzar a:hover {
  background: #F28482;
  transition: .5s;
}



/* ----------------
   MENU-GENERAL
   ---------------- */

   .menu-general {
    background: url('../Imagenes/fondo-dark-100.jpg') no-repeat center center;
    background-size: cover;
    color: #fbfaeb;
    margin-top: 2rem;
   }

   .galeria {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   }

   .galeria h3 {
    padding: 3rem 0 0rem 0;
    font-size: 36px;
   }

   .galeria h4 {
    padding-bottom: 3rem;
    font-size: 22px;
    font-weight: 400;
   }

   .menu-general-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 18rem;
  }
  
  .menu-general-btn > div {
    flex-basis: 50%;
  }
  
  .menu-general-btn-historia,
  .menu-general-btn-juegos,
  .menu-general-btn-eventos,
  .menu-general-btn-perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .menu-general-btn-historia img,
  .menu-general-btn-juegos img,
  .menu-general-btn-eventos img,
  .menu-general-btn-perfil img {
    width: 14rem;
    height: 14rem;
    border-radius: 2rem;
    box-shadow: -1px 15px 15px -16px black;
  }
  
  .menu-general-btn-historia h3,
  .menu-general-btn-juegos h3,
  .menu-general-btn-eventos h3,
  .menu-general-btn-perfil h3 {
    margin-top: 0.5rem;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .menu-general-btn-juegos,
  .menu-general-btn-perfil {
  margin-top: 4rem;
  }



  /*
  caja modal de diálogo
*/

dialog {
  background-color: #DBE8FF;
  inline-size: min(20em, 80%);
  border: solid 0.2rem #3564BB;
  border-radius: 1.5rem;
  box-shadow: 0 0 0 0 hsl(0 0% 10%);
  padding: .5em;

  position: fixed;
  inset: 0;
  margin: auto;

  transform: translateY(-100vh);
  transition: .5s;
}

dialog.visible {
  box-shadow: 0 10px 10px 0 hsl(0 0% 0% / 20%);
  transform: translateY(0);
  transition: .5s;
  transition-delay: .5s;
}

dialog::backdrop {
  opacity: 0;
}

dialog.visible::backdrop {

  opacity: 1;

  transition: 1s;

  background-image: 
    linear-gradient(
      0deg, 
      #F28482, 
      transparent 100%),
    linear-gradient(
      180deg, 
      #3564BB, 
      transparent 100%),
    linear-gradient(
      240deg, 
      #003760, 
      transparent 100%),
    linear-gradient(
      300deg, 
      #F5CAC3, 
      transparent 100%);
}

form {
  display: grid;
  gap: 1em;

  background-color: white;
  padding: 1em;
  box-shadow: 0 .1em .25em hsl(0 0% 0% / 20%) inset;
}

.form__grupo {
  position: relative;
  color: hsl(0 0% 35% / 50%);
}

.form__input {
   width: 100%;
   background: white;
   color: hsl(0 0% 50%);
   font-size: 1rem;
   padding: 1em .5em;
   border: solid 1px #3564BB;
   border-radius: 1.5rem;
   outline: none;
   font-family: inherit;
   cursor: pointer;
   transition: 1s;
}

.form__input:focus {
  color: #3564BB;
  font-weight: 700;
}

.form__label {
  color: #3564BB;
  position: absolute;
  top: 0;
  left: .5em;
  transform: translateY(.5em);
  transition:
    transform .5s,
    color .3s,
    padding .5s;
  background-color: hsl(0 0% 100%);
  padding: 0;
}

:is(.form__input:not(:placeholder-shown),
    .form__input:focus) {
  color: #3564BB;
}

:is(.form__input:not(:placeholder-shown),
    .form__input:focus) + .form__label {
  transform: translateY(-.6em) scale(.7);
  transform-origin: left top;
  padding: 4px;
  color: #3564BB;
}

.form__submit {
  background-color: #3564BB;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  padding: .25em 1em;
  inline-size: max-content;
  border: none;
  border-radius: 1.5rem;
  outline: none;
  justify-self: end;
  transition: .5s;
}

.form__submit:focus,
.form__submit:hover {
  background-color: #3564BB;
}



/* ----------------
   HISTORIA
   ---------------- */
   
   .timeline-section{
    min-height: 100vh;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
  }

  .timeline-items{
    max-width: 62.5rem;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }

  .timeline-items::before{
    content: '';
    position: absolute;
    width: 0.2rem;
    height: 100%;
    background-color: #F6BD60;
    left: calc(50% - 1px);
  }

  .timeline-item{
    margin-bottom: 2.5rem;
    width: 100%;
    position: relative;
  }

  .timeline-item:last-child{
    margin-bottom: 0;
  }

  .timeline-item:nth-child(odd){
      padding-right: calc(50% + 1.875rem);
    text-align: right;
  }

  .timeline-item:nth-child(even) {
      padding-left: calc(50% + 1.875rem);
  }
  
  .timeline-dot {
    height: 1.1rem;
    width: 1.1rem;
    background-color: #F6BD60;
    position: absolute;
    left: calc(50% - 0.5rem);
    border-radius: 50%;
    top: 0.625rem;
  }

  .timeline-date {
    font-size: 26px;
    font-weight: 600;
    color: #F6BD60;
    letter-spacing: 0.05em;
    margin: 0.5rem 0 1rem;
  }
  
  .timeline-content {
    background-color: #FFF1DC;
    padding: 1.875rem;
    border-radius: 2rem;
  }

  .timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #DF4A14;
    margin:0 0 0.625rem;
    text-transform: capitalize;
  }

  .timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #DF4A14;
    margin:0 0 0.625rem;
    text-transform: capitalize;
  }

  .timeline-content p {
    color: #003760;
    font-size: 16px;
    margin:0 0 1rem;
  }

  .timeline-content p span {
    font-weight: 800;
  }

  .timeline-content img {
    width: 40vh;
    margin-bottom: 1rem;
  }




/* ----------------
JUEGOS
---------------- */

  .barra-back {
    display: flex;
    align-items: center;
    background-color: #F5CAC3;
    padding: 0.8rem 0 0.3rem 0.3rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
  }

  .barra-back a {
    width: 3rem;
  }

  .barra-back h2 {
    padding: 0;
    margin: -0.5rem 0 0 0.5rem;
    color: #2F4A8F;
  }

  .juegos-html {
    background: url('../Imagenes/fondo-dark-2-100.jpg') no-repeat center center fixed;
    z-index: -1
  }

  .juegos-header-html {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
  }

  .navigation {
    position: relative;
    width: 30rem;
    height: 4.5rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 1.8rem;
    border-top-right-radius: 1.8rem;    
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
  }

  .navigation ul {
    display: flex;
    width: 30rem;
  }

  .navigation ul li {
    position: relative;
    list-style: none;
    width: 6rem;
    z-index: 1;
  }

  .navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 6.25rem;
    text-align: center;
    font-weight: 500;
  }

  .navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 4.7rem;
    height: 2.3rem;
    text-align: center;
    transition: 0.5s;
    background: #FFF;
    border-radius: 1rem;
  }

  .navigation ul li:hover a .icon {
    transform: translateY(-2rem);
  }

  .navigation ul li a .text {
    position: absolute;
    color: #3564BB;
    font-weight: 400;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(1.25rem);
  }

  .navigation ul li:hover a .text {
    opacity: 1;
    transform: translateY(0.625rem);
  }

   .game-container {
    text-align: center;
  }
  
  .game-container .proceso {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .game-container .proceso h2 {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin: 1.8rem 0 0.3rem 0;
    text-align: start;    
  }

  .game-container img {
    width: 25rem;
  }
  
  .game-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.3rem;
  }
  
  .game-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 30rem;
    margin: 0.6rem;
    padding: 1rem;
    background-color: #fce7e5;
    border-radius: 2rem;
  }

  #game-item-3 {
    margin-bottom: 6rem;
  }
  
  .game-item div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 1rem;
  }

  .game-item div h2 {
    font-size: 24px;
    color: #3564BB;
    margin-top: 1.5rem;
  }

  .game-item div a {
    padding: 0.5rem 2rem;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 2rem;
  }

  .game-item div a:hover {
    background: #F28482;
    transition: 0.6s;
  }

  #game-start {
    color: #2F4A8F;
    font-weight: 600;
  }

  .game-item .game-text img {
    width: 10rem;
    padding: 0;

  }
  
  .game-image {
    margin-top: 1.5rem;
  }
  
  .game-image img {
    width: 12rem;
    height: 12rem;
  }

  .start-screen,
  .score-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #siamita-game {
    width: 35vh;
    border-radius: 2rem;
    margin-bottom: 2rem;
  }

  .game-btns {
    border: none;
    outline: none;
    cursor: pointer;
  }

  #start-button,
  #restart {
    font-size: 22px;
    color: #2F4A8F;
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  #restart {
    margin-top: 0.9em;
  }

  #display-container {
    background-color: #ffffff;
    padding: 3.1em 1.8em;
    width: 80%;
    max-width: 37.5em;
    margin: 0 auto;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 2rem;
  }

  .game-header {
    margin-bottom: 1.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.6em;
    border-bottom: 0.1em solid #c0bfd2;
  }

  .timer-div {
    background-color: #e1f5fe;
    width: 7.5em;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7em 1.8em;
  }

  .question {
    margin-bottom: 1.25em;
    font-weight: 600;
  }

  .option-div {
    font-size: 0.9em;
    width: 100%;
    padding: 1em;
    margin: 0.3em 0;
    text-align: left;
    outline: none;
    background: transparent;
    border: 1px solid #c0bfd2;
    border-radius: 2rem;
  }

  .option-div:disabled {
    color: #000000;
    cursor: not-allowed;
  }

  #next-button {
    font-size: 18px;
    margin-top: 1.5em;
    background-color: #F28482;
    color: #ffffff;
    padding: 0.7em 1.8em;
    border-radius: 2rem;
    float: right;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }

  .hide-game {
    display: none;
  }

  .incorrect {
    background-color: #ffdde0;
    color: #d32f2f;
    border-color: #d32f2f;
  }

  .correct {
    background-color: #e7f6d5;
    color: #689f38;
    border-color: #689f38;
  }

  #user-score {
    font-size: 1.5em;
    color: #ffffff;
  }


/* ----------------
   AMASADORAS-GAME
   ---------------- */  
   
   

/* ----------------
   EVENTOS
   ---------------- */ 
  
  .evento-description {
    color: #ebebeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .evento-description h2 {
    color: #F6BD60;
  }

  .contianer {
    width: max-content;
    height: max-content;
    position: relative;
    display: flex;
    padding: 3% 0 0 0;
    justify-content: center;
    top: 10%;
    right: 0%;
    width: 100%;
    height: 100%;
  }

  .calendar {
    width: max-content;
    background-color: white;
    border-radius: 2rem;
    overflow: hidden;
    padding: 1.8rem 3.125rem 2rem 3.125rem;
    margin-bottom: 1rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .calendar-header {
    background: #FFCECC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #2F4A8F;
    padding: 0.625rem;
    border-radius: 2rem;
  }

  .calendar-body {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pad: 0.6rem;
  }

  .calendar-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
    cursor: pointer;
    color:rgb(104, 104, 104);
  }

  .calendar-week-days div:hover {
  color:black;
  transform: scale(1.2);
  transition: all .2s ease-in-out;
  }
  
  .calendar-week-days div {
    display: grid;
    place-items: center;
    color: rgba(0, 0, 0, 0.600);
    height: 3.125rem;
  }

  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.125rem;;
  }

  .calendar-days div {
    width: 2.3rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
  }

  .month-picker {
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
    cursor: pointer;
  }

  .month-picker:hover {
    background-color: #F5CAC3;
  }

  .month-picker:hover {
    color: #003760;
  }

  .year-picker {
    display: flex;
    align-items: center;
  }

  .year-change {
    height: 1.875rem;
    width: 1.875rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 0.6rem;
    cursor: pointer;
  }

  .year-change:hover {
    background-color: #F28482;
    transition:all .2s ease-in-out ;
    transform: scale(1.12);
  }

  .year-change:hover pre {
    color: #F28482;    
    color: #2F4A8F;
  }

  .calendar-footer {
    padding: 0.6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #year:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.2 ease-in-out;
  }

  .calendar-days div span {
    position: absolute;
  }
   .calendar-days div:hover {
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
    background-color: #fbc7d4;
    border-radius: 1rem;
  }

  .calendar-days div.current-date {
    border-radius: 20%;
  }

  #calendar-hour {
    margin-top: 3.5rem;
    background-color: #FFF;
    padding: 1rem;
    border: 0.15rem solid #f09796;
    border-radius: 2rem;
    font-size: 16px;
    width: 20rem;
    transition: border-color 0.3s;
  }
  
  .month-list {
    position: relative;
    left: 0;
    top: -50px;
    background-color: #ffe9e6;
    color: black;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.3rem;
    border-radius: 1.25rem;
  }

  .month-list > div {
    display: grid;
    place-content: center;
    margin: 0.3rem .0.6rem;
    transition: all 0.2s ease-in-out;
  }

  .month-list > div > div {
    border-radius: 1rem;
    padding: 0.6rem;
    cursor: pointer;
  }

  .month-list > div > div:hover {
    background-color: #F5CAC3;
    transform: scale(0.9);
    transition: all 0.2s ease-in-out;
  }

  .month-list.show {
    visibility: visible;
    pointer-events: visible;
    transition: 0.6s ease-in-out;
    animation: to-left .71s forwards;
  }
  
  .month-list.hideonce{
    visibility: hidden;
  }

  .month-list.hide {
    animation: to-right 1s forwards;
    visibility: none;
    pointer-events: none;
  }

  .date-time-formate {
    width: max-content;
    height: max-content;
    font-family: Dubai Light, Century Gothic;
    position: relative;
    display: inline;
    top: 8.75rem;
    justify-content: center;
  }

  .day-text-formate {
    font-size: 1.4rem;
    padding-right: 5%;
    border-right: 3px solid #81ACEA;
    position: absolute;
    left: -1rem;
  }

  .date-time-value {
    display: block;
    height: max-content;
    width: max-content;
    position: relative;
    left: 40%;
    top: -1.125rem;
    text-align: center;
  }

  .time-formate {
    font-size: 1.5rem;
  }

  .time-formate.hideTime {
    animation: hidetime 1.5s forwards;
  }

  .day-text-formate.hidetime {
    animation: hidetime 1.5s forwards;
  }

  .date-formate.hideTime {
    animation: hidetime 1.5s forwards;
  }

  .day-text-formate.showtime{
    animation: showtime 1s forwards;
  }

  .time-formate.showtime {
    animation: showtime 1s forwards;
  }

  .date-formate.showtime {
    animation: showtime 1s forwards;
  }

  .marked-date {
    background-color: #FF8D8D;
    border-radius: 1rem;
  }
  
  .marked-date.selected {
    background-color: #6997EB;
    border-radius: 1rem;
  }

  .reservar-button {
    background-color: #3564BB;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 1rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    text-decoration: none;
    box-shadow: -1px 15px 30px -16px black;
  }

  .reservar-button:hover {
    background-color: #FF8D8D;
  }

  @keyframes to-top {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    100% {
      transform: translateY(100%);
      opacity: 1;
    }
  }

  @keyframes to-left {
    0% {
      transform: translatex(230%);
      opacity: 1;
    }
    100% {
      transform: translatex(0);
      opacity: 1;
    }
  }

  @keyframes to-right {
    10% {
      transform: translatex(0);
      opacity: 1;
    }
    100% {
      transform: translatex(-150%);
      opacity: 1;
    }
  }

  @keyframes showtime {
    0% {
      transform: translatex(250%);
      opacity: 1;
    }
    100% {
      transform: translatex(0%);
      opacity: 1;
    }
  }

  @keyframes hidetime {
    0% {
      transform: translatex(0%);
      opacity: 1;
    }
    100% {
      transform: translatex(-370%);
      opacity: 1;
    }
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    align-content: center;
    background-color: #F5CAC3;
    padding: 3rem 0 6rem;
    max-width: 26.5rem;
    border-radius: 2rem;
    margin: 0 auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  }

  .contact-descrption {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .contact-descrption h2 {
    color: #DF4A14;
    padding-bottom: 0.5rem;
  }
  
  .contact-descrption span {
    font-weight: 800;
    color: #003760;
  }

  .contact-descrption p {
    font-weight: 500;
  }
  
  .contact-item {
    display: flex;
    align-items: left;
    text-align: left;
    margin: 1rem 0 0 6rem;
  }
  
  .contact-icon {
    width: 2rem;
    margin-right: 1rem;
  }
  
  .contact-text {
    margin: 0;
  }

  .map-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    overflow: hidden;
  }



/* ----------------
PERFIL
---------------- */

.hero {
  width: 100%;
  height: 100%;
}

.form-box {
  width: 23.75rem;
  height: 40rem;
  position: relative;
  margin: 6% auto;
  background-color: #FFF;
  padding: 0.3rem;
  border-radius: 2rem;
  overflow: hidden;
}

.button-box {
  width: 15rem;
  margin: 2.2rem auto;
  position: relative;
  box-shadow: 0 0 1.25rem 0.6rem #FF61241F;
  border-radius: 1rem;
}

.toggle-btn {
  padding: 0.625rem 1.875rem;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
}
  
#id-btn {
  top: 0;
  left: 0;
  position: absolute;
  width: 7.5rem;
  height: 100%;
  background: #f09796;
  border-radius: 1.875rem;
  transition: .5s;
} 

.profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.profile-image img {
  width: 8rem;
  border-radius: 50%;
}


.social-icons {
  margin: 1.875rem auto;
  text-align: center;
}

.social-icons img {
  width: 2rem;
  margin: 0 0.75rem;
  box-shadow: 0 0 1rem 0 #7F7F7F3D;
  cursor: pointer;
  border-radius: 50%;
}

.input-group {
  top: 18.5rem;
  position: absolute;
  width: 17.5rem;
  transition: .5s;
  box-shadow: none;
}

.input-field {
  width: 100%;
  padding: 0.6rem 0;
  margin: 0.3rem 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #999;
  outline: none;
  background: transparent;
}

.submit-btn {
  width: 85%;
  padding: 0.6rem 2rem;
  cursor: pointer;
  display: block;
  margin: auto;
  background: #F28482;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  outline: none;
  border-radius: 2rem;
}

.checkbox-container {
  display: inline-block;
}

#check-box {
  float: left;
  margin: 0.5rem 0.8rem 0 0.5rem;
}

#input-label {
  display: inline-block;
  color: #777;
  font-size: 12px;
  bottom: 4.25rem;
  position: absolute;
}

#login {
  left: 3.125rem;
  position: absolute;
}

#register {
  left: 3.125rem;
  position: absolute;
}




/* ----------------
   MEDIAS
   ---------------- */
   
  @media(max-width: 50em) {
    .clash-card {
      width: 19rem;
    }

    #logo img {
      max-width: 40%;
    }

    .menu-general-btn {
      margin: 0;
    }

    #intro-boton-comenzar a {
      margin-bottom: 0;
    }

    .menu-general-btn-historia img,
    .menu-general-btn-juegos img,
    .menu-general-btn-eventos img,
    .menu-general-btn-perfil img {
      width: 10.5rem;
      height: 10.5rem;
    }

  }

  @media(max-width: 32rem) {
    .navigation {
      width: 100%;
    }

    .navigation ul {
      width: 100%;
    }
  
    .navigation ul li {
      width: 19%;
    }
  
    .navigation ul li a .icon {
      line-height: 4.7rem;
      height: 2rem;
    }

    .proceso img {
      width: 80%;
    }
    .game-item {
      width: 95%;
    }

    .game-text {
      width: 20%;
    }

    .game-image img {
      width: 11rem;
      height: 11rem;
      margin-left: 4rem;
      margin-top: 1rem;
    }
  }

  @media(max-width: 767px){
    .timeline-items::before{
      left: 7px;
    }
    .timeline-item:nth-child(odd){
      padding-right: 0;
      text-align: left;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
      padding-left: 37px;
    }
    .timeline-dot{
      left:0;
    }
  }


  @media (max-width:375px) {
    .month-list>div{  
      margin: 0.6rem 0;
    }
  }