@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,800');
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}
.container {
    width: 100%;
    display: flex;
    height: 100%;
    display: flex;
    justify-content: center;
}
.left-side>.inner {
  background-image: url("../img/left_side.jpg");
}
.right-side>.inner {
  background-image: url("../img/right_side.jpg");
}
.split-pane {
  width: 50%;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 9em;
  font-size: 2em;
  color: #3d3421;
  font-family: 'Open Sans', sans-serif;
  font-weight:300;
  height: 100%;
  overflow: hidden;
}
.split-pane > .inner {
  transition: all 0.7s ease;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.split-pane > .inner:hover {
  transform: scale(1.2);
}
.split-pane> .inner > div {
  position: relative;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  overflow: hidden;
}
.split-pane> .inner > div .text-content {
  line-height: 1.6em;
  margin-bottom: 1em;
}
.split-pane> .inner > div .text-content .big {
  font-size: 2em;
}
.split-pane> .inner > div img {
  height: 1.3em;
}
.split-pane button, .split-pane a.button {
  font-family: 'Open Sans', sans-serif;
  font-weight:800;
  background: none;
  border: 1px solid #3d3421;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 15em;
  padding: 0.7em;
  font-size: 0.5em;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
  color: #3d3421;
  display: inline-block;
  cursor: pointer;
}
.split-pane button:hover, .split-pane a.button:hover {
  text-decoration: none;
  background-color: #fff;
  border-color: #fff;
  cursor: pointer;
}
.logo {
    position: absolute;
    top: 20%;
    width: 100%;
    text-align: center;
    z-index: 2000;
}
.logo img {
    height: 120px;
}
.big {
  font-size: 2em;
  font-weight:800;
}
.bold {
  text-transform:uppercase;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    height: 100%;
    display: block;
  }
  .split-pane {
    width: 100%;
    height: 50%;
    display: block;
  }
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    height: 100%;
    display: none;
  }
  .logo img{
    height: auto;
    max-width: 100%;
    margin-top: 37.5px;
    width: 300px;
  }
  .split-pane> .inner > div {
    top:50%;
  }
  .split-pane> .inner > div .text-content .big {
    font-size: 40px;
  }
/*  .split-pane.right-side > div {
    top: 40%;
  }*/
  .bold {
    /*opacity: 0;*/
  }
}