*, html, body {
  box-sizing: border-box;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
}

a {
	text-decoration: none;
}

.h2 {
	margin-bottom: 0;
	font-size: 32px;
  font-weight: bold;
}

.h3 {
	display: block;
	text-transform: uppercase;
  font-size: 22px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 1px;
}

.btn-primary {
	display: inline-block;
  padding: 15px 40px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
	background-color: #fff;
	color: #3fa38b;
}

.divider {
	display: block;
  width: 100%;
  height: 2px;
  margin: 35px 0;
  background-color: #fff;
}

.container {
	display: -webkit-flex;
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #ededed;
}

.container__column {
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.container__column:first-child {
	background: url('../img/bg-01.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.container__link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 0;
	transition: all 0.25s ease;
}

.container__link:hover {
	transform: scale(1.1);
}

.container__wrapper {
	display: table;
	position: relative;
	height: 100%;
	width: 100%;
}

.content {
	display: table-cell;
	vertical-align: middle;
}

.content__wrapper {
	position: relative;
	width: 50%;
	margin: 0 auto;
	font-size: 16px;
	color: #fff;
}

.container__column:last-child {
	background: url('../img/bg-02.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.container__column:last-child .content__wrapper {
	text-align: right;
}

.container__column:last-child .btn-primary:hover {
	color: #4869ac;
}

.logo {
	max-width: 280px;
	margin-bottom: 30px;
}

.img-ou {
	position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 9;
}

@media only screen and (max-width: 992px) {
	.h2 {
		font-size: 28px;
	}

	.h3 {
		font-size: 20px;
	}

	.btn-primary {
		font-size: 15px;
	}

	.logo {
		max-width: 230px;
		margin-bottom: 20px;
	}

	.content__wrapper {
		width: 80%;
	}

	.img-ou {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.container {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.container__column {
		width: 100%;
	}

	.content__wrapper {
		text-align: center!important;
	}
}