@font-face {
    font-family: 'Avenir Regular'; /*a name to be used later*/
    src: url('Avenir_Regular.ttf'); /*URL to font*/
}


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

html,
body {
	height: 100%;
}

body {
	font-size: 110%;
	color: #2C3F5A;
  font-family: 'Avenir Regular';
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.main {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.title {
	font-size: 4rem;
  margin-bottom: .5rem;
	text-align: center;
	width: 100%;
}

.sub-title {
  border-top: .1rem solid #3c3c3c;
  padding: 1rem 4rem;
	text-align: center;
}


.responsive-img {
  width: 100%;
  max-width: 1920px;
  height: auto;
}