@font-face {
	font-family: f-regular;
	src: url(assets/fonts/FuturaPT-Medium.woff) format('woff');
}

@font-face {
	font-family: f-bold;
	src: url(assets/fonts/FuturaPT-DemiObl.woff) format('woff');
}

@font-face {
	font-family: f-boldx;
	src: url(assets/fonts/FuturaPT-ExtraBold.woff) format('woff');
}

@font-face {
	font-family: f-light;
	src: url(assets/fonts/FuturaPT-Light.woff) format('woff');
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #fff;
}

body {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

header {
	padding: 6px 14px;
	position: relative;
}

nav {
	padding: 12px 0;
}

main {
	position: relative;
	padding: 12px 40px;
}

.d-b {
	display: block;
}

.d-f {
	display: flex;
}

.ff-r {
	font-family: f-regular;
}

.ff-l {
	font-family: f-light;
}

.cover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 150%;
	width: 100%;
	overflow: hidden;
}

.cover-item {
	height: 100%;
	width: 100%;
}

.ta-c {
	text-align: center;
}

h1 {
	font-family: f-regular;
	font-size: 3.125rem;
	max-width: 70%;
	text-align: center;
}

h2 {
	text-align: center;
}

section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.btn-link {
	font-size: 15px;
	text-transform: uppercase;
	text-decoration: none;
	font-family: f-regular;
	padding: 8px 16px;
	background-color: #0086c9;
	border: 2px solid transparent;
	border-radius: 3px;
	transition: all .5s ease;
}

.btn-link:hover {
	background-color: transparent;
	border: 2px solid #0086c9;
	background-color: rgba(0, 0, 0, .322);
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-40 {
	margin-bottom: 20px;
}

.sub-para {
	font-family: f-regular;
}

.cover-picture {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.cover-picture img {
	height: 100%;
	width: 100% !important;
	object-fit: cover;
}

.link-logo {
	height: 64px;
	width: 64px;
}

.link-logo img {
	height: 60px;
	width: 197px !important;
	object-fit: contain;
}

footer {
	padding: 6px 14px;
	position: relative;
}

.link-item-footer,
.social {
	display: flex;
	align-items: center;
	margin-right: 8px;
}

.link-item-footer .img {
	height: 30px;
	width: 30px;
}

.link-item-footer .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@media only screen and (max-width:600px) {
	h1 {
		max-width: 100%;
		font-size: 2rem;
	}

	h2 {
		font-size: 1.125rem;
	}
}

@media only screen and (max-width: 300px) {
	main {
		padding: 12px 8px;
	}
}