html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body, .container {
	min-height: 100vh;
}
body {
	line-height: 1;
	background-color: #E6E6E6;
	line-height:1.6;
	font-size:19px;
	background-image: url(img/watermark.svg);
	background-size: 50%;
	background-repeat: no-repeat;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img, svg {
	max-width: 100%;
	height:auto;
}
.container {
	width: 100%;
	height:100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.logo {
	max-width:450px;
}
.brand-logos {
	position: relative;
	display: flex;
	align-items: center;
	gap:60px;
	margin-top: 100px;
}
.brand-logos div {
	position: relative;
	border-radius:999px;
	background-color: #E6E6E6;
	aspect-ratio: 1 / 1;
	width:200px;
	-webkit-box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.1);
	transition: 0.6s all;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:10px;
}
.brand-logos div:before {
	content:'';
	display: block;
	width:100%;
	aspect-ratio: 1 / 1;
	background-color: #f6f6f6;
	position: absolute;
	top:-25px;
	left:-25px;
	z-index:-1;
	border-radius: 999px;
	filter:blur(15px);
}
.brand-logos div:hover {
	-webkit-box-shadow: inset 10px 10px 15px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 10px 10px 15px 0px rgba(0,0,0,0.1);
	box-shadow: inset 10px 10px 15px 0px rgba(0,0,0,0.1);
	margin-top: -10px;
}
.brand-logos img {
	max-width:175px;
	width:175px;
	transition:0.6s all;
}
.certifications	{
	margin-top: 100px;
	display: flex;
	gap:50px;

}

.certifications img {
	width: 125px;
}

@media only screen and (max-width:1024px) {
	body {
		background-position: center center;
		padding:50px;
	}
	.brand-logos {
		gap:25px;
	}
}
@media only screen and (max-width:768px) {
	.logo {
		max-width:400px;
	}
	.brand-logos {
		position: relative;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.certifications {
		flex-direction: column;
		gap:25px;
	}
}