@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

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

body {
	font-family: 'Rubik', sans-serif;
	font-weight: 300;
	font-size: 16px;
	/*line-height: 1.5em;*/
	color: rgba(0,0,0,1);
}

h1, h2 {
	width: 100%;
	font-weight: 300;
	line-height: 1.3em;
	margin-bottom: 1em;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

a:link {
	color: rgba(255,255,255,1);
	transition: .5s;
	text-decoration: none;
}

a:visited {
	color: rgba(255,255,255,1);
}

a:hover {
	color: rgba(0,0,0,1);
}

a[href^="tel"] {
	text-decoration: none;
}

/* Main */
.main {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	min-height: 100vh;
	background: rgba(2,194,194,1);
}

.main img {
	display: block;
	max-width: 200px;
	height: auto;
	margin: 0 auto 1em;
}

.m1 {
	display: block;
	text-align: center;
}

.m1 div {
	max-width: 500px;
}

.contact {
	margin-top: 50px;
	color: #fff;
}

.contact div {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid rgba(255,255,255,.3);
}

.contact div:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}


.contact div > p:nth-child(2) {
	margin-bottom: 1em;
}

@media only screen and (min-width: 1024px) {
	.m1 {
		display: flex;
		align-items: center;
		-webkit-align-items: center;
		justify-content: center;
		-webkit-justify-content: center;
		text-align: left;
	}
	
	.main img {
		display: block;
		max-width: 200px;
		height: auto;
		margin: 0;
		margin-right: 50px;
	}
	
	.contact {
		margin-top: 100px;
		color: #fff;
	}

	.contact div {
		margin-right: 70px;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	.contact div:last-child {
		margin-right: 0;
	}

	.contact div > p:nth-child(2) {
		margin-bottom: 1em;
	}

	
}