body {
	background-color: #49E7AD;
	margin: 0;
	padding: 0;
	font-family: alwyn-new-web, sans-serif;
	height: 100%;
}
.wrapper {
	display: flex;
  	flex-direction: row;
  	justify-content: center;
    align-items: flex-start;
    position: fixed;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 25px 0;
}
.container {
	text-align: center;
	background-color: #ffffff;
	color: #383838;
	border-radius: 15px;
    width: 80%;
    /*display: flex;
    flex-direction: column;
    align-items: center;*/
    margin: auto 0;
}
.logo {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	align-items: center;
}
.logo-icon {
	margin-top: 20px;
}
.logo-text {
	margin: 15px 0 20px 0;
}
.caption {
	font-weight: 700;
	font-style: normal;
	margin-bottom: 10px;
	font-size: 25px;
}
.coming {
	color: #898989;
	margin-bottom: 10px;
}
.contact {
	padding-bottom: 10px;
	display: block;
}
.contact a {
	color: #22A5C7;
	background-position: left;
	background-repeat: no-repeat;
	transition: opacity linear .2s;
	text-decoration: none;
	line-height: 2;
}
.contact a:hover {
	opacity: .6;
}
.phone {
	background-image: url('images/phone.svg');
	background-size: 14px;
	padding: 15px 20px;
	margin-right: 5px;
}
.mail {
	background-image: url('images/mail.svg');
	background-size: 20px;
	padding-left: 30px;
	padding: 19px 20px 20px 25px;
	margin-left: 5px;
}

/*media queries*/

@media only screen and (min-width: 767px) {
	.container {
		max-width: 700px;
	}
	.contact {
		display: flex;
		justify-content: center;
	}
	.phone {
		padding: 20px;
	}
}
@media only screen and (min-width: 1200px) {
	.caption {
		font-size: 40px;
		margin-bottom: 20px;
	}
	.logo {
		padding: 20px 0;
	}
	.logo-icon {
		width: auto;
	}
	.coming {
		margin-bottom: 20px;
	}
	.contact {
		padding-bottom: 20px;
	}
}