@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --font-primary: "PP Neue Montreal", sans-serif;
  --font-weight-normal: 500;
  --font-weight-bold: 800;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-stiff: -0.04em;
  --pcolor:#111;
  --mcolor:#eee;
  --ptable: rgba(255,255,255,.2);
}

.dark {
  --mcolor:#222222;
  --pcolor:white;
  --ptable: rgba(0,0,0,.2);
}

body {
  -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
  margin: 0;
  width: 100vw;
  background: var(--pcolor);
  color: var(--mcolor);
  overflow-x: hidden;
  font-family: var(--font-primary);
  min-height: 100vh;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: clamp(4rem, 4vw, 4rem);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-stiff);
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-stiff);
  line-height: 1;
  text-align: center;
}

b {
  font-weight: var(--font-weight-normal);
}

p {
  font-size: clamp(1.4rem, 1.4vw, 4rem);
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

span {
  font-size: clamp(1.6rem, 1.6vw, 4rem);
  line-height: 1.1;
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-tight);
}

main {
  width: 100vw;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.button-line {
  position: fixed;
  top: 2rem;
  right: 1.4rem;
  display: flex;
  flex-direction: row-reverse;
  gap: .6rem;
  z-index: 999;
}

.btn, #runTranslate {
  cursor: pointer;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10em);
  -webkit-backdrop-filter: blur(10em);
  color: var(--mcolor);
  font-size: clamp(1rem, 1vw, 4rem);
  font-weight: var(--font-weight-normal);
  letter-spacing: normal;
  padding: 4px 8px;
  border-radius: 24px;
  font-weight: 500;
  cursor: pointer;
}

#translateInterface {
  display: none;
}

.goog-te-gadget {
  color: transparent !important;
}

.heading {
  font-size: clamp(3.125rem, 3.464vw + 2.229rem, 5rem);
  line-height: 1;
  margin: 5rem 0;
  text-align: center;
  position: absolute;
  left: 50%;
  margin: 0;
  top: 50%;
  transform: translate3d(-50%, -50%, -2000px);
  z-index: 6;
}

.icon-wrap {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  position: relative;
  background-color: var(--mcolor);
  overflow: clip;
  box-shadow:0 20px 40px -10px rgba(0,0,0,0.5);
  margin: 0 auto 4vh auto;
}

.icon-wrap img {
  padding: 11%;
  width: 100%;
  height: auto;
  mix-blend-mode: difference;
}

.text-center {
  margin: 0 10rem;
}

@media screen and (max-width:767px) {
  .text-center {
    margin: 0 2rem;
  }
}

.zoom-container {
  height: 100dvh;
  overflow: hidden;
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
}

.zoom-item {
  position: absolute;
  transform-origin: center center;
  opacity: .8;
}
  
.zoom-item[data-layer="3"] {
  z-index: 3;
}

.zoom-item[data-layer="2"] {
  z-index: 2;
}

.zoom-item[data-layer="1"] {
  z-index: 1;
}

.zoom-item:nth-child(2) {
  left: 15vw;
  top: 21%;
  width: 11.5vw;
}

.zoom-item:nth-child(3) {
  left: 29%;
  top: 15%;
  width: 9.2vw;
}

.zoom-item:nth-child(4) {
  left: 36%;
  top: 3%;
  width: 11.5vw;
}

.zoom-item:nth-child(5) {
  right: 30%;
  top: 11%;
  width: 7.6vw;
}

.zoom-item:nth-child(6) {
  bottom: auto;
  right: 7%;
  top: 28%;
  width: 13.2vw;
}

.zoom-item:nth-child(7) {
  bottom: 19%;
  right: 4.3%;
  width: 8vw;
  z-index: 5;
}

.zoom-item:nth-child(8) {
  bottom: 10%;
  left: 14%;
  width: 13vw;
}

.zoom-item:nth-child(9) {
  bottom: 18%;
  left: 29%;
  width: 7vw;
}

.zoom-item:nth-child(10) {
  bottom: 36%;
  left: 7.5%;
  top: auto;
  width: 7vw;
}

.zoom-item:nth-child(11) {
  bottom: 5.5%;
  right: 15%;
  width: 15vw;
}

.zoom-item:nth-child(12) {
  bottom: 2%;
  left: auto;
  right: 38%;
  width: 8.3vw;
}

.zoom-item:nth-child(13) {
  right: 4%;
  top: 5%;
  width: 6.1vw;
}

.zoom-item:not(.heading) {
  max-height: 300px;
  max-width: 300px;
}

.zoom-item img {
  width: 100%;
}

@media screen and (max-width:767px) {
  .zoom-item img {
    scale: 2.1;
  }
}

.section-stick {
  margin-top: 20vh;
  width: 100vw;
  height: 50vh;
}

.marquee {
	overflow-x: hidden;
	width: 100vw;
}

.marquee-inner {
	width: 100vw;
	display: flex;
	align-items: center;
	gap: 1vw;
	padding: 0;
	will-change: transform;
}

.marquee-inner img {
	height: 100%;
	flex-shrink: 0;
	width: 20vw;
}

.features {
  margin-top: 10vh;
  width: 100vw;
}

.col, .textDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rrr {
  margin-right: 1rem;
}

.textDiv {
  transition: scale 150ms ease-in-out 0s;
}

.sub {
  width: 40vw;
  text-align: center;
  margin: 0 auto 10vh 0;
} 

.small {
  font-size: clamp(1.2rem, 1.2vw, 4rem);
  line-height: 1.4;
  font-weight: var(--font-weight-normal);
  letter-spacing: normal;
}

@media screen and (max-width: 999px) {
  .sub {
    width: 80vw;
    margin: 0 auto;
  }
}

