._b-index{
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	/* gap: 40px; */
}



/* Parallax */
._b-index > .parallax{
	width: 100%;
	height: 150px;
	position: relative;
	margin: 40px 0;
}

._b-index > .parallax::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	background-color: rgba(var(--bgrey-40-rgb), 0.2);
	box-shadow: inset 0 0 30px #000;
}

._b-index > .parallax > div{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	height: 100%;
	position: absolute;
	z-index: 2;
	padding: 0 var(--page-hor-padding);
	background: radial-gradient(ellipse at 50%, rgba(var(--bgrey-20-rgb),0.8) 10%, rgba(var(--bgrey-20-rgb),0.6) 25%, transparent 70%);
	align-items: center;
	justify-content: center;
	text-align: center;
}

._b-index > .parallax > div > h2{
	margin: 0;
	text-transform: uppercase;
	text-shadow: 0 0 6px #000;
	line-height: normal;
	font-size: 2.6em;
	color: #fff;
}

._b-index > .parallax > img{
	filter: saturate(0);
}



/* Description */
._b-index > .description{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	padding: 0 var(--page-hor-padding);
	justify-content: center;
	color: var(--bgrey-40);
}

._b-index > .description > div{
	max-width: 1400px;
}

._b-index > .description > div .__list{
	--gap: 15px;
	--color: var(--bgrey-120);
}

._b-index > .description > div img{
	max-width: 500px;
	width: 100%;
}



/* Production */
._b-index > .production{
	display: grid;
	width: calc(100% - var(--page-hor-padding) * 2);
	padding: 0 var(--page-hor-padding);
	grid-template-columns: 1fr 1fr;
	justify-items: center;
	gap: 30px;
	font-size: 16px;
}

._b-index > .production > div{
	display: flex;
	max-width: 1000px;
	width: 100%;
	position: relative;
	flex-direction: column;
}

._b-index > .production > div > .header{
	display: grid;
	min-height: 48px;
	position: relative;
	z-index: 2;
	padding: 2px 20px;
	background-color: var(--green);
	border-radius: var(--r-1) var(--r-1) 0 0;
	border-bottom: 2px solid #fff;
	box-shadow: 0 2px 6px rgb(var(--bgrey-20-rgb),0.9);
	grid-template-columns: 1fr auto 2fr;
	align-items: center;
	gap: 25px;
	text-decoration: none;
	color: #fff;

	background: linear-gradient(90deg, #000, var(--green));
}
._b-index > .production > div > .header > h2{
	margin: 0;
	text-align: right;
	font-weight: 300;
	font-size: 1.8em;
}
._b-index > .production > div > .header > .icon{
	display: flex;
	width: 70px;
	position: relative;
	align-items: center;
	justify-content: center;
}
._b-index > .production > div > .header > .icon > span{
	width: 70px;
	height: 70px;
	position: absolute;
	z-index: 0;
	background-color: var(--green);
	box-shadow: 0 0 4px var(--grey-90);
	border-radius: var(--r-0);

	background-color: #fff;
}
._b-index > .production > div > .header > .icon > img{
	display: flex;
	width: 50px;
	position: absolute;
	z-index: 1;
	transition: opacity 200ms ease-out;
	align-items: center;
	justify-content: center;
}
._b-index > .production > div > .header > .icon > img:nth-of-type(2){
	opacity: 0;
}

._b-index > .production > div > .header > .description{
	display: flex;
	align-items: center;
	font-style: italic;
	font-size: 1.1em;
	color: var(--grey-20);
}

._b-index > .production > div > .body{
	height: 100%;
	position: relative;
	box-shadow: 0 0 5px var(--bgrey);
	border-radius: 0 0 var(--r-1) var(--r-1);
	overflow: hidden;
}

._b-index > .production > div > .body > .bg-img{
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	align-items: center;
	justify-content: center;
}
._b-index > .production > div > .body > .bg-img > img{
	display: flex;
	width: 100%;
	filter: opacity(0.15) blur(2px) saturate(0);
}

._b-index > .production > div > .body > .content{
	position: relative;
	z-index: 1;
	padding: 20px 20px 5px 20px;
	font-weight: 500;
}

._b-index > .production > div > .body > .content ol{
	list-style: url("/resources/images/icons/8.svg");
}

._b-index > .production > div > .body > .content ol > li::marker{
	font-size: 1.5em;
}

@keyframes _b-index_production_icon {
	0%{
		scale: 1.3;
	}

	20%{
		scale: 1.1;
		transform: rotate(0deg);
	}

	40%{
		background-color: #fff;
	}

	100%{
		scale: 1.1;
		transform: rotate(225deg);
		background-color: #fff;
	}
}

._b-index > .production > div > .header:hover > .icon > span{
	animation: 600ms linear forwards _b-index_production_icon;
}

._b-index > .production > div > .header:hover > .icon > img:nth-of-type(1){
	opacity: 0;
}
._b-index > .production > div > .header:hover > .icon > img:nth-of-type(2){
	opacity: 1;
}



/* About */
._b-index > .about{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	padding: 0 var(--page-hor-padding);
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

._b-index > .about > div{
	--width: 300px;
	--gap: 5px;

	display: flex;
	max-width: 1400px;
	width: 100%;
	justify-content: space-between;
	gap: 20px;
}

._b-index > .about > div.right{
	flex-direction: row-reverse;
}

._b-index > .about > div > .imgs{
	display: flex;
	min-width: calc((var(--width) + var(--gap)) * 2 - var(--gap));
	max-width: calc((var(--width) + var(--gap)) * 2 - var(--gap));
	align-self: start;
	border-radius: var(--r-1);
	overflow: hidden;
	flex-wrap: wrap;
	gap: 5px;
}

._b-index > .about > div > .imgs > div{
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

._b-index > .about > div > .imgs > div > img{
	width: var(--width);
}

._b-index > .about > div > .imgs > div > div{
	display: flex;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	position: absolute;
	padding: 10px;
	background-color: rgba(var(--green-rgb),0.8);
	pointer-events: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	
	transform: translate3d(-100%, 0, 0);
}


._b-index > .about > div > .text{
	display: grid;
	grid-template-columns: auto;
	/* grid-template-rows: auto 1fr; */
	grid-template-rows: 1fr;
	color: var(--bgrey-40);
}

._b-index > .about > div > .text > div{
	display: flex;
	/* margin-top: 10px; */
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
}

._b-index > .about > div > .text > div > div{
	display: flex;
	min-height: 44px;
	padding: 4px 10px;
	background-color: #fff;
	box-shadow: 0 0 5px var(--bgrey);
	border-radius: var(--r-1);
	align-items: start;
	gap: 20px;
}

._b-index > .about > div > .text > div > div:hover{
	background-color: var(--green-5);
}

._b-index > .about > div > .text > div > div > img{
	width: 44px;
	height: auto;
}