main {
	background-image: url('../assets/images/brick-wall-smaller.jpg');
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	width: 100vw;
	color: #fff;
	font-family: 'Quicksand', sans-serif;
	text-align: center;
	position: relative;
	padding: 0px 30px 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

main:after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.6;
	z-index: 1;
	pointer-events: none;


}

.flex-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

.logo-wrap {
	position: relative;
	margin: 0 auto 40px;
	max-width: 500px;
	width: 100%;
	height: 200px;

}

.spray {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.spray-lines {
	transform: translate(-17.5%, 0) rotate(3deg);
}

/*.spray-dots {
	transform: translate(-21%, 0);
}*/

.spray-lines .spray-img {
	position: absolute;
	width: 80%;
}

.spray-lines .spray-1 {
	left: 0;
	top: 10%;
	animation-delay: 0.2s;

}

.spray-lines .spray-2 {
	left: 8%;
	top: 16.2%;
	animation-delay: 0.4s;
}

.spray-lines .spray-3 {
	left: 14.8%;
	top: 6.9%;
	animation-delay: 0.6s;
}

.spray-lines .spray-4 {
	left: 26.2%;
	top: 11.6%;
	animation-delay: 0.8s;
}

.spray-lines .spray-5 {
	left: 32.5%;
	top: 18.9%;
	animation-delay: 1s;
}

.spray-lines .spray-6 {
	left: 40.9%;
	top: 10.9%;
	animation-delay: 1.2s;
}

.spray-lines .spray-7 {
	left: 52.4%;
	top: 18.9%;
	animation-delay: 1.4s;
}

.spray-lines .spray-8 {
	left: 56%;
	top: 22.8%;
	animation-delay: 1.6s;
}

/*.spray-dots .spray-img {
	position: absolute;
	max-height: 60%;
}

.spray-dots .spray-1 {
	left: 0%;
	top: 25%;
	animation-delay: 0.2s;

}

.spray-dots .spray-2 {
	left: 13.5%;
	top: 16%;
	animation-delay: 1.2s;
}

.spray-dots .spray-3 {
	left: 27%;
	top: 20%;
	animation-delay: 0.8s;
}

.spray-dots .spray-4 {
	left: 41%;
	top: 20%;
	animation-delay: 1.6s;
}

.spray-dots .spray-5 {
	left: 54%;
	top: 18%;
	animation-delay: 0.4s;
}

.spray-dots .spray-6 {
	left: 72%;
	top: 20%;
	animation-delay: 1.4s;
}

.spray-dots .spray-7 {
	left: 82%;
	top: 20%;
	animation-delay: 0.6s;
}

.spray-dots .spray-8 {
	left: 90%;
	top: 18%;
	animation-delay: 1s;
}*/

.logo {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding:0 6%;
}

.content {
	font-size: 14px;
	line-height: 26px;
	width: 100%;
	margin: 40px 0 20px;
}

p {
	font-size: 14px;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;

}

.content p {
	margin-bottom: 30px;
}

a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

a:hover{
	color: #fff;
	text-decoration: underline;
}

a:focus {
	color: #fff;
	text-decoration: underline;
}

footer {
	width: 100%;
	line-height: 18px;
	padding: 0 30px;
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 2;
}

footer p {
	margin-bottom: 13px;
	font-size: 10px;
}

footer p:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.content {
		margin: 20px 0;
	}

	.logo-wrap {
		width: 70vw !important;
		height: 34vw !important;
	}

	.spray-img {
		height: 90%;
	}

	main {
		padding: 0 15px 90px;
	}

	.logo {
		padding: 0;
	}

	.flex-wrap {
		padding: 0px 0 60px;
	}

	p {
		font-size: 12px;
	}

	footer p {
		font-size: 9px;
	}

}

@media screen and (max-width: 330px) {

	.logo-wrap {
		margin: 0px auto 20px;
	}

}

@media screen and (min-width: 1400px) {
	p {
		max-width: 500px;
	}

}

/* animations */

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 10px, 0);
    transform: translate3d(-10px, 10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 10px, 0);
    transform: translate3d(-10px, 10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10px, -10px, 0);
    transform: translate3d(10px, -10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10px, -10px, 0);
    transform: translate3d(10px, -10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

/*@supports (font-size: clamp(16px, 1.2vw, 1.5rem)) {

	footer p {
		font-size: clamp(13px, 0.8vw, 1rem);
	}

	a {
		font-size: clamp(16px, 1.2vw, 1.5rem);
	}

	p {
		font-size: clamp(16px, 1.2vw, 1.5rem);
	}

	.logo-wrap {
		width: min(50vw, 900px);
		height: min(25vw, 440px);
	}
}*/