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

html {
	height: -webkit-fill-available;
}

body {
	  min-height: 100vh;
	  width: 100%;
	  /* mobile viewport bug fix */
	  min-height: -webkit-fill-available;
	  background: #0B2504; 
}

.main {
	height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info {
	text-align: center;
	width: 100%;
	margin-top: 50px;
}

.logo {
	margin-bottom: 28px;
}

.logo img[src$=".svg"]{ 
	width: 490px !important; 
}

.contact {
	position: absolute;
    left: 162px;
    bottom: -40px;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #00305c;
	line-height: 1.1;
    font-weight: 700;
}

a {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.63px;
	text-transform: uppercase;
	text-decoration: none;
	color: #ADBF9C;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

a:hover {
	text-decoration: underline;
	color: #ADBF9C;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

@media screen and (max-width: 1195px) {
	.logo img {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
/*	.logo img[src$=".svg"]{ 
		width: 400px !important; 
	}*/
}

/* Mobile Landscape */
@media screen and (min-width: 300px) and (max-width: 940px) and (orientation : landscape) { 
	.info {
		margin-top: 0;
	}
}

/* Mobile Portrait */
@media screen and (max-width: 600px) {
	#wrap {
		height: 100vh;
	}

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

	.logo img[src$=".svg"]{ 
		width: 310px !important; 
	}

	a {
		font-size: 11px;
	}

	.info {
		margin-top: 0;
	}

	.contact {
		left: 102px;
    	bottom: -30px;
	}
}
