html, body, div, a, img {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* Reset Over */
.full {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("images/white-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.full .inner {
  position: absolute;
  padding: 0 100px;
  max-width: 1300px;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.full .inner .half {
  float: left;
  width: 49%;
}
.full .inner .line {
  width: 5px;
  float: left;
  background-color: #006796;
  min-height: 240px;
}
.full .inner .half a {
  display: block;
}
.full .inner .half a img { /* Logos & Buttons */
  display: block;
  margin: 25px auto;
  max-width: 90%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .full .inner .half {
    width: 100%;
    float: none;
    margin-bottom: 100px;
  }
  .full .inner .line {
    display: none;
  }
  .full .inner .half a img {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .full .inner {
    padding: 0 50px;
  }
}
@media screen and (max-height: 500px) {
  .full .inner .half {
    margin-bottom: 50px;
  }
}
