@media (max-width: 1024px) {
  .crosswrap h3 {
    display: block !important;
  }
 .cross {
    position: absolute;
    width: 30px !important;
    height: 30px !important;
    display: inline-block;
    animation-delay: 0.6s;
    top: -26px;
    }
}


@keyframes cross-vertical {
  from { 
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes cross-horizontal {
  from { 
    width: 0%;
  }
  to {
    width: 100%;
  }
}