* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

@font-face {
  font-family: 'Aero';
  font-weight: bold;
  src: url('fonts/Aero-Matics-Bold.ttf');
}

.wrap-content__text {
	position: relative;
	margin-bottom: 50px;
}

.wrap-content__logo {
	padding-bottom: 50px;
}

@media screen and (min-width: 767px) {
	.wrap-content {
		height: 100%;
	}
		.wrap-content__text {
			height: 50%;
		}
		.wrap-content__logo {
			height: 50%;
		}
}

@media screen and (min-width: 1024px) {
	.wrap-content {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
		.wrap-content__text {
			position: relative;
			width: 66%;
			height: 100%;
			margin-bottom: 0;
			background-repeat: no-repeat;
			background-position: center center;
			-webkit-background-size: cover;
			background-size: cover;
		}
		.wrap-content__logo {
			position: relative;
			width: 44%;
			height: 100%;
			padding-bottom: 0;
		}
}

.texts {
	position: relative;
	z-index: 1;
    padding: 30px;
}
	.texts h1,
	.texts p {
		color: #fff;
	}

	.texts h1 {
		display: inline-block;
		margin-bottom: 35px;
		font-family: 'Aero';
		text-transform: uppercase;
		letter-spacing: 3px;
		font-size: 35px;
		line-height: 50px;
	}
		.texts h1::after {
			content: "";
			display: block;
			width: 100%;
			height: 1px;
			background-color: #fff;
		}

	.texts p {
		font-size: 15px;
		line-height: 23px;
		margin-bottom: 20px;
		font-family: 'Roboto', sans-serif;
	}

.logo {
	position: relative;
	z-index: 1;
	text-align: center;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.30);
}

@media screen and (min-width: 1024px) {
	.texts {
		position: absolute;
	    top: 50%;
	    right: 100px;
	    transform: translateY(-50%);
	    width: 100%;
	    max-width: 600px;
	    padding: 0;
	}
	.logo {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		text-align: center;
		width: 100%;
	}
}

.cta {
	display: block;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 180px;
    height: 46px;
    margin-top: 50px;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    text-align: center;
    transition: .2s;
    font-size: .875rem;
    cursor: pointer;
    line-height: 46px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    font-family: "Roboto",sans-serif;
    text-decoration: none;
}

.cta--base {
    background-color: transparent;
    color: #003E7F;
    border-color: #003E7F;
}


.cta:active,
.cta:visited,
.cta:focus {
    color: #003E7F;
    background-color: transparent;
}

.cta:hover {
    background-color: #003E7F;
    color: #fff;
}
