@charset "utf-8";

@font-face {
	font-family: 'TT Norms';
	src: url('../fonts/TTNorms-Regular.woff2') format('woff2'),
		url('../fonts/TTNorms-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TT Norms';
	src: url('../fonts/TTNorms-Medium.woff2') format('woff2'),
		url('../fonts/TTNorms-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

html,
body,
* {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	user-select: none;
}

html {
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
	font-size: 1.48dvh;
}

*,
:after,
:before {
	box-sizing: border-box;
	outline: 0;
	border: 0;
	padding: 0;
	margin: 0;
	font-family: inherit;
	line-height: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
}

body {
	background: #FFF;
	width: 100%;
	height: 100%;
	line-height: 1.2;
	font-variant: sans-serif;
	font-weight: 400;
	font-family: 'TT Norms';
	font-size: 1rem;
	color: #000;
}

.logo {
	width: 35.75rem;
	height: 13.75rem;
	position: absolute;
	top: 22.5rem;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 3000;
	transition: transform 0.5s ease, left 0.5s ease, top 0.5s ease, opacity 0.5s ease;
}
.logo img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.logo img:last-child {
	margin: -0.2rem 0 0 -0.2rem;
	transition: opacity 0.5s ease;
}
.load-hide .logo {
	top: 12.4rem;
	left: 4%;
	transform-origin: 0 50%;
	transform: scale(0.83) translateY(-50%);
}
.load-hide .logo img:nth-child(2) {
	opacity: 0;
}
.popup-opened .logo {
	top: 1.4rem;
    left: 5%;
	transform-origin: 0 50%;
	transform: scale(0.41) translateY(-50%);
}

.load-screen {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5.5dvh 2.4vw 2.75dvh 2.4vw;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}
.load-hide .load-screen {
	display: none;
}
.load-screen > * {
	position: relative;
}
.load-screen video {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.load-screen .warning {
	object-fit: contain;
	object-position: 50% 100%;
	width: 100%;
	height: 10.5vw;
	max-height: 18.5dvh;
}
.load-screen .circle {
	width: 46.5rem;
}
.load-screen .circle:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.load-screen .circle .bg {
	border: 1rem solid #FFF;
	border-radius: 50%;
	background: url(../img/load-circle.webp) 50% 50% no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(0);
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.ready .load-screen .circle .bg {
	transform: scale(1);
	opacity: 1;
}
.load-screen .circle .content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 1.8rem;
	width: 100%;
	height: 100%;
	padding: 6.5% 13.5%;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity 0.5s ease 0.5s;
}
.ready .load-screen .circle .content {
	opacity: 1;
}
.load-screen .circle .text {
	line-height: 1.5;
	font-size: 1.25rem;
	color: #FDF2DC;
}
.load-screen .circle .text span {
	display: block;
	color: #EFCB7A;
}
.load-screen .circle .text span:first-child {
	line-height: 1.2;
	font-size: 3.6em;
}
.load-screen .circle .buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	font-weight: 500;
	font-size: 2rem;
	color: #FFF;
}
.load-screen .circle .buttons div {
	border-radius: 2.3em;
	box-shadow: 0.2em 0.75em 0.6em 0 rgba(0, 0, 0, 0.18);
	background-color: #7EA133;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7.6em;
	height: 2.3em;
	padding-bottom: 0.2em;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	transition: transform 0.5s ease;
}
.load-screen .circle .buttons div:hover {
	transform: scale(1.1);
}
.load-screen .circle .buttons div:last-child {
	background-color: #EC4747;
}

.main-screen {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: transform 0.5s ease;
	opacity: 0;
	pointer-events: none;
}
.load-hide .main-screen {
	opacity: 1;
	pointer-events: auto;
}
.main-screen > * {
	backface-visibility: visible;
	position: absolute;
}
.main-screen .mask {
	width: 100%;
	left: 0;
	z-index: 200;
	pointer-events: none;
}
.main-screen .mask img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.main-screen .mask-t {
	height: 39%;
	top: 0;
}
.main-screen .mask-t img {
	object-position: 50% 100%;
}
.main-screen .mask-b {
	object-position: 50% 0;
	height: 38%;
	bottom: 0;
}
.main-screen .mask-b img {
	object-position: 50% 0;
}
.main-screen .bg {
	object-fit: contain;
	object-position: 100% 100%;
	width: 61.2%;
	height: 67.5%;
	bottom: 0;
	right: 0;
	z-index: 300;
	pointer-events: none;
}
.main-screen .text {
	width: 24em;
	font-size: 1.16rem;
	left: calc(3.5% + 34rem);
	top: 8.6rem;
	z-index: 400;
	transform: translateY(-50%) rotate(-7.423deg);
}
.main-screen .text span {
	display: block;
	font-weight: 500;
	font-size: 1.2em;
	color: #BF463E;
}

.flowers-slider {
	width: 120%;
	left: -5%;
	top: 17.5%;
	bottom: 12.5%;
	transform: rotate(-8.48deg);
	z-index: 1;
}
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	width: fit-content !important;
	padding-top: 4%;
	mix-blend-mode: multiply;
	cursor: pointer;
}
.swiper-slide img {
	object-fit: contain;
	object-position: 50% 100%;
	width: auto !important;
	height: 100%;
	transform-origin: 50% 100%;
	transition: transform 0.5s ease;
}
.swiper-slide:hover {
	z-index: 2;
}
.swiper-slide:hover img {
	transform: scale(1.1);
}
.swiper-arrows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 5.4%;
	right: 5.4%;
	top: 50%;
	z-index: 500;
	transform: translateY(-50%) rotate(-8.48deg);
	pointer-events: none;
}
.swiper-arrows div {
	background-color: #80323D;
	box-shadow: 0 2.6rem 2.6rem 0 rgba(0, 0, 0, 0.28);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8.6rem;
	height: 8.6rem;
	pointer-events: auto;
	cursor: pointer;
	transition: transform 0.5s ease;
}
.swiper-arrows div:hover {
	transform: scale(1.1);
}
.swiper-arrows img {
	object-fit: contain;
	width: 4.25rem;
	height: 4rem;
}
.swiper-arrows div:last-child img {
	transform: scaleX(-1);
}

.alert {
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4000;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.alert.hidden {
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
}
.alert .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.8rem;
	width: 35.5rem;
	height: 40.9rem;
	padding: 10rem 4rem 6rem 4rem;
	position: relative;
}
.alert .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.alert .title,
.alert .text {
	text-align: center;
	position: relative;
}
.alert .title {
	line-height: 1;
	font-weight: 500;
	font-size: 3rem;
	color: #C64244;
	transform: rotate(-3.99deg);
}
.alert .text {
	max-width: 23em;
}
.alert .btn {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	line-height: 1;
	font-weight: 500;
	font-size: 1.75rem;
	color: #FFF;
	position: absolute;
	top: 10rem;
	left: 5.2%;
	cursor: pointer;
}
.alert .btn span:first-child {
	background-color: #80323D;
	box-shadow: 0 2.6rem 2.6rem 0 rgba(0, 0, 0, 0.28);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	transition: transform 0.5s ease;
}
.alert .btn span:first-child img {
	object-fit: contain;
	width: 3rem;
	height: 2.75rem;
}
.alert .btn:hover span:first-child {
	transform: translateX(-10%);
}

.popup {
	background: #EEDAC1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2000;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.popup.hidden {
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
}
.popup .content {
	width: 100%;
	height: 100%;
	position: relative;
}
.popup .content > * {
	position: absolute;
}
.popup video,
.popup .bg {
	object-fit: cover;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.popup .bg {
	width: 82rem;
	left: 50%;
	transform: translateX(-55%);
}
.popup .bg .colored {
	transition: fill 0.25s ease;
}
.popup .bottle {
	object-fit: contain;
	object-position: 0 100%;
	width: 27%;
	height: 70%;
	left: 0;
	bottom: 0;
}
.popup .btn {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	line-height: 1;
	font-weight: 500;
	font-size: 1.75rem;
	cursor: pointer;
}
.popup .btn span:first-child {
	background-color: #80323D;
	box-shadow: 0 2.6rem 2.6rem 0 rgba(0, 0, 0, 0.28);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	transition: transform 0.5s ease;
}
.popup .btn span:first-child img {
	object-fit: contain;
	width: 3rem;
	height: 2.75rem;
}
.popup .btn-back {
	top: 10rem;
	left: 5.2%;
}
.popup .btn-back:hover span:first-child {
	transform: translateX(-10%);
}
.popup .btn-forward {
	flex-direction: row-reverse;
	text-align: right;
	bottom: 6.5rem;
	right: 5.2%;
}
.popup .btn-forward span:first-child img {
	transform: scaleX(-1);
}
.popup .btn-forward:hover span:first-child {
	transform: translateX(10%);
}
.popup .title,
.popup .red {
	display: block;
	font-weight: 500;
	color: #C64244;
}
.popup .texts {
	left: 50%;
}
.popup .texts p:not(:last-child) {
	margin-bottom: 1.2em;
}
.popup .texts1 {
	width: 31em;
	top: 14.2%;
	z-index: 2;
	transform: translateX(-37%);
}
.popup .texts1 .title {
	margin-bottom: 0.1em;
	text-align: center;
	line-height: 1;
	font-weight: 500;
	font-size: 4rem;
	transform: rotate(4.9deg);
}
.popup .texts2 {
	width: 27em;
	top: 59%;
	transform: translateX(-23%);
}
.popup .texts2 .fruit {
	object-fit: contain;
	position: absolute;
	top: 0;
	right: 0;
}
.popup .texts2 p {
	position: relative;
}
.popup .texts3 {
	width: 18.5em;
	text-align: center;
	top: 64%;
	transform: translateX(-170%);
}
.popup .texts3 .title {
	margin-bottom: 0.75em;
	font-weight: 500;
	font-size: 1.9rem;
	transform: rotate(-4deg);
}

.popup [data-anim] {
	transition: opacity 0.25s ease;
}
.popup.anim [data-anim] {
	opacity: 0;
}

.popup[data-id="1"] .bg .colored {
	fill: #FFD0D3;
}
.popup[data-id="1"] .texts2 .fruit {
	width: 18rem;
	height: 25.25rem;
	transform: translateX(45%) translateY(-58%);
}

.popup[data-id="2"] .bg .colored {
	fill: #FFD989;
}
.popup[data-id="2"] .texts2 .fruit {
	width: 21rem;
	height: 19.5rem;
	transform: translateX(55%) translateY(-66%);
}

.popup[data-id="3"] .bg .colored {
	fill: #FFF1BA;
}
.popup[data-id="3"] .texts2 .fruit {
	width: 22rem;
	height: 26rem;
	transform: translateX(57%) translateY(-48%);
}
.popup[data-id="3"] .texts1 .title {
	margin-top: -1em;
	margin-bottom: 0.2em;
	font-size: 3rem;
}

.popup[data-id="4"] .bg .colored {
	fill: #FFD4D2;
}
.popup[data-id="4"] .texts2 .fruit {
	width: 20.5rem;
	height: 21.25rem;
	transform: translateX(60%) translateY(-40%);
}

.popup[data-id="5"] .bg .colored {
	fill: #FFDCB5;
}
.popup[data-id="5"] .texts2 .fruit {
	width: 26rem;
	height: 27rem;
	transform: translateX(59%) translateY(-64%);
}

@media (orientation: landscape) {
	[data-version="mobile"] {
		display: none !important;
	}
}

@media (orientation: portrait) {
	[data-version="desktop"] {
		display: none !important;
	}

	html {
		font-size: 2.67vw;
	}

	.logo {
		width: 33.5rem;
		height: 12.6rem;
		top: calc(50% - 10.1vw - 0.5rem);
	}
	.load-hide .logo {
		top: calc(2.4dvh + 3.5rem);
		left: 5.3%;
		transform: scale(0.72) translateY(-50%);
	}
	.popup-opened .logo {
		top: 3.4dvh;
		left: 50%;
		transform: scale(0.46) translateX(-50%) translateY(-50%);
	}
	.popup-opened main > .logo {
		opacity: 0;
	}

	.load-screen {
		padding: 6.4dvh 4.3vw 2.4dvh 4.3vw;
	}
	.load-screen:before {
		content: '';
		display: block;
	}
	.load-screen .circle {
		width: 100%;
		height: 44rem;
	}
	.load-screen .circle .bg,
	.load-screen .circle .content {
		width: 44rem;
		height: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
	.load-screen .circle .bg {
		transform: translateX(-50%) scale(0);
	}
	.ready .load-screen .circle .bg {
		transform: translateX(-50%) scale(1);
	}
	.load-screen .circle .content {
		gap: 1.5rem;
		padding: 0;
	}
	.load-screen .circle .text {
		max-width: 21em;
		margin: 0 auto;
		font-size: 1.4rem;
	}
	.load-screen .circle .text span:first-child {
		margin-bottom: 0.2em;
		font-size: 3.4em;
	}
	.load-screen .circle .buttons {
		gap: 0.4em;
		transform: translateY(50%);
	}
	.load-screen .circle .buttons div {
		box-shadow: 0.35em 1.2em 1em 0 rgba(0, 0, 0, 0.18);
		width: 6em;
		height: 2.4em;
	}
	.load-screen .warning {
		height: 10.1vw;
	}

	.main-screen .mask:before {
		content: '';
		background: #EEDAC1;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
	}
	.main-screen .mask img {
		object-fit: contain;
	}
	.main-screen .mask-t {
		height: calc(5.4dvh + 25rem);
		top: 0;
	}
	.main-screen .mask-t:before {
		top: 0;
		bottom: 6rem;
	}
	.main-screen .mask-b {
		height: 28%;
		bottom: 0;
	}
	.main-screen .mask-b:before {
		top: 6rem;
		bottom: 0;
	}
	.main-screen .bg {
		width: 164.2%;
		height: 54.7%;
		bottom: -8%;
		right: -16%;
	}
	.main-screen .text {
		width: 20em;
		font-size: 1.4rem;
		left: 20%;
		top: calc(3.4dvh + 9rem);
		transform: rotate(-7.423deg);
	}

	.flowers-slider {
		width: 110%;
		top: calc(5.4dvh + 19rem);
		bottom: calc(28dvh - 6rem);
		transform: none;
	}
	.swiper-slide {
		padding-top: 15%;
	}
	.swiper-arrows {
		left: 5.3%;
		right: 5.3%;
		top: 54%;
		transform: translateY(-50%);
	}
	.swiper-arrows div {
		box-shadow: 0 3.3rem 3.3rem 0 rgba(0, 0, 0, 0.28);
		width: 4.8rem;
		height: 4.8rem;
	}
	.swiper-arrows img {
		width: 2.4rem;
		height: 2.2rem;
	}

	.alert .btn {
		gap: 0.8rem;
		font-size: 1.2rem;
		top: calc(2.4dvh + 1.8rem);
		left: 5.3%;
	}
	.alert .btn span:first-child {
		box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.28);
		width: 4rem;
		height: 4rem;
	}
	.alert .btn span:first-child img {
		width: 2rem;
		height: 1.8rem;
	}
	.alert .title {
		font-size: 3.2rem;
	}
	.alert .text {
		max-width: 21em;
		font-size: 1.2rem;
	}

	.popup {
		overflow-y: auto;
	}
	.popup .content {
		width: 100%;
		height: 119rem;
		overflow: hidden;
	}
	.popup .bg {
		object-position: 50% 0;
		width: 100%;
		height: 112.9rem;
		left: 0;
		top: -1rem;
		transform: none;
	}
	.popup video {
		height: 50rem;
	}
	.popup video:nth-child(2) {
		top: auto;
		bottom: 0;
	}
	.popup .bottle {
		width: 22.5rem;
		height: 38rem;
	}
	.popup .btn {
		gap: 0.8rem;
		font-size: 1.2rem;
	}
	.popup .btn span:first-child {
		box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.28);
		width: 4rem;
		height: 4rem;
	}
	.popup .btn span:first-child img {
		width: 2rem;
		height: 1.8rem;
	}
	.popup .btn-back {
		top: calc(2.4dvh + 1.8rem);
		left: 5.3%;
	}
	.popup .btn-forward {
		bottom: 8rem;
		right: 5.3%;
	}
	.popup .texts {
		font-size: 1.2rem;
	}
	.popup .texts1 {
		width: 24em;
		top: 20rem;
		transform: translateX(-50%);
	}
	.popup .texts1 .title,
	.popup[data-id="3"] .texts1 .title {
		margin-bottom: 0.4em;
		font-size: 3.2rem;
		transform: translateX(2rem) rotate(4.9deg);
	}
	.popup .texts2 {
		width: 22em;
		top: 62.2rem;
		transform: translateX(-55%);
	}
	.popup .texts3 {
		width: 15.3em;
		top: 91rem;
		transform: translateX(-20%);
	}
	.popup .texts3 .title {
		font-size: 1.8rem;
	}

	.popup[data-id="1"] video:nth-child(1) {
		object-position: 40% 50%;
	}
	.popup[data-id="1"] video:nth-child(2) {
		object-position: 60% 50%;
	}
	.popup[data-id="1"] .texts2 .fruit {
		width: 11rem;
		height: 15.4rem;
		transform: translateX(44%) translateY(-72%);
	}

	.popup[data-id="2"] video:nth-child(1) {
		object-position: 60% 50%;
	}
	.popup[data-id="2"] video:nth-child(2) {
		object-position: 75% 50%;
		bottom: -12rem;
	}
	.popup[data-id="2"] .texts2 .fruit {
		width: 12.8rem;
		height: 12rem;
		transform: translateX(79%) translateY(-56%);
	}
	.popup[data-id="2"] .texts3 .text {
		font-size: 1rem;
	}

	.popup[data-id="3"] video:nth-child(1) {
		object-position: 3% 50%;
	}
	.popup[data-id="3"] video:nth-child(2) {
		object-position: 85% 50%;
		bottom: -12rem;
	}
	.popup[data-id="3"] .texts2 .fruit {
		width: 13.3rem;
		height: 16rem;
		transform: translateX(85%) translateY(-66%);
	}

	.popup[data-id="4"] video:nth-child(1) {
		object-position: 34% 50%;
		top: -3em;
	}
	.popup[data-id="4"] video:nth-child(2) {
		object-position: 70% 50%;
	}
	.popup[data-id="4"] .texts2 .fruit {
		width: 12.6rem;
		height: 13rem;
		transform: translateX(64%) translateY(-52%);
	}

	.popup[data-id="5"] video:nth-child(1) {
		object-position: 50% 50%;
		top: -9em;
	}
	.popup[data-id="5"] video:nth-child(2) {
		object-position: 63% 50%;
		bottom: -12rem;
	}
	.popup[data-id="5"] .texts2 .fruit {
		width: 12.7rem;
		height: 16.5rem;
		transform: translateX(68%) translateY(-55%);
	}
}
