body, html {
    margin: 0;
    padding: 0;
	font-family: 'Montserrat', sans-serif;
	line-height: 24px;
	background: white;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}

.h1 {
	margin: 20px 0;
	line-height: 30px;
	word-break: break-word;
	font-size: 28px;
}

.h2 {
	margin: 20px 0;
	font-weight: 700;
	width: 100%;
	text-align: center;
}
  
.container {
    max-width: calc(1000px - 20px);
    margin: 0 auto;
    padding: 20px 10px;
}

.top-header {
    background: white;
    padding: 10px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-around;
}

.logo {
	width: 600px;
	min-height: auto;
	padding-top:100px;
}

.banner {
	background-position: center;
    background-size: cover;
	color: black;
	text-align: center;
}

.banner__overlay {
	width: 100%;
	background: rgba(0,0,0,.4);
	padding: 50px 0;
}

.banner p {
	width: 50%;
	margin: 0 auto;
}

.usps {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.usp {
    width: calc(25% - 20px);
	text-align: center;
	margin-right: 20px;
}

.usp__icon {
	margin-bottom: 20px;
}

.usp__icon svg {
	fill: rgba(0,0,0,.7);
}

.usp:last-of-type {
	margin-right: 0;
}

.companies__container {
    display: flex;
	justify-content: space-between;
	padding: 40px 0;
}

.companies {
	background: white;
}

.company a {
	color: inherit;
	text-decoration: inherit;
}

.company__logo {
	text-align: center;
	font-size: 15px;
}

.company__logo img {
	min-height:110px;
	max-height:110px;
	margin-bottom: 20px;
	height: auto;
}

.footer {
	background: rgb(35,60,76);
	color: white;
}

.footer__flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.footer .container a {
	color: inherit;
}

.images {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.image {
	background-position: center;
    background-size: cover;
	width: 25%;
	height: 300px;
	background-size: cover;
}

@media (max-width: 800px) {
	.usp {
		width: calc(50% - 20px);
	}

	.image {
		width: 50%;
		max-height: 150px;
	}

	.usp:nth-child(even) {
		margin-right: 0;
	}

	.companies__container {
		display: block;
	}

	.banner p {
		width: 100%;
	}

	.logo {
		width: 300px;
		min-height: auto;
	}

	.company__logo img {
		width: 150px;
		min-height: auto;
	}

	.company {
		margin-bottom: 30px;
	}

	.company:last-of-type {
		margin-bottom: 10px;
	}
}

@media (max-width: 640px) {
	.usp {
		width: calc(100%);
		margin-right: 0;
	}
}