.header-body {
	z-index: 1;
}
.hero {
	width: 100%;
	overflow: hidden;
	position: fixed;
	height: calc(100vh - 61px);
	margin-top: -88px;
	transition: height ease-in-out .4s;
}
.hero.scrollHero {
	height: 100vh;
	margin-top: 0;
}
.hero .bgCover {
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	opacity: 0;
	transition: opacity ease-in-out .5s;
	z-index: 1;
}
.hero .bg {
	position: absolute;
	width: 100%;
	height: 100%;
/*
	top:-5%;
	left: -5%;
*/
	opacity: 0;
	z-index: 0;
	background: url(../img/hero.jpg) center center;
	background-size: cover;
/*
	-ms-filter: blur(10%);
	filter: blur(10%);
*/
	transition: opacity ease-in-out .5s,filter ease-in-out .2s,-ms-filter ease-in-out .2s;
}
.hero .bg.scrollBg {
/*
	-ms-filter: blur(20px);
	filter: blur(20px);
*/
	opacity: .9 !important;
}
.hero .logoK {
	display: block;
	width: 260px;
	height: 48.38px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,0);
	opacity: 0;
	transition: transform ease-in-out .6s, opacity ease-in-out .6s;
	z-index: 1:
}
.hero .logoW {
	width: 260px;
	height: 48.38px;
	position: absolute;
	top: 120px;
	right: 5%;
	opacity: 0;
	transition: opacity ease-in-out .6s, top ease-in-out .6s;
	z-index: 1;
}
.hero .logoW.scrollLogo {
	top: -50px !important;
}
.scrollCont {
  position: absolute;
  z-index: 1;
	bottom: 0;
	left: 50%;
	transform: translate(0,-50%);
}
.scroll {
  position: relative;
  width: 1.3em;
  height: 3em;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 1em;
  display: block;
}
.scroll::before {
  content: 'scroll';
  position: absolute;
  top: -1.8em;
  left: -.8em;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.scroll span {
  position: absolute;
  top: 15%;
  left: .38em;
  display: block;
  width: .25em;
  height: .3em;
  border-radius: 50%;
  background: #F5F5F5;
  animation: 2s small-dot-move infinite running ease-out;
}
@keyframes small-dot-move {
  from {
    top: 15%;
    opacity: .8;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 80%;
    opacity: .3;
  }
}
.sec1 {
/* 	background: #d6d3ce; */
/* 	background: #f5f1eb; */
	padding: 6% 6% 200px;
/* 	margin-top: 100vh; */
}
.sectionCont {
    position: relative;
    z-index: 1;
    transition: opacity ease-in-out .6s;
    opacity: 0;
    padding-top: 50vh;
}
.sec1 .txtCont {
	display: flex;
}
.sec1 .txtCont .img {
	width: 50%;
}
.sec1 .txtCont .img img {
	width: 120%;
}
.sec1 .txt {
	width: 40%;
	font-size: 14px;
	line-height: 2.8em;
	max-width: 600px;
	margin: 8% auto;
/* 	text-shadow: 0 0 8px #f5f1eb; */
	text-shadow: 0 0 10px #6e95a9;
	font-family: a-otf-gothic-bbb-pr6n, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.2em;
	color: #fff;
}
.sec1 .txt strong {
	display: block;
	font-size: 24px;
	line-height: 3rem;
	margin-bottom: 8%;
	font-weight: 600;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.2em;
}
.sec1 .itemList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-left: 10%;
	width: 90%;
	margin-top: -20%;
}
.sec1 .itemList li {
	width: 49.4%;
	text-align: center;
	background: #fff;
	margin-bottom: 1.2%;
	display: block;
	position: relative;
}
.sec1 .itemList li:nth-child(odd) {
	bottom: -100px;
}
.itemList li a {
	overflow: hidden;
	display: block;
}
.itemList li a:hover {
	opacity: 1;
}
.itemList li a img {
	width: 90%;
	padding: 5%;
	-webkit-transform: scale(1);
    transform: scale(1);
    transition: .5s;
}
.itemList li a:hover img {
    transform: scale(1.05);
}
.sec2 {
	padding: 3.5% 2%;
	background: rgba(245, 241, 234, 0.8);
}
.sec2 .itemList {
	display: flex;
	justify-content: space-between;
}
.sec2 .itemList li {
	width: 32.8%;
	display: block;
	text-align: center;
	background: #fff;
}
.itemList li img {
	width: 94%;
	padding: 3%;
}
@media screen and (max-width: 1200px) {
	.sec1 .itemList {
		margin-top: -8%;
	}
}
@media screen and (max-width: 1000px) {
	.sec1 .itemList {
		margin-top: 4%;
	}
}
@media screen and (max-width: 960px) {
	.sec1 .txt br {
		display: none;
	}
}
.footer {
	position: relative;
	z-index: 1;
}