/*Google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	box-sizing: border-box;
	outline: none;
}

body {
	font-family: 'Dosis', sans-serif;
	font-weight: 400;
	color: #fff;
	overflow-x: hidden;
	overflow: hidden;
}

@media (max-width: 600px) {

	.home .text {
		padding: 0 30px;
		text-align: center;
	}

	.home p {
		font-size: 18px;
		color: #dde7ee;
		margin: 30px 0;
	}
}

@media (min-width: 601px) {
	.common {
		padding: 130px 0;
		align-items: center;
	}

	.home p {
		font-size: 18px;
		line-height: 30px;
		color: #dde7ee;
		margin: 30px 0;
	}
}

.wrapper {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/BG.jpg);
}

.header-inner {
	display: block;
	margin: 0 auto;
	padding: 30px 0 0 0;
	text-align: center;
}

.common {
	min-height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;

}

.home-inner {
	justify-content: center;
	align-items: center;
}

.home .text {
	max-width: 100%;
	text-align: center;
}

.home a {
	color: #c2f4ff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: bold;
}

.home a:hover {
	color: #aaeefd;
}

.contact {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact a {
	color: #fff;
}