@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: block;
}

@-webkit-keyframes animation-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
	}
}
@keyframes animation-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
	}
}

*, :after, :before {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

*, html {
	-ms-text-size-adjust: 100%;
	    -webkit-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
}

img, picture {
	display: block;
	width: 100%;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

picture {
	max-width: 100%;
	width: auto;
}

picture img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

section {
	position: relative;
	width: 100%;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

footer {
	position: relative;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
}

body {
	font-family: Roboto, sans-serif;
	font-weight: 700;
	font-style: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	min-height: 100dvh;
	overflow-x: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('../img/background.png');
	background-position-y: bottom;
	color: #FFF;
}

main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.container {
	--container-width: 1500px;
	--container-gap: 100px;
	width: 100%;
	max-width: calc(var(--container-width) + var(--container-gap) * 2);
	margin: 0 auto;
	padding: 0 var(--container-gap);
}

@media only screen and (min-width: 993px) {
	.vpw-mobile {
		display: none !important;
	}
}

@media only screen and (max-width: 992px) {
	.vpw-desktop {
		display: none !important;
	}
}

.vpw-text-highlight {
	color: #ff0040;
}

.vpw-text-bigger {
	font-size: 1.6em;
}

.vpw-button {
	background: transparent linear-gradient(180deg, #426cd3 0%, #a24fdc 100%) 0 0 no-repeat padding-box;
	color: #FFF;
	border-radius: 62px;
	font-size: 45px;
	min-width: 176px;
	min-height: 50px;
	padding: 17px;
	outline: 6px solid transparent;
	outline-offset: -6px;
	text-transform: uppercase;
	display: block;
	text-align: center;
	-webkit-transition: background .3s ease, outline-color .3s ease;
	transition: background .3s ease, outline-color .3s ease;
}

@media (hover: hover) {
	.vpw-button:hover {
		background: transparent linear-gradient(180deg, #a24fdc 0%, #426cd3 100%) 0 0 no-repeat padding-box;
		outline-color: #a24fdc;
	}

	.vpw-button_animated:hover {
		-webkit-animation-name: animation-pulse-shrink;
		        animation-name: animation-pulse-shrink;
		-webkit-animation-duration: .3s;
		        animation-duration: .3s;
		-webkit-animation-timing-function: linear;
		        animation-timing-function: linear;
		-webkit-animation-iteration-count: infinite;
		        animation-iteration-count: infinite;
		-webkit-animation-direction: alternate;
		        animation-direction: alternate;
	}
}

.vpw-header {
	height: 164px;
	width: 100%;
	background: rgba(0,0,0,.3);
}

.vpw-header__container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
}

.vpw-main {
	position: relative;
	padding: 40px 0 60px;
}

.vpw-main__character {
	position: absolute;
	width: 60vw;
	max-width: 1500px;
	aspect-ratio: 1101/828;
	right: 0;
	bottom: 0;
}

.vpw-main__character-image {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}

.vpw-header__logo-container {
	}

.vpw-header__logo {
	width: 100%;
	height: auto;
}

.vpw-content {
	position: relative;
	z-index: 1;
}

.vpw-content__title-container {
	width: 433px;
	max-width: 100%;
}

.vpw-content__title {
	text-transform: uppercase;
	line-height: 1;
}

.vpw-content__title .fit:not(:last-child) {
	margin-bottom: 10px;
}

.vpw-content__button {
	margin-top: 40px;
}

.vpw-content__logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 65px;
	gap: 30px;
}

.vpw-content__logo-container {
	height: 150px;
}

.vpw-content__logo {
	width: auto;
	height: 100%;
}

.vpw-footer {
	z-index: 1;
	background: #190640;
	padding-block: 20px;
}

.vpw-footer__container {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.vpw-footer__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.vpw-footer__image {
	width: 100%;
	height: auto;
	max-width: 170px;
	max-height: 50px;
}

@media screen and ( max-width: 1700px ) {
	.vpw-main__character {
		right: -20vw;
		width: 75vw;
	}
}

@media  screen and (max-width: 991px) {
	body {
		position: relative;
		background-size: auto 67dvh;
		background-position: top center;
		background-color: #03022c;
	}
	.vpw-main {
		justify-content: flex-end;
		padding: 75% 0 40px;
	}
	.vpw-main::after {
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		bottom: 0;
		height: 65%;
		background: linear-gradient(to top, #03022c 0%, #03022c 75%, transparent 100% );
	}
	.container {
		padding: 0 25px;
	}
	.vpw-button {
		font-size: 35px;
	}
	.vpw-header {
		position: relative;
		height: 122px;
	}
	.vpw-header__logo-container {
		
	}
	.vpw-content {
		display: flex;
		flex-direction: column;
	}
	.vpw-content__title-container {
		margin: 30px auto 0;
	}
	.vpw-content__title {
		width: 75%;
	}
	.vpw-content__title .fit:not(:last-child) {
		margin-bottom: 5px;
	}
	.vpw-content__logos {
		margin-top: 0;
		gap: 15px;
		order: -1;
		justify-content: space-between;
	}
	.vpw-content__logo-container {
		height: 19vw;
	}
	.vpw-content__button {
		margin-top: 30px;
	}
	.vpw-main__character {
		width: 140vw;
		max-width: 680px;
		bottom: 45%;
		left: 0;
		right: 0;
		margin-inline: auto;
	}
	.vpw-footer__container {
		row-gap: 20px;
	}
	.vpw-footer__row {
		gap: 10px 20px;
	}
	.vpw-footer__image {
		max-width: 150px;
	}
}

/*@media  screen and (max-width: 575px) {*/
/*	.vpw-main {*/
/*		padding-top: 72vw;*/
/*	}*/
/*	.vpw-main__character {*/
/*		left: auto;*/
/*		right: -40vw;*/
/*	}*/
/*}*/
