* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Jost', sans-serif;
	font-size: 16px;
}
a {
	color: white;
	outline: 0;
	text-decoration: none;
	transition: all 0.4s ease;
}
img {
	border: 0;
	outline: 0;
}
.site-body {
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('bg.jpg');
	background-size: cover;
}
.site-container {
	display: flex;
	flex-direction: column;
	max-width: 1300px;
	min-height: 100vh;
	margin-left: auto;
	margin-right: auto;
	padding: 100px 50px;
}
.site-logo img {
	display: inline-block;
	max-width: 300px;
}
.site-logos {
	margin-top: 100px;
}
.site-logos__items {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 50px;
}
.site-logos__item {
	display: flex;
	flex-direction: column;
	gap: 40px;
	opacity: 0.5;
}
.site-logos__item:hover {
	opacity: 1;
}
.site-logos__item:hover .site-logos__item__logo-white {
	opacity: 0;
}
.site-logos__item__logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
}
.site-logos__item__logo img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	transition: all 0.4s ease;
}
.site-logos__item__text {
	text-align: center;
}
.site-footer {
	display: flex;
	margin-top: auto;
	padding-top: 50px;
	color: #8C9194;
}
.site-footer__email {
	color: #8C9194;
}
.site-footer__email:hover {
	color: white;
}
@media (max-width: 767px) {
	.site-footer {
		flex-direction: column;
	}
	.site-footer__email {
		margin-top: 20px;
	}
}
@media (max-width: 399px) {
	.site-logos__items {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
@media (min-width: 400px) and (max-width: 575px) {
	.site-logos__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.site-logos__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 768px) {
	.site-footer {
		align-items: center;
		justify-content: space-between;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.site-logos__items {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (min-width: 992px) {
	.site-logos__items {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}
