h1, h2, h4, h5, h6 {
	font-family: var(--title-font);
}

h1 {
	font-size: var(--h1-font-size);
}

h2 {
	font-size: var(--h2-font-size);
}

h3 {
	font-family: var(--text-font);
}

h4 {
	font-family: var(--text-font);
}

p, a, input, select, label {
	font-family: var(--text-font);
	font-weight: 400;
}

img {
	-webkit-user-select: none;
	user-select: none;
}

.bg-blue {
	background-color: var(--blue-color);
}

.section {
	padding: 5rem 0;
}

.subtitle {
	font-weight: 600;
	text-transform: uppercase;
}

.mb-1 {
	margin-bottom: 1rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-4 {
	margin-bottom: 4rem;
}

.text-align-center {
	text-align: center;
}

ul{
	list-style-position: inside;
}