*,
*:after,
*:before {
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	interpolate-size: allow-keywords;
}

*:not(dialog) {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
div,
span {
	max-height: 5000em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
	position: relative;
}

img {
	border: none;
	object-fit: contain;
}

video {
	object-fit: cover;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
	}
}

input,
button,
textarea,
select {
	font-family: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

@font-face {
	font-family: 'AKR';
	src:
		url('Akrobat-ExtraBold.woff2') format('woff2'),
		url('Akrobat-ExtraBold.woff') format('woff'),
}

html {
	font-size: 0.522vw;

	@media(width > 1920px) {
		font-size: 10px;
	}
}

body {
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	line-height: 1.3;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	background: #810907;
	color: #FFF;
	font-size: max(10px, 1.6rem);
	letter-spacing: -0.02em;
}

.dec-font {
	font-family: 'AKR', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 900;
}

.wrap {
	display: flex;
	min-height: 100svh;
	position: relative;
	overflow: clip;
}

.site-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	opacity: 0;
	scale: 1.1;
	transition: all 2s ease;
}

.container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1760px;
	margin-left: auto;
	margin-right: auto;
	padding: max(20px, 4rem);
	position: relative;
	z-index: 5;
}

.top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	opacity: 0;
	translate: 0 -50%;
	transition: all 2s ease 0.6s;
}

.logo {
	display: block;
	width: 37.7rem;
	height: auto;
}

.logo-mob {
	display: none;
	width: 151px;
	height: auto;
}

@media (max-width: 1000px) {
	.logo {
		display: none;
	}

	.logo-mob {
		display: block;
	}
}

.top__right {
	display: flex;
	gap: max(10px, 5rem);
}

.cont__title {
	display: block;
	opacity: 0.5;
	font-size: max(10px, 1.4rem);
}

.cont__val {
	font-size: max(22px, 3rem);
	text-transform: uppercase;
	white-space: nowrap;
}

.center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex: 1;
	opacity: 0;
	translate: 0 20px;
	transition: all 2s ease 1.2s;
}

h1 {
	font-size: max(26px, 6rem);
	text-transform: uppercase;
	line-height: 1.2;
}

h1 strong {
	display: block;
	font-size: max(44px, 10rem);
}

.center__right {
	width: 50%;
	display: flex;
	justify-content: center;
	font-size: max(20px, 4rem);
	text-transform: uppercase;
	max-width: 15em;
	padding-top: 25rem;
	padding-right: 20rem;
}

.center__right__logo {
	display: inline-block;
	width: max(15px, 3rem);
	height: auto;
}

.center__right__cont {
	display: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	height: max(40px, 5rem);
	font-size: max(16px, 2rem);
	padding: 0 2.3em;
	margin-top: 20px;
	text-transform: uppercase;
	-webkit-tap-highlight-color: transparent;
	transition: all 0.3s ease;
	border: 2px solid #FFF;
	color: #FFF !important;
	background: rgba(129, 9, 7, 0.7);
}

.btn:hover, .btn:active{
	background: #FFF;
	color: #810907 !important;
}

.btn:hover svg, .btn:active svg {
	scale: 3.2;
}

.btn svg {
	position: absolute;
	top: 0;
	left: 0;
	transition: scale 0.3s ease;
	width: max(10px, 1.2rem);
	height: max(10px, 1.2rem);
}

.btn svg:nth-child(2) {
	top: 0;
	right: 0;
	left: initial;
	rotate: 90deg;
}

.btn svg:nth-child(3) {
	top: initial;
	right: 0;
	bottom: 0;
	left: initial;
	rotate: 180deg;
}

.btn svg:nth-child(4) {
	top: initial;
	right: initial;
	bottom: 0;
	left: 0;
	rotate: 270deg;
}

@media (max-width: 680px) {
	.center {
		flex-direction: column;
		justify-content: initial;
		gap: 45px;
		padding-top: 50px;
		align-items: flex-start;
	}

	.center__right {
		width: initial;
		justify-content: flex-start;
		flex-direction: column;
		gap: 24px;
		padding: initial;
	}

	.cont--email {
		display: none;
	}

	.center__right__cont {
		display: block;
	}
}

.bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	padding-top: 40px;
	opacity: 0;
	translate: 0 20px;
	transition: all 2s ease 1.8s;
}

.pb {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
	text-align: right;
	line-height: 1.15;
}

.pb img {
	width: max(90px, 15.6rem);
	height: auto;
}


.loaded .site-bg{
	opacity: 1;
	scale: 1;
}

.loaded .top{
	opacity: 1;
	translate: 0 0;
}

.loaded .center{
	opacity: 1;
	translate: 0 0;
}

.loaded .bottom{
	opacity: 1;
	translate: 0 0;
}