/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 20px 0;
	width: 100%;
	z-index: 10;
	line-height: 1.167;
	white-space: nowrap;
	transition: 0.2s ease-in-out;
	height: 160px;
	.container {
		max-width: 1312px;
	}
	&::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(10, 10, 5, 0.6);
		content: '';
		display: none;
	}
	&.scrolled {
		background: rgba(10, 10, 5, 0.6);
	}
}
.header--hidden {
	translate: 0 -100%;
}

.header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
}

.header__menu--left {
	.menu__phone {
		display: none;
	}
}
.menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.menu__list {
	display: flex;
	align-items: center;
	gap: 40px;
	a {
		transition: 0.2s ease-in-out;
		padding: 5px 0;
		&.active {
			color: var(--color-accent-light);
		}
	}
	& > li {
		transition: 0.2s ease-in-out;
		color: var(--color-white);

		& > a {
			&:hover {
				color: var(--color-accent-light);
			}
		}

		&.has-submenu {
			position: relative;
			padding: 12px 20px 12px 0;
			margin: -12px 0;
			& > a {
				position: relative;
				padding-right: 20px;
				&::after {
					transition: 0.2s ease-in-out;
					position: absolute;
					top: 50%;
					transform: translateY(-50%);
					right: 0;
					content: '';
					width: 12px;
					height: 12px;
					mask: url('../images/icons/chevron.svg') center / contain no-repeat;
					background-color: var(--color-white);
				}
			}
			&:hover {
				& > ul {
					opacity: 1;
					pointer-events: all;
					visibility: visible;
				}
			}
		}
		& > ul {
			position: absolute;
			top: 100%;
			min-width: 200px;
			background-color: rgba(10, 10, 5, 0.8);
			padding: 16px;
			display: flex;
			flex-direction: column;
			gap: 8px;
			opacity: 0;
			visibility: hidden;
			pointer-events: none;
			transition: 0.2s ease-in-out;
			a {
				&:hover {
					color: var(--color-accent-light);
				}
			}
		}
	}
}

.header__menu--right {
	justify-content: end;
}
.menu-burger-close,
.menu-burger {
	display: none;
}

.menu__phone {
	color: var(--color-accent-light);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	&::before {
		font-size: 24px;
	}
}
.menu__social {
	display: flex;
	align-items: center;
	gap: 8px;
	li {
		flex: 0 0 auto;
	}
}

/* Header */
/* Head */
.head {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 32px;
	text-align: center;
}
.bottom {
	margin-top: 32px;
	text-align: center;
}
/* Head */
/* Hero */

.hero {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0;
}

.hero__inner {
	height: 100vh;
	padding-top: 160px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 802px;
	.title-label {
		margin-bottom: 4px;
	}
	.title {
		margin-bottom: 40px;
	}
	.title {
		color: var(--color-white);
	}
	.text {
		color: var(--color-white);
	}
}

/* Hero */
/* Typography */
.title-label {
	font-family: var(--title-accent-font);
	font-size: 89px;
	line-height: 1.38;
	color: var(--color-accent-dark);
}
.title-label--accent {
	color: var(--color-accent-light);
}
.title {
	font-family: var(--title-font);
	font-size: 120px;
	text-transform: uppercase;
}

.title-md {
	font-family: var(--title-font);
	font-size: 64px;
	color: #0a0a05;
}
.description {
	line-height: 140%;
	p {
		margin: -16px 0;
		padding: 16px 0;
		&:first-child {
			margin: 0;
		}
	}
}

/* Info */

.info {
}
.container {
}
.info__inner {
}
.info__title {
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--color-accent-dark);
	margin-bottom: 40px;
}
.info__body {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}
.info__block {
	line-height: 140%;
	p {
		margin: 12px 0;
		&:first-child {
			margin-top: 0;
		}
	}
	ul {
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 24px;
		li {
			position: relative;
			padding-left: 28px;
			&::before {
				position: absolute;
				content: '';
				width: 12px;
				aspect-ratio: 1;
				left: 0;
				top: 50%;
				translate: 0 -50%;
				background-color: var(--color-accent-dark);
				rotate: 45deg;
			}
		}
	}
}

