*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Be Vietnam';
}

.name {
  height: 144px;
  background: #FDFAF6;
  display: grid;
  place-items: center;
}

.nav-bg{
	height: 53px;
	background: black;
}

.nav-bg > ul{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.nav-bg > ul > li > a{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
}

.navbar-nav > .dropdown > ul{
	background: black;
}

.navbar-nav > .dropdown > ul > li > a{
	color: white;
}

.navbar-nav > .dropdown > ul > li > a:hover{
	color: rgb(0, 0, 0);
}



.wrapper{
	position: relative;
	margin-top: 12rem;
}


.hero > img{
	/* z-index: -1; */
	height: inherit;
	padding-top: 3.5rem;
	opacity: 25%;
	position: absolute;
}

.hero{
	height: 503px;
	background-color: #085A0E;
	display: grid;
	place-items: center;
	z-index: -2;
}

.hero::before{
	content: '';
	opacity: 0.05;
	position: absolute;
	inset: 0;
	background-image: url(../images/text.svg);
	background-repeat: no-repeat;
	background-position: center calc(50% + 1.5rem);
	background-size: contain;
	z-index: 0;
}

.hero > .text-wrapper{
	max-width: 500px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	color: white;
	text-align: center;
	z-index: 1;
}

.hero > .text-wrapper > p{
	font-style: italic;
	font-weight: 400;
	font-size: 32px;
	line-height: 47px;
}

.footer{
	min-height: 411px;
	background: black;
	display: block;
}

.footer > .content{
	display: flex;
	flex-direction: column;
}


.footer > .content > .text-wrapper > h1{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
}

.footer > .content > .text-wrapper > p{
	font-size: 24px;
	line-height: 35px;
}


.socials > img {
	width: 2rem;
	height: 2rem;
}