/* Font - Local */

@font-face{
    font-family:'CentralNo2_Bold';
    src:url("fonts/CentraNo2-Bold.eot");
    src:url("fonts/CentraNo2-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/CentraNo2-Bold.woff") format("woff"), url("fonts/CentraNo2-Bold.ttf") format("truetype")
}

/* Font - Site */

@font-face{
    font-family:'CentralNo2_Bold';
    src:url("/styles/assets/fonts/CentraNo2-Bold.eot");
    src:url("/styles/assets/fonts/CentraNo2-Bold.eot?#iefix") format("embedded-opentype"),url("/styles/assets/fonts/CentraNo2-Bold.woff") format("woff"),url("/styles/assets/fonts/CentraNo2-Bold.ttf") format("truetype")
}

*, *::before, *::after {
	box-sizing:border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	text-align: center;
	font-family:'CentralNo2_Bold';
	background: url(images/background.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
}

.wrapper {
	margin: 0;
	padding: 0;
}

@media (min-width: 992px) {
	.wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		width: 100%;
	}
}

.container {
	max-width: 1100px;
	padding: 30px;
}

@media (min-width: 768px) {
	.container {

	}
}

@media (min-width: 992px) {
	.container {

	}
}

@media (min-width: 1200px) {
	.container {
		padding: 0;
		width: 1100px;
	}
}

.links {
	margin: 0;
	padding: 0;
}

@media (min-width: 992px) {
	.links {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		gap: 30px;
	}
}

@media (min-width: 1200px) {
	.links {
		gap: 40px;
	}
}

h1, h2 {
	color: #191919;
	font-weight:normal;
}

h1 {
	margin: 0 0 30px 0;
	font-size: 24px;
	line-height: 34px;
	position: relative;
	display: inline-block;
}

@media (min-width: 992px) {
	h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

h1:after {
	display: none;
}

@media (min-width: 992px) {
	h1:after {
		display: block;
		content: '';
		height: 30px;
		width: 2px;
		background: #000;
		position: relative;
		left: 50%;
		margin-top: 30px;
	}
}

h2 {
	margin: 0 0 20px 0;
	font-size: 18px;
	line-height: 28px;
	text-decoration: underline;
}

@media (min-width: 992px) {
	h2 {
		margin: 0 0 30px 0;
		font-size: 24px;
		line-height: 34px;
	}
}

p {
	margin: 0 0 30px 0;
	color: #6C757D;
	font-size: 14px;
	line-height: 22px;
}

.btn {
	margin: 0;
	padding: 11px 15px;
	font-size: 14px;
	letter-spacing: 3px;
	color: #CC0000;
	border: 2px solid #CC0000;
	display: inline-block;
	text-transform: uppercase;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: background-color 0.25s ease;
	-moz-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
	transition: background-color 0.25s ease;
}

@media (min-width: 992px) {
	.btn {
		padding: 16px 20px;
	}
}

.links img {
	margin-bottom: 20px;
	max-height: 80px;
}

@media (min-width: 992px) {
	.links img {
		margin-bottom: 30px;
	}
}

.links a {
	margin: 0 0 30px 0;
	padding: 30px;
	text-decoration: none;
	background: #FFF;
	display: block;
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 3px solid #FFF;
	-webkit-transition: border 0.25s ease;
	-moz-transition: border 0.25s ease;
	-o-transition: border 0.25s ease;
	transition: border 0.25s ease;
	width: 100%;
	flex-grow: 1;
}

@media (min-width: 992px) {
	.links a {
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.links a {
		padding: 60px;
	}
}

.links a:last-child {
	margin: 0;
}

.links a:hover {
	border: 3px solid #CC0000;
}

.links a:hover .btn {
	background: #CC0000;
	color: #FFF;
}