/* Info */
.text {
	font-size: 24px;
	line-height: 140%;
}
/* Typography */
/* Slider */
.slider {
	position: relative;
	margin-inline: auto;
	padding-inline: var(--container-padding);
	max-width: 1440px;
	.swiper-button-prev,
	.swiper-button-next {
		&::after {
			background-color: var(--color-black);
		}
	}
	.swiper-button-prev {
		left: var(--container-padding);
	}
	.swiper-button-next {
		right: var(--container-padding);
	}
}
/* Slider */
/* Swiper */
.swiper-button-prev,
.swiper-button-next {
	width: 32px;
	height: 22px;
	padding: 2px;
	&::after {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		mask: url('../images/icons/arrow-slide.svg') center / contain no-repeat;
		background-color: var(--color-white);
		&:not(:active) {
			transition: 0.2s ease-in-out;
		}
	}
	svg {
		display: none;
	}
	&:hover {
		&::after {
			background-color: var(--color-accent-dark);
			/* background-color: var(--color-accent-light); */
		}
	}
	&:active {
		&::after {
			background-color: var(--color-accent);
		}
	}
}
.swiper-button-next {
	scale: -1;
}
.swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.swiper-pagination-bullet {
	border-radius: 0;
	width: 16px;
	height: 16px;
	background: rgba(255, 255, 255, 0.2);
	opacity: 1;
	transition: 0.2s ease-in-out;
	margin-inline: 0 !important;
	&:hover,
	&.swiper-pagination-bullet-active {
		background: var(--color-accent-light);
		rotate: 45deg;
	}
}
/* Swiper */
/* Buttons */
.icon-btn {
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	font-size: 20px;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	border-radius: 50%;
	&:not(:active) {
		transition: 0.2s ease-in-out;
	}
	&:hover {
		background-color: var(--color-accent-light);
		color: var(--color-dark);
	}
	&:active {
		background-color: var(--color-accent-light-hover);
		color: var(--color-dark);
	}
	&:disabled,
	&.disabled {
		cursor: not-allowed;
		color: var(--color-dark);
	}
}
.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 24px;
	gap: 16px;
	height: 72px;
	line-height: 1;
	background: var(--color-accent-dark);
	text-transform: uppercase;
	color: var(--color-white);
	border: 1px solid var(--color-accent-dark);
	&:not(:active) {
		transition: 0.2s ease-in-out;
	}
	&.disabled,
	&:disabled {
		cursor: not-allowed;
		opacity: 0.6;
	}
	&:hover {
		background: var(--color-accent-dark-hover);
		border-color: var(--color-accent-dark-hover);
	}
	&:active {
		background: var(--color-accent);
		border-color: var(--color-accent);
	}
}
.button--secondary {
	background: transparent;
	color: var(--color-accent-dark);
	&:hover {
		background: var(--color-accent-dark);
		color: var(--color-white);
		border-color: var(--color-accent-dark);
	}
	&:active {
		background: var(--color-accent-dark-hover);
		color: var(--color-white);
		border-color: var(--color-accent-dark-hover);
	}
}
.button-light {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 24px;
	gap: 16px;
	height: 72px;
	background: #ffffff;
	text-align: center;
	text-transform: uppercase;
	color: #0a0a05;
	&:not(:active) {
		transition: 0.2s ease-in-out;
	}
	&:disabled,
	&.disabled {
		cursor: not-allowed;
		opacity: 0.3;
	}
	&:hover {
		background: var(--color-accent-light);
	}
	&:active {
		background: var(--color-accent-light-hover);
	}
}
/* Buttons */
/* Footer */

.footer {
	background-color: var(--color-black-bg);
}

.footer__inner {
	position: relative;
}
.footer__top {
	padding: 48px 0 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 16px;
}
.footer__logo {
	width: 100px;
	height: 100px;
}

.footer-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.footer-block__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.footer-block__title {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 140%;
	color: var(--color-white);
	&::before {
		color: var(--color-accent-light);
	}
}
a.footer-block__title {
	transition: 0.2s ease-in-out;
	&:hover {
		color: var(--color-accent-light);
	}
}
.footer-block__text {
	color: rgba(255, 255, 255, 0.6);
	max-width: 262px;
}
.footer-block__text--link {
	display: flex;
	align-items: center;
	gap: 8px;
	&:not(:active) {
		transition: 0.2s ease-in-out;
	}
	&:hover {
		color: var(--color-accent-light);

		.footer-block__icon {
			background-color: var(--color-accent-light);
			color: var(--color-dark);
		}
	}
	&:active {
		color: var(--color-accent-light-hover);
		.footer-block__icon {
			background-color: var(--color-accent-light-hover);
			color: var(--color-dark);
		}
	}
}
.footer-block__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	aspect-ratio: 1;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	&:not(:active) {
		transition: 0.2s ease-in-out;
	}
}
.footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	a {
		line-height: 140%;
		color: rgba(255, 255, 255, 0.6);
		transition: 0.2s ease-in-out;
		&:hover {
			color: var(--color-accent-light);
		}
	}
}
.footer__bottom {
	padding: 12px 0;
	position: relative;
	z-index: 1;
	&::after {
		position: absolute;
		content: '';
		z-index: -1;
		background-color: rgba(255, 255, 255, 0.05);
		top: 0;
		left: 50%;
		height: 100%;
		transform: translateX(-50%);
		width: 100vw;
	}
}
.footer__copy {
	line-height: 140%;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}
