@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');


*{
	font-weight: 400;
}

h1{
	font-family: 'Roboto', sans-serif;
	font-size: 48px;
	line-height: 56px;
	text-transform: uppercase;
	font-weight: 500;
}
h1 strong{
	color: var(--yellow);
	font-weight: 500;
}

h2{
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	line-height: 40px;
	font-weight: 500;
}
h2 strong{
	color: var(--yellow);
	font-weight: 500;
}

h3{
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
}
h3 strong{
	font-weight: 500;
}

h4{
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
}

p, li, a{
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	list-style: none;
}
a{
	text-decoration: none;
}

/*responsive*/
@media screen and (max-width: 768px){
	h1{
		font-size: 32px;
		line-height: 40px;
	}
	h2{
		font-size: 24px;
		line-height: 32px;
	}
	h3{
		font-size: 20px;
		line-height: 28px;
	}
	h4{
		font-size: 16px;
		line-height: 24px;
	}
	p, li, a {
		font-size: 14px;
		line-height: 24px;
	}
}