@import url("https://fonts.googleapis.com/css?family=Lato");
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.swipe {
  height: 100%;
  flex-basis: 50%;
  flex-shrink: 1;
  transition: .5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swipe:hover {
  flex-basis: 85%;
}
.swipe__left {
  background: url("sistema_local.jpg") no-repeat center;
  background-size: cover;
}
.swipe__right {
  background: url("sistema_online.jpg") no-repeat center;
  background-size: cover;
}

.box {
  width: 100%;
  max-width: 380px;
  transform: skewX(-10deg);
  padding: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
.box .s_head {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.box .b_head {
  font-size: 42px;
  line-height: 44px;
  margin-bottom: 15px;
}
.box p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 60px;
}

.btn {
  color: #000;
  text-decoration: none;
  padding: 12px 45px;
  text-align: center;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}
.btn__orange {
  background: #FFBF00;
  transition: .5s;
}
.btn__orange:hover {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .container {
    display: block;
    height: 100%;
  }

  .swipe {
    flex-basis: 100%;
    padding: 40px 0;
  }
}
@media screen and (max-height: 320px) {
  .container {
    height: 100%;
  }

  .swipe {
    padding: 40px 0;
  }
}