/* oficina */
#oficina{
  position: relative;
  height: auto;
  min-height: 300px;
}

#oficina h1 {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 20%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.button {
  display: block;
  position: absolute;
  padding: 1rem 2rem;
  text-align: center;
  color: #fff;
  border: #fff solid 0.2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  left: 50%;
  top: 60%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.split.left .button:hover {
  background-color: rgba(161, 11, 11, 0.3);
  border-color: rgba(161, 11, 11, 0.3);
}
.split.right .button:hover {
  background-color: rgba(92, 92, 92, 0.3);
  border-color: rgba(92, 92, 92, 0.3);
}
.split-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #333;
}
.split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.split.left {
  left:0;
  background: url(../img/oficina/oficina-toyota.jpg) center center no-repeat;
  background-size: cover;
}
.split.left:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(223, 39, 39, 0.7);
}
.split.right {
  right:0;
  background: url(../img/oficina/oficina-nh.jpg) center center no-repeat;
  background-size: cover;
}
.split.right:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.8);
}
.split.left, .split.right, .split.right:before, .split.left:before {
  -webkit-transition: 1000ms all ease-in-out;
  -o-transition: 1000ms all ease-in-out;
  transition: 1000ms all ease-in-out;
}
.hover-left .left {
  width: 75%;
}
.hover-left .right {
  width: 25%;
}
.hover-left .right:before {
  z-index: 2;
}
.hover-right .right {
  width: 75%;
}
.hover-right .left {
  width: 25%;
}
.hover-right .left:before {
  z-index: 2;
}


/* media */
@media(max-width: 800px) {
  #oficina h1 {
    font-size: 1.5rem;
  }

}


@media(max-height: 700px) {
  .button {
    top: 70%;
  }

}
