/*!
* MIT License

* Copyright (c) 2020-present El Nino Hanif Maulana and Uisual

* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:

* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.

* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/*--------------------------------------------------------------
TABLE OF CONTENT
----------------------------------------------------------------
1.0 VARIABLE
|  1.1 COLOR
|  1.2 TYPOGRAPHY
|  1.3 LAYOUT
|  1.4 MIXIN
2.0 FOUNDATION
3.0 TYPOGRAPHY
4.0 IMAGE
5.0 LAYOUT
6.0 COMPONENT
|  6.1 CTA
|  6.2 BUTTON
|  6.3 TOGGLE
|  6.4 CARD
|  6.5 LIST
7.0 SECTION
|  7.1 HEADER
|  7.2 HERO
|  7.3 CUSTOMER
|  7.4 FEATURE
|  7.5 TESTIMONIAL
|  7.6 PRICING
|  7.7 FAQ
|  7.8 CLOSE
|  7.9 FOOTER
8.0 MEDIA
|  8.1 768PX
|  8.2 1024PX
|  8.3 1200PX
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 VARIABLE
--------------------------------------------------------------*/
:root {
  /*------------------------------------------------------------
  |
  | 1.1 COLOR
  |
  ------------------------------------------------------------*/
  --ui-color-brand: #004680;
  --ui-color-brand-accent: #f3e600;
  --ui-color-brand-sub: #a7bcd6;
  --ui-color-brand-sub-10: #F6F8FB;
  --ui-color-brand-sub-20: #EDF2F7;
  --ui-color-brand-sub-40: #DCE4EF;
  --ui-color-brand-sub-60: #CAD7E6;
  --ui-color-brand-sub-80: #B9C9DE;
  --ui-color-brand-kaitori: #000099;
  /* COLOR PALETTE */
  --ui-color-accent_red: #e95471;
  --ui-color-accent_orange: #ff6955;
  --ui-color-accent_green: #45b89f;
  --ui-color-accent_blue: #0098ff;
  --ui-color-n-000: #fff;
  --ui-color-n-025: #fafafa;
  --ui-color-n-050: #f5f5f5;
  --ui-color-n-100: #ebebeb;
  --ui-color-n-300: #aeaeae;
  --ui-color-n-500: #353535;
  --ui-color-n-700: #282828;
  --ui-color-n-900: #1a1a1a;
  --ui-color-n-000-rgb: 255, 255, 255;
  /* BACKGROUND COLOR */
  --ui-color-background-primary: var(--ui-color-n-000);
  --ui-color-background-secondary: var(--ui-color-brand-sub-20);
  --ui-color-background-tertiary: var(--ui-color-brand);
  /* BORDER COLOR */
  --ui-color-border: var(--ui-color-n-100);
  /* TYPOGRAPHY COLOR */
  --ui-color-typography-heading: var(--ui-color-n-500);
  --ui-color-typography-body: var(--ui-color-n-900);
  --ui-color-typography-note: var(--ui-color-n-300);
  --ui-color-typography-button: var(--ui-color-n-000);
  /*------------------------------------------------------------
  |
  | 1.2 TYPOGRAPHY
  |
  ------------------------------------------------------------*/
  --ui-typography-typeface: "Noto Sans JP", sans-serif;
  /* FONT SIZE */
  --ui-typography-h1: 1.875rem;
  --ui-typography-h2: 1.625rem;
  --ui-typography-h3: 1.25rem;
  --ui-typography-h4: 1rem;
  --ui-typography-p: 1rem;
  --ui-typography-s: .625rem;
  /* LEADING */
  --ui-typography-h1-leading: 1.2;
  --ui-typography-h2-leading: 1.2;
  --ui-typography-h3-leading: 1.2;
  --ui-typography-h4-leading: 1.25;
  --ui-typography-p-leading: 1.5;
  --ui-typography-s-leading: 1.5;
  /* MARGIN */
  --ui-typography-margin-heading: .75rem;
  --ui-typography-margin-body: 1.125rem;
  /*------------------------------------------------------------
  |
  | 1.3 LAYOUT
  |
  ------------------------------------------------------------*/
  --ui-layout-container: 1.25rem;
  --ui-layout-grid: 3.625rem;
  --ui-layout-gutter: 1rem;
  /* GAP */
  --ui-gap-header: 1rem;
  --ui-gap-cta: .75rem;
  --ui-gap-hero: 2rem;
  --ui-gap-customer: 2rem;
  --ui-gap-feature: 2rem;
  --ui-gap-testimonial: 2rem;
  --ui-gap-card: 1.25rem;
  --ui-gap-pricing: 2rem;
  --ui-gap-carousel-card: .5rem;
  --ui-gap-faq: 1.5rem;
  /* BORDER RADIUS */
  --ui-radius-avatar: 5rem;
  --ui-radius-button: 6px;
  --ui-radius-card: .5rem;
}

