/* montserrat-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../../../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	src: url('../../../fonts/montserrat-v29-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* allura-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Allura';
	font-style: normal;
	font-weight: 400;
	src: url('../../../fonts/allura-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* common */

* {
	text-decoration: none;
	list-style-type: none;
	color: inherit;
	padding: 0;
	margin: 0;
}

html {
	box-sizing: border-box;
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat';
	color: var(--text-dark, #181c29);
	background: var(--background-body, #ffffff);
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	overflow: hidden;
}

.main {
	background-color: #ff4646;
	border-radius: 20px;
}

.section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 82px;
	background-image: url(../../../assets/img/bg-snow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.action-small {
	font-size: 12px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.caption {
	font-family: 'Allura';
	font-size: 24px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.05em;
}

.header1 {
	font-size: 32px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0.175em;
	text-transform: uppercase;
}

.btn {
	background-color: #181c29;
	border-radius: 20px;
}

.link {
	display: flex;
	padding: 20px 32px;
}

.header2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 152%;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.paragraph {
	font-size: 16px;
	font-weight: 400;
	line-height: 148%;
}

.slider-text {
	font-size: 80px;
	font-weight: 600;
	text-transform: uppercase;
}

.header3 {
	font-size: 16px;
	font-weight: 600;
	line-height: 152%;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.header4 {
	font-size: 12px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.action-large {
	font-size: 24px;
	font-weight: 600;
	line-height: 152%;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
/* header */

.header {
	padding: 12px 82px;
}

.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__logo {
	z-index: 3;
	cursor: pointer;
}

.header__logo a {
	display: flex;
	align-items: center;
	padding: 8px 20px;
}

.header__logo img {
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

.header__list {
	display: flex;
	flex-wrap: wrap;
}

.header__item {
	font-family: 'Montserrat';
	margin-right: 8px;
	cursor: pointer;
}

.disabled {
	color: #ff4646;
	background-color: rgba(255, 70, 70, 0.1);
	border-radius: 12px;
}

.header__link {
	display: block;
	padding: 12px 20px;
}

.header__item:last-child {
	margin-right: 0;
}

/* burger menu */

.header__burger {
	position: relative;
	z-index: 2;
	display: none;
	overflow: hidden;
	width: 40px;
	height: 40px;
	transition: all 0.5s ease 0.1s;
}

.header__burger span {
	position: absolute;
	top: calc(50% - 4px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	border: 0.5px solid #181c29;
	border-radius: 10px;
	transition: all 0.5s ease 0.1s;
}

.header__burger span:nth-of-type(2) {
	top: calc(50% + 4px);
}

.header__burger.active span:first-of-type {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header__burger.active span:nth-of-type(2) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.lock {
	overflow: hidden;
	touch-action: none;
	overscroll-behavior: none;
}

/* gifts */

.gifts {
	background-image: url(../../../assets/img/bg-ball.png),
		url(../../../assets/img/bg-snow.png);
	color: #ffffff;
	text-align: center;
	height: 524px;
}

.gifts__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gifts__text {
	margin-bottom: 12px;
}

.gifts__title {
	max-width: 426px;
	margin-bottom: 12px;
}

.gifts__btn {
	margin-bottom: 12px;
}

/* about */

.about {
	color: #181c29;
	text-align: center;
}

.about__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	border-radius: 20px;
	gap: 15px;
	width: 100%;
}

.about__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	margin-left: 60px;
}

.about__text {
	color: #ff4646;
	margin-top: 60px;
	margin-bottom: 20px;
}

.about__text2 {
	max-width: 426px;
	margin-bottom: 60px;
}

.about__img {
	border-radius: 20px;
	max-width: 638px;
	height: 528px;
	background-image: url(../../../assets/img/santa.png);
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* become */

.become {
	height: 488px;
	color: #ffffff;
}

.become__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
}

.become__text {
	margin-bottom: 12px;
}

.become__slider-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.slider-wrap {
	display: flex;
	margin: 0 auto;
	max-width: 1276px;
	margin-bottom: 20px;
}

.become__slider,
.slider-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
	width: 1993px;
	transition: all 0.2s ease-out;
}

.slider-item img {
	width: 200px;
	border-radius: 20px;
}

.slider-arrow {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 20px;
}

.arrow {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	border: 1px solid #fff;
	cursor: pointer;
}

.arrow-left {
	transform: rotate(180deg);
}

.arrow svg {
	stroke: #fff;
	height: 24px;
	width: 24px;
}

/* best */

.best__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.best__text {
	margin-bottom: 12px;
}

.best__menu {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	transition: 0.5s ease;
}

.best__menu-item {
	display: flex;
	width: 310px;
	height: 342px;
	flex-direction: column;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.5s ease;
	background-color: #ecf3f8;
}

.menu-img {
	object-fit: contain;
	height: 230px;
	transition: 1s;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.menu-img img {
	width: 100%;
	border-radius: 20px;
}

.best__menu-desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 20px;
	width: 100%;
	height: 112px;
	color: #181c29;
}

.health {
	color: #06a44f;
}

.work {
	color: #4361ff;
}

.harmony {
	color: #ff43f7;
}

/* CTA section */

.cta {
	background-image: url(../../../assets/img/bg-forest.png),
		url(../../../assets/img/bg-snow.png);
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0px 0px 20px 20px;
	background-size: cover;
	height: 668px;
	color: #ffffff;
	text-align: center;
}

.cta__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cta__btn {
	margin-bottom: 20px;
}

.cta__text {
	margin-bottom: 8px;
}

.timer {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: hsla(0, 0%, 100%, 0.4);
	border-radius: 20px;
	padding: 8px 12px 12px 12px;
}

.timer__item {
	position: relative;
	width: 80px;
	height: 52px;
	display: flex;
	flex-direction: column;
	color: #fff;
}

.timer__time {
	margin: 0;
}

.timer__text {
	color: #ffffff;
}

.timer__item:not(:last-child):after {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	right: 0;
	width: 1px;
	height: 20px;
	background-color: hsla(0, 0%, 100%, 0.4);
}

/* footer */

.footer__wrapper,
.footer__cards,
.footer__card,
.footer__card a,
.footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.footer__wrapper,
.footer__card,
.footer__card a {
	flex-direction: column;
}

.footer__cards {
	flex-direction: row;
	gap: 12px;
	width: 100%;
}

.footer__card {
	background-color: #ecf3f8;
	border-radius: 20px;
	gap: 12px;
	width: 100%;
	margin-bottom: 60px;
}

.footer__card a {
	padding: 20px;
	gap: 12px;
	width: 100%;
	transition: all 0.3s ease-out;
}

.footer__text img {
	width: 80px;
}

.social__link {
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

a {
	color: inherit;
}

.social__link svg {
	stroke: #181c29;
	width: 24px;
	height: 24px;
}

.footer__social {
	gap: 12px;
}

.footer__social,
.footer__rights {
	margin-bottom: 12px;
}

/* modal window */

.menu__modal {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1f1d1ccc;
	transition: 0.5s ease;
}

.menu__modal.visible {
	display: flex;
}

.modal-window {
	position: relative;
	display: flex;
	max-width: 400px;
	height: 514px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-color: #ecf3f8;
	border-radius: 20px;
	transition: 0.5s ease;
	overflow: hidden;
}

.modal-window__img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 230px;
}

.modal-window__description {
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 8px;
	background-color: #ffffff;
}

.modal-window__description h4 {
	margin: 0;
}

.modal-window__p {
	margin-bottom: 12px;
}

.description__super {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.super__power-text,
.super__power,
.super__power-text,
.snowflakes-container {
	display: flex;
	flex-direction: row;
}

.super__power {
	justify-content: space-between;
	gap: 12px;
}

.super__power-text {
	width: 100%;
	justify-content: space-between;
	text-transform: capitalize;
}

.super__rating {
	display: flex;
	flex-direction: column;
}

.snowflakes-container {
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.snowflake {
	width: 16px;
	height: 16px;
}

.close-btn {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 40px;
	height: 40px;
}

/* hover effects */

@media (hover: hover) {
	.btn:hover {
		color: #181c29;
		background-color: #ffffff;
	}

	.header__item:hover {
		color: #ff4646;
		background-color: rgba(255, 70, 70, 0.1);
		border-radius: 12px;
	}

	.arrow:not([disabled]):hover,
	.arrow:not([disabled]):hover svg {
		background-color: #ffffff;
		stroke: #ff4646;
	}

	.arrow:disabled {
		opacity: 0.4;
		user-select: none;
		cursor: default;
	}

	.best__menu-item:hover .header3 {
		color: #ff4646;
	}

	.footer__card a:hover,
	.footer__made:hover {
		transition: all 0.3s ease-out;
		color: #ff4646;
		stroke: #ff4646;
	}

	.social__link:hover svg {
		stroke: #ff4646;
	}
}

/* media queries */

@media screen and (max-width: 1200px) {
	.section {
		padding: 60px 8px;
	}

	.header {
		padding: 12px 8px;
	}

	/* .about__info {
		width: 50%;
	} */

	.footer__cards {
		flex-wrap: wrap;
		margin-bottom: 60px;
	}

	.footer__card {
		gap: 12px;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.header__burger {
		display: block;
	}

	.header__burger.active {
		width: 40px;
		height: 40px;
	}

	.header__nav {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: #ffffff;
		z-index: 2;
		transform: translateX(100%);
		transition: 0.3s linear;
	}

	.header__nav.active {
		transform: translateX(0);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.header__list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 64px;
	}

	.header__item {
		margin-right: 0px;
	}

	.disabled {
		color: #181c29;
		background-color: #ffff;
		border-radius: 12px;
	}

	.about__wrapper {
		gap: 0;
	}

	.about__info {
		margin: 46px 60px;
		max-width: 256px;
	}
}

@media screen and (max-width: 650px) {
	.about__wrapper {
		flex-wrap: wrap;
	}

	.about__info {
		max-width: 100%;
		margin: 0 20px;
	}
}

@media screen and (max-width: 480px) {
	.header__list {
		margin-top: 48px;
	}

	.gifts {
		height: 572px;
		padding-top: 120px;
	}

	.gifts__text2 {
		margin-bottom: 60px;
	}

	.gifts__wrapper {
		max-width: 364px;
	}

	.cta {
		height: 704px;
	}
}
