/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
body {
	line-height: 1;
}
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;
}

html {
	/*background-image: url("./img/bg.jpg");*/
	overflow: hidden;
	background-color: #000;
}

main {

}

.copyright{
	position: absolute;
	bottom: 0;
	z-index: 150;
	text-align: center;
	background-color: #000;
	width: 100%;
	padding: 30px 0;
}

.copyright p + p{
	margin-top: 20px;
}

.copyright p, .copyright a{
	color: #FFF;
	font-family: Helvetica, Arial, sans-serif;
}

.copyright a{
	text-decoration: none;
}

.container-full{
	min-height: 100vh;
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-container{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.swiper-slide{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 100;
}

.logo {
	text-align: center;
}

.logo img {
	width: 100%;
	max-width: 460px;
	height: auto;
}
.subtitle {
	display: block;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
	font-size: 18px;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.4em;
}

.logos {
	width: 80%;
	margin: 0 auto;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 1024px) {
	.logos {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.logos {
		grid-template-columns: repeat(1, 1fr);
		padding-bottom: 50px;
	}

	.logos a {
		height: 120px;
	}

	.container-full{
		padding: 150px 0 !important;
	}

}

@media (max-height: 1024px){
	.container-full{
		min-height: 100%;
		padding: 250px 0;
	}

	html {
		overflow: auto;
	}

}

.logos a {
	display: flex;
	align-items: center;
	background-color: white;
	padding: 40px 10px;
	text-decoration: none;
	transition: 200ms ease background-color;
}

.logos a:hover {
	background-color: #e3e3e3;
	transition: 300ms ease background-color;
}

.logos img {
	max-width: 160px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;

	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}