/* BREAK POINT */
.foo {
  color: blue;
}
@media screen and (min-width: 48rem) {
  .foo {
    color: yellow;
  }
}
@media screen and (min-width: 64rem) {
  .foo {
    color: red;
  }
}

/*--------------------------------------------------------------
2.0 FOUNDATION
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: var(--ui-color-background-primary);
  color: var(--ui-color-typography-body);
  font-family: var(--ui-typography-typeface);
  -webkit-font-feature-settings: "liga", "kern";
          font-feature-settings: "liga", "kern";
  font-size: var(--ui-typography-p);
  font-weight: 400;
  line-height: var(--ui-typography-p-leading);
  margin: 0 auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
3.0 TYPOGRAPHY
--------------------------------------------------------------*/
a {
  color: var(--ui-color-brand);
  text-decoration: none;
  text-decoration-color: var(--ui-color-typography-note);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dt,
dd {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ui-color-typography-heading);
  margin-bottom: var(--ui-typography-margin-heading);
}

h2 {
  font-size: var(--ui-typography-h2);
  line-height: var(--ui-typography-h2-leading);
}

h3 {
  font-size: var(--ui-typography-h3);
  line-height: var(--ui-typography-h3-leading);
}

h4 {
  font-size: var(--ui-typography-h4);
  line-height: var(--ui-typography-h4-leading);
}

p,
ul,
ol {
  margin-bottom: var(--ui-typography-margin-body);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul,
ol,
dl,
dt,
dd {
  padding-left: 0;
}

dd {
  margin-left: 0;
}

strong {
  font-weight: 700;
}

small {
  display: inline-block;
  font-size: var(--ui-typography-s);
  line-height: var(--ui-typography-s-leading);
}

.text-note {
  color: var(--ui-color-typography-note);
  line-height: 1;
}

/*--------------------------------------------------------------
4.0 IMAGE
--------------------------------------------------------------*/
img,
svg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/*--------------------------------------------------------------
5.0 LAYOUT
--------------------------------------------------------------*/
.layout-container {
  padding-left: var(--ui-layout-container);
  padding-right: var(--ui-layout-container);
}
.layout-flex, .layout-grid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layout-grid {
  display: -ms-grid;
  display: grid;
}
.layout-column-center {
  text-align: center;
}
.layout-column-center p {
  text-align: left;
}

/*--------------------------------------------------------------
6.0 COMPONENT
--------------------------------------------------------------*/
/*--------------------------------------------------------------
|
| 6.1 CTA
|
--------------------------------------------------------------*/
.component-cta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: var(--ui-gap-cta);
}