.card {
  height: 40vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.grid-container {
  margin-top: 10vh;
  margin-bottom: 25vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 122px 156px 35px 237px 1fr;
  grid-template-rows: 1fr 78px 183px 35px 64px 92px 1fr;
  gap: 0;
  grid-template-areas: 
      ". . . . . ." 
      ". . . . rectangle-2 ." 
      ". rectangle-1 rectangle-1 . rectangle-2 ." 
      ". . . . rectangle-2 ." 
      ". . rectangle-3 . rectangle-2 ." 
      ". . rectangle-3 . . ." 
      ". . . . . .";
}

@media (max-width: 767px) {
  .grid-container {
    scale: .4;
    margin: -4vh 0 -4vh -8vw;
  }
}

.rectangle-1 {
  grid-area: rectangle-1;
}

.rectangle-2 {
  grid-area: rectangle-2;
}

.rectangle-3 {
  grid-area: rectangle-3;
}

.reveal-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.reveal-box__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reveal-box__content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reveal-box__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  opacity: 1;
}

.rectangle-1 .reveal-box.animate .reveal-box__inner {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0s both slide-in-right;
}

.rectangle-1 .reveal-box.animate .reveal-box__content {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0s both slide-in-left;
}

.rectangle-2 .reveal-box.animate .reveal-box__inner {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.5s both slide-in-left;
}

.rectangle-2 .reveal-box.animate .reveal-box__content {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.5s both slide-in-right-50;
}

.rectangle-2 .reveal-box.animate .reveal-box__image {
  animation: 1.5s cubic-bezier(0.76, 0, 0.24, 1) 0.8s both scale-in-down;
}

.rectangle-3 .reveal-box.animate {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 1s both scale-in-up;
}

.rectangle-3 .reveal-box.animate .reveal-box__inner {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 1s both fade-in;
}

.rectangle-3 .reveal-box.animate .reveal-box__image {
  animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 1s both scale-in-down-2;
}

@keyframes slide-in-right {
  0% {
      transform: translate3D(-100%, 0, 0);
  }
  100% {
      transform: translate3D(0, 0, 0);
  }
}

@keyframes slide-in-right-50 {
  0% {
      transform: translate3D(-50%, 0, 0);
  }
  100% {
      transform: translate3D(0, 0, 0);
  }
}

@keyframes slide-in-left {
  0% {
      transform: translate3D(100%, 0, 0);
  }
  100% {
      transform: translate3D(0, 0, 0);
  }
}

@keyframes scale-in-down {
  0% {
      transform: scale(1.3);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes scale-in-down-2 {
  0% {
      transform: scale(1.5);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes scale-in-up {
  0% {
      transform: scale(0.7);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes fade-in {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.scheme-cards {
  margin: 2vh 125vw 6vh 25vw;
  width: 50vw;
}

.scheme-card p {
  text-align: left;
  margin-top: 4vh;
  font-size: clamp(1.1rem, 1vw, 4rem);
  line-height: 1.4;
  font-weight: var(--font-weight-normal);
  letter-spacing: normal;
}

.scheme-card-main {
  font-size: clamp(1.6rem, 1.6vw, 4rem);
  line-height: 1;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

@media screen and (max-width:1000px) {
  .scheme-cards {
    margin: 2vh 2rem 6vh 2rem;
    width: 90vw;
  }
  .header {   
    width: 100vw;  
    margin: 8vh 0 6vh 0;
  }
}

.header {   
  width: 100vw;  
  margin: 16vh 0 6vh 0;
}

.header span {
  text-align: center;
  margin: 0 auto;
}

table {
  border: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  width: 100vw;
}

table thead {
  display: none;
}

table tr {
  display: block;
  padding: 1em 1em 0.5em;
}

table tr + tr {
  margin-top: 0.625em;
}

table td {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--ptable);
  font-size: 0.8em;
  line-height: 1.35em;
}

table td:before {
  content: attr(data-label);
  font-weight: var(--font-weight-bold);
  letter-spacing: normal;
  max-width: 45%;
}

table td + td {
  margin-top: 0.8em;
}

table td:last-child {
  border-bottom: 0;
}

@media screen and (min-width: 600px) {
  table {
    margin: 0 2rem;
    width: 96vw;
  }
  table thead {
    display: table-header-group;
  }
  table tr {
    display: table-row;
    border: 0;
  }
  table th, table td {
    text-align: center;
    padding: .5rem 0;
  }
  table td {
    display: table-cell;
  }
  table td:before {
    display: none;
  }
  table td:last-child {
    border-bottom: 1px solid var(--ptable);
  }
} 

.legend {
  display: inline-block;
  margin: 1rem 2rem;
  font-weight: 500;
  letter-spacing: normal;
}

.legend b {
  font-weight: var(--font-weight-bold);
}

.wrp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  display: block;
  text-decoration: none !important;
  position: relative;
  padding-bottom: 4px;
  color: var(--mcolor);
  padding: 4px;
  overflow: hidden;
}

.btn-text span {
  display: block;
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: underline;
}

.btn-text span + span {
  position: absolute;
  padding: 4px;
  left: 0;
  top: 140%;
  transform-origin: left center;
  transform: skewY(30deg);
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-text:hover span:first-child {
  transform: translateY(-140%) skewY(7deg);
}

.btn-text:hover span + span {
  transform: translateY(-140%) skewY(0deg);
}

.verybottom {
  width: 100vw;
  border-top: 1px solid var(--ptable);
  padding: 1.2rem 2rem;
  text-align: center;
  font-weight: var(--font-weight-normal);
  letter-spacing: normal; opacity: .4;
}

.verybottom a {
  text-decoration: none;
  color: var(--mcolor);
}

.goog-te-gadget {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}