* {

	box-sizing: border-box;

}

body{
	display: flex;
	flex-direction: column;
	font-family: "Roboto", sans-serif;
	gap: 50px;
	margin: 0;
}


.icon, #navbar-logo {
	width: 50px;
	height: 50px;
}

header{
	background: #1F2937;
	display: flex;
	flex-direction: column;

	color: white;

}
.navbar{
	display:flex;
	padding: 15px;
	justify-content: center;
	align-items: center;
	gap: 400px;

	padding-bottom: 0;
}
.navbar-menu {
	
}
.navbar-menu ul{
	display:flex;
	list-style-type: none;
	gap: 20px;
}
.navbar-menu a{
	color: white;
	text-decoration: none;	

}

.navbar-menu a:hover{
	background: -webkit-linear-gradient(#0f766e, #a78347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-content{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 150px;
	flex: 1;
	padding: 50px;
}
.header-title {
	width: 350px;
	display: flex;
	flex-direction: column;
	padding: 5px;
}


.header-title h1{
	margin: 0;
}

.header-image img{
	width: 256px;
	height: 128px;
}

.content {
	margin: 25px;
	display:flex;
	flex-direction: column;
	gap: 25px;
}
.showcase-title {
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}

.showcase{
	display: flex;
	justify-content: center;
	width: auto;
	align-items: center;
	gap: 40px;
}

.item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 150px;
	text-align: center;

}


.item .icon {
	border: 2px solid #3882f6;
	border-radius: 100% 100%;
}

.item a{
	text-decoration: none;
	color: gray;
}
.item a:visited{
	text-decoration: none;
	color: gray;
}

.item:hover {
	transform: scale(1.5);
	box-shadow: 12px 12px 12px 12px rgba(0, 0, 255, 0.2);
	transition: box-shadow 1s, transform 1s;

	background: -webkit-linear-gradient(#0f766e, #a78347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.quote {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e5e7eb;
}

.quote-text {

	color: #1f2937;
	font-size: 16px;
	padding: 35px;
	width: 400px;
	font-weight: lighter;
}

.bottom-banner {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #3882f6;
	gap: 20px;
	margin: 50px;
	color: white;
	border-radius: 8px;
	margin-left: 100px;
	margin-right: 100px;
	/*padding-top: 25px;
	padding-bottom: 25px;*/
	padding: 25px;
}

button {
	border: 1px solid white;
	background: #3882f6;
	border-radius: 2px;
	color: white;
}

button:hover{
	transform: scale(1.2);
	cursor: pointer;
	transition: transform 1s;
}

.footer{
	background: #1f2937;
	text-align: center;
	color: white;
}
.footer a{
	text-decoration: none;
	color: #A78347;
}

.footer a:visited{
	text-decoration: none;
	color: #0F766E;
}

.footer p {
	margin-top: 50px;
	margin-bottom: 50px;
}