/*--------------------------------------------------------------
|
| 6.2 BUTTON
|
--------------------------------------------------------------*/
.component-button {
  border: 0.0625rem solid var(--ui-color-brand);
  border-radius: var(--ui-radius-button);
  display: block;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.component-button-primary {
  background-color: var(--ui-color-brand);
  color: var(--ui-color-typography-button);
}
.component-button-primary:hover {
  background-color: var(--ui-color-brand-accent);
  color: var(--ui-color-brand);
}
.component-button-secondary {
  background-color: var(--ui-color-n-000);
  color: var(--ui-color-brand);
}
.component-button-secondary:hover {
  background-color: var(--ui-color-brand-sub-10);
}
.component-button-tertiary {
  background-color: var(--ui-color-brand-sub-20);
  color: var(--ui-color-brand);
}
.component-button-tertiary:hover {
  background-color: var(--ui-color-brand-sub-60);
}
.component-button-normal {
  /*width: fit-content;*/
  font-size: var(--ui-typography-h3);
  width: 70%;
}
@media screen and (min-width: 48rem) {
  .component-button-normal {
    width: 300px;
  }
}
@media screen and (min-width: 64rem) {
  .component-button-normal {
    width: 500px;
  }
}
.component-button-big, .component-button-normal {
  padding: 1.25rem 2rem 1.5rem;
}
.component-button-big {
  width: 100%;
}
.component-button-small {
  font-size: var(--ui-typography-s);
  padding: 0.5rem 0.75rem 0.5625rem;
}

/*--------------------------------------------------------------
|
| 6.4 CARD
|
--------------------------------------------------------------*/
.component-card {
  border: 0.0625rem solid var(--ui-color-border);
  border-radius: var(--ui-radius-card);
  overflow: hidden;
  width: 100%;
}

/*--------------------------------------------------------------
|
| 6.5 LIST
|
--------------------------------------------------------------*/
.component-list {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 0.75rem;
}
.component-list--item {
  list-style: none;
  position: relative;
  padding-left: 1.875rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.component-list--item-check::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 400;
  height: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "\f14a";
  font-weight: 900;
  color: var(--ui-color-brand);
}
.component-list--item-cross::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 400;
  height: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "\f058";
  font-weight: 900;
}
.component-list--line {
  list-style: none;
}
.component-list--line > li {
  padding-top: 1.875rem;
  border-bottom: 0.0625rem solid var(--ui-color-border);
  text-align: left;
}
.component-list--flow {
  list-style: none;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 0.75rem;
  counter-reset: number 0;
}
.component-list--flow > li {
  position: relative;
  padding-top: 1.875rem;
  padding-left: 2.5rem;
  text-align: left;
  z-index: 1;
}
.component-list--flow > li::before {
  position: absolute;
  left: 0;
  top: 1.875rem;
  counter-increment: number 1;
  content: counter(number);
  color: var(--ui-color-n-000);
  background-color: var(--ui-color-brand);
  display: inline-block;
  border-radius: 100px;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
}
.component-list--flow > li::after {
  content: "";
  background-color: var(--ui-color-brand-sub);
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  left: 0.9375rem;
  top: 1.875rem;
  z-index: -1;
}

