
.sec4 {
  background-image: url(/resources/media/img/footer-gr1.png);
  width: 100%;
  height: 560px;
  display: grid;
  grid-template-columns: 30% 50%;
  align-content: center;
  justify-content: center;
  grid-gap: 10px;
  position: relative;
}

.sec4 .grid-a {
  grid-column: 1/2;
  grid-row: span 1;
  position: relative;
  align-content: center;
  justify-content: center;
}

.sec4 .grid-a a {
  font-family: "IBM Plex Mono", sans-serif;
  color: #ff3300;
  font-size: 2.5vw;
  font-weight: 600;
  padding-top: 5%;
  display: block;
  text-align: center;
  text-decoration: none;
}

.sec4 .grid-a span {
  font-family: "Source Sans Pro", sans-serif;
  color: #333366;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 2;
  display: block;
  text-align: center;
  padding-top: 5%;
}

.sec4 .grid-a p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec4 .grid-a p .redes {
  color: #333366;
  font-size: 2vw;
  display: inline-block;
}

.sec4 .grid-b {
  grid-column: 2/5;
  grid-row: span 1;
}

.sec4 .grid-b ul {
  font-family: "Source Sans Pro", sans-serif;
  color: #333366;
  font-size: 2vw;
  font-weight: 600;
  line-height: 3;
  text-align: center;
  display: block;
}

.sec4 .grid-b ul a {
  text-decoration: none;
  color: #333366;
}

.sec4 .grid-b ul a:hover {
  font-style: italic;
  word-spacing: 6px;
}

.sec4 .copy {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(90deg);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: -1px;
  word-spacing: 0.1px;
  font-size: 1vw;
  color: #ff3300;
  font-weight: 500;
  z-index: 3;
  position: absolute;
  right: -4%;
  bottom: 55%;
}

/*Media queries MOVIL SECCION-2-2*/
@media screen and (max-width: 900px) {
  .sec4 {
    height: 740px;
    grid-template-columns: 40% 40%;
  }

  .sec4 .grid-a {
    grid-row: span 1;
  }

  .sec4 .grid-a a {
    font-size: 6.5vw;
    padding-top: 0%;
    display: inline;
    position: absolute;
    top: -30%;
    left: 25%;
    text-decoration: underline;
  }

  .sec4 .grid-a p {
    /*Para posicionar redes por fuera del GRID*/
    position: absolute;
    bottom: -30%;
    word-spacing: 20px;
    left: 30%;
    width: 100%;
  }

  .sec4 .grid-a span {
    font-size: 3.1vw;
    padding-top: 65%;
  }

  .sec4 .grid-a p .redes {
    display: inline;
    position: relative;
    font-size: 8vw;
  }

  .sec4 .grid-b {
    grid-column: 2/4;
  }

  .sec4 .grid-b ul {
    font-size: 4vw;
    line-height: 4;
    padding-top: 20%;
  }

  .sec4 .copy {
    transform: none;
    font-size: 3vw;
    bottom: 5%;
    right: 31%;
  }
}