﻿@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lexend', sans-serif;
}
section,
.content {
	width: 100%;
	height: 100svh;
	overflow: hidden;
}
.images {
	position: absolute;
	width: 100%;
	height: 100%;
	img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		z-index: var(--index);
		will-change: mask-image;
	}
}
.content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 10;
	color: #fff;
	font-size: 20px;
}
.content .top,
.content .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
.content .top .top-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.brand-logo {
	width: clamp(70px, 12vw, 110px);
	height: auto;
}
.brand-name {
	font-weight: 700;
	font-size: clamp(24px, 4vw, 36px);
	letter-spacing: 0.08em;
}
.content .center {
	width: 100%;
	max-width: clamp(300px, 80vw, 1000px);
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 100px;
}
.content .center .title-center {
	text-align: center;
	font-size: clamp(30px, 8vw, 100px);
}
.content .center .title-bottom {
	text-align: right;
}
.last-section {
	width: 100%;
	height: 100svh;
	background: black;
	color: #fff;
	font-size: clamp(30px, 8vw, 100px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
