

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

html {
	font-size: 0.833vw;	
	height: 100%;
}

body {
	overflow-x: hidden;
	background: -o-radial-gradient(50% 50%, 50% 50%, #023D44 0%, #091F21 100%);
	background: radial-gradient(50% 50% at 50% 50%, #023D44 0%, #091F21 100%);
  font-family: 'Poppins', sans-serif;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}

body::before {
	content: '';
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background-image: url(../images/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	z-index: -1;
}
img {
	display: block;
}

.main {
	z-index: 0;
	padding-bottom: 3.375rem;
	position: relative;
	height: 100%;
}

.container {
	width: 100%;
	max-width: 102.25rem;
	padding: 0 1rem;
	margin: 0 auto;
}

.header {
	padding-top: 4.313rem;
}

.logo {
	width: 32.063rem;
	display: inline-block;
}

.logo img {
	width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}


.title {
	font-weight: 700;
	font-size: 4rem;
	line-height: 150%;
	text-transform: uppercase;
	color: #FFFFFF;
	text-shadow: 0 0.25rem 0.75rem #254F6A;
	margin: 1.438rem 0 1rem 9;
}

.desc {
	font-style: italic;
	font-weight: 700;
	font-size: 8rem;
	line-height: 120%;
	margin: 0;
	text-transform: uppercase;
	color: #048D6B;
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.desc strong {
	font-weight: 900;
}




.button {
	background: -o-linear-gradient(top, #FD6901 0%, #6D0101 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#FD6901), to(#6D0101));
	background: linear-gradient(180deg, #FD6901 0%, #6D0101 100%);
	-webkit-border-radius: 3.75rem;
	        border-radius: 3.75rem;
	padding: 2rem 11.875rem;
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	display: inline-block;
	margin-top: 2.75rem;
}

.button:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}


.image {
	position: absolute;
	bottom: 0;
	width: 69.188rem;
	height: 55.5rem;
	right: 0;
	z-index: -1;
}
.img-mobile {
	display: none;
}
.image img {
	width: 100%;
	height: 100%;
	-o-object-position: bottom;
	   object-position: bottom;
	-o-object-fit: contain;
	   object-fit: contain;
}

.image__ball {
	z-index: 1;
	width: 16.5rem;
	height: 16.5rem;
	position: absolute;
	left: 9.1rem;
	bottom: 5.2rem;
	z-index: 1;
	-webkit-animation: 3s linear 0s normal none infinite running rot;
	        animation: 3s linear 0s normal none infinite running rot;
}

@keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.footer {
	margin-top: auto;
	background-color: #202020;
	z-index: 1;
	padding: 1rem 0;

}

.footer .container{
	max-width: 90rem;
}

.footer ul {
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.footer li {
	height: 3rem;
	margin: 1rem 2rem;
}



.footer li img {
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}