@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap');


/*
========================================
Home
========================================
*/

.navigation.home {
	background: transparent;
	transition: 0.3s;
}

.tagline a:hover {
	background: transparent;
	color: white;
	transition: 0.3s;
}

.wrapper {
	background-color: white;
	box-shadow: 0 0 5px 2px #e6e6e6;
	text-align: center;
	padding: 15% 5%;
	height: 450px;
	border-radius: 10px;
}

.title {
	font-size: 1.5em;
	font-weight: 500;
	margin-bottom: 15px;
}

.content {
	margin-bottom: 30px;
}

.icon img {
	width: 50%;
}

.section.contact {
	box-shadow: inset 0px 20px 18px 0px #00000061; 
	background-color: #d6d9de;
}

.wrapper.home a {
	background-color: #021224;
	font-family: 'Open Sans', sans-serif;
	color: #e0e0e0;
	border: 1px solid #021224;
	padding: 5px 30px;
	border-radius: 10px;
	font-size: 0.9em;
	font-weight: 300;
	transition: 0.3s ease;
}

.wrapper.home a:hover {
	background: transparent;
	color: #021224;
	transition: 0.3s ease;
}


#home-background {
	position: absolute;
	opacity: 0.6;
	top: -5%;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}


#home-background img {
	width: 105%;
	height: 110%;
	object-fit: cover;
}

@media only screen and (max-width: 992px) {
	.tagline {
		width: 100%;
	}

	.wrapper {
		width: 80%;
		margin: 0 auto 20px;
		height: auto;
	}
}

@media only screen and (max-width: 500px) {
}