@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-ExtraBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --maintxt: #323836;
  --primary: #00a96c;
  --subtxt: #9eaaa5;
  --placeholder: #d3e2dc;
  --white: white;
  --line1: #e9f5f1;
  --background: #eff8f5;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--maintxt);
  letter-spacing: -.05em;
  word-break: keep-all;
  text-wrap: balance;
  font-family: Suit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

h1 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.3em;
}

h2 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 800;
  line-height: 1.3em;
}

h3 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.3em;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 30;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  width: 90%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.container.grid-2 {
  grid-template-columns: .5fr 1fr;
}

.container.grid-footer {
  grid-column-gap: 2em;
  grid-row-gap: 4em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container.grid-portfolio {
  grid-column-gap: 1em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container.vertical-middle.height100.gap-2em.zindex2 {
  z-index: 2;
  position: relative;
}

.horizontal {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-between {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical {
  flex-flow: column;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.vertical-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.gap-3em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.gap-05em {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.grid-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-2.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.text {
  color: var(--maintxt);
  font-size: 1.25em;
  line-height: 1.3em;
}

.text-big {
  color: var(--maintxt);
  font-size: 1.5em;
  line-height: 1.3em;
}

.text-small {
  color: var(--maintxt);
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
}

.gutter-1em {
  width: 100%;
  height: 1em;
}

.gutter-2em {
  width: 100%;
  height: 2em;
}

.gutter-3em {
  width: 100%;
  height: 3em;
}

.gutter-4em {
  width: 100%;
  height: 4em;
}

.gutter-5em {
  width: 100%;
  height: 5em;
}

.section {
  width: 100%;
  padding-top: 10em;
  padding-bottom: 10em;
}

.vertical-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-left.gap-20em {
  grid-column-gap: 20em;
  grid-row-gap: 20em;
}

.vertical-right {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.horizontal-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-right {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.horizontal-middle {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.horizontal-between-middle {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.horizontal-between-bottom {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.horizontal-bottom {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.section-nobtm {
  padding-top: 5em;
}

.section-big {
  padding-top: 11em;
  padding-bottom: 11em;
}

.section-big-nobtm {
  padding-top: 7em;
}

.slide {
  width: 100%;
  height: auto;
}

.link-block {
  color: #222;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
}

.whitetxt {
  color: #fff;
}

.en {
  font-family: Bricolage Grotesque, sans-serif;
}

.width100 {
  width: 100%;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.height100 {
  height: 100%;
}

.vertical-center-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.herotop {
  z-index: 2;
  width: 100%;
  height: 100dvh;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.texthuge {
  font-size: 2em;
  line-height: 1.5em;
}

.btn {
  color: #051328;
  cursor: pointer;
  background-color: #e7e7e7;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  font-family: Poppins;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.swiper-content {
  background-color: var(--primary);
  text-align: left;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  padding: 3em;
  position: relative;
  overflow: hidden;
}

.photobox {
  border-radius: 1em;
  width: 90%;
  max-width: 30em;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 12px #0003;
}

.navbar-button-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.viraltitle {
  color: var(--maintxt);
  text-align: center;
  text-transform: uppercase;
  margin-top: .1em;
  font-family: Sb Aggro;
  font-size: 5em;
  font-weight: 500;
  line-height: 1em;
}

.card {
  background-color: #fff;
  border-radius: 2em;
  width: 100%;
  padding: 2.5em;
}

.horizontal-left-middle {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-4em {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
}

.gap-5em {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
}

.horizontal-between-stretch {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.vertical-left-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical-left-center {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-left-bottom {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.sugessbtn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.card1 {
  color: #fff;
  background-color: #5208b9;
  background-image: url('../images/section4-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.34%;
  height: 100%;
  padding: 1.5em;
  display: flex;
}

.logo {
  width: auto;
  height: 1.3em;
}

.bold {
  font-weight: 800;
}

.graytxt {
  color: var(--subtxt);
}

.gap-025em {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
}

.width33 {
  width: 33.3333%;
}

.width50 {
  width: 50%;
}

.openbtn {
  background-color: var(--placeholder);
  color: var(--white);
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  transition: background-color .2s;
  display: flex;
}

.openbtn:hover {
  background-color: var(--subtxt);
}

.sugessbtn-2 {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.gap-1-5em {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

.hero {
  width: 100%;
  min-height: 70svh;
  padding-top: 5em;
  padding-bottom: 20em;
  display: flex;
}

.container-hero {
  width: 90%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.txt-title {
  letter-spacing: -.05em;
  padding-right: .05em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 4.5em;
  line-height: 1em;
}

.roll-box {
  background-color: var(--placeholder);
  background-image: linear-gradient(135deg, var(--maintxt), var(--primary));
  flex-flow: column;
  height: 4.5em;
  max-height: 4.5em;
  padding-left: .7em;
  padding-right: .7em;
  display: flex;
  overflow: hidden;
}

.txt-roll {
  color: var(--white);
  letter-spacing: -.05em;
  justify-content: flex-start;
  align-items: center;
  min-height: 1.125em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 4em;
  line-height: 1em;
  display: flex;
}

.gap-7em {
  grid-column-gap: 7em;
  grid-row-gap: 7em;
}

.gap-10em {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
}

.txt-sub {
  max-width: 40em;
  font-size: 1.5em;
  line-height: 1.75em;
}

.button {
  border-bottom: .075em solid var(--subtxt);
  color: var(--subtxt);
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-end;
  max-width: 30em;
  min-height: 2em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.25em;
  font-weight: 200;
  line-height: 1.5em;
  text-decoration: none;
  transition: border .6s, color .6s;
  display: flex;
}

.button:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.green {
  color: var(--primary);
}

.txt-label {
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.5em;
}

.txt-line {
  background-color: var(--maintxt);
  width: 4em;
  height: .05em;
}

.img-box {
  width: 100%;
  position: relative;
}

.img-box._1 {
  width: 85%;
  margin-left: auto;
}

.img-box.gap-2em, .img-box._2 {
  width: 85%;
}

.img {
  z-index: 2;
  width: 100%;
  height: auto;
  position: relative;
}

.img._1 {
  aspect-ratio: 1700 / 954;
  background-color: var(--line1);
  object-fit: scale-down;
  padding: 7.5em;
}

.txt-hero {
  color: var(--maintxt);
  letter-spacing: -.05em;
  white-space: nowrap;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 2.5em;
  line-height: 1em;
}

.hero-videobox {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.img-hero {
  z-index: 3;
  width: 100%;
  height: auto;
  position: relative;
}

.img-hero.tab, .img-hero.mo {
  display: none;
}

.video-hero {
  z-index: 1;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.hero-txtbox {
  z-index: 3;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.vertical-middle {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-nav {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbg {
  z-index: 1;
  border-bottom: 1px solid var(--line1);
  background-color: var(--white);
  position: absolute;
  inset: 0%;
}

.txt-nav {
  color: var(--maintxt);
  justify-content: center;
  align-items: center;
  height: 3em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.25em;
  line-height: 1em;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.txt-nav:hover {
  color: var(--primary);
}

.navguide {
  width: 1px;
  height: 10em;
  margin-top: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.link-block-3 {
  justify-content: center;
  align-items: center;
  height: 3em;
  font-size: 1.25em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.button-nav {
  background-color: var(--line1);
  color: var(--primary);
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  padding-left: .6em;
  padding-right: .6em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: .9em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.button-nav:hover {
  background-color: var(--primary);
  color: var(--white);
}

.hero-curtain {
  z-index: 2;
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}

.hero-curtain1 {
  z-index: 2;
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0%;
}

.hero-curtain2 {
  z-index: 2;
  background-color: #00a96cb3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden.width100.height25 {
  height: 25%;
}

.imgcover {
  z-index: 3;
  background-color: var(--line1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}

.relative {
  position: relative;
}

.img-sticky {
  width: 15em;
  height: 15em;
  position: sticky;
  top: 50%;
  transform: translate(0, -50%);
}

.div-block {
  position: absolute;
  inset: 0% 0% -7.5em;
}

.div-block._1 {
  padding-top: 17em;
}

.div-block._2 {
  padding-top: 34em;
}

.div-block._3 {
  padding-top: 51em;
}

.div-block._4 {
  padding-top: 68em;
}

.txt-bigsub {
  max-width: 40em;
  font-size: 2em;
  line-height: 1.75em;
}

.footer {
  background-image: linear-gradient(#fff0, #20a57533);
  padding-top: 10em;
  padding-bottom: 10em;
}

.link {
  color: var(--maintxt);
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.5em;
  line-height: 1em;
  text-decoration: none;
  transition: color .4s;
}

.link:hover {
  color: var(--primary);
}

.txt-footer {
  font-size: 1em;
  line-height: 1em;
}

.txt-rightbox {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.logo1 {
  height: 1.25em;
}

.text-block {
  color: #383c3a26;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.75em;
  line-height: 1em;
}

.txtbox1 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.txt-end {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.75em;
}

.hamburger {
  flex-flow: column;
  justify-content: space-between;
  width: 4em;
  height: 16px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  display: none;
}

.div-block-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-3 {
  background-color: var(--maintxt);
  width: 100%;
  height: 2px;
}

.txt-line-1 {
  background-color: var(--maintxt);
  opacity: .3;
  width: 16em;
  height: .1em;
}

.image-bg {
  z-index: 1;
  background-color: var(--background);
  position: absolute;
  inset: 0%;
}

.section-contact {
  width: 100%;
  padding-top: 13em;
  padding-bottom: 10em;
}

.txt-subpagetop {
  letter-spacing: -.05em;
  padding-right: .05em;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.3em;
}

.formbox {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.image {
  width: auto;
  height: 100%;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--placeholder);
  color: var(--maintxt);
  width: 100%;
  height: 2.5em;
  margin-bottom: 0;
  padding: 0 1em 0 0;
  font-size: 1.3em;
  line-height: 1em;
  transition: border .4s;
}

.text-field:hover, .text-field:active {
  border-bottom-color: var(--primary);
}

.text-field:focus {
  border-style: none;
  border-color: black black var(--primary);
}

.text-field:focus-visible, .text-field[data-wf-focus-visible] {
  border-style: none none solid;
  border-color: black black var(--primary);
}

.text-field::placeholder {
  color: var(--placeholder);
}

.form {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: space-between;
  max-width: 30em;
  height: 100%;
  display: flex;
}

.at {
  font-size: 1.3em;
  line-height: 1em;
}

.select-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--placeholder);
  color: var(--maintxt);
  background-color: #fff0;
  height: 2.5em;
  margin-bottom: 0;
  padding: 0 1em 0 0;
  font-size: 1.3em;
  line-height: 1em;
  transition: border .4s;
}

.select-field:hover, .select-field:active, .select-field:focus, .select-field:focus-visible, .select-field[data-wf-focus-visible] {
  border-bottom-color: var(--primary);
}

.txt-formtitle {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1em;
}

.form-block {
  margin-bottom: 0;
}

.textarea {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--placeholder);
  color: var(--maintxt);
  min-height: 8em;
  margin-bottom: 0;
  padding: 1em 1em 1em 0;
  font-size: 1.3em;
  line-height: 1em;
  transition: border .4s;
}

.textarea:hover, .textarea:active, .textarea:focus, .textarea:focus-visible, .textarea[data-wf-focus-visible] {
  border-bottom-color: var(--primary);
}

.textarea::placeholder {
  color: var(--placeholder);
}

.submit-button {
  background-color: var(--primary);
  height: 2.5em;
  font-size: 1.3em;
  font-weight: 800;
  line-height: 1em;
}

.checkbox {
  border: 1px solid var(--placeholder);
  border-radius: 2em;
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
}

.checkbox.w--redirected-checked {
  border-color: var(--primary);
  background-color: var(--primary);
  background-image: url('../images/custom-checkbox-checkmark.svg');
  background-position: 50%;
  background-size: auto;
}

.checkbox-label {
  margin-bottom: 0;
  margin-left: .5em;
  font-size: 1em;
  line-height: 1em;
}

.hero-about {
  width: 100%;
  height: 100svh;
  position: relative;
}

.slider {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.display-none {
  display: none;
}

.abouthero-txtbox {
  z-index: 2;
  mix-blend-mode: difference;
  background-color: #00000040;
  padding-top: 3.75em;
  position: absolute;
  inset: 0%;
}

.abouthero-txtinbox {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.txt-abouthero {
  color: #fff;
  letter-spacing: -.05em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 20vh;
  line-height: 1em;
}

.txt-abouthero1 {
  color: var(--white);
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.5em;
  line-height: 1em;
}

.container-abouthero {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container-abouthero.horizontal-left-middle {
  justify-content: flex-start;
  align-items: center;
}

.container-abouthero.horizontal-right-middle {
  justify-content: flex-end;
}

.navguide-about {
  width: 1px;
  height: 10em;
  margin-top: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.abouthero-imgbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.img-abouthero {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.txt-aboutslogan {
  text-align: center;
  letter-spacing: -.05em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 6em;
  line-height: .85em;
  transition: color 1s cubic-bezier(.68, -.55, .265, 1.55);
}

.txt-aboutslogan:hover {
  color: var(--primary);
}

.value {
  width: 100%;
  height: 100lvh;
  position: relative;
  overflow: hidden;
}

.img-value {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.value-txtbox {
  z-index: 3;
  position: absolute;
  inset: 0%;
}

.txt-value {
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 3em;
  line-height: 1em;
}

.container-value {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7em;
  display: flex;
}

.aboutslogan {
  width: 100%;
  padding-top: 10em;
  padding-bottom: 20em;
}

.line-about {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
}

.pfhero {
  width: 100%;
  height: 100svh;
  padding-top: 3.7em;
  padding-bottom: 2em;
}

.pfhero-bgbox {
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.img-pfhero {
  object-fit: cover;
  object-position: 50% 65%;
  width: 100%;
  height: 100%;
}

.img-pfhero._1 {
  object-position: 50% 70%;
}

.img-pfhero._2 {
  object-position: 50% 78%;
}

.img-pfhero._3 {
  object-position: 50% 85%;
}

.pfhero-gridbox {
  perspective: 48em;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 33.3333%;
  padding: 1em;
  display: flex;
}

.pfhero-gridbox._4 {
  perspective-origin: 0 100%;
}

.pfhero-gridbox._1 {
  perspective-origin: 100% 100%;
}

.pfhero-gridbox._3, .pfhero-gridbox._2 {
  perspective-origin: 50% 100%;
}

.pfhero-gridbox._5 {
  perspective-origin: 100% 100%;
}

.pfhero-gridbox._6, .pfhero-gridbox._7 {
  perspective-origin: 50% 100%;
}

.pfhero-gridbox._8 {
  perspective-origin: 0 100%;
}

.pfhero-gridbox._9 {
  perspective-origin: 100% 100%;
}

.pfhero-gridbox._10, .pfhero-gridbox._11 {
  perspective-origin: 50% 100%;
}

.pfhero-gridbox._12 {
  perspective-origin: 0 100%;
}

.navguide-portfolio {
  width: 1px;
  height: 10em;
  margin-top: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.pfhero-imgbox {
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.pfhero-txtbox {
  z-index: 2;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100%;
  padding-bottom: 2em;
  display: flex;
  position: absolute;
  top: 0%;
  left: 5%;
}

.txt-pfhero {
  color: #000;
  text-align: center;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 5em;
  line-height: 1em;
}

.txt-pfhero1 {
  color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  height: 2em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.3em;
  line-height: 1em;
  display: flex;
}

.blacktxt {
  color: var(--maintxt);
}

.section-portfolio {
  width: 100%;
  padding-bottom: 10em;
}

.pfcard-imgbox {
  aspect-ratio: 1;
}

.img-pfcard {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.txt-pfcard {
  font-size: 1.5em;
  line-height: 1em;
}

.pfcard {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  display: flex;
}

.moyehero-video {
  z-index: 2;
  width: 100%;
  height: 100%;
}

.moyehero {
  width: 100%;
  height: 200svh;
}

.moyehero-bg {
  z-index: 3;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.moyehero-txtbox {
  z-index: 4;
  width: 100%;
  height: 100%;
  padding-top: 6.5em;
  padding-bottom: 3em;
  position: absolute;
  inset: 0%;
}

.txt-moyehero {
  color: var(--white);
  letter-spacing: -.05em;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 8em;
  line-height: 1em;
}

.txt-moyehero1 {
  color: var(--white);
  max-width: 25em;
  margin-left: 5em;
  font-size: 1.3em;
  line-height: 1.75em;
}

.container-moyehero {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.moyehero-stickybox {
  width: 100%;
  height: 100svh;
  position: sticky;
  top: 0;
}

.moyehero-second {
  z-index: 1;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.navguide-moye {
  width: 1px;
  height: 10em;
  margin-top: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-3 {
  width: auto;
  height: 5em;
}

.txt-moyehero3 {
  color: var(--white);
  text-align: center;
  max-width: 25em;
  font-size: 1.3em;
  line-height: 1.75em;
}

.img-moyehero {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.moyehero-txtinner {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.checkbox-field {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.sidebar {
  z-index: 60;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  background-color: var(--background);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.txt-sidebar {
  color: var(--placeholder);
  text-align: center;
  letter-spacing: -.05em;
  width: 100%;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 8em;
  line-height: 1em;
  text-decoration: none;
  transition: color .4s;
}

.txt-sidebar:hover {
  color: var(--maintxt);
}

.txt-sidebar1 {
  color: var(--maintxt);
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.5em;
  line-height: 1em;
  text-decoration: none;
  transition: color .4s;
}

.txt-sidebar1:hover {
  color: var(--primary);
}

.xbox {
  width: 2em;
  height: 2em;
  position: absolute;
  inset: 1.5em 5% auto auto;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 10px;
  }

  .img-hero {
    display: none;
  }

  .img-hero.tab {
    display: inline-block;
  }

  .txt-abouthero {
    font-size: 7em;
  }

  .txt-aboutslogan {
    font-size: 4em;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 9px;
  }

  .container.grid-2 {
    grid-template-columns: 8em 1fr;
  }

  .container.grid-portfolio {
    grid-template-columns: 1fr 1fr;
  }

  .horizontal, .horizontal-between {
    flex-flow: column;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .horizontal-between-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .swiper-content {
    width: 100%;
    margin-bottom: 0;
  }

  .navbar-button-container {
    justify-content: space-between;
    align-items: flex-end;
    width: 3em;
    height: 2em;
  }

  .viraltitle {
    font-size: 3em;
  }

  .horizontal-between-stretch {
    flex-flow: column;
  }

  .card1 {
    width: 100%;
    height: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .logo {
    height: 1.75em;
  }

  .txt-title {
    font-size: 3.5em;
  }

  .roll-box {
    height: 3.5em;
    max-height: 3.5em;
  }

  .txt-roll {
    font-size: 3em;
  }

  .img._1 {
    object-fit: cover;
    padding: 0;
  }

  .txt-hero {
    font-size: 2em;
  }

  .img-sticky {
    width: 8em;
    height: 8em;
  }

  .div-block {
    bottom: -4em;
  }

  .txt-bigsub {
    max-width: 85%;
  }

  .txt-footer {
    font-size: 1.25em;
  }

  .txt-rightbox {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .txtbox1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hamburger {
    display: flex;
  }

  .div-block-2 {
    display: none;
  }

  .txt-subpagetop {
    font-size: 3em;
  }

  .formbox {
    flex-flow: column-reverse;
  }

  .form {
    width: 100%;
    max-width: none;
  }

  .txt-abouthero {
    font-size: 4em;
  }

  .txt-aboutslogan {
    font-size: 3em;
  }

  .pfhero-gridbox {
    width: 33.3333%;
    height: 25%;
  }

  .pfhero-gridbox._4 {
    perspective-origin: 100% 100%;
  }

  .pfhero-gridbox._3 {
    perspective-origin: 0 100%;
  }

  .pfhero-gridbox._5 {
    perspective-origin: 50% 100%;
  }

  .pfhero-gridbox._6 {
    perspective-origin: 0 100%;
  }

  .pfhero-gridbox._7 {
    perspective-origin: 100% 100%;
  }

  .pfhero-gridbox._8 {
    perspective-origin: 50% 100%;
  }

  .pfhero-gridbox._9 {
    perspective-origin: 0 100%;
  }

  .pfhero-gridbox._10 {
    perspective-origin: 100% 100%;
  }

  .txt-pfhero, .txt-moyehero {
    font-size: 3em;
  }

  .txt-moyehero1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .container-moyehero {
    justify-content: space-between;
    align-items: center;
  }

  .image-3 {
    height: 2em;
  }

  .txt-sidebar {
    font-size: 6em;
  }
}

@media screen and (max-width: 479px) {
  .container.grid-footer {
    grid-template-columns: 1fr;
  }

  .viraltitle {
    font-size: 2.5em;
  }

  .img-box._2 {
    width: 95%;
  }

  .img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .img-hero.tab {
    display: none;
  }

  .img-hero.mo {
    display: inline-block;
  }

  .video-hero {
    height: 100%;
  }

  .div-block._1 {
    padding-top: 24em;
  }

  .div-block._2 {
    padding-top: 48em;
  }

  .div-block._3 {
    padding-top: 72em;
  }

  .div-block._4 {
    padding-top: 96em;
  }
}

#w-node-_5653ec93-7302-d3c3-578b-136de62330a3-9d3b0315 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}