@import url("typo.css");
@import url("navigation.css");
@import url("img.css");
@import url("btn.css");
:root {
  /*Setting Color*/
  --white-color: #D4CFC5;
  --black-color: #171610;
  --gray-color: #515151;
  --brown-color: #AE7258;
  /*Setting Font*/
  --little-text: 0.85rem;
  --regular-text: 1rem;
  --medium-text: 2rem;
  --big-text: 6rem;
  /*Setting Space*/
  --little-space: 0.75rem;
  --regular-space: 1rem;
  --medium-space: 5rem;
  --big-space: 10rem;
  /*Setting Btn*/
  --btn-space: 0.5rem 1.25rem;
  --btn-space-little: 0.25rem 0.75rem;
  /*Setting Radius*/
  --btn-radius: 3px;
  --regular-radius: 3px;
  --medium-radius: 10px;
  --big-radius: 30px;
  /*Setting Shadow*/
  --box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);
}
html, body {
  padding: 0px;
  margin: 0px;
  color: var(--gray-color);
  background: var(--white-color);
  font-family: "omnes-pro";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}
* {
  outline: none !important;
  box-sizing: border-box !important;
}
/**utility**/
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
div:last-child {
  margin-bottom: 0 !important;
}
ul:last-child {
  margin-bottom: 0 !important;
}
li:last-child {
  margin-bottom: 0 !important;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}
.d-block {
  display: block !important;
  width: 100%;
}
.d-flex {
  display: flex !important;
}
.d-none {
	display: none !important;
}
.flex-center {
  align-items: center !important;
}
.flex-end {
  align-items: flex-end !important;
}
.justify-between {
  justify-content: space-between;
}
.over-hidden {
  overflow: hidden !important;
}
/*margin*/
.nomargin {
  margin: 0 !important;
}
.m-top {
  margin-top: var(--regular-space) !important;
}
.m-top-xs {
  margin-top: var(--little-space) !important;
}
.m-top-md {
  margin-top: var(--medium-space) !important;
}
.m-top-xl {
  margin-top: var(--big-space) !important;
}
.m-top-xxl {
  margin-top: calc(var(--big-space) * 2) !important;
}
.m-bottom {
  margin-bottom: var(--regular-space) !important;
}
.m-bottom-xs {
  margin-bottom: var(--little-space) !important;
}
.m-bottom-md {
  margin-bottom: var(--medium-space) !important;
}
.m-bottom-xl {
  margin-bottom: var(--big-space) !important;
}
.m-left {
  margin-left: var(--regular-space) !important;
}
.m-right {
  margin-right: var(--regular-space) !important;
}
/*padding*/
.nopadding {
  padding: 0 !important;
}
.p-top {
  padding-top: var(--regular-space) !important;
}
.p-top-xs {
  padding-top: var(--little-space) !important;
}
.p-top-md {
  padding-top: var(--medium-space) !important;
}
.p-top-xl {
  padding-top: var(--big-space) !important;
}
.p-top-xxl {
  padding-top: calc(var(--big-space) * 2) !important;
}
.p-bottom {
  padding-bottom: var(--regular-space) !important;
}
.p-bottom-xs {
  padding-bottom: var(--little-space) !important;
}
.p-bottom-md {
  padding-bottom: var(--medium-space) !important;
}
.p-bottom-xl {
  padding-bottom: var(--big-space) !important;
}
.p-left {
  padding-left: var(--regular-space) !important;
}
.p-right {
  padding-right: var(--regular-space) !important;
}
/*color*/
.bg-black {
  background-color: var(--black-color);
  color: var(--white-color);
}
.brown-color {
  color: var(--brown-color);
}
hr {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  border: 0;
  background-color: var(--black-color);
  margin: 0 !important;
}
/**end utility**/
/**grid setting**/
section {
  position: relative;
  margin-bottom: var(--big-space);
  z-index: 1;
}
section:last-of-type {
  margin-bottom: 0;
}
section.section-first {
  padding-top: calc(var(--big-space) * 3);
}
section.section-pad {
  padding-top: var(--big-space);
  padding-bottom: var(--big-space);
}
.container-main {
  position: relative;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.container {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: var(--big-space);
}
.container-mini {
  width: 1100px;
  max-width: 90%;
}
.box {
  position: relative;
  margin-bottom: var(--big-space);
}
.row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: var(--big-space);
}
.col-20 {
  width: 19.5%;
}
.col-30 {
  width: 32%;
}
.col-40 {
  width: 39.5%;
}
.col-25 {
  width: 24.5%;
}
.col-50 {
  width: 49.5%;
}
.col-75 {
  width: 74.5%;
}
.col-100 {
  width: 100%;
}
.col-auto {
  width: auto;
}
.col-pad {
  padding: 0 15%;
}
.container > [class*=col-], .row > [class*=col-] {
  display: block;
  /*background-color: rgba(0,0,0,0.5);*/
}
/**end grid setting**/
/**page**/
section.section-hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.claim-hero {
  width: 100%;
  height: 15vh;
  height: 15svh;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.imglogo {
  width: 100%;
}
.linemask {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--big-space);
  width: 70%;
  max-width: 450px;
}
.linemask img {
  width: 100%;
}
.mask {
  position: absolute;
  width: 110%;
  height: 140%;
  background-color: var(--white-color);
  background: linear-gradient(0deg, rgba(212, 207, 197, 1) 0%, rgba(212, 207, 197, 1) 75%, rgba(212, 207, 197, 0) 100%);
  bottom: -5%;
  left: -5%;
  z-index: 2;
}
.container-grid {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.anime-grid {
  display: grid;
  position: absolute;
  width:150%;
  height:150%;
  top:-25%;
  left: -25%;
  gap: 2rem 4rem;
  grid-template-columns: auto auto auto;
  overflow: hidden;
}
.grid-item {
  overflow: hidden;
}
.container-panel {
  border-bottom: 1px solid var(--gray-color);
}
.panel {
  padding-top: 30px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-wrap: wrap;
}
.panel-title {
  width: 100%;
  border-top: 1px solid var(--gray-color);
  padding: calc(var(--medium-space) * 0.5) 0;
  margin-bottom: 0 !important;
  background-color: var(--white-color);
}
.panel-content {
  padding: 0 0 var(--medium-space) 0;
  background-color: var(--white-color);
}
.panel-img {
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.panel-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: var(--medium-space);
  height: 100%;
}
/**end page**/
footer {
  /*margin-top: calc(100vh);*/
  padding: var(--big-space) 0 0 0;
  background-image: url("../img/def/texture-footer.jpg");
  background-size: cover;
  background-color: var(--black-color);
  color: rgba(255, 255, 255, 0.5);
}
.footer-row:first-child {
  margin-bottom: calc(var(--big-space) * 2);
}
.footer-row:last-child {
  margin-top: var(--medium-space);
  padding-top: calc(var(--regular-space) * 2);
  padding-bottom: calc(var(--regular-space) * 2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--little-text);
}
/*preloader*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 100%;
  z-index: 999000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s, transform 1s;
  pointer-events: none;
}
.is-complete-animation .preloader {
  transition-delay: 0s;
  opacity: 0;
}
.preloader .pre-logo {
  width: 600px;
  height: 100%;
  max-width: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/logo.svg");
  transition: opacity 0.5s, transform 1s;
}
.is-complete .pre-logo {
  transition-delay: 0;
  transform: translate(0, -50px);
  opacity: 0;
}
/*end preloader*/
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/def/noise.jpg");
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 4;
}
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/