/* Footer */
.btn-top {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 56px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	border-radius: 50%;
	left: 100%;
	font-size: 0;
	top: 48px;
	&::after {
		content: '';
		display: block;
		width: 24px;
		aspect-ratio: 1;
		mask: url('../images/icons/arrow-slide.svg') center/contain no-repeat;
		background-color: var(--color-white);
		rotate: 90deg;
		&:not(:active) {
			transition: 0.2s ease-in-out;
		}
	}
	&:hover {
		&::after {
			background-color: var(--color-accent-light);
		}
	}
	&:active {
		&::after {
			background-color: var(--color-accent-light-hover);
		}
	}
}
.menu-open {
	.header {
		&::after {
			display: block;
		}
	}
	body {
		overflow: hidden;
	}
	.menu__body {
		translate: 0 0;
	}
}

/* Favorites */

.favorite-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.favorite-card__img {
	aspect-ratio: 1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.favorite-card__body {
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.favorite-card__title {
	font-weight: 700;
	font-size: 24px;

	color: var(--color-accent-dark);
	&:hover {
		a {
			text-decoration: underline;
		}
	}
}
.favorite__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

/* Favorites */

.field {
	/* flex: 1; */
	label {
		display: block;
		margin-bottom: 4px;
		color: #757575;
	}
	textarea,
	input {
		padding: 24px;
		background: #fafafa;
		border: 1px solid #e3e3e3;
		width: 100%;
		&::placeholder {
			color: #757575;
		}
	}
	input {
		height: 72px;
	}
	textarea {
		height: 160px;
	}
	.field-error {
		display: none;
		margin-top: 4px;
		color: var(--color-accent-dark);
		font-size: 14px;
	}
	&.error {
		input {
			border-color: var(--color-accent-dark);
		}
		.field-error {
			display: block;
		}
	}
}

/* Reviews */

.reviews {
	background-color: var(--color-white-bg);
}

.review-card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	gap: 24px;
	min-height: 540px;

	background: #fafafa;
}
.review-card__head {
	position: relative;
	padding-left: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	&::before {
		position: absolute;
		content: '';
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 24px;
		aspect-ratio: 1;
		mask: url('../images/icons/quote.svg') center/contain no-repeat;
		background-color: #000;
	}
}
.review-card__stars {
	display: grid;
	gap: 4px;
	margin-left: auto;
	grid-template-columns: repeat(5, 20px);
	img,
	svg {
		width: 20px;
		aspect-ratio: 1;
		object-fit: contain;
	}
}
.review-card__body {
	flex: 1;
}
.review-card__title {
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 12px;
}
.review-card__text {
	line-height: 150%;
}
.review-card__bottom {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 8px 16px;
	align-items: center;
}
.review-card__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	flex: 0 0 auto;
	border-radius: 50%;
	/* width: 64px; */
	width: 100%;
	font-size: 20px;
	overflow: hidden;
	grid-row: span 2;
	color: var(--color-white);

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
.review-card__name {
	font-size: 20px;
}
.review-card__place {
	line-height: 150%;
}

.reviews__bottom {
	margin-top: 32px;
}
.reviews__text {
	text-align: center;

	line-height: 140%;
	a {
		color: #006ae2;
		text-decoration: underline;
		&:hover {
			text-decoration: none;
		}
	}
}

/* Reviews */

/* Galley */

.gallery {
}
.container {
}
.gallery__inner {
}
.gallery__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}
.title-md {
}
.gallery__nav {
	position: relative;
	display: flex;
	align-items: center;
	gap: 32px;
	&::before {
		position: absolute;
		left: 50%;
		height: 10px;
		width: 1px;
		background-color: rgba(0, 0, 0, 0.05);
	}
	.swiper-button-prev,
	.swiper-button-next {
		margin: 0;
		position: static;
		translate: 0;
		&::after {
			background-color: #000;
		}
		&:hover {
			&::after {
				background-color: var(--color-accent-dark);
				/* background-color: var(--color-accent-light); */
			}
		}
		&:active {
			&::after {
				background-color: var(--color-accent);
			}
		}
	}
}

.gallery-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	grid-template-rows: repeat(5, 1fr);
}
.gallery-card {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	&:nth-child(odd) {
		aspect-ratio: 1;
		grid-row: span 2;
	}
	&:nth-child(even) {
		grid-row: span 3;
	}
	&:nth-child(5) {
		grid-column: 2;
	}
	&:nth-child(6) {
		grid-column: 3;
		grid-row: 3 / -1;
	}
}

/* Galley */

/* Works */

.work-item {
	aspect-ratio: 1;
	width: 416px;
	flex: 0 0 auto;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Works */

/* Explore */

.explore__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	grid-template-rows: repeat(5, 1fr);
}
.explore-card {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	&::before {
		position: absolute;
		content: '';
		inset: 0;
		background: linear-gradient(
			180deg,
			rgba(10, 10, 5, 0) 0%,
			rgba(10, 10, 5, 0.5) 100%
		);
	}
	&:nth-child(odd) {
		aspect-ratio: 1;
		grid-row: span 2;
	}
	&:nth-child(even) {
		grid-row: span 3;
	}
	&:nth-child(5) {
		grid-column: 2;
	}
	&:nth-child(6) {
		grid-column: 3;
		grid-row: 3 / -1;
	}
	&:hover {
		.explore-card__layout {
			opacity: 1;
			pointer-events: all;
		}
		.explore-card__label {
			opacity: 0;
		}
	}
}
.explore-card__label {
	position: absolute;
	left: 0;
	bottom: 32px;
	padding: 24px;
	font-size: 24px;
	text-transform: uppercase;
	background-color: #fae6dc;
	transition: 0.2s ease-in-out;
	max-width: 318px;
}
.explore-card__layout {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px;
	gap: 32px;
	background: linear-gradient(0deg, rgba(10, 10, 5, 0.6), rgba(10, 10, 5, 0.6));
	opacity: 0;
	pointer-events: none;
	transition: 0.2s ease-in-out;
}
.explore-card__title {
	font-size: 24px;
	text-transform: uppercase;
	color: #ffffff;
}

/* Explore */

@media (max-width: 1440px) {
	.btn-top {
		left: auto;
		right: 0;
	}
}
@media (max-width: 1390px) {
	.slider {
		padding-inline: calc((var(--container-padding) * 2) + 8px);
	}
}
@media (max-width: 1250px) {
	.menu__list,
	.menu {
		gap: 20px;
	}
}
@media (max-width: 1199.98px) {
	.header {
		height: 140px;
	}
	.hero__inner {
		padding-top: 140px;
	}
	.review-card {
		padding: 28px;
	}
	.review-card__bottom {
		grid-template-columns: 56px 1fr;
	}
	.menu__phone {
		span {
			display: none;
		}
	}
	.header__logo {
		width: 100px;
	}
	.title {
		font-size: 90px;
	}
	.title-label {
		font-size: 65px;
	}
	.title-md {
		font-size: 52px;
	}
	.text {
		font-size: 21px;
	}
	.favorite-card {
		gap: 20px;
	}
	.favorite-card__body {
		gap: 14px;
		padding-inline: 20px;
	}
	.favorite-card__title {
		font-size: 21px;
	}
	.gallery-cards {
		gap: 8px;
	}
	.work-item {
		width: 350px;
	}
	.explore__items {
		gap: 12px;
	}
	.explore-card__label {
		padding: 18px;
		font-size: 21px;
	}
}
@media (max-width: 1023.98px) {
	.menu-burger-close,
	.menu-burger {
		display: block;
		width: 24px;
		font-size: 0;
		height: 24px;
	}
	.menu-burger {
		mask: url('../images/icons/burger.svg') center/contain no-repeat;
		background-color: var(--color-white);
		z-index: 2;
	}
	.menu-burger-close {
		width: 32px;
		height: 32px;
		mask: url('../images/icons/close.svg') center/24px no-repeat;
		background-color: #cecece;
		position: absolute;
		right: 16px;
		top: 12px;
	}

	.menu__body {
		position: fixed;
		z-index: 11;
		top: 0;
		left: 0;
		height: 100vh;
		overflow-y: auto;
		background-color: var(--color-white-bg);
		width: 242px;
		padding: 68px 16px 32px;
		transition: 0.3s ease;
		translate: -100% 0;
		.menu__phone {
			display: flex;
			margin: 24px 0;
			color: var(--color-accent-dark);
			span {
				display: block;
			}
		}
		.icon-btn {
			background-color: rgba(0, 0, 0, 0.1);
			color: #000;
		}
	}
	.menu__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		li {
			width: 100%;
			a {
				display: block;
				padding: 16px 12px;
				color: #000 !important;
			}
		}
		& > li {
			&.has-submenu {
				background-color: #fafafa;
				padding: 0 12px;
				margin: 0;
				& > a {
					&::after {
						background-color: #000 !important;
					}
				}
				&.active {
					& > ul {
						max-height: 100vh;
					}
				}
			}
			& > ul {
				position: static;
				padding: 0;
				min-width: auto;
				opacity: 1;
				visibility: visible;
				pointer-events: all;
				background-color: transparent;
				gap: 0;
				height: 100%;
				overflow: hidden;
				max-height: 0;
				a {
					padding: 12px;
					font-size: 14px;
					&:hover,
					&.active {
						background-color: #f2f2f2;
					}
				}
			}
		}
		a {
			color: var(--color-black);
		}
	}
}
@media (max-width: 991.98px) {
	.footer__top {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767.98px) {
	.reviews-swiper,
	.favorites-swiper {
		.swiper-slide {
			width: 285px;
		}
	}
	.info__title {
		font-size: 18px;
		margin-bottom: 24px;
	}
	.info__body {
		grid-template-columns: auto;
	}
	.gallery-cards {
		gap: 4px;
	}
	.gallery-cards {
		grid-template-columns: repeat(2, 1fr);
		.gallery-card {
			&:nth-child(3),
			&:nth-child(6) {
				display: none;
			}
		}
	}
	.slider {
		padding: 0;
		.swiper {
			overflow: visible !important;
		}
	}
	.favorite-card {
		gap: 16px;
	}
	.favorite-card__body {
		gap: 12px;
		padding-inline: 16px;
	}
	.favorite-card__title {
		font-size: 18px;
	}
	.slider {
		.swiper-button-prev,
		.swiper-button-next {
			display: none;
		}
	}
	.header {
		height: 108px;
	}
	.title-label {
		font-size: 40px;
	}
	.title {
		font-size: 60px;
	}
	.title-md {
		font-size: 40px;
	}
	.header {
		padding: 16px 0;
	}
	.header__logo {
		width: 75px;
	}
	.head {
		gap: 8px;
	}
	.text {
		font-size: 18px;
	}
	.footer__top {
		padding: 16px 0;
		grid-template-columns: auto;
		justify-content: center;
	}
	.footer__logo {
		width: 76px;
		height: 85px;
		margin-inline: auto;
	}
	.footer-block__title {
		justify-content: center;
	}
	.footer-block {
		align-items: center;
		text-align: center;
		gap: 16px;
	}
	.footer__bottom {
		padding: 16px 0;
	}
	.btn-top {
		width: 40px;
		top: 16px;
	}
	.button-light,
	.button {
		height: 64px;
	}
	.field {
		input {
			height: 64px;
		}
	}
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	.hero {
		.swiper-button-next,
		.swiper-button-prev {
			display: none;
		}
	}
	.swiper-button-prev,
	.swiper-button-next {
		width: 24px;
		height: 16px;
	}
	.work-item {
		width: 285px;
	}
	.explore__items {
		gap: 8px;
		grid-template-rows: auto;
		grid-template-columns: repeat(2, 1fr);
	}
	.explore-card {
		&:nth-child(odd) {
			aspect-ratio: 168/212;
			grid-row: inherit;
		}
		&:nth-child(even) {
			aspect-ratio: 168/212;
			grid-row: inherit;
		}
		&:nth-child(5),
		&:nth-child(6) {
			grid-column: inherit;
		}
	}
	.explore-card__label {
		padding: 12px;
		font-size: 18px;
		color: var(--color-white);
		background-color: var(--color-accent-dark);
		bottom: 0;
		width: 100%;
		max-width: none;
	}
	.hero__inner {
		padding-top: 108px;
	}
	.hero {
		background-position: 70% center;
	}
	.hero__inner {
		text-align: center;
		.title {
			margin-bottom: 48px;
		}
	}
}