/*--------------------------------------------------------------
7.0 SECTION
--------------------------------------------------------------*/
/*--------------------------------------------------------------
|
| 7.1 HEADER
|
--------------------------------------------------------------*/
.section-header {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.section-header__layout {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-header__layout .layout-flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section-header__logo {
  height: 40px;
  width: auto;
}
.section-header__shop-name {
  display: inline-block;
  font-weight: 700;
  color: var(--ui-color-brand-kaitori);
  white-space: nowrap;
}

/*--------------------------------------------------------------
|
| 7.2 HERO
|
--------------------------------------------------------------*/
.section-hero {
  padding-bottom: 5rem;
  /*padding-top: 5rem;*/
  text-align: center;
}
.section-hero__layout {
  row-gap: var(--ui-gap-hero);
}
.section-hero__layout__wrap {
  margin: 0 calc(50% - 50vw);
  padding-top: 2rem;
  width: 100vw;
  background: url(../images/1620/hero_bg.png) no-repeat;
  background-position: 50% 100%;
  /*height: 100vh;*/
  position: relative;
}
@media screen and (min-width: 48rem) {
  .section-hero__layout__wrap {
    background-position: 50% 85%;
    /*height: 90vh;*/
    background-size: cover;
    padding-top: 0;
  }
}
@media screen and (min-width: 120rem) {
  .section-hero__layout__wrap {
    background-position: 50% 80%;
    /*height: 80vh;*/
    background-size: cover;
  }
}
@media screen and (min-width: 48rem) {
  .section-hero__layout.layout-grid-2 {
    /*grid-template-columns: minmax(200px, 1fr) auto;*/
    -ms-grid-columns: minmax(50%, 1fr) 1fr;
    grid-template-columns: minmax(50%, 1fr) 1fr;
  }
}
@media screen and (min-width: 75rem) {
  .section-hero__layout.layout-grid-2 {
    -ms-grid-columns: minmax(60%, 1fr) 1fr;
    grid-template-columns: minmax(60%, 1fr) 1fr;
  }
}
@media screen and (min-width: 120rem) {
  .section-hero__layout.layout-grid-2 {
    -ms-grid-columns: minmax(65%, 1fr) 1fr;
    grid-template-columns: minmax(65%, 1fr) 1fr;
  }
}
.section-hero__image {
  margin-top: var(--ui-gap-hero);
  /*width: auto;
  height: calc(100vw - var(--ui-gap-hero));

  @include mq() {
      width: auto;
      height: calc(90vh - var(--ui-gap-hero));
  }

  @include mq(xxl) {
      width: auto;
      height: calc(80vh - var(--ui-gap-hero));
  }*/
}
.section-hero__authority {
  -webkit-column-gap: var(--ui-layout-gutter);
     -moz-column-gap: var(--ui-layout-gutter);
          column-gap: var(--ui-layout-gutter);
}
.section-hero__authority img {
  max-width: 100%;
}
@media screen and (min-width: 48rem) {
  .section-hero__authority img {
    width: 140px;
  }
}
.section-hero__note {
  text-align: left;
}
.section-hero h1 {
  /*text-align: justify;
  text-align-last: justify;*/
}
.section-hero h1 span {
  display: block;
  font-size: var(--ui-typography-p);
  line-height: var(--ui-typography-h1-leading);
  color: var(--ui-color-n-000);
}
.section-hero h1 span:nth-of-type(2) {
  margin-top: var(--ui-typography-margin-heading);
}
.section-hero h1 strong {
  display: block;
  font-size: var(--ui-typography-h1);
  line-height: var(--ui-typography-h1-leading);
  color: var(--ui-color-n-000);
  /*text-shadow: 2px 2px 10px rgb(43, 153, 228),
      -2px 2px 10px rgb(43, 153, 228),
      2px -2px 10px rgb(43, 153, 228),
      -2px -2px 10px rgb(43, 153, 228);*/
}
.section-hero .text-intro {
  color: var(--ui-color-n-000);
  text-align: left;
  /*text-shadow: 2px 2px 2px rgb(91, 183, 238),
      -2px 2px 2px rgb(91, 183, 238),
      2px -2px 2px rgb(91, 183, 238),
      -2px -2px 2px rgb(91, 183, 238);*/
}

/*--------------------------------------------------------------
|
| 7.X INTRO
|
--------------------------------------------------------------*/
.section-intro {
  background-color: var(--ui-color-background-secondary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-intro__layout {
  /*flex-direction: column;
  row-gap: var(--ui-gap-customer);*/
}

/*--------------------------------------------------------------
|
| 7.3 CUSTOMER
|
--------------------------------------------------------------*/
.section-customer {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-customer__layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: var(--ui-gap-customer);
}
.section-customer--logo {
  height: 1.5rem;
  width: auto;
}
.section-customer--logo-str {
  height: 1.75rem;
}
.section-customer--logo-bhn {
  height: 1.375rem;
}

/*--------------------------------------------------------------
|
| 7.X PROBLEM
|
--------------------------------------------------------------*/
.section-problem {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-problem__layout {
  margin-top: var(--ui-gap-testimonial);
  row-gap: var(--ui-gap-testimonial);
}
.section-problem h2 {
  position: relative;
  z-index: 0;
}
.section-problem h2::before {
  content: "PROBLEM";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-problem h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-problem h2::before {
    font-size: 6rem;
  }
}
.section-problem .component-list--item {
  font-size: var(--ui-typography-h4);
}

/*--------------------------------------------------------------
|
| 7.4 FEATURE
|
--------------------------------------------------------------*/
.section-feature {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-feature__layout {
  row-gap: var(--ui-gap-feature);
  margin-top: 5rem;
}
.section-feature__layout-text {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.section-feature__layout:nth-of-type(odd) .section-feature__layout-text {
  -ms-grid-row: 1;
      grid-row-start: 1;
}
.section-feature__layout:nth-of-type(even) {
  margin-bottom: 5rem;
  margin-top: 5rem;
}
.section-feature h2 {
  position: relative;
  z-index: 0;
}
.section-feature h2::before {
  content: "FEATURE";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-feature h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-feature h2::before {
    font-size: 6rem;
  }
}

/*--------------------------------------------------------------
|
| 7.4 FEATURE-02
|
--------------------------------------------------------------*/
.section-feature-02 {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-feature-02__layout {
  row-gap: var(--ui-gap-card);
}

/* CARD */
.component-card-02--feature {
  text-align: center;
}
.component-card-02--feature-content {
  padding: 2.25rem 1.5rem;
}
.component-card-02--feature-title {
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
|
| 7.X CAROUSEL
|
--------------------------------------------------------------*/
.section-carousel {
  background-color: var(--ui-color-background-secondary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-carousel__layout {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  margin-bottom: var(--ui-gap-pricing);
  margin-top: var(--ui-gap-pricing);
  row-gap: var(--ui-gap-card);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.section-carousel h2 {
  position: relative;
  z-index: 0;
}
.section-carousel h2::before {
  content: "STAFF";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-carousel h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-carousel h2::before {
    font-size: 6rem;
  }
}

.slick-arrow {
  z-index: 999;
}
.slick-arrow.slick-prev {
  left: 20px;
}
.slick-arrow.slick-prev:before {
  color: var(--ui-color-brand);
}
.slick-arrow.slick-next {
  right: 20px;
}
.slick-arrow.slick-next:before {
  color: var(--ui-color-brand);
}

/* CARD */
.component-card--carousel {
  background-color: var(--ui-color-background-primary);
  padding: calc(var(--ui-gap-card) * 2);
  margin: var(--ui-gap-carousel-card);
}
.component-card--carousel img {
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
}
/*--------------------------------------------------------------
|
| 7.5 PRICING
|
--------------------------------------------------------------*/
.section-pricing {
  background-color: var(--ui-color-background-secondary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-pricing__layout {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  margin-bottom: var(--ui-gap-pricing);
  margin-top: var(--ui-gap-pricing);
  row-gap: var(--ui-gap-card);
}

/* CARD */
.component-card--pricing {
  background-color: var(--ui-color-background-primary);
  padding: 1.5rem 1.5rem 1.75rem;
}
.component-card--pricing-price {
  line-height: 1;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.component-card--pricing-amount {
  font-size: var(--ui-typography-h2);
  font-weight: 700;
}

/* LIST */
.component-list--pricing {
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
}

/*--------------------------------------------------------------
|
| 7.X BGIMAGE
|
--------------------------------------------------------------*/
.section-bgimage {
  background: url("../images/1620/bgimage_bg.png") 50% 50%/cover no-repeat;
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-bgimage__layout {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  margin-top: var(--ui-gap-pricing);
  padding: var(--ui-gap-pricing);
  row-gap: var(--ui-gap-card);
  background-color: rgba(var(--ui-color-n-000-rgb), 0.75);
  -webkit-backdrop-filter: blur(12px) brightness(1.2) opacity(50%);
          backdrop-filter: blur(12px) brightness(1.2) opacity(50%);
}
.section-bgimage h2,
.section-bgimage .text-intro {
  color: var(--ui-color-n-000);
}
.section-bgimage h2 {
  position: relative;
  z-index: 0;
}
.section-bgimage h2::before {
  content: "RELIEF";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
  color: var(--ui-color-brand-sub);
}
@media screen and (min-width: 48rem) {
  .section-bgimage h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-bgimage h2::before {
    font-size: 6rem;
  }
}
.section-bgimage .bgimage_fig {
  background-color: var(--ui-color-n-000);
  padding: 2rem;
  border: 1px solid var(--ui-color-n-100);
}

/*--------------------------------------------------------------
|
| 7.5 TESTIMONIAL
|
--------------------------------------------------------------*/
.section-testimonial {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-testimonial__layout {
  margin-top: var(--ui-gap-testimonial);
  row-gap: var(--ui-gap-testimonial);
}
.section-testimonial h2 {
  position: relative;
  z-index: 0;
}
.section-testimonial h2::before {
  content: "VOICE";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-testimonial h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-testimonial h2::before {
    font-size: 6rem;
  }
}
.section-testimonial--avatar {
  border-radius: var(--ui-radius-avatar);
  height: 5rem;
  width: 5rem;
}
.section-testimonial--quote {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.section-testimonial--author {
  line-height: 1.25;
}

/*--------------------------------------------------------------
|
| 7.X DESCRIPTION
|
--------------------------------------------------------------*/
.section-description {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-description__layout {
  margin-top: var(--ui-gap-testimonial);
  row-gap: var(--ui-gap-testimonial);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section-description__layout dl dt {
  font-weight: 700;
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: var(--ui-typography-p);
}
.section-description__layout dl dt::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 400;
  height: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "\f058";
  font-weight: 300;
}
/*--------------------------------------------------------------
|
| 7.X FLOW
|
--------------------------------------------------------------*/
.section-flow {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.section-flow__layout {
  margin-top: var(--ui-gap-testimonial);
  row-gap: var(--ui-gap-testimonial);
}
.section-flow h2 {
  position: relative;
  z-index: 0;
}
.section-flow h2::before {
  content: "FLOW";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-flow h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-flow h2::before {
    font-size: 6rem;
  }
}

/*--------------------------------------------------------------
|
| 7.X FAQ
|
--------------------------------------------------------------*/
.section-faq {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
  text-align: center;
}
.section-faq__layout {
  margin-top: var(--ui-gap-testimonial);
  row-gap: var(--ui-gap-testimonial);
}
.section-faq h2 {
  position: relative;
  z-index: 0;
}
.section-faq h2::before {
  content: "FAQ";
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: var(--ui-color-brand-sub-40);
  display: block;
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;*/
  font-size: 2.625rem;
}
@media screen and (min-width: 48rem) {
  .section-faq h2::before {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-faq h2::before {
    font-size: 6rem;
  }
}

.component-list--line {
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
}
.component-list--line--faq dt {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.component-list--line--faq dt::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 400;
  height: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*content: "\f059";*/
  content: "Q";
  font-weight: 900;
  color: var(--ui-color-brand);
}
.component-list--line--faq dd {
  position: relative;
  padding-left: 1.875rem;
}
.component-list--line--faq dd::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 400;
  height: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*content: "\f058";*/
  content: "A";
  font-weight: 900;
}

/*--------------------------------------------------------------
|
| 7.6 CLOSE
|
--------------------------------------------------------------*/
.section-close {
  background-color: var(--ui-color-background-tertiary);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
.section-close h2,
.section-close p {
  color: var(--ui-color-n-000);
}

/*--------------------------------------------------------------
|
| 7.7 FOOTER
|
--------------------------------------------------------------*/
.section-footer {
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.section-footer__layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  row-gap: var(--ui-layout-gutter);
}
.section-footer--copyright {
  margin-bottom: 0;
}
.section-footer--nav {
  -webkit-column-gap: var(--ui-layout-gutter);
     -moz-column-gap: var(--ui-layout-gutter);
          column-gap: var(--ui-layout-gutter);
}
.section-footer__shopinfo {
  border-bottom: 1px solid var(--ui-color-n-300);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: var(--ui-typography-s);
}

/*--------------------------------------------------------------
8.0 MEDIA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
|
| 8.1 768PX
|
--------------------------------------------------------------*/
@media screen and (min-width: 48rem) {
  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  :root {
    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/
    /* FONT SIZE */
    --ui-typography-h1: 2.5rem;
    --ui-typography-h2: 1.75rem;
    --ui-typography-p: 1.125rem;
    --ui-typography-s: .75rem;
    /* MARGIN */
    --ui-typography-margin-body: 1.25rem;
    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/
    --ui-layout-container: 4.25rem;
    --ui-layout-gutter: 2rem;
    /* GAP */
    --ui-gap-hero: 3rem;
    --ui-gap-feature: 3rem;
    --ui-gap-testimonial: 3rem;
  }
  /*------------------------------------------------------------
  IMAGE
  ------------------------------------------------------------*/
  .image-half-left {
    padding-right: var(--ui-layout-gutter);
  }
  .image-half-right {
    padding-left: var(--ui-layout-gutter);
  }
  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  .layout-container,
.layout-column-center {
    margin-left: auto;
    margin-right: auto;
  }
  .layout-grid-2,
.layout-grid-3 {
    -webkit-column-gap: var(--ui-layout-gutter);
       -moz-column-gap: var(--ui-layout-gutter);
            column-gap: var(--ui-layout-gutter);
    -ms-grid-columns: 1fr var(--ui-layout-gutter) 1fr;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  /*.layout-grid-3 div:nth-of-type(3) {
      left: calc(50% + (var(--ui-layout-gutter) / 2));
      position: relative;
  }*/
  /*------------------------------------------------------------
  COMPONENT
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | LIST
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | CUSTOMER
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | FEATURE
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/
}
@media screen and (min-width: 48rem) and (min-width: 48rem) {
  .layout-grid-2,
.layout-grid-3 {
    justify-items: flex-start;
  }
}
@media screen and (min-width: 48rem) {
  .layout-column-4 {
    width: calc(var(--ui-layout-grid) * 4 + var(--ui-layout-gutter) * 3);
  }
}
@media screen and (min-width: 48rem) {
  .layout-column-6 {
    width: calc(var(--ui-layout-grid) * 6 + var(--ui-layout-gutter) * 5);
  }
}
@media screen and (min-width: 48rem) {
  .layout-column-8 {
    width: calc(var(--ui-layout-grid) * 8 + var(--ui-layout-gutter) * 7);
  }
}
@media screen and (min-width: 48rem) {
  .component-list--item {
    background-size: 1.25rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 48rem) {
  .section-hero {
    text-align: left;
  }
  .section-hero__authority {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section-hero .component-cta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 48rem) {
  .section-customer__layout {
    -webkit-column-gap: var(--ui-gap-customer);
       -moz-column-gap: var(--ui-gap-customer);
            column-gap: var(--ui-gap-customer);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-customer--logo {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 48rem) {
  .section-feature__layout:nth-of-type(odd) .section-feature__layout-text {
    -ms-grid-row: initial;
        grid-row-start: initial;
  }
}
@media screen and (min-width: 48rem) {
  .section-footer {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .section-footer__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .section-footer--menu {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*--------------------------------------------------------------
|
| 8.2 1024PX
|
--------------------------------------------------------------*/
@media screen and (min-width: 64rem) {
  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  :root {
    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/
    --ui-layout-container: 0;
  }
  /*------------------------------------------------------------
  TYPOGRAPHY
  ------------------------------------------------------------*/
  a {
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
  }
  a:not(.component-button):hover {
    color: var(--ui-color-typography-body);
  }
  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  .layout-container {
    width: 60rem;
  }
  .layout-grid-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/
  .section-hero .component-cta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: var(--ui-gap-cta);
       -moz-column-gap: var(--ui-gap-cta);
            column-gap: var(--ui-gap-cta);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
/*--------------------------------------------------------------
|
| 8.3 1200PX
|
--------------------------------------------------------------*/
@media screen and (min-width: 75rem) {
  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  :root {
    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/
    /* FONT SIZE */
    --ui-typography-h1: 3.625rem;
    --ui-typography-h2: 2rem;
    --ui-typography-h4: 1.25rem;
    /* MARGIN */
    --ui-typography-margin-heading: 1rem;
    --ui-typography-margin-body: 1.75rem;
    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/
    --ui-layout-grid: 4rem;
    --ui-layout-gutter: 2rem;
    /* GAP */
    --ui-gap-hero: 4rem;
    --ui-gap-customer: 4rem;
    --ui-gap-feature: 4rem;
    --ui-gap-testimonial: 4rem;
  }
  /*------------------------------------------------------------
  TYPOGRAPHY
  ------------------------------------------------------------*/
  .text-intro {
    font-size: var(--ui-typography-h4);
  }
  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  .layout-container {
    width: 70rem;
  }
  /*------------------------------------------------------------
  COMPONENT
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | BUTTON
  |
  ------------------------------------------------------------*/
  .component-button-normal {
    padding-bottom: 1.125rem;
    padding-top: 1rem;
  }
  .component-button-small {
    padding-bottom: 0.6875rem;
    padding-top: 0.625rem;
  }
  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/
  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/
  .section-hero {
    padding-bottom: 5rem;
    /*padding-top: 5rem;*/
  }
  /*------------------------------------------------------------
  |
  | CUSTOMER
  |
  ------------------------------------------------------------*/
  .section-customer--logo {
    height: 2rem;
  }
  .section-customer--logo-str {
    height: 2.25rem;
  }
  .section-customer--logo-bhn {
    height: 1.75rem;
  }
  /*------------------------------------------------------------
  |
  | PROBLEM
  |
  ------------------------------------------------------------*/
  /* LIST */
  .component-list-problem {
    -webkit-column-gap: var(--ui-layout-gutter);
       -moz-column-gap: var(--ui-layout-gutter);
            column-gap: var(--ui-layout-gutter);
    -ms-grid-columns: 1fr var(--ui-layout-gutter) 1fr;
    grid-template-columns: repeat(2, 1fr);
    justify-items: flex-start;
  }
  /*------------------------------------------------------------
  |
  | FEATURE
  |
  ------------------------------------------------------------*/
  .section-feature {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  .section-feature__layout:nth-of-type(even) {
    margin-bottom: 7.5rem;
    margin-top: 7.5rem;
  }
  .section-feature__layout:nth-of-type(even):first-child {
    margin-top: 0;
  }
  /* LIST */
  .component-list-feature {
    -webkit-column-gap: var(--ui-layout-gutter);
       -moz-column-gap: var(--ui-layout-gutter);
            column-gap: var(--ui-layout-gutter);
    -ms-grid-columns: 1fr var(--ui-layout-gutter) 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  /*------------------------------------------------------------
  |
  | FEATURE-02
  |
  ------------------------------------------------------------*/
  .section-feature-02 {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  /*------------------------------------------------------------
  |
  | TESTIMONIAL
  |
  ------------------------------------------------------------*/
  .section-testimonial {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  .section-testimonial--avatar {
    height: 100px;
    width: 100px;
  }
  /*------------------------------------------------------------
  |
  | CLOSE
  |
  ------------------------------------------------------------*/
  .section-close {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/
  .section-footer {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
h2 {
  position: relative;
}
h2::before {
  /*content: "";
  display: block;
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -1em;
  left: 0;
  right: 0;
  margin: auto;

  padding-bottom: 10px;
  background-image: linear-gradient(to right, #5b85e4, #36d0db);
  background-repeat: no-repeat;
  background-size: 80px 2px;*/
}

.section-feature h3 {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1rem 1.2rem 90px;
  border-top: 3px solid var(--ui-color-brand);
  color: var(--ui-color-brand);
}
.section-feature h3:before {
  position: absolute;
  top: -120%;
  left: -120px;
  width: 200px;
  height: 240%;
  content: "";
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: var(--ui-color-brand);
}
.section-feature h3 i {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: var(--ui-color-n-000);
}

.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 100px 100px;
  grid-template-columns: 100px 100px 100px;
  -ms-grid-rows: 100px 100px 100px;
  grid-template-rows: 100px 100px 100px;
}

.wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.wrapper > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.wrapper > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.wrapper > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.wrapper > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}

.wrapper > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.wrapper > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

.wrapper > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.item1 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
}

.item2 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
}

.item3 {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
}

.item4 {
  -ms-grid-row: 3;
      grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}