@font-face {
	font-family: "headline";
	src: url(../fonts/nunitoSansBold.ttf) format("truetype");
}

@font-face {
	font-family: "text";
	src: url(../fonts/nunitoSans.ttf) format("truetype");
}

@font-face {
	font-family: "icons";
	src: url(../fonts/icons.ttf) format("truetype");
}


html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: Helvetica, Arial, sans-serif;
	background-image: linear-gradient(white, #146d33);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

header {
	width: 100%;
	backdrop-filter: blur(25px);
	position: fixed;
	top: 0;
}

main {
	margin-top: 7em;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: black;
}

main div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin-bottom: 30px;
}

h1 {
	font-size: 45px;
	margin: auto 0;
	color: black;
	font-family: "headline";
	width: 100%;
	text-align: center;
}

h2 {
	font-size: 25px;
	margin: auto 0;
	color: black;
	font-family: "headline";
	width: 100%;
	text-align: center;
}

h3 {
	font-size: 20px;
	margin: auto 0;
	color: black;
	font-family: "headline";
	width: 100%;
	text-align: left;
}

.icon {
	font-family: "icons";
}

.content_head {
	width: 60%;
	flex-direction: column;
	margin: auto;
	margin-bottom: 2em;
}

.text_content {
	width: 60%;
	display: flex;
	flex-direction: column;
	margin: auto;
}

.text_content>div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.text_content>div>h2 {
	text-align: left;
	margin-top: 0;
	width: 25%;
	margin-left: 5%;
}

.text_content>div>div {
	display: block;
	width: 70%;
	font-size: 22px;
	text-align: justify;
}

.content {
	flex-direction: row;
	width: 100%;
	margin-top: 5em;
}

.buttons {
	gap: 0.5em;
	justify-content: space-around;
}

.bullet-points {
	flex-direction: column;
	width: 50%;
	text-align: center;
}

.bullet-points ul {
	flex-direction: column;
}

@media screen and (max-width: 800px) {
	.phone_image {
		display: none;
	}

	.buttons {
		flex-direction: column;
	}

	.content_head {
		width: 95%;
	}

	.text_content {
		width: 95%;
	}

	.text_content>div {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.text_content>div>h2 {
		text-align: left;
		width: 100%;
		margin-left: 0;
		margin-bottom: 0.5em;
	}

	.text_content>div>div {
		display: block;
		width: 100%;
		font-size: 22px;
		text-align: left;
	}

	.bullet-points {
		width: 85%;
	}
}

@media screen and (max-width: 1100px) {
	.content {
		flex-direction: column;
	}

	.content_head {
		width: 80%;
	}

	.text_content {
		width: 80%;
	}

	.text_content>div {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.text_content>div>h2 {
		text-align: left;
		width: 100%;
		margin-left: 0;
		margin-bottom: 0.5em;
	}

	.text_content>div>div {
		display: block;
		width: 100%;
		font-size: 22px;
		text-align: left;
	}

	.bullet-points {
		width: 85%;
	}
}