@charset "utf-8";
/* CSS Document */

.about-us {
	width: 70%;
	margin: auto;
}

.about-us p {
	text-align: justify;
	width: 100%;
	font-size: 13pt;
	list-style: circle;
	line-height: 30px;
}

.about-us p::before {
  content: "\2022";
  color: red;
}

.partners {
	width: 100%;
	text-align: center;
}

.partners img {
	max-width: 250px;
	max-height: 100px;
	padding: 10px 30px;
	margin: auto;
}

@media (max-width: 800px) {
	.about-us {
		width: 90%;
	}
}

@media (max-width: 550px) {
	.about-us p {
		text-align: left;
	}
}

