:root {
	--white: #ffffff;
	--nav-height: 115px;
	--nav-height-mobile: 105px;
	--a-text-color: #ff2a00;
}

::-moz-selection {
	background-color: #ff2a00;
	color: #fff
}

::selection {
	background-color: #ff2a00;
	color: #fff
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	display: block;
	background-color: var(--bg-body-color);
	font-family: Crimson Text, serif;
	font-size: 10px;
	color: #ff2a00;
	width: 100%;
	/* Content is empty,this attribute is required. */
	/* height: 100%; */
	min-height: 100vh;
	position: relative;
	-webkit-overflow-scrolling: touch;
	/* overflow-x: hidden; */
}

ul,
li {
	list-style: none;
}

ul,
dl,
p {
	margin-bottom: 0;
}

a,
a:visited,
a:link,
a:hover {
	text-decoration: none;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

.container {
	padding: 0 1.5rem;
}

.lazy-load {
	opacity: 0;
	transition: opacity .4s;
}

.lazy-load.lazy-loaded {
	opacity: 1;
}

.logo {
	/* background-color: var(--white); */
	display: flex;
	justify-content: center;
	padding: 3rem 4rem 0;
	margin-bottom: 1.5rem;
	transition: border .3s, transform .3s;
	z-index: 100;
}

.logo a {
	display: block;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
	transition-duration: .3s
}

.logo a:hover{
	opacity:.5
}

.logo .logo-icon {
	width: 20.2rem;
}

.nav {
	display: flex;
	justify-content: center;
}

.nav a {
	display: block;
	font-size: 1.6rem;
	line-height: 1.2;
	color: rgba(255, 42, 0, 1);
	text-decoration: underline;
}

.nav a:hover {
	text-decoration: none;
}

.nav a:not(:last-child) {
	margin-right: 15px;
}

.grid-products {
	--gap-distance: 1.5rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-gap: 3rem var(--gap-distance);
	padding: 5rem 0 15rem;
}

.grid-three-col{
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item-grid-product {
	display: flex;
	flex-direction: column;
}

.item-grid-product .thumb {
	position: relative;
	display: block;
	padding-bottom: 100%;
	width: 100%;
	margin-bottom: 3rem;
}

.item-grid-product .thumb .thumb-inner {
	position: absolute;
	width: 100%;
	height: 100%;
}

.item-grid-product .thumb .thumb-inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.item-grid-product .title {
	font-size: 2rem;
	line-height: 1.3;
	color: var(--a-text-color);
	text-align: center;
	text-decoration: underline;
	margin-bottom: 3rem;
}

.home-title {
	font-size: 2rem;
	line-height: 1.3;
	text-align: center;
	color: var(--a-text-color);
	margin-bottom: 5rem;
}

.grid-archives {
	--gap-distance: 1.5rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-gap: 3rem var(--gap-distance);
	padding: 5rem 0 15rem;
}

.item-grid-archive {
	display: flex;
	flex-direction: column;
}

.item-grid-archive .thumb {
	position: relative;
	display: block;
	padding-bottom: 100%;
	width: 100%;
	margin-bottom: 3rem;
}

.item-grid-archive .thumb .thumb-inner {
	position: absolute;
	width: 100%;
	height: 100%;
}

.item-grid-archive .thumb .thumb-inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.item-grid-archive .title {
	font-size: 2rem;
	line-height: 1.3;
	color: var(--a-text-color);
	text-align: center;
	margin-bottom: 3rem;
}

/* splash-screen */
.splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	background-color: rgba(255, 255, 255, 1);
	width: 100%;
	height: 100%;
	padding: 5rem;
	transition: transform 1s;
	pointer-events: auto;
	cursor: pointer;
	z-index: 500;
}

.splash-screen.active {
	display: flex;
}

.splash-screen.hide {
	transform: translateY(-100%);
	pointer-events: none;
}

.splash-inner {
	width: 100%;
	height: 100%;
}

.splash-inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* full-width-bg */
.full-w-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.rock {
	position: absolute;
	pointer-events: none !important;
	top: 0;
	left: 0;
	z-index: -10;
	will-change: transform;
}

.rock-1 {
	width: 30vw;
	-webkit-animation: fly 180s linear infinite;
	animation: fly 180s linear infinite;
	transform: translateX(-120%) translateY(-120%) rotate(0);
}

.rock-2 {
	width: 25vw;
	-webkit-animation: fly2 180s linear infinite;
	animation: fly2 180s linear infinite;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	transform: translateX(130vw) translateY(0) rotate(180deg);
}

.rock-3 {
	width: 21vw;
	top: 50vh;
	-webkit-animation: fly3 200s linear infinite;
	animation: fly3 200s linear infinite;
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
	transform: translateX(20vw) translateY(-100vh) rotate(180deg);
}

@-webkit-keyframes fly {
	0% {
		display: block;
		transform: translateX(-100%) translateY(50vh) rotate(180deg)
	}

	25% {
		transform: translateX(130vw) translateY(40vh) rotate(-180deg)
	}

	50% {
		transform: translateX(-200%) translateY(80vh) rotate(0deg)
	}

	75% {
		transform: translateX(130vw) translateY(30vh) rotate(180deg)
	}

	to {
		transform: translateX(-200%) translateY(10vh) rotate(-180deg)
	}
}

@keyframes fly {
	0% {
		display: block;
		transform: translateX(-100%) translateY(50vh) rotate(180deg)
	}

	25% {
		transform: translateX(130vw) translateY(40vh) rotate(-180deg)
	}

	50% {
		transform: translateX(-200%) translateY(80vh) rotate(0deg)
	}

	75% {
		transform: translateX(130vw) translateY(30vh) rotate(180deg)
	}

	to {
		transform: translateX(-200%) translateY(10vh) rotate(-180deg)
	}
}

@-webkit-keyframes fly2 {
	0% {
		display: block;
		transform: translateX(130vw) translateY(50vh) rotate(180deg)
	}

	25% {
		transform: translateX(-200%) translateY(-20vh) rotate(-180deg)
	}

	50% {
		transform: translateX(130vw) translateY(80vh) rotate(0deg)
	}

	75% {
		transform: translateX(-200%) translateY(0) rotate(-180deg)
	}

	to {
		transform: translateX(130vw) translateY(80vh) rotate(0deg)
	}
}

@keyframes fly2 {
	0% {
		display: block;
		transform: translateX(130vw) translateY(50vh) rotate(180deg)
	}

	25% {
		transform: translateX(-200%) translateY(-20vh) rotate(-180deg)
	}

	50% {
		transform: translateX(130vw) translateY(80vh) rotate(0deg)
	}

	75% {
		transform: translateX(-200%) translateY(0) rotate(-180deg)
	}

	to {
		transform: translateX(130vw) translateY(80vh) rotate(0deg)
	}
}

@-webkit-keyframes fly3 {
	0% {
		display: block;
		transform: translateX(20vw) translateY(-100vh) rotate(180deg)
	}

	25% {
		transform: translateX(50vw) translateY(90vh) rotate(-180deg)
	}

	50% {
		transform: translateX(-200%) translateY(60vh) rotate(0deg)
	}

	75% {
		transform: translateX(130vw) translateY(-20vh) rotate(180deg)
	}

	to {
		transform: translateX(-200%) translateY(70vh) rotate(-180deg)
	}
}

@keyframes fly3 {
	0% {
		display: block;
		transform: translateX(20vw) translateY(-100vh) rotate(180deg)
	}

	25% {
		transform: translateX(50vw) translateY(90vh) rotate(-180deg)
	}

	50% {
		transform: translateX(-200%) translateY(60vh) rotate(0deg)
	}

	75% {
		transform: translateX(130vw) translateY(-20vh) rotate(180deg)
	}

	to {
		transform: translateX(-200%) translateY(70vh) rotate(-180deg)
	}
}