body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

a {
  color: #209ec4;
  font-weight: 500;
}

.logo {
  width: 300px;
  height: 52px;
  margin: 0 0 40px 0;
}

.left-side,
.right-side {
  position: relative;
  width: 50%;
  height: 100vh;
}

.right-side  {
  background: url(../img/bg01.jpg) 50% 50% no-repeat;
  background-size: cover;
  z-index: 1;
  color: #ffffff;
}

.right-side::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(17, 130, 164,.8);
}

.left-side-inner,
.about-wrapper {
  position: absolute;
  z-index: 3;
  width: 70%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

h1 {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .left-side,
  .right-side {
    width: 100%;
    height: auto;
    padding: 100px 20px;
  }

  .left-side-inner,
  .about-wrapper {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    -webkit-transform: none;
    transform: none;
    }
}

@media screen and (max-width: 575px) {
  .left-side-inner,
  .about-wrapper {
    font-size: 16px;
  }

  .left-side,
  .right-side {
    padding: 50px 20px;
  }

  .logo {
    width: 230px;
    height: 40px;
  }
}