html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

strong {
	font-weight: 700;
}

:root {
	--primary-black: rgb(0, 0, 0);
	--secondary-black: #130d00;
	--light-black: #333;
	--primary-grey: #3a3a3a;
	--secondary-grey: #666666;
	--light-grey: #898989;
	--primary-white: #fff;
	--secondary-white: #d9d9d9;
	--light-white: #666;
	--overlay-color: rgba(0, 0, 0, 0.4);
	--swiper-pagination-bullet-horizontal-gap: 10px;
}

html {
	font-size: 1.125vw;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	background-color: #fff;
	color: #000;
	overflow: hidden;
	overflow-y: auto;
	font-size: 1.375rem;
}

.hide-text {
	font-size: 0;
}

input,
button,
textarea {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	padding: 0;
	margin: 0;
}

.no-scroll {
	height: 100%;
	overflow: hidden;
}

.page,
.section {
	width: 100%;
	height: auto;
}

.page.blur {
	-webkit-filter: blur(2px);
	filter: blur(2px);
}

.section {
	position: relative;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Petrona', serif;
	font-optical-sizing: auto;
	color: #40491a;
	font-style: normal;
	line-height: 1.15;
}

h1 {
	font-weight: 600;
	font-size: 3.75rem;
}

h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	font-size: 2.5rem;
}

.img {
	line-height: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type='number'] {
	-moz-appearance: textfield;
}

@media screen and (min-width: 1024px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 1023px) {
	html {
		font-size: 16px;
	}

	body {
		font-size: 1.3125rem;
	}

	h1 {
		font-size: 2.75rem;
	}

	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 2rem;
	}

	.pc {
		display: none !important;
	}

	.no-scroll {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		overflow: hidden;
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	html {
		font-size: 3.125vw;
	}
}

.loading__box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 300;
	display: none;
}

.loading__box.active {
	display: block;
}

.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -40px 0 0 -40px;
	border: 8px solid #000;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border-top: 8px solid #fff;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 0.5s linear infinite;
	animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 20;
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

.header-overlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	visibility: hidden;
}

.header.sticky {
	position: fixed;
	left: 0;
	top: 0;
	background-color: #f9f8f8;
}

.header-container {
	width: 100%;
}

.header-mid {
	position: fixed;
	left: 0;
	top: 0;
	height: var(--height, 100vh);
	background-color: #a9b789;
	-webkit-transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	opacity: 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.header.open-menu .header-overlay {
	opacity: 1;
	visibility: visible;
}

.header.open-menu .header-mid {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.header .hamburger-open {
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .hamburger-open svg {
	width: 100%;
	height: 100%;
}

.header .logo {
	line-height: 0;
}

.header .logo img {
	width: 100%;
	height: auto;
}

.header .hamburger-close {
	display: block;
	line-height: 0;
	cursor: pointer;
}

.header .hamburger-close img {
	width: 100%;
	height: auto;
}

.header .nav {
	display: block;
}

.header .nav li {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #1e1e1e;
	cursor: pointer;
}

.header .nav li.active {
	color: #f9f8f8;
}

.header .language {
	display: flex;
	align-items: center;
}

.header .language .h_spr {
	width: 1px;
	height: 100%;
	background-color: #151c0a;
	display: block;
}

.header .language__item {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #151c0a;
	display: block;
	line-height: 1;
	cursor: pointer;
}

.header .language__item a {
	color: #151c0a;
	text-decoration: none;
}

.header .language__item.active {
	font-weight: 700;
}

@media screen and (min-width: 1024px) {
	.header {
		padding: 2.0625rem 6.875rem;
	}

	.header.sticky {
		padding: 0.4375rem 6.875rem;
	}

	.header.sticky .logo {
		width: 3.75rem;
	}

	.header-container {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.header .hamburger-open {
		width: 1.875rem;
		height: 1.875rem;
	}

	.header .hamburger-close {
		position: absolute;
		left: 5.875rem;
		top: 4rem;
		width: 1.5rem;
		height: auto;
	}

	.header .logo {
		width: 5rem;
	}

	.header-mid {
		width: 24.375rem;
	}

	.header .nav {
		padding: 11rem 0 0 5.875rem;
	}

	.header .nav li {
		font-size: 1.4rem;
		margin-bottom: 1.25rem;
		-webkit-transition: color 0.3s ease-in-out;
		transition: color 0.3s ease-in-out;
	}

	.header .nav li:hover {
		color: #f9f8f8;
	}

	.header .language {
		margin-left: auto;
		gap: 0.625rem;
	}

	.header .language .h_spr {
		height: 1rem;
	}

	.header .language__item {
		font-size: 1.375rem;
	}
}

@media screen and (max-width: 1023px) {
	.header {
		padding: 2.0625rem 1.5rem;
	}

	.header.sticky {
		padding: 0.4375rem 1.5rem;
	}

	.header.sticky .logo {
		width: 3.75rem;
	}

	.header-container {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.header .hamburger-open {
		width: 1.875rem;
		height: 1.875rem;
	}

	.header .hamburger-close {
		position: absolute;
		left: 50%;
		top: 3.375rem;
		width: 1.5rem;
		height: auto;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.header .logo {
		width: 4.25rem;
	}

	.header-mid {
		width: 100%;
		max-width: 460px;
		display: flex;
		flex-direction: column;
	}

	.header .nav {
		padding: 0 1.5rem;
		padding-top: 10.625rem;
	}

	.header .nav li {
		font-size: 1.5625rem;
		margin-bottom: 1.625rem;
		text-align: center;
	}

	.header__mobile {
		margin-top: auto;
		padding-bottom: 3.375rem;
	}

	.header .mobile__logo {
		width: 5.625rem;
		margin: 0 auto;
		margin-bottom: 1.5rem;
	}

	.header .mobile__logo img {
		width: 100%;
		height: auto;
	}

	.header .mobile__slogan {
		font-size: 1.25rem;
		font-weight: 700;
		font-family: 'Petrona', serif;
		text-align: center;
		width: 17.625rem;
		margin: 0 auto;
		margin-bottom: 1.875rem;
	}

	.header .mobile__language {
		display: flex !important;
		justify-content: center;
	}

	.header .language {
		display: none;
		margin-left: auto;
		gap: 0.625rem;
	}

	.header .language .h_spr {
		height: 1rem;
	}

	.header .language__item {
		font-size: 1.25rem;
	}
}

@media screen and (orientation: landscape) and (max-width: 960px) {
	.header {
		padding: 0.875rem 3.125rem;
	}

	.header.sticky {
		padding: 0.4375rem 3.125rem;
	}

	.header .nav {
		padding-top: 2.5rem;
	}

	.header .nav li {
		font-size: 1.25rem;
		margin-bottom: 0.9375rem;
	}

	.header__mobile {
		padding-bottom: 1.25rem;
	}

	.header .hamburger-close {
		left: auto;
		right: 20px;
		top: 20px;
		-webkit-transform: none;
		transform: none;
	}

	.header .mobile__logo {
		width: 4.375rem;
		margin-bottom: 0.625rem;
	}

	.header .mobile__logo img {
		width: 100%;
		height: auto;
	}

	.header .mobile__slogan {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}
}

@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
	height: 1px;
	width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
	width: 1px;
	height: var(--swiper-virtual-size);
}

:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 0.3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}

.swiper-pagination-bullet {
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 8px)
	);
	height: var(
		--swiper-pagination-bullet-height,
		var(--swiper-pagination-bullet-size, 8px)
	);
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet:only-child {
	display: none !important;
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-lock {
	display: none;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: rgba(0, 0, 0, 0);
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube {
	overflow: visible;
}

.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}

.swiper-flip {
	overflow: visible;
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}

.swiper-cards {
	overflow: visible;
}

.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}

:root {
	--swiper-theme-color: #ba9765;
	--swiper-pagination-bullet-inactive-color: #ba976559;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 6px;
}

.swiper-horizontal > .swiper-scrollbar {
	display: none !important;
}

button {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

.but {
	background-color: #40491a;
	color: #f9f8f8;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.item__title {
	cursor: pointer;
}

.item__detail {
	overflow: hidden;
	-webkit-transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.arrow__icon {
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.faq .faq__item.active .arrow__icon {
	-webkit-transform: translateY(-50%) scaleY(-1);
	transform: translateY(-50%) scaleY(-1);
}

.from__group {
	position: relative;
	display: block;
	width: 100%;
}

.from__group label,
.from__group input[type='text'],
.from__group input[type='email'],
.from__group input[type='number'],
.from__group input[type='tel'],
.from__group textarea {
	color: #1e1e1e;
	display: block;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	background-color: rgba(249, 248, 248, 0.8);
	border: 1px solid rgba(249, 248, 248, 0.8);
}

.from__group textarea {
	resize: vertical;
}

.from__group input[type='text']::placeholder,
.from__group input[type='email']::placeholder,
.from__group input[type='number']::placeholder,
.from__group input[type='tel']::placeholder,
.from__group textarea::placeholder {
	color: rgba(30, 30, 30, 0.6);
}

.from__group .error {
	position: absolute;
	left: 0;
	top: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #991a1a;
	display: none;
}

.from__group::before {
	content: '';
	background: url(../images/error-icon.svg) no-repeat center center;
	background-size: 100% auto;
	display: none;
	position: absolute;
}

.from__group.show__error .error {
	display: block;
}

.from__group.show__error input[type='text'],
.from__group.show__error input[type='email'],
.from__group.show__error input[type='number'],
.from__group.show__error input[type='tel'],
.from__group.show__error textarea {
	border-color: #991a1a;
}

.from__group.show__error::before {
	display: block;
}

.form__action {
	display: flex;
	justify-content: center;
}

.select {
	position: relative;
}

.select__icon {
	position: absolute;
	color: rgba(30, 30, 30, 0.6);
	display: flex;
}

.select__icon svg {
	width: 100%;
	height: 100%;
}

.select__header {
	position: relative;
	display: flex;
	min-height: clamp(36px, 2.25rem, 2.25rem);
	background-color: rgba(249, 248, 248, 0.8);
	color: rgba(30, 30, 30, 0.6);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	cursor: pointer;
}

.select .selected__block {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	position: relative;
}

.select .selected__block::before {
	content: attr(data-placeholder);
}

.select .selected__block:not(:empty)::before {
	content: '';
	display: none;
}

.select .selected__item {
	display: inline-flex;
	align-items: center;
	background-color: #c3ccaf;
}

.select .selected__item span:not(.remove__item) {
	color: #1e1e1e;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

.select .selected__item .remove__item {
	background: url(../images/select-remove.svg) no-repeat center center;
	background-size: 100% auto;
	cursor: pointer;
}

.select__box {
	position: absolute;
	left: 0;
	top: 100%;
	-webkit-transform: translateY(7px);
	transform: translateY(7px);
	display: none;
	width: 100%;
	height: auto;
	background-color: #ecebe9;
	z-index: 2;
}

.select__box ul {
	max-height: 440px;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.select__box li {
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: rgba(30, 30, 30, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	background-color: rgba(30, 30, 30, 0);
	margin-bottom: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.select__box li::before {
	content: '';
	display: block;
	position: absolute;
	background-color: rgba(30, 30, 30, 0.35);
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.select__box li::after {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/select-check.svg) no-repeat center center;
	background-size: 100% auto;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.select__box li.selected {
	background-color: rgba(30, 30, 30, 0.15);
	color: #1e1e1e;
}

.select__box li.selected::before {
	opacity: 0;
}

.select__box li.selected::after {
	opacity: 1;
}

.select.open .select__box {
	display: block;
}

.message {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #e1e0d7;
	z-index: 6;
	padding: 1.875rem 3.75rem;
	opacity: 0;
	visibility: hidden;
}

.message.show__message {
	opacity: 1;
	visibility: visible;
}

.message__brief {
	font-weight: 400;
}

.wheretobuy__gallery {
	padding: 0 !important;
}

.wheretobuy__gallery.size__center .swiper-wrapper {
	justify-content: center !important;
}

.wheretobuy__gallery.size__center .swiper-wrapper .swiper-slide {
	padding: 0 1rem !important;
}

.swiper-button-prev,
.swiper-button-next {
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	transform: scale(0.9) !important;
}

.z4 {
	z-index: 4;
}

[class*='__img'],
[class*='--img'] {
	line-height: 0;
}

[class*='__img'] img,
[class*='--img'] img {
	width: 100%;
	height: auto;
}

.banner {
	position: relative;
	width: 100%;
	height: auto;
}

.banner__img {
	width: 100%;
}

.banner__txt {
	position: absolute;
}

.banner__txt h1 {
	text-align: center;
}

.essence {
	width: 100%;
	background-color: #f9f8f8;
}

.essence__box {
	display: flex;
	flex-wrap: wrap;
}

.banner__full {
	position: relative;
	width: 100%;
	height: auto;
}

.people {
	background-color: #f9f8f8;
	width: 100%;
	height: auto;
}

.people__box {
	display: flex;
	flex-wrap: wrap;
}

.hand {
	width: 100%;
}

.hand__box {
	display: flex;
	flex-wrap: wrap;
}

.hand__cate {
	background-color: #151c0a;
}

.hand__cate--item .number {
	font-family: 'Petrona', serif;
}

.hand__cate--item h3 {
	color: inherit;
}

.hand__cate--item:nth-child(3n + 1) {
	background-color: #a9b789;
	color: #40491a;
}

.hand__cate--item:nth-child(3n + 2) {
	background-color: #7e8946;
	color: #1e1e1e;
}

.hand__cate--item:nth-child(3n + 3) {
	background-color: #4f5a1f;
	color: #f9f8f8;
}

.hand__info {
	background-color: #a3af80;
}

.leader {
	width: 100%;
	height: auto;
}

.leader__box {
	display: flex;
	flex-wrap: wrap;
}

.leader .zoom-img {
	width: 100%;
	height: 100%;
}

.customer {
	width: 100%;
	background-color: #f9f8f8;
}

.customer__box {
	display: flex;
	flex-wrap: wrap;
}

.customer__item {
	position: relative;
}

.customer__item::before {
	content: '';
	position: absolute;
	background: url(../images/quote.svg) no-repeat center top;
	background-size: 100% auto;
}

.customer .swiper-slide {
	height: auto;
}

.customer .swiper-slide:nth-child(odd) .customer__item {
	background-color: #40491a;
	color: #fff;
}

.customer .swiper-slide:nth-child(odd) .customer__item a {
	color: #fff;
	text-decoration: none;
}

.customer .swiper-slide:nth-child(even) .customer__item {
	background-color: #a9b789;
	color: #1e1e1e;
}

.customer .swiper-slide:nth-child(even) .customer__item a {
	color: #1e1e1e;
	text-decoration: none;
}

.customer .swiper-slide:nth-child(even) .customer__item::before {
	background: url(../images/quote-black.svg) no-repeat center top;
}

.contact {
	background-color: rgba(225, 224, 215, 0.8);
	width: 100%;
}

.contact__box {
	display: flex;
	flex-wrap: wrap;
}

.contact__form {
	position: relative;
}

.discover {
	background-color: #f9f8f8;
	width: 100%;
	height: auto;
}

.discover__box {
	display: block;
}

.discover .swiper-slide {
	height: auto;
}

.discover__gallery,
.discover .gallery__slider {
	display: block;
	width: 100%;
}

.discover__item {
	height: 100%;
	background-color: rgba(225, 224, 215, 0.8);
}

.discover__item--img {
	display: flex;
	justify-content: center;
}

.discover__item--brief {
	text-align: center;
}

.discover__item--brief p {
	font-weight: 700;
}

.discover .zoom-img {
	overflow: initial;
}

.wheretobuy {
	width: 100%;
	background-color: #f9f8f8;
}

.wheretobuy__box {
	display: block;
	width: 100%;
	text-align: center;
}

.wheretobuy__box h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #1e1e1e;
}

.wheretobuy__txt {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.wheretobuy__gallery,
.wheretobuy .wheretobuy__slider {
	width: 100%;
}

.wheretobuy .swiper-slide {
	width: auto;
}

.faq {
	width: 100%;
	background-color: rgba(249, 248, 248, 0.8);
}

.faq__box {
	display: flex;
	flex-wrap: wrap;
}

.faq__item {
	width: 100%;
	height: auto;
	border-bottom: 2px solid rgba(21, 28, 10, 0.3019607843);
}

.faq .item__title {
	position: relative;
}

.faq .item__title h3 {
	font-family: 'Roboto', sans-serif;
	color: #1e1e1e;
	font-weight: 700;
}

.faq .item__title .arrow__icon {
	display: flex;
	position: absolute;
}

.faq .item__title .arrow__icon svg {
	width: 100%;
	height: 100%;
}

.faq .item__detail,
.faq .item__body {
	width: 100%;
	height: auto;
}

.faq .item__body p {
	margin-bottom: 1.75rem;
}

.faq__main {
	line-height: 0;
}

@media screen and (min-width: 1024px) {
	.zoom-img {
		overflow: hidden;
	}

	.zoom-img img {
		-webkit-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}

	.zoom-img:hover img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	.leader__item img,
	.wheretobuy__item--img img {
		-webkit-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}

	.leader__item:hover img,
	.wheretobuy__item--img:hover img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	.hamburger-open,
	.language__item {
		-webkit-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}

	.hamburger-open:hover,
	.language__item:hover {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	.but {
		font-size: 1.25rem;
		-webkit-border-radius: 1.25rem;
		border-radius: 1.25rem;
		height: 2.625rem;
		-webkit-transition: background-color 0.3s ease-in-out;
		transition: background-color 0.3s ease-in-out;
	}

	.but:hover {
		background-color: #8ba51e;
	}

	.from__group {
		margin-bottom: 1.875rem;
	}

	.from__group input[type='text'],
	.from__group input[type='email'],
	.from__group input[type='number'],
	.from__group input[type='tel'],
	.from__group textarea {
		font-size: 1.25rem;
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
	}

	.from__group input[type='text'],
	.from__group input[type='email'],
	.from__group input[type='number'],
	.from__group input[type='tel'] {
		height: 2.25rem;
		padding: 0 0.9375rem;
		min-height: 36px;
	}

	.from__group textarea {
		height: 8rem;
		min-height: 128px;
		padding: 0.9375rem;
	}

	.from__group .error {
		font-size: 0.875rem;
		padding-top: 3px;
	}

	.from__group::before {
		width: 1.625rem;
		height: 1.625rem;
		min-width: 26px;
		min-height: 26px;
		left: 100%;
		top: 0;
		-webkit-transform: translate(7px, clamp(2px, 0.3125rem, 0.3125rem));
		transform: translate(7px, clamp(2px, 0.3125rem, 0.3125rem));
	}

	.select__icon {
		width: 0.8125rem;
		height: 0.8125rem;
		right: 0.5rem;
		top: 0.75rem;
	}

	.select .selected__block {
		column-gap: 0.75rem;
		row-gap: 0.3125rem;
	}

	.select .selected__block::before {
		-webkit-transform: translateX(0.5rem);
		transform: translateX(0.5rem);
	}

	.select .selected__item {
		font-size: 1.25rem;
		padding: 0.5rem;
		column-gap: 0.5rem;
		-webkit-border-radius: 0.5rem;
		border-radius: 0.5rem;
	}

	.select .selected__item .remove__item {
		width: 0.75rem;
		height: 0.75rem;
	}

	.select__header {
		padding: 0.4375rem;
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
	}

	.select__box {
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
		padding: 0.4375rem;
		padding-right: 0;
	}

	.select__box ul {
		padding-right: 0.4375rem;
	}

	.select__box li {
		height: 2.375rem;
		padding-left: 2.6875rem;
		-webkit-border-radius: 0.625rem 0 0 0.625rem;
		border-radius: 0.625rem 0 0 0.625rem;
	}

	.select__box li::before,
	.select__box li::after {
		left: 0.5625rem;
		width: 1.125rem;
		height: 1.125rem;
	}

	.banner__txt {
		left: 50%;
		top: 14.125rem;
		width: 41.875rem;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.essence {
		padding: 7.8125rem 0 7.8125rem 6.875rem;
	}

	.essence__box {
		justify-content: space-between;
	}

	.essence__txt {
		flex: 0 0 31.75rem;
		max-width: 31.75rem;
		padding-top: 3.125rem;
	}

	.essence__txt h2,
	.essence__txt p {
		margin-bottom: 1.75rem;
	}

	.essence__img {
		flex: 0 0 43.9375rem;
		max-width: 43.9375rem;
	}

	.banner__full {
		width: 100%;
	}

	.banner__full--txt {
		position: absolute;
		width: 30.5rem;
		top: 5.9375rem;
		right: 7rem;
		z-index: 1;
	}

	.banner__full--txt h2,
	.banner__full--txt p {
		margin-bottom: 1.75rem;
	}

	.people {
		padding: 7.8125rem 0;
	}

	.people__box {
		justify-content: space-between;
	}

	.people__img {
		flex: 0 0 39.5rem;
		max-width: 39.5rem;
	}

	.people__img--sub {
		margin-top: auto;
	}

	.people__txt {
		flex: 0 0 39.5rem;
		max-width: 39.5rem;
		display: flex;
		flex-direction: column;
	}

	.people__txt h2 {
		margin-bottom: 1.75rem;
		padding-right: 7rem;
	}

	.people__txt p {
		margin-bottom: 1.75rem;
	}

	.people__brief {
		margin-bottom: 5.625rem;
		padding-right: 7rem;
	}

	.people__gallery {
		display: flex;
		width: 100%;
		padding-left: 28.25rem;
	}

	.people__gallery--img {
		flex: 0 0 28rem;
	}

	.hand__cate {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 7.5rem 0;
	}

	.hand__cate--item {
		width: 16.1875rem;
		height: 15.6875rem;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.hand__cate--item .number {
		font-size: 6rem;
		line-height: 0.8;
	}

	.hand__cate--item h3 {
		font-size: 1.875rem;
	}

	.hand__cate--item:nth-child(3n + 1) {
		-webkit-transform: translateX(7.5rem);
		transform: translateX(7.5rem);
	}

	.hand__cate--item:nth-child(3n + 2) {
		-webkit-transform: translateX(25rem);
		transform: translateX(25rem);
	}

	.hand__cate--item:nth-child(3n + 3) {
		-webkit-transform: translateX(4.375rem);
		transform: translateX(4.375rem);
		margin-top: -3.125rem;
	}

	.hand__info {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.hand__txt {
		padding: 5.625rem 6.5625rem;
	}

	.hand__txt h2,
	.hand__txt p {
		margin-bottom: 1.75rem;
	}

	.leader {
		padding-bottom: 0.875rem;
	}

	.leader__box {
		justify-content: space-between;
		align-items: center;
		padding: 9.6875rem 6.875rem;
	}

	.leader__txt {
		flex: 0 0 25.625rem;
		max-width: 25.625rem;
	}

	.leader__txt h2 {
		margin-bottom: 1.75rem;
	}

	.leader__txt .but {
		width: 10.25rem;
	}

	.essence__txt .but {
		width: 10.25rem;
	}

	.faq__action .but {
		width: 10.25rem;
	}

	.leader__brief {
		margin-bottom: 2.5rem;
	}

	.faq__action {
		margin-top: 2.5rem;
	}

	.leader__list {
		flex: 0 0 41.25rem;
		max-width: 41.25rem;
		display: flex;
		flex-wrap: wrap;
		row-gap: 3.75rem;
	}

	.leader__item {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
		line-height: 0;
	}

	.leader__item img {
		width: auto;
		height: auto;
		max-width: 80%;
		display: block;
		margin: 0 auto;
	}

	.leader__gallery {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.leader__gallery--img {
		line-height: 0;
		position: relative;
	}

	.leader__gallery--img img {
		display: block;
		width: 100%;
		height: 100%;
		-webkit-object-fit: cover;
		object-fit: cover;
	}

	.leader__gallery--img:nth-child(1),
	.leader__gallery--img:nth-child(2) {
		flex: 0 0 25.277777778%;
		max-width: 25.277777778%;
		padding-right: 0.4375rem;
	}

	.leader__gallery--img:nth-child(1) {
		height: 23.75rem;
	}

	.leader__gallery--img:nth-child(2) {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 25.277777778%;
		height: 24rem;
	}

	.leader__gallery--img:nth-child(3) {
		flex: 0 0 35.833333333%;
		max-width: 35.833333333%;
		height: 48.625rem;
		padding-left: 0.4375rem;
		padding-right: 0.4375rem;
	}

	.leader__gallery--img:nth-child(4) {
		flex: 0 0 38.888888889%;
		max-width: 38.888888889%;
		height: 23.75rem;
		padding-left: 0.4375rem;
	}

	.leader__gallery--img:nth-child(5) {
		flex: 0 0 20.277777778%;
		max-width: 20.277777778%;
		width: 20.277777778%;
		height: 24rem;
		position: absolute;
		bottom: 0;
		right: 18.611111111%;
		padding-left: 0.4375rem;
		padding-right: 0.4375rem;
	}

	.leader__gallery--img:nth-child(6) {
		flex: 0 0 18.611111111%;
		max-width: 18.611111111%;
		width: 18.611111111%;
		height: 24rem;
		position: absolute;
		bottom: 0;
		right: 0;
		padding-left: 0.4375rem;
	}

	.customer {
		padding: 11.5rem 0 11.5rem 6.875rem;
	}

	.customer__box {
		width: 100%;
		justify-content: space-between;
	}

	.customer__box .swiper-slide {
		padding-right: 3.375rem;
	}

	.customer__txt {
		flex: 0 0 29.375rem;
		max-width: 29.375rem;
	}

	.customer__txt h2 {
		margin-bottom: 1.75rem;
	}

	.customer__gallery {
		flex: 0 0 43.375rem;
		max-width: 43.375rem;
	}

	.customer__item {
		font-size: 1.25rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 2.625rem 2.625rem 2.625rem 4.6875rem;
		-webkit-border-radius: 1.25rem;
		border-radius: 1.25rem;
		height: 100%;
	}

	.customer__item--note {
		margin-top: 9.375rem;
	}

	.customer__item::before {
		width: 2.6875rem;
		height: 2.3125rem;
		top: 1.1875rem;
		left: 1.1875rem;
	}

	.contact__form {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 1.875rem 6.875rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.contact__form h2 {
		margin-bottom: 0.625rem;
	}

	.contact__brief {
		margin-bottom: 3.75rem;
	}

	.contact__img {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.contact .form__action {
		padding-top: 1.875rem;
	}

	.contact .but {
		width: 13.25rem;
	}

	.discover {
		padding: 8.125rem 0 8.125rem 6.875rem;
	}

	.discover__txt {
		width: 30rem;
		margin-bottom: 4.875rem;
	}

	.discover__txt h2 {
		margin-bottom: 1.75rem;
	}

	.discover .swiper-slide {
		padding-right: 6rem;
	}

	.discover__item {
		padding: 2.8125rem;
		-webkit-border-radius: 1.25rem;
		border-radius: 1.25rem;
	}

	.discover__item--img {
		margin-bottom: 1rem;
	}

	.discover__item--img img {
		width: auto;
		height: auto;
		max-height: 18.625rem;
	}

	.discover__item--brief h3 {
		font-size: 2.25rem;
	}

	.discover__item--brief p {
		font-size: 1rem;
	}

	.wheretobuy {
		padding: 7.1875rem 0 7.1875rem 0;
	}

	.wheretobuy__txt {
		width: 26.75rem;
		margin-bottom: 5.625rem;
	}

	.wheretobuy__txt h2 {
		margin-bottom: 1rem;
	}

	.wheretobuy__item--img {
		width: auto;
		height: 8.875rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		margin-bottom: 2.625rem;
	}

	.wheretobuy__item--img a {
		width: 100%;
		height: 100%;
	}

	.wheretobuy__item--img img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
	}

	.wheretobuy__item--brief h3 {
		font-size: 1.25rem;
	}

	.wheretobuy__gallery {
		padding-left: 1.875rem;
	}

	.wheretobuy .swiper {
		overflow: visible;
	}

	.wheretobuy .swiper-slide {
		padding-right: 3.875rem;
	}

	.faq__box {
		padding: 9.625rem 6.875rem 0 6.875rem;
		justify-content: space-between;
	}

	.faq__txt {
		flex: 0 0 25.625rem;
		max-width: 25.625rem;
	}

	.faq__txt h2 {
		margin-bottom: 1.75rem;
	}

	.faq__list {
		flex: 0 0 37rem;
		max-width: 37rem;
	}

	.faq .item__title {
		padding: 1.125rem 0;
	}

	.faq .item__title h3 {
		font-size: 1.25rem;
		white-space: nowrap;
		max-width: calc(100% - 1.625rem);
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.faq .item__title .arrow__icon {
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 0.8125rem;
		height: 0.8125rem;
	}

	.faq .item__detail {
		font-size: 1.375rem;
	}

	.faq .item__body {
		padding-bottom: 2.5rem;
	}

	.faq__main {
		width: 100%;
	}

	.faq__main img {
		width: 39.5rem;
		height: auto;
		margin-top: -7.5rem;
	}
}

@media screen and (max-width: 1023px) {
	.but {
		height: 2.75rem;
		-webkit-border-radius: 1.875rem;
		border-radius: 1.875rem;
		font-size: 1.125rem;
	}

	.message {
		padding: 1.875rem 1.5rem;
	}

	.from__group {
		margin-bottom: 1.875rem;
	}

	.from__group input[type='text'],
	.from__group input[type='email'],
	.from__group input[type='number'],
	.from__group input[type='tel'],
	.from__group textarea {
		font-size: 1.25rem;
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
	}

	.from__group input[type='text'],
	.from__group input[type='email'],
	.from__group input[type='number'],
	.from__group input[type='tel'] {
		height: 2.25rem;
		padding: 0 0.9375rem;
		min-height: 36px;
	}

	.from__group textarea {
		height: 8rem;
		min-height: 128px;
		padding: 0.9375rem;
	}

	.from__group .error {
		font-size: 0.875rem;
		padding-top: 3px;
	}

	.from__group::before {
		width: 1.625rem;
		height: 1.625rem;
		min-width: 26px;
		min-height: 26px;
		left: 100%;
		top: 0;
		-webkit-transform: translate(7px, clamp(2px, 0.3125rem, 0.3125rem));
		transform: translate(7px, clamp(2px, 0.3125rem, 0.3125rem));
	}

	.from__group.show__error::before {
		display: none;
	}

	.select__icon {
		width: 1rem;
		height: 1rem;
		right: 1rem;
		top: 1.25rem;
	}

	.select .selected__block {
		column-gap: 0.75rem;
		row-gap: 0.3125rem;
	}

	.select .selected__block::before {
		-webkit-transform: translateX(0.5rem);
		transform: translateX(0.5rem);
		line-height: clamp(36px, 2.25rem, 2.25rem);
	}

	.select .selected__item {
		font-size: 1.25rem;
		padding: 0.5rem;
		column-gap: 0.5rem;
		-webkit-border-radius: 0.5rem;
		border-radius: 0.5rem;
	}

	.select .selected__item .remove__item {
		width: 0.75rem;
		height: 0.75rem;
	}

	.select__header {
		padding: 0.4375rem;
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
	}

	.select__box {
		-webkit-border-radius: 0.625rem;
		border-radius: 0.625rem;
		padding: 0.4375rem;
		padding-right: 0;
	}

	.select__box ul {
		padding-right: 0.4375rem;
	}

	.select__box li {
		height: 2.375rem;
		padding-left: 2.6875rem;
		-webkit-border-radius: 0.625rem 0 0 0.625rem;
		border-radius: 0.625rem 0 0 0.625rem;
	}

	.select__box li::before,
	.select__box li::after {
		left: 0.5625rem;
		width: 1.125rem;
		height: 1.125rem;
	}

	.banner {
		overflow: hidden;
	}

	.banner__img {
		position: relative;
	}

	.banner__img::before {
		content: '';
		display: block;
		width: 100%;
		height: auto;
		padding-top: 106.25%;
	}

	.banner__img img {
		position: absolute;
		left: 50%;
		top: 0;
		width: auto;
		height: 100%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.banner__txt {
		top: 15rem;
		padding: 0 2.75rem;
	}

	.essence {
		padding: 3.75rem 1.5rem;
	}

	.essence__txt {
		padding-bottom: 1.875rem;
	}

	.essence__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.essence__txt p {
		margin-bottom: 0.75rem;
	}

	.banner__full {
		display: flex;
		flex-direction: column-reverse;
		overflow: hidden;
	}

	.banner__full--img {
		width: 100%;
	}

	.banner__full--txt {
		padding: 0 1.5rem 2.5rem 1.5rem;
	}

	.banner__full--txt h2 {
		margin-bottom: 0.9375rem;
	}

	.banner__full--txt p {
		margin-bottom: 0.75rem;
	}

	.people__box {
		padding: 3.75rem 1.5rem;
	}

	.people__img {
		display: none;
	}

	.people__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.people__txt p {
		margin-bottom: 0.75rem;
	}

	.people__brief {
		padding-bottom: 1.875rem;
	}

	.people__gallery {
		display: none;
	}

	.hand__cate {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 7.5rem 0;
	}

	.hand__cate--item {
		width: 14.375rem;
		height: 14.375rem;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.hand__cate--item .number {
		font-size: 6rem;
		line-height: 0.8;
	}

	.hand__cate--item h3 {
		font-size: 1.875rem;
	}

	.hand__cate--item:nth-child(3n + 1) {
		-webkit-transform: translateX(5rem);
		transform: translateX(5rem);
	}

	.hand__cate--item:nth-child(3n + 2) {
		-webkit-transform: translateX(15rem);
		transform: translateX(15rem);
	}

	.hand__cate--item:nth-child(3n + 3) {
		-webkit-transform: translateX(3.75rem);
		transform: translateX(3.75rem);
		margin-top: -2.5rem;
	}

	.hand__info {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hand__txt {
		padding: 3.75rem 1.5rem;
	}

	.hand__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.hand__txt p {
		margin-bottom: 0.75rem;
	}

	.leader {
		padding-bottom: 3.75rem;
	}

	.leader__box {
		padding: 3.75rem 1.5rem;
		flex-direction: column-reverse;
	}

	.leader__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.leader__brief {
		margin-bottom: 1.875rem;
	}

	.faq__action {
		margin-top: 1.875rem;
	}

	.leader .but,
	.faq__action .but {
		width: 10rem;
	}

	.leader__list {
		flex: 0 0 100%;
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
		row-gap: 2.5rem;
		margin-bottom: 2.625rem;
	}

	.leader__item {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
		line-height: 0;
		display: flex;
		align-items: center;
	}

	.leader__item img {
		width: auto;
		height: auto;
		max-width: 60%;
		display: block;
		margin: 0 auto;
	}

	.leader__gallery {
		padding-left: 1.5rem;
		height: 300px;
	}

	.leader__gallery--img {
		width: auto;
		height: 100%;
		margin-right: 1.5rem;
	}

	.leader__gallery--img img {
		width: auto;
		height: 360px;
	}

	.leader__gallery .swiper-slide {
		height: 100%;
		width: auto;
		padding-right: 1.5rem;
	}

	.leader__gallery .swiper-slide img {
		height: 300px;
		width: auto;
	}

	.leader__swipe {
		padding-left: 1.5rem;
		height: 360px;
	}

	.leader__swipe .swiper-slide {
		height: 100%;
		width: auto;
		padding-right: 1.5rem;
	}

	.leader__swipe img {
		height: 360px;
		width: auto;
	}

	.customer {
		padding: 3.75rem 0;
	}

	.customer__txt {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 1.5rem 1.875rem 1.5rem;
	}

	.customer__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.customer__txt p {
		margin-bottom: 0.75rem;
	}

	.customer .swiper-slide {
		padding-right: 1.5rem;
	}

	.customer__gallery {
		padding-left: 1.5rem;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.customer__gallery .gallery__slider,
	.customer__gallery .customerSlider {
		width: 100%;
	}

	.customer__item {
		font-size: 1.25rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 2.625rem 2.625rem 2.625rem 4.6875rem;
		-webkit-border-radius: 1.25rem;
		border-radius: 1.25rem;
		height: 100%;
	}

	.customer__item--note {
		margin-top: 9.375rem;
	}

	.customer__item::before {
		width: 2.6875rem;
		height: 2.3125rem;
		top: 1.1875rem;
		left: 1.1875rem;
	}

	.contact__form {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 3.75rem 1.5rem;
	}

	.contact__form h2 {
		margin-bottom: 0.9375rem;
	}

	.contact__brief {
		margin-bottom: 3.75rem;
	}

	.contact__img {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.contact .form__action {
		padding-top: 1.875rem;
	}

	.contact .but {
		width: 13.25rem;
	}

	.discover {
		padding: 3.75rem 0;
	}

	.discover__txt {
		padding: 0 1.5rem;
		padding-bottom: 1.875rem;
	}

	.discover__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.discover .swiper-slide {
		padding-right: 1.5rem;
	}

	.discover__gallery {
		padding-left: 1.5rem;
	}

	.discover__gallery .gallery__slider,
	.discover__gallery .discoverSlider {
		width: 100%;
	}

	.discover__item {
		padding: 2.5rem;
		-webkit-border-radius: 1.25rem;
		border-radius: 1.25rem;
	}

	.discover__item--img {
		margin-bottom: 1rem;
	}

	.discover__item--img img {
		width: auto;
		height: auto;
		max-height: 18.625rem;
	}

	.discover__item--brief h3 {
		font-size: 2.25rem;
	}

	.discover__item--brief p {
		font-size: 1rem;
	}

	.wheretobuy {
		padding: 3.75rem 0;
	}

	.wheretobuy__box {
		overflow: hidden;
	}

	.wheretobuy__txt {
		padding: 0 1.5rem;
		margin-bottom: 5rem;
	}

	.wheretobuy__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.wheretobuy__item--img {
		width: auto;
		height: 6.375rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		margin-bottom: 2.625rem;
	}

	.wheretobuy__item--img img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
	}

	.wheretobuy__item--brief h3 {
		font-size: 1.25rem;
	}

	.wheretobuy__gallery {
		padding-left: 1.5rem;
	}

	.wheretobuy .swiper {
		overflow: visible;
	}

	.wheretobuy .swiper-slide {
		padding-right: 4rem;
	}

	.faq__box {
		padding-top: 3.75rem;
	}

	.faq__txt {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 1.5rem 1.875rem 1.5rem;
	}

	.faq__txt h2 {
		margin-bottom: 0.9375rem;
	}

	.faq__list {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 1.5rem 1.875rem 1.5rem;
	}

	.faq .item__title {
		padding: 1.125rem 0;
	}

	.faq .item__title h3 {
		font-size: 1.25rem;
		white-space: nowrap;
		max-width: calc(100% - 2rem);
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.faq .item__title .arrow__icon {
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 1rem;
		height: 1rem;
	}

	.faq .item__detail {
		font-size: 1.375rem;
	}

	.faq .item__body {
		padding-bottom: 2.5rem;
	}

	.faq .item__body p {
		margin-bottom: 0.75rem;
	}

	.faq__main {
		width: 100%;
	}

	.faq__main img {
		width: 100%;
		height: auto;
	}
}

@media screen and (orientation: landscape) and (max-width: 960px) {
	.from__group .error {
		font-size: 0.8125rem;
	}

	.banner__txt {
		width: 37.5rem;
		top: 55%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.banner__img {
		height: var(--height, 100vh);
	}

	.banner__img::before {
		display: none;
	}

	.banner__img img {
		width: 100%;
		height: 100%;
		-webkit-object-fit: cover;
		object-fit: cover;
	}

	.essence {
		padding: 4.375rem 3.125rem;
	}

	.banner__full--txt {
		padding: 0 3.125rem 2.5rem 3.125rem;
	}

	.people__box {
		padding: 4.375rem 3.125rem;
	}

	.hand__txt {
		padding: 4.375rem 3.125rem;
	}

	.hand__cate {
		padding: 4.375rem 0;
	}

	.hand .hand__cate--item {
		width: 10rem;
		height: 10rem;
	}

	.hand .hand__cate--item:nth-child(3n + 1) {
		-webkit-transform: translateX(30vw);
		transform: translateX(30vw);
	}

	.hand .hand__cate--item:nth-child(3n + 2) {
		-webkit-transform: translateX(56vw);
		transform: translateX(56vw);
	}

	.hand .hand__cate--item:nth-child(3n + 3) {
		-webkit-transform: translateX(26vw);
		transform: translateX(26vw);
	}

	.hand .hand__cate--item .number {
		font-size: 3.75rem;
	}

	.hand .hand__cate--item h3 {
		font-size: 1.375rem;
	}

	.leader__box {
		padding: 4.375rem 3.125rem;
	}

	.leader__gallery {
		padding-left: 3.125rem;
	}

	.customer {
		padding: 4.375rem 0;
	}

	.customer__txt {
		padding: 0 3.125rem 2.5rem 3.125rem;
	}

	.customer__gallery {
		padding-left: 3.125rem;
	}

	.customer .swiper-slide {
		padding-right: 1.5625rem;
	}

	.contact__form {
		padding: 4.375rem 3.125rem;
	}

	.discover {
		padding: 4.375rem 0;
	}

	.discover__txt {
		padding: 0 3.125rem 2.5rem 3.125rem;
	}

	.discover__gallery {
		padding-left: 3.125rem;
	}

	.discover__gallery .swiper-slide {
		padding-right: 1.5625rem;
	}

	.wheretobuy__txt {
		max-width: 37.5rem;
		margin: 0 auto;
		padding-bottom: 3.75rem;
	}

	.wheretobuy__gallery {
		padding-left: 1.5625rem;
	}

	.faq__box {
		padding-top: 4.375rem;
	}

	.faq__txt {
		padding: 0 3.125rem 2.5rem 3.125rem;
	}

	.faq__list {
		padding: 0 3.125rem 4.375rem 3.125rem;
	}
}

@media screen and (orientation: portrait) and (min-width: 560px) and (max-width: 960px) {
	.hand__cate--item:nth-child(3n + 1) {
		-webkit-transform: translateX(15vw);
		transform: translateX(15vw);
	}

	.hand__cate--item:nth-child(3n + 2) {
		-webkit-transform: translateX(12vw);
		transform: translateX(12vw);
	}

	.hand__cate--item:nth-child(3n + 2) {
		-webkit-transform: translateX(60vw);
		transform: translateX(60vw);
	}
}

.footer {
	background-color: #a3af80;
}

.footer__box {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

.footer__side a,
.footer__nav a,
.footer__social a {
	text-decoration: none;
	color: #1e1e1e;
}

.footer__social {
	display: flex;
}

.footer__social a {
	display: block;
	line-height: 0;
}

.footer__social a img {
	width: 100%;
	height: auto;
}

.footer__slogan {
	font-family: 'Petrona', serif;
}

.footer__nav a {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #1e1e1e;
}

.footer__hotline a {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #1e1e1e;
	text-decoration: none;
}

.footer__hotline .small__hotline a {
	font-weight: 700;
	text-decoration: underline;
}

.footer .logo-scent {
	line-height: 0;
	margin-bottom: 1.25rem;
}

.footer .logo-scent img {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 1024px) {
	.footer {
		padding: 7.5rem 6.875rem;
	}

	.footer__col:nth-child(1) {
		flex: 0 0 38.875rem;
		max-width: 38.875rem;
	}

	.footer__col:nth-child(2) {
		flex: 0 0 17.5rem;
		max-width: 17.5rem;
	}

	.footer__col:nth-child(3) {
		flex: 0 0 17.5rem;
		max-width: 17.5rem;
	}

	.footer__side a {
		font-size: 1.875rem;
	}

	.footer__slogan {
		font-size: 1.4375rem;
		margin-bottom: 2.25rem;
	}

	.footer__hotline {
		margin-bottom: 1.5rem;
	}

	.footer__hotline li {
		margin-bottom: 0.25rem;
	}

	.footer__hotline li a {
		-webkit-transition: color 0.3s ease-in-out;
		transition: color 0.3s ease-in-out;
	}

	.footer__hotline li a:hover {
		color: #f9f8f8;
	}

	.footer__nav li {
		margin-bottom: 0.5rem;
	}

	.footer__nav li a {
		font-size: 1.375rem;
		-webkit-transition: color 0.3s ease-in-out;
		transition: color 0.3s ease-in-out;
	}

	.footer__nav li a:hover {
		color: #f9f8f8;
	}

	.footer__social {
		gap: 0.9375rem;
	}

	.footer__social a {
		flex: 0 0 2.25rem;
		max-width: 2.25rem;
		-webkit-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}

	.footer__social a:hover {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	.footer .logo-scent {
		width: 15.5rem;
	}
}

@media screen and (max-width: 1023px) {
	.footer {
		padding: 3.75rem 1.5rem;
	}

	.footer__col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.footer__col:nth-child(2),
	.footer__col:nth-child(3) {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.footer__col:nth-child(2) {
		padding-right: 0.625rem;
	}

	.footer__col:nth-child(3) {
		padding-left: 0.625rem;
	}

	.footer__side a {
		font-size: 1.875rem;
	}

	.footer__slogan {
		font-size: 1.4375rem;
		margin-bottom: 2.25rem;
	}

	.footer__hotline {
		margin-bottom: 1.5rem;
	}

	.footer__hotline li {
		margin-bottom: 0.375rem;
	}

	.footer__nav li {
		margin-bottom: 0.625rem;
	}

	.footer__nav li a {
		font-size: 1.375rem;
	}

	.footer__social {
		gap: 0.9375rem;
		margin-bottom: 2.5rem;
	}

	.footer__social a {
		flex: 0 0 2.25rem;
		max-width: 2.25rem;
	}

	.footer .logo-scent {
		width: 15.5rem;
	}
}

@media screen and (orientation: landscape) and (max-width: 960px) {
	.footer {
		padding: 4.375rem 3.125rem;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes fadeOutScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes fadeOutScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(1.4);
		transform: scale(1.4);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-150px);
		transform: translateX(-150px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-150px);
		transform: translateX(-150px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(150px);
		transform: translateX(150px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(150px);
		transform: translateX(150px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes morphing {
	0% {
		border-radius: 40% 60% 50% 50%/50% 50% 60% 40%;
	}

	25% {
		border-radius: 45% 55% 60% 40%/40% 60% 50% 55%;
	}

	50% {
		border-radius: 50% 50% 40% 60%/60% 40% 50% 50%;
	}

	75% {
		border-radius: 55% 45% 50% 50%/50% 50% 45% 55%;
	}

	100% {
		border-radius: 40% 60% 50% 50%/50% 50% 60% 40%;
	}
}

@keyframes bubble-anim {
	0% {
		border-radius: 44% 54% 50% 50%/50% 50% 54% 44%;
	}

	25% {
		border-radius: 46% 52% 54% 48%/48% 54% 50% 46%;
	}

	50% {
		border-radius: 48% 50% 44% 54%/54% 44% 50% 48%;
	}

	75% {
		border-radius: 50% 48% 50% 52%/52% 50% 46% 54%;
	}

	100% {
		border-radius: 44% 54% 50% 50%/50% 50% 54% 44%;
	}
}

.hand__cate--item {
	animation: morphing 5s infinite;
}

.banner__img,
.banner__txt h1,
.essence__txt h2,
.essence__brief,
.essence__action,
.essence__img,
.banner__full--img,
.people__img,
.people__img--sub,
.people__txt h2,
.people__brief,
.hand__cate,
.hand__img,
.hand__txt h2,
.hand__brief,
.leader__txt h2,
.leader__brief,
.leader__action,
.leader__item,
.leader__gallery--img,
.banner__full--txt h2,
.banner__full--brief,
.customer__txt h2,
.customer__brief,
.customer__gallery,
.contact__form h2,
.contact__brief,
.from__group,
.form__action,
.contact__img,
.discover__txt h2,
.discover__brief,
.discover__gallery,
.wheretobuy__txt h2,
.wheretobuy__brief,
.wheretobuy__gallery,
.faq__txt h2,
.faq__brief,
.faq__item,
.faq__main,
.footer {
	opacity: 0;
}

.banner__img.in-view,
.hand__cate.in-view,
.leader__gallery--img.in-view,
.contact__img.in-view,
.faq__main.in-view,
.footer.in-view {
	-webkit-animation: fadeIn 0.5s forwards;
	animation: fadeIn 0.5s forwards;
}

.banner__txt h1.in-view,
.essence__txt h2.in-view,
.essence__brief.in-view,
.essence__action.in-view,
.people__txt h2.in-view,
.people__brief.in-view,
.hand__txt h2.in-view,
.hand__brief.in-view,
.leader__txt h2.in-view,
.leader__brief.in-view,
.leader__action.in-view,
.banner__full--txt h2.in-view,
.banner__full--brief.in-view,
.customer__txt h2.in-view,
.customer__brief.in-view,
.contact__form h2.in-view,
.contact__brief.in-view,
.discover__txt h2.in-view,
.discover__brief.in-view,
.wheretobuy__txt h2.in-view,
.wheretobuy__brief.in-view,
.faq__txt h2.in-view,
.faq__brief.in-view {
	-webkit-animation: fadeIn 0.8s forwards 0.3s;
	animation: fadeIn 0.8s forwards 0.3s;
}

.from__group.in-view,
.form__action.in-view {
	-webkit-animation: fadeInUp 1.2s forwards;
	animation: fadeInUp 1.2s forwards;
}

.essence__img.in-view,
.people__img--sub.in-view,
.hand__img.in-view,
.customer__gallery.in-view,
.discover__gallery.in-view,
.faq__item.in-view {
	-webkit-animation: fadeInLeft 1.2s forwards;
	animation: fadeInLeft 1.2s forwards;
}

.banner__full--img.in-view,
.leader__item.in-view,
.wheretobuy__gallery.in-view {
	-webkit-animation: fadeOutScale 1.2s forwards;
	animation: fadeOutScale 1.2s forwards;
}

.people__img.in-view {
	-webkit-animation: fadeInRight 1.2s forwards;
	animation: fadeInRight 1.2s forwards;
}

.hidden {
	display: none;
}

span.avoidwrap {
	display: inline-block;
}
