/* ========== keyFrames ========== */
@keyframes showMenu {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes showMenu {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1023px) {

  /* ========== class shered ========== */
  .container {
    display: grid;
  }

  .container.reverse {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .box {
    width: 90%;
    margin: auto;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  /* ========== menu ========== */
  /* Botón que guarda las barras de la hamburguesa del menú*/
  .ham {
    position: fixed;
    display: grid;
    width: 50px;
    height: 50px;
    top: 2rem;
    right: 4%;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 3;
  }

  .ham span {
    width: 40px;
    height: 7px;
    margin: 2px auto;
    border-radius: 1rem;
    background-color: var(--black);
    transition: all 0.5s ease-in-out;
  }

  .br1.animado,
  .br3.animado {
    position: absolute;
    width: 30px;
    height: 5px;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--white);
    transition: all .5s;
  }

  .br1.animado {
    transform: rotate(-45deg);
  }

  .br3.animado {
    transform: rotate(45deg);
  }

  .br2.animado {
    opacity: 0;
    transition: all .5s;
  }

  .menuOptions {
    display: none;
  }

  .menuOptions.activado {
    position: fixed;
    display: grid;
    width: 100%;
    padding-top: 90px;
    padding-right: 5%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    justify-content: right;
    align-content: start;
    text-align: right;
    color: var(--white);
    background-color: var(--shadow7);
    animation: showMenu 0.3s ease-in-out both;
  }

  /* ========== home ========== */
  .homeBox {
    display: grid;
    width: 90%;
    justify-items: center;
    text-align: center;
  }

  .subContainerThree {
    display: grid;
    padding: 0;
  }

  .webServices {
    width: 60%;
    margin: 1rem auto;
  }

  .webServices img {
    width: 80%;
  }

  /* ========== desarrollo de software ========== */
  .containerSoftware {
    justify-items: center;
    text-align: center;

  }

  .containerSoftware h1 p {
    width: 90%;
  }

  /* ========== desarrollo web ========== */
  .container.containerWeb {
    width: 90%;
  }

  .box.boxWebPage {
    padding: 0;
  }

  /* ========== marketing ========== */
  .tabContent p h2 {
    width: 90%;
  }

  /* ========== Footer ========== */
  .menuFooter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .boxes {
    margin: 1rem auto;
  }

  .logoFooter {
    width: 10%;
  }
}

@media (max-width: 768px) {

  /* ========== menu ========== */
  .logojscsoftwarehouse img {
    width: 24%;
  }

  /* ========== class shered ========== */
  .title {
    font-size: 2rem;
  }

  /* ========== home ========== */
  .webServices {
    width: 70%;
  }

  /* ========== Footer ========== */
  .logoFooter {
    width: 15%;
  }
}

@media (max-width: 500px) {
  .logojscsoftwarehouse img {
    width: 30%;
  }

  /* ========== home ========== */
  .webServices {
    width: 90%;
  }
}