* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--index: calc(1vw + 1vh);
	--color-header: #f4efec;
	--color-text: #2D3436;
	/* 674c4c */
	--gallery-gap: calc(var(--index) * 7.5)
}

@font-face {
	font-family: farabee-c;
	src: url(../fonts/farabee-straight-light.woff2);
}

.content,
.chandelier,
.main-header,
.gallery>* {
	will-change: transform;
}

body {
	background-color: #F0F0F0;
	color: #2D3436;
	background-size: 50px;
	font-family: farabee-c;
	overflow-x: hidden;
}

.chandelier {
	width: calc(var(--index) * 42);
	position: absolute;
	left: 40vw;
	z-index: -1;
}

.main-header {
	height: 100vh;
}

.container {
	padding: 0 7vw;
}

.main-title {
	font-size: calc(var(--index) * 8);
	position: absolute;
	width: min-content;
	bottom: 12vh;
	font-family: farabee-c;
	line-height: .9;
}

.gallery {
	display: flex;
}

.gallery>* {
	flex: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.gallery__item {
	max-width: calc(var(--index) * 21);
	margin-bottom: var(--gallery-gap);
	max-height: 180vh;
	border-radius: 8px;
	border: 2px solid #2D3436;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery__left {
	margin-top: calc(var(--gallery-gap) * 2.75);
}

.gallery__right .gallery__item {
	margin: 0;
	margin-top: var(--gallery-gap);
}

.text-block {
	color: var(--color-text);
	position: relative;
}

.text-block__h {
	font-size: 2rem;
	line-height: 2.4rem;
	color: var(--color-header);
	margin-bottom: 1.5rem;
}

.text-block__p {
	line-height: 1.75;
	font-size: 24px;
}

.no-select {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.arrow-down {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	animation: bounce 2s infinite;
	cursor: pointer;
}

.arrow-down::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-left: 6px solid #2D3436;
	border-bottom: 6px solid #2D3436;
	transform: rotate(-45deg);
}


@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	40% {
		transform: translateY(-20px) translateX(-50%);
	}

	60% {
		transform: translateY(-10px) translateX(-50%);
	}
}

@media (max-width: 1248px) {
	:root {
		--gallery-gap: calc(var(--index) * 2);
	}

	.container {
		padding: 0 4vw;
	}

	.main-header {
		height: 120vh !important;
	}

	.chandelier {
		display: block !important;
		position: fixed !important;
		max-width: calc(var(--index) * 50) !important;
		left: 70% !important;
		transform: translateX(-50%) !important;
		top: -10vh !important;
		z-index: -1 !important;
	}

	.main-title {
		-webkit-text-stroke: 0.5px transparent;
		top: 50vh !important;
		left: 45% !important;
		font-size: 35vw;
		font-weight: 52vw;
		transform: translateX(-50%) !important;
	}

	.gallery {
		top: 50vh !important;
		flex-direction: column;
	}

	.gallery__left,
	.gallery__right {
		margin-top: 0;
	}

	.gallery__item {
		max-width: calc(var(--index) * 25) !important;
	}

	.arrow-down {
		display: none;
	}

	.phone {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border-radius: 0;
	}
}