@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* hover conoce nuestra me.... */
.box :hover {
  background-color: #25D366;
  transition: background-color 0.3s ease;
  color: white;
}

/* asimila,aplica,aprende */

.botondistintos {
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.644);
}

#buttons-method1,
#buttons-method2,
#buttons-method3 {
  font-size: clamp(25px, 5vw, 30px);
}

#buttons-method1 {
  background-color: #1DA1F2;
}

#buttons-method2 {
  background-color: #ff0000;
}

#buttons-method3 {
  background-color: #25D366;
}

.imgAcord1 {
  width: 15%;
}

.imgAcord {
  width: 50px;
}

@media (max-width: 500px) {
  .imgAcord1 {
    width: 20%;
  }
}

/* cuadros */
#info-tableR {
  border: solid #273063;
  font-size: 18px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.644);
  color: #273063;
}

#info-tableR:hover {
  background: #273063;
  color: #fff !important;
}

/* responsiva img */
.img-comentario {
  width: 90%;
  height: 400px;
}

@media (max-width:500px) {
  .img-comentario {
    height: 200px;

  }
}

/* keyframe */
.letra {
  animation-name: letra;
  animation-duration: 7s;
  animation-iteration-count: infinite;
}

@keyframes letra {

  0%,
  100% {
    background-color: #273063;
  }

  16.66% {
    background-color: #273063;
  }

  50% {
    background-color: #4BA3D8;
  }
}

/* imagenes de asimila, aprende */
.img1demeto1 {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  margin-left: 120px;
  padding: 10px;
  border-radius: 60%;
  width: 25%;
  max-width: 8500px;
  margin-top: -17px;
}

.img2demeto2 {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  margin-left: 100px;
  padding: 10px;
  border-radius: 60%;
  width: 25%;
  max-width: 8500px;
  margin-top: -17px;
}

.img3demeto3 {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  margin-left: 138px;
  padding: 10px;
  border-radius: 60%;
  width: 25%;
  max-width: 8500px;
  margin-top: -17px;
}

/* espaciado encabezado */

.spacer {
  height: 150px;
  /* Ajusta esta altura según tus necesidades */
}

/* Media query para dispositivos más pequeños */
@media (max-width: 767px) {
  .spacer {
    padding-top: 200px;
    /* Ajusta este valor según tus necesidades */
  }
}