*, *:before, *:after {
	box-sizing: border-box;
}

body {
	font-family: Helvetica,Arial,sans-serif;
}

h2 {
	bottom: 0;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	right: 10px;
	text-transform: uppercase;
}

.logo {
	margin: 60px 0;
	text-align: center;
	width: 100%;
}

a {
	display: inline-block;
	position: relative;
	width: 100%;
	transition: 0.5s all ease;
}

a:hover {
	opacity: 0.85;
}

a img {
	border-radius: 15px;
	width: 100%;
}

.contact {
	color: #eb9234;
	font-weight: bold;
	line-height: 23px;
	margin-top: 20px;
	text-align: right;
	text-transform: uppercase;
}

@media (max-width: 1199px) {
	h2 {
		font-size: 19px;
	}
}

@media (max-width: 992px) {
	.logo {
		margin: 30px 0;
	}
	.col-3 {
		padding: 1%;
	}
	h2 {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.container {
		width: 90%;
	}
	.col-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	h2 {
		font-size: 20px;
	}
	.contact {
		margin-top: 10px;
	}
}

@media (max-width: 576px) {
	h2 {
		font-size: 12px;
	}
}

@media (max-width: 320px) {
	body {
		min-width: 320px;
	}
}