/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(45deg);
          transform: translate3d(0, -8px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
          transform: translate3d(0, 8px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
          transform: translate3d(0, -16px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-135deg);
          transform: translate3d(0, 8px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(270deg);
          transform: translate3d(0, -16px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  -webkit-transform: translate3d(60px, 60px, 0) rotate(45deg);
          transform: translate3d(60px, 60px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  -webkit-transform: translate3d(-60px, 60px, 0) rotate(-45deg);
          transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  -webkit-transform: translate3d(60px, -60px, 0) rotate(-45deg);
          transform: translate3d(60px, -60px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  -webkit-transform: translate3d(-60px, -60px, 0) rotate(45deg);
          transform: translate3d(-60px, -60px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
          transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
          transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
          transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(90deg);
          transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
      -ms-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
      -ms-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

::-moz-selection {
  background-color: #B6BB56;
  color: #fff;
}

::selection {
  background-color: #B6BB56;
  color: #fff;
}

@media (max-width: 575.98px) {
  html {
    font-size: 0.9rem;
  }
}

body {
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg-cover {
  background-size: cover;
  width: 100%;
  height: 0;
  display: block;
  background-position: 50% 50%;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1-8 {
  line-height: 1.8;
}

.line-height-2 {
  line-height: 2;
}

.overflow-x-h {
  overflow-x: hidden;
}

.overflow-y-h {
  overflow-y: hidden;
}

.overflow-h {
  overflow: hidden;
}

svg {
  max-width: 100%;
  height: auto;
}

article {
  position: relative;
  overflow: hidden;
}

:root {
  --swiper-theme-color: #B6BB56;
}

body {
  letter-spacing: 0.75px;
}

a {
  cursor: pointer !important;
}

.loader-mesk {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 9998;
}
.loader-mesk.finish {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: #fff;
  opacity: 1;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader .preloader_inner {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.preloader .mesk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.font-en {
  font-family: "Philosopher", serif;
}

.font-tw {
  font-family: "Noto Sans TC", serif;
}

.fs-12 {
  font-size: 0.75rem;
}

.fsr-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fsr-14 {
  font-size: 0.875rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fsr-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fsr-20 {
  font-size: 1.25rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fsr-22 {
  font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
  .fsr-22 {
    font-size: 1.375rem;
  }
}

.fs-24 {
  font-size: 1.5rem;
}

.fsr-24 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .fsr-24 {
    font-size: 1.5rem;
  }
}

.fs-25 {
  font-size: 1.5625rem;
}

.fsr-25 {
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .fsr-25 {
    font-size: 1.5625rem;
  }
}

.fs-27 {
  font-size: 1.6875rem;
}

.fsr-27 {
  font-size: calc(1.29375rem + 0.525vw);
}
@media (min-width: 1200px) {
  .fsr-27 {
    font-size: 1.6875rem;
  }
}

.fs-30 {
  font-size: 1.875rem;
}

.fsr-30 {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .fsr-30 {
    font-size: 1.875rem;
  }
}

.fs-32 {
  font-size: 2rem;
}

.fsr-32 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .fsr-32 {
    font-size: 2rem;
  }
}

.fs-36 {
  font-size: 2.25rem;
}

.fsr-36 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .fsr-36 {
    font-size: 2.25rem;
  }
}

.fs-40 {
  font-size: 2.5rem;
}

.fsr-40 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .fsr-40 {
    font-size: 2.5rem;
  }
}

.fs-45 {
  font-size: 2.8125rem;
}

.fsr-45 {
  font-size: calc(1.40625rem + 1.875vw);
}
@media (min-width: 1200px) {
  .fsr-45 {
    font-size: 2.8125rem;
  }
}

.fs-50 {
  font-size: 3.125rem;
}

.fsr-50 {
  font-size: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .fsr-50 {
    font-size: 3.125rem;
  }
}

.fs-55 {
  font-size: 3.4375rem;
}

.fsr-55 {
  font-size: calc(1.46875rem + 2.625vw);
}
@media (min-width: 1200px) {
  .fsr-55 {
    font-size: 3.4375rem;
  }
}

.fs-65 {
  font-size: 4.0625rem;
}

.fsr-65 {
  font-size: calc(1.53125rem + 3.375vw);
}
@media (min-width: 1200px) {
  .fsr-65 {
    font-size: 4.0625rem;
  }
}

.fs-96 {
  font-size: 6rem;
}

.fsr-96 {
  font-size: calc(1.725rem + 5.7vw);
}
@media (min-width: 1200px) {
  .fsr-96 {
    font-size: 6rem;
  }
}

#banner-page {
  position: relative;
  z-index: 3;
}
#banner-page::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.36);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#banner-page .banner-title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Noto Sans TC";
}
@media (max-width: 767.98px) {
  #banner-page .banner-title-box {
    width: 100%;
  }
  #banner-page.inner-banner {
    position: relative;
    height: 180px;
  }
  #banner-page.inner-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  outline: none;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #7BC4C4;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  cursor: pointer;
  z-index: 1000;
  width: auto;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  outline: none;
  background: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-arrows {
  background: none;
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  border-bottom: 2px solid #fff;
}
.swiper-arrows:hover {
  color: #7BC4C4;
  border-color: #7BC4C4;
}
.swiper-arrows:hover:before {
  background-color: #7BC4C4 !important;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev.swiper-arrows:before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 15px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next.swiper-arrows:before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 15px;
  background-color: #fff;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

.slider-small .swiper-slide {
  cursor: pointer;
}
.slider-small .swiper-slide:hover, .slider-small .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}

#back-to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  background-color: #B6BB56;
  z-index: 8000;
  line-height: 50px;
  text-align: center;
  right: 0;
  bottom: -100px;
  border-radius: 50%;
  cursor: pointer;
}
#back-to-top i {
  font-size: 25px;
  color: #fff;
  line-height: 50px;
}

.more-btn {
  display: inline-block;
  width: 320px;
  background-color: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.more-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../_img/index/plus-b.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 40%;
  right: 30px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.more-btn:hover {
  background-color: #B6BB56;
  text-decoration: none;
  color: #fff;
}
.more-btn:hover::after {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  background-image: url(../_img/index/plus.svg);
}
.more-btn.pro-page-btn {
  background-color: #7BC4C4;
  color: #fff;
}
.more-btn.pro-page-btn::after {
  background-image: url(../_img/index/plus.svg);
}
.more-btn.pro-page-btn:hover {
  background-color: #B6BB56;
}
.more-btn.about-btn {
  color: #424242;
}
.more-btn.about-btn:hover {
  color: #fff;
  background-color: #7BC4C4;
}
@media (max-width: 767.98px) {
  .more-btn {
    width: 200px;
    padding: 10px 15px;
  }
}
@media (max-width: 320px) {
  .more-btn {
    width: 150px;
  }
  .more-btn::after {
    right: 15px;
  }
}

.contact-btn {
  display: inline-block;
  width: 320px;
  margin: 0 auto;
  padding: 20px;
  background-color: #7BC4C4;
  border-radius: 5px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../_img/index/c-icon.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #B6BB56;
}
@media (max-width: 767.98px) {
  .contact-btn {
    width: 200px;
    padding: 10px 15px;
  }
}
@media (max-width: 767.98px) and (max-width: 320px) {
  .contact-btn {
    width: 150px;
  }
  .contact-btn::after {
    right: 15px;
  }
}

.ai-btn {
  display: inline-block;
  width: 280px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 12px 20px;
  background-color: #7BC4C4;
  border-radius: 5px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ai-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #B6BB56;
}
@media (max-width: 767.98px) {
  .ai-btn {
    width: 200px;
  }
}

.back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-btn:hover {
  text-decoration: none;
  color: #EFEFEF;
}

.revise-btn {
  display: inline-block;
  background-color: #7BC4C4;
  padding: 5px 14px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.revise-btn:hover {
  text-decoration: none;
  background-color: #B6BB56;
  color: #fff;
}

.choose-btn {
  display: inline-block;
  background-color: #424242;
  padding: 5px 14px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.choose-btn:hover {
  text-decoration: none;
  background-color: #B6BB56;
  color: #fff;
}

.upload-btn {
  display: inline-block;
  background-color: #7BC4C4;
  padding: 5px 14px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.upload-btn:hover {
  text-decoration: none;
  background-color: #B6BB56;
  color: #fff;
}

.download-btn {
  border-bottom: 1px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.download-btn:hover {
  text-decoration: none;
  border-bottom: 1px solid #B6BB56;
}

.back-page-btn {
  width: 280px;
  padding: 15px;
  border-radius: 5px;
  background-color: #7BC4C4;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-page-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #B6BB56;
}
@media (max-width: 767.98px) {
  .back-page-btn {
    width: 200px;
  }
}

.breadcrumb-item {
  color: #fff;
}
.breadcrumb-item::before {
  color: #fff !important;
}

.hover-opa8:hover {
  opacity: 0.8;
}

.hover-opa5:hover {
  opacity: 0.5;
}

.hover-underline:hover {
  text-decoration: underline;
}

.hover-img .ratio {
  overflow: hidden;
}
.hover-img .ratio img {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.hover-img:hover .ratio img {
  -webkit-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.editor ol {
  list-style: decimal;
  padding-left: 25px;
}
.editor ul {
  list-style: inherit;
  padding-left: 25px;
}

.ani {
  visibility: hidden;
}
.ani.animate__animated {
  visibility: visible;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9000;
}

.navbar-nav .nav-item {
  margin: 0px 15px;
}
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.navbar-nav .nav-item .nav-link {
  display: block;
  color: inherit;
}
.navbar-nav .nav-item .nav-link span {
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.navbar-nav .nav-item:hover, .navbar-nav .nav-item.active {
  color: #B6BB56;
}
@media (max-width: 1199.98px) {
  .navbar-nav .nav-item {
    margin: 0px 5px;
  }
}

.dropdown-center {
  text-align: center;
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 767.98px) {
  .dropdown-center {
    text-align: left;
    left: 0;
    -webkit-transform: translate(0%, 0);
        -ms-transform: translate(0%, 0);
            transform: translate(0%, 0);
  }
}

.fancybox__content {
  border-radius: 20px !important;
}
.fancybox__content .carousel__button.is-close {
  top: 10px;
  right: 10px;
  color: #424242;
}

.light-box {
  max-width: 950px;
  width: 100%;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .light-box {
    padding: 40px 20px;
  }
}

.health-light-box {
  max-width: 750px;
  width: 100%;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .health-light-box {
    padding: 40px 20px;
  }
}

.list-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fancybox__caption {
  max-width: 950px;
  width: 100%;
  font-size: 1.2rem;
}
.fancybox__caption span {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 40px;
  line-height: 20px;
}

.op1 {
  opacity: 1;
}

.pretty-select {
  background-image: url(../_img/shop/arrow.svg);
  background-position: 98% 50%;
  background-repeat: no-repeat;
}

.marquee-box {
  background-color: #B6BB56;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.marquee-box .marquee-slider {
  height: 40px;
}
.marquee-box .marquee-text-box {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 10px 0;
}
.marquee-box .marquee-text-box .icon {
  width: 14px;
  margin-right: 5px;
}
.marquee-box .marquee-text-box .text-box {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  /* Limit the Text line */
  -webkit-line-clamp: 1;
}
.marquee-box .marquee-text-box a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .marquee-box .marquee-text-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .marquee-box .marquee-text-box .text-box {
    width: calc(100% - 20px);
    text-align: left;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    position: absolute;
    left: 10px;
    top: 35%;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand {
    margin-left: 45px;
  }
}

.right-navbar-nav {
  width: 230px;
  position: relative;
  padding: 15px 0px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.right-navbar-nav::before {
  content: "";
  width: 1px;
  height: 34px;
  background-color: #B6BB56;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.right-navbar-nav .member-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-decoration: none;
}
.right-navbar-nav .member-btn .icon {
  margin-right: 5px;
}
.right-navbar-nav .shopping-car-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
}
.right-navbar-nav .shopping-car-btn .icon-box {
  margin-right: 8px;
  position: relative;
}
.right-navbar-nav .shopping-car-btn .icon-box .number {
  font-family: "Noto Sans", serif;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: #fff;
  background-color: #7BC4C4;
  border-radius: 99rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -8px;
  right: -10px;
}
.right-navbar-nav .shopping-car-btn:hover {
  color: #B6BB56;
}
@media (max-width: 767.98px) {
  .right-navbar-nav {
    width: 100px;
  }
  .right-navbar-nav .member-btn .text {
    display: none;
  }
  .right-navbar-nav .shopping-car-btn .icon-box .number {
    right: -15px;
  }
  .right-navbar-nav .shopping-car-btn .text {
    display: none;
  }
}
@media (max-width: 330px) {
  .right-navbar-nav {
    width: 80px;
    padding-left: 15px;
  }
}

.shoppingcart-aside-box {
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  right: -999px;
  top: 0;
  -webkit-box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shoppingcart-aside-box .closed-btn {
  width: 14px;
  height: 14px;
  margin: 5px 5px 0px auto;
  cursor: pointer;
}
.shoppingcart-aside-box .shopping-car-box .title-bar {
  padding: 10px 0;
  background-color: #EFEFEF;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list {
  padding: 10px 15px;
  max-height: 100px;
  overflow-x: auto;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list .shopping-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
  border-bottom: 1px solid #EFEFEF;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list .shopping-item-link .shopping-img {
  width: 100px;
  padding: 5px;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list .shopping-item-link .shopping-text-box {
  width: calc(100% - 160px);
  margin-left: 20px;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list .shopping-item-link .delete-btn {
  width: 30px;
  border: 0px;
  background-color: transparent;
}
.shoppingcart-aside-box .shopping-car-box .shopping-list .shopping-item-link .delete-btn:hover {
  color: #B6BB56;
}
.shoppingcart-aside-box .shopping-car-box .total-box {
  border-top: 1px solid #424242;
  padding: 10px;
  margin: 10px 0 0;
  text-align: right;
}
.shoppingcart-aside-box .shopping-car-box .shopping-btn {
  display: block;
  color: #fff;
  margin: 0px 20px 20px;
  background-color: #B6BB56;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shoppingcart-aside-box .shopping-car-box .shopping-btn:hover {
  background-color: #424242;
}
.shoppingcart-aside-box .shopping-car-box .shopping-btn.retail-btn {
  background-color: #7BC4C4;
}
.shoppingcart-aside-box .shopping-car-box .shopping-btn.retail-btn:hover {
  background-color: #424242;
}
.shoppingcart-aside-box.show {
  right: 0;
}

.right-nav-fram {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 100px;
}
.right-nav-fram .right-shoppimg-icon {
  width: 60px;
  height: 60px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 99rem;
  border: 1px solid #D6E3EC;
  background-color: #7BC4C4;
  cursor: pointer;
}
.right-nav-fram .right-line-icon {
  margin-top: 10px;
  position: relative;
}
.right-nav-fram .right-line-icon .line-icon {
  width: 60px;
  height: 60px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 99rem;
  border: 1px solid #D6E3EC;
  background-color: #67B466;
}
.right-nav-fram .right-line-icon .line-text {
  width: 280px;
  height: 60px;
  padding: 0px 15px;
  border-radius: 99rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: -999px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.right-nav-fram .right-line-icon .line-text span {
  background-color: #67B466;
  padding: 10px 15px;
  border-radius: 99rem;
  text-align: center;
  color: #fff;
  margin-right: 15px;
}
.right-nav-fram .right-line-icon .line-text a {
  text-decoration: none;
}
.right-nav-fram .right-line-icon:hover .line-text {
  opacity: 1;
  right: 0px;
}

footer .footer-info-fram {
  background-color: #a4b193;
  color: #fff;
  padding: 30px 0;
}
footer .footer-info-fram .footer-info {
  margin-bottom: 5px;
}
footer .footer-info-fram .footer-info a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-info-fram .footer-info a:hover {
  color: #EFEFEF;
}
footer .footer-info-fram .footer-content-box {
  padding-left: 70px;
  position: relative;
}
footer .footer-info-fram .footer-content-box::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
footer .footer-link-group .footer-link-btn {
  width: 270px;
  margin: 0 0 15px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-link-group .footer-link-btn .text-box {
  padding-left: 10px;
}
footer .footer-link-group:nth-last-child(1) .footer-link-btn {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  footer .footer-link-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-link-group .footer-link-btn {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  footer .footer-info-fram .footer-content-box {
    padding-left: 10px;
  }
  footer .footer-info-fram .footer-content-box::before {
    display: none;
  }
  footer .footer-link-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-link-group .footer-link-btn {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}

#copyright {
  background-color: #B6BB56;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}

#banner .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  background-color: #fff;
  opacity: 1;
  outline: none;
  border-radius: 0px;
}
#banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #424242;
}

.index-fourbox-gurop {
  margin: 80px 0;
}
.index-fourbox-gurop .index-fourbox-list {
  position: relative;
  z-index: 3;
}
.index-fourbox-gurop .index-fourbox-list::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box {
  width: 50%;
  padding: 20px;
  color: #fff;
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-text-box {
  height: 98px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn {
  display: inline-block;
  margin-top: 10px;
  padding-right: 50px;
  position: relative;
  text-decoration: none;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../_img/index/plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 30%;
  right: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn:hover {
  color: #fff;
}
.index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn:hover::after {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
@media (max-width: 991.98px) {
  .index-fourbox-gurop {
    margin: 30px 0;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box {
    width: 55%;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-title.fsr-40 {
    font-size: 1.5rem;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-title.fsr-40 img {
    width: 25px;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-text-box {
    height: 50px;
    -webkit-line-clamp: 2;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn {
    margin-top: 0;
    padding-right: 20px;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn.fsr-20 {
    font-size: 0.9rem;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn::after {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 767.98px) {
  .index-fourbox-gurop .index-fourbox-list .right-fram-box {
    width: 55%;
    padding: 0;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-title.fsr-40 {
    font-size: 1rem;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-title.fsr-40 img {
    width: 15px;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-text-box {
    display: none;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn {
    margin-top: 0;
    padding-right: 20px;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn.fsr-20 {
    font-size: 0.9rem;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn::after {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 320px) {
  .index-fourbox-gurop .index-fourbox-list .right-fram-box {
    padding: 0;
  }
  .index-fourbox-gurop .index-fourbox-list .right-fram-box .four-link-btn {
    padding-right: 10px;
  }
}

.index-hot-product-fram {
  background-color: #D6E3EC;
  padding: 80px 0;
}
.index-hot-product-fram .index-hot-product-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.index-hot-product-fram .index-hot-product-box .left-area {
  width: 29.5%;
}
.index-hot-product-fram .index-hot-product-box .right-area {
  width: calc(70.5% - 20px);
  margin-left: 20px;
}
@media (max-width: 1440px) {
  .index-hot-product-fram .index-hot-product-box .left-area {
    width: 37%;
  }
  .index-hot-product-fram .index-hot-product-box .right-area {
    width: calc(63% - 20px);
    margin-left: 20px;
  }
}
@media (max-width: 1199.98px) {
  .index-hot-product-fram .index-hot-product-box .left-area .ratio {
    height: 61vh;
  }
}
@media (max-width: 991.98px) {
  .index-hot-product-fram {
    padding: 30px 0;
  }
  .index-hot-product-fram .index-hot-product-box .left-area {
    display: none;
  }
  .index-hot-product-fram .index-hot-product-box .right-area {
    width: 95%;
    margin-left: 5%;
  }
}

#hot-product-list .swiper-pagination {
  width: auto;
  margin-left: 5vw;
}
#hot-product-list .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  background-color: #fff;
  opacity: 1;
  outline: none;
  border-radius: 0px;
}
#hot-product-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #B6BB56;
}
@media (max-width: 991.98px) {
  #hot-product-list .swiper-pagination {
    width: 100%;
    margin: 0px auto;
    bottom: -10px;
  }
}

.pro-item .pro-info-box {
  background-color: #fff;
  padding: 20px;
  position: relative;
}
.pro-item .pro-info-box .pro-srot {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 3;
}
.pro-item .pro-info-box .pro-srot span {
  background-color: #B6BB56;
  color: #fff;
  padding: 10px;
}
.pro-item .pro-info-box .o-price-box span {
  text-decoration: line-through;
}
.pro-item .hover-appear {
  background-color: #fff;
  padding: 0px 20px 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pro-item:hover .hover-appear {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .pro-item .hover-appear {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .pro-item .hover-appear {
    padding: 0 10px 20px;
  }
}

.add-number-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.add-number-box .title {
  width: 50px;
}
.add-number-box .amount {
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #B5B5B5;
  border-radius: 5px;
  padding: 5px;
}
.add-number-box .amount .down, .add-number-box .amount .up {
  width: 20px;
}
.add-number-box .amount .input-row {
  width: calc(100% - 40px);
}
.add-number-box .amount .input-row input {
  width: 100%;
  border: 0px;
  text-align: center;
}
.add-number-box.product-list {
  width: calc(100% - 50px - 20px);
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .add-number-box .title {
    width: 100%;
  }
  .add-number-box .amount {
    width: 100%;
  }
  .add-number-box .amount .down, .add-number-box .amount .up {
    width: 15px;
  }
  .add-number-box .amount .input-row {
    width: calc(100% - 30px);
  }
  .add-number-box.product-list {
    width: calc(100% - 30px - 10px);
    margin-right: 10px;
  }
}
.small-add-car-btn {
  width: 50px;
  height: 50px;
  border-radius: 99rem;
  display: inline-block;
  border: 0px;
  background-color: #7BC4C4;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.small-add-car-btn:hover {
  background-color: #a4b193;
}
@media (max-width: 767.98px) {
  .small-add-car-btn {
    width: 30px;
    height: 30px;
  }
}

.add-car-btn {
  width: 100%;
  display: inline-block;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 0px;
  background-color: #7BC4C4;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.add-car-btn:hover {
  background-color: #a4b193;
}

.ai-link-btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #B6BB56;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ai-link-btn:hover {
  text-decoration: none;
  color: #424242;
  background-color: #EFEFEF;
}

.hotpro-slider .swiper-slide {
  width: calc(33.3333333333% - 50px);
}
@media (max-width: 1199.98px) {
  .hotpro-slider .swiper-slide {
    width: calc(50% - 30px);
  }
}
@media (max-width: 991.98px) {
  .hotpro-slider .swiper-slide {
    width: calc(50% - 100px);
  }
}
@media (max-width: 767.98px) {
  .hotpro-slider .swiper-slide {
    width: calc(50% - 50px);
  }
}
@media (max-width: 320px) {
  .hotpro-slider .swiper-slide {
    width: calc(100% - 100px);
  }
}

.index-product-fram {
  background-color: #EFEFEF;
  padding: 80px 0;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item {
  margin: 0px 15px;
  cursor: pointer;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item span {
  color: #B5B5B5;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item span::before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #4C582D;
  position: absolute;
  bottom: -5px;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item:hover span, .index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item.active span {
  color: #4C582D;
}
.index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item:hover span::before, .index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item.active span::before {
  width: 100%;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .index-product-fram {
    padding: 30px 0;
  }
  .index-product-fram .p-txt-info .p-txt-content .p-tag {
    margin-bottom: 0px;
  }
}
@media (max-width: 767.98px) {
  .index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item {
    margin: 0px 5px 10px;
  }
  .index-product-fram .p-txt-info .p-txt-content .p-tag .p-tag-item.fsr-20 {
    font-size: 0.9rem;
  }
}

.index-about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.index-about-section .index-about-left-img {
  width: 45%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-about-section .index-about-right-textbox {
  width: 55%;
  color: #fff;
  background-color: #B6BB56;
  padding: 80px;
}
.index-about-section .index-about-right-textbox .left-en-title {
  width: 50px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.index-about-section .index-about-right-textbox .right-grop-box {
  width: calc(100% - 70px);
  margin-left: 20px;
}
.index-about-section .index-about-right-textbox .right-grop-box .text-item {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.index-about-section .index-about-right-textbox .right-grop-box .text-item::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../_img/index/about-icon.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .index-about-section .index-about-right-textbox {
    padding: 50px;
  }
}
@media (max-width: 767.98px) {
  .index-about-section .index-about-left-img {
    width: 100%;
    height: 250px;
  }
  .index-about-section .index-about-right-textbox {
    width: 100%;
  }
}

.index-about-section-2 {
  background-image: url(../_img/index/about-bg1.jpg);
  background-position: 50% 0%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 180px 0 80px;
  z-index: 1;
}
.index-about-section-2 .right-about-img-box {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
.index-about-section-2 .index-about-healthy-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px 60px;
  position: relative;
  z-index: 1;
}
.index-about-section-2 .index-about-healthy-box::before {
  content: "";
  width: 98%;
  height: 90%;
  border: 1px solid #B5B5B5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index-about-section-2 .index-about-healthy-box .text-box {
  width: 50%;
}
.index-about-section-2 .index-event-section {
  padding-top: 180px;
}
.index-about-section-2 .index-event-section .event-slider-box {
  width: 64vw;
  margin: 0 auto;
}
.index-about-section-2 .index-event-section .event-slider-box .event-item-box {
  text-decoration: none;
}
.index-about-section-2 .index-event-section .event-slider-box .event-item-box .event-item {
  padding: 10px;
  background-color: #7BC4C4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-about-section-2 .index-event-section .event-slider-box .event-item-box .event-item .event-title {
  color: #fff;
  padding: 10px 10px 0px 10px;
  line-height: 30px;
}
.index-about-section-2 .index-event-section .event-slider-box .event-item-box:hover .event-item {
  background-color: #B6BB56;
}
@media (max-width: 1440px) {
  .index-about-section-2 .index-event-section .event-slider-box {
    width: 85vw;
  }
}
@media (max-width: 1199.98px) {
  .index-about-section-2 .right-about-img-box img {
    width: 450px;
  }
}
@media (max-width: 991.98px) {
  .index-about-section-2 .right-about-img-box img {
    width: 300px;
  }
  .index-about-section-2 .index-event-section {
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .index-about-section-2 {
    padding: 50px;
  }
  .index-about-section-2 .right-about-img-box {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    margin-bottom: 30px;
  }
  .index-about-section-2 .right-about-img-box img {
    width: 100%;
    margin: 0 auto;
  }
  .index-about-section-2 .index-about-healthy-box .text-box {
    width: 100%;
  }
  .index-about-section-2 .index-event-section .event-slider-box {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .index-about-section-2 {
    padding: 50px 20px;
  }
}

.index-video-secticon {
  background-color: #EFEFEF;
  padding: 80px 0;
}
.index-video-secticon .video-slider-box {
  width: 64vw;
  margin: 30px auto;
}
.index-video-secticon .video-slider-box .video-item .video-img {
  position: relative;
  z-index: 1;
}
.index-video-secticon .video-slider-box .video-item .video-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.12);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-video-secticon .video-slider-box .video-item .video-img::after {
  content: "";
  width: 66px;
  height: 66px;
  background-image: url(../_img/index/vidoe-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-video-secticon .video-slider-box .video-item:hover {
  text-decoration: none;
}
.index-video-secticon .video-slider-box .video-item:hover .video-img::after {
  opacity: 0.5;
}
@media (max-width: 1440px) {
  .index-video-secticon .video-slider-box {
    width: 85vw;
  }
}
@media (max-width: 991.98px) {
  .index-video-secticon {
    padding: 30px 0 10px;
  }
}
@media (max-width: 767.98px) {
  .index-video-secticon .video-slider-box .video-item .video-img::after {
    width: 30px;
    height: 30px;
  }
}

.index-contact-section {
  background-image: url(../_img/index/contact-bg.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
  z-index: 1;
  color: #fff;
}
.index-contact-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.34);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ai-page-section {
  padding: 80px 0;
}

.ai-form-section {
  padding: 80px 0;
  background-color: #EFEFEF;
  font-family: "Noto Sans TC";
}
.ai-form-section .n-item {
  margin-bottom: 15px;
  padding-left: 10px;
}
.ai-form-section .n-item label {
  margin-right: 20px;
}
.ai-form-section .n-item label input {
  margin-right: 10px;
  accent-color: #000;
}
.ai-form-section .n-item .number-item-box label {
  width: 195px;
  margin-right: 0;
}
.ai-form-section .n-item .number-item-box .form-control {
  width: 300px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .ai-form-section {
    padding: 50px 0;
  }
  .ai-form-section .n-item label {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.form-group {
  margin-bottom: 20px;
}
.form-group span {
  color: #ff0000;
}
.form-group .form-control {
  border: 0px;
  margin-top: 10px;
  padding: 7px;
}
.form-group .card-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-group .card-form-group .card-form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group .card-form-group .card-form-list .card-form-item {
  width: 30px;
  margin-right: 10px;
  text-align: center;
}
.form-group .card-form-group .card-form-list .line-box {
  color: #000;
  padding-right: 10px;
  padding-top: 5px;
}
.form-group a:hover {
  text-decoration: none;
}

.form-control[readonly] {
  background-color: #D4D4D4;
}
.form-control[readonly].member-login-input[readonly] {
  background-color: #fff;
}

.member-section {
  padding: 80px 0;
  background-color: #EFEFEF;
}
@media (max-width: 991.98px) {
  .member-section {
    padding: 30px 0;
  }
}

.member-info-section {
  background-color: #7BC4C4;
  padding: 15px 0;
}
.member-info-section .phone-member-info-bar {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #7BC4C4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  cursor: pointer;
}
.member-info-section .member-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}
.member-info-section .member-info-list .member-info-item {
  margin-right: 25px;
}
.member-info-section .member-info-list .member-info-item:nth-last-child(1) {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .member-info-section .phone-member-info-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .member-info-section .member-info-list {
    display: none;
  }
  .member-info-section .member-info-list.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .member-info-section .member-info-list .member-info-item {
    width: 100%;
  }
  .member-info-section .member-info-list .member-info-item:nth-child(1) {
    display: none;
  }
}

.member-page-secticon {
  padding: 50px 0;
}
.member-page-secticon .member-page-list {
  padding: 30px 0;
}
.member-page-secticon .member-page-list .member-title-box {
  font-family: "Noto Sans TC";
}
.member-page-secticon .member-page-list .mebmer-icon-btn {
  display: inline-block;
  margin: 0px 20px;
}
.member-page-secticon .member-page-list .mebmer-icon-btn .member-icon-img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background-color: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-page-secticon .member-page-list .mebmer-icon-btn .member-icon-title {
  font-weight: bold;
  margin: 15px 0;
  line-height: 28.8px;
  text-align: center;
}
.member-page-secticon .member-page-list .mebmer-icon-btn:hover {
  text-decoration: none;
}
.member-page-secticon .member-page-list .mebmer-icon-btn:hover .member-icon-img {
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
}
.member-page-secticon .member-page-list .mebmer-icon-btn:hover .member-icon-title {
  color: #000;
}
.member-page-secticon .member-page-list:nth-child(2) {
  background-color: #EFEFEF;
}
.member-page-secticon .member-page-list:nth-child(2) .mebmer-icon-btn .member-icon-img {
  background-color: #fff;
}
@media (max-width: 991.98px) {
  .member-page-secticon {
    padding: 0;
  }
  .member-page-secticon .member-page-list {
    padding: 30px 0 0;
  }
}

.member-info-revise-fram {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  color: #000;
}
.member-info-revise-fram::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: #EFEFEF;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .member-info-revise-fram::before {
    width: 100%;
    height: 49%;
  }
}

#revise-content {
  max-width: 500px;
  width: 100%;
}

.file-group-box {
  margin: 20px 0 30px 0;
}
.file-group-box .file-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  color: #424242;
}
.file-group-box .file-title-box .delete-btn {
  margin-left: 10px;
  cursor: pointer;
}

.bulletin-board-section {
  background-color: #EFEFEF;
  padding: 80px 0;
}
.bulletin-board-section .bulletin-board-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bulletin-board-section .bulletin-board-list .bulletin-board-item {
  display: inline-block;
  margin: 0 20px;
  color: #B5B5B5;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bulletin-board-section .bulletin-board-list .bulletin-board-item::before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bulletin-board-section .bulletin-board-list .bulletin-board-item.active, .bulletin-board-section .bulletin-board-list .bulletin-board-item:hover {
  text-decoration: none;
  color: #000;
}
.bulletin-board-section .bulletin-board-list .bulletin-board-item.active::before, .bulletin-board-section .bulletin-board-list .bulletin-board-item:hover::before {
  width: 100%;
}
@media (max-width: 991.98px) {
  .bulletin-board-section {
    padding: 30px 10px;
  }
  .bulletin-board-section .bulletin-board-list .bulletin-board-item {
    margin: 0px 10px 10px;
  }
  .bulletin-board-section .bulletin-board-list .bulletin-board-item.fsr-20 {
    font-size: 1rem;
  }
}

.bulletin-board-box {
  margin-top: 50px;
}
.bulletin-board-box .bulletin-board-item-box {
  display: block;
  padding: 10px;
  background-color: #7BC4C4;
}
.bulletin-board-box .bulletin-board-item-box .bulletin-board-title {
  color: #fff;
}
.bulletin-board-box .bulletin-board-item-box:hover {
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .bulletin-board-box {
    margin-top: 30px;
  }
}

.online-classroom-box {
  margin-top: 50px;
}
.online-classroom-box .online-classroom-item {
  display: block;
}
.online-classroom-box .online-classroom-item .online-classroom-imgbox {
  position: relative;
  z-index: 2;
}
.online-classroom-box .online-classroom-item .online-classroom-imgbox::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.online-classroom-box .online-classroom-item .online-classroom-imgbox::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../_img/member/circle-play.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}
.online-classroom-box .online-classroom-item .online-classroom-text-box {
  margin: 15px 0;
}
.online-classroom-box .online-classroom-item .online-classroom-text-box .text-box {
  height: 72px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* Multi-line settings */
  -webkit-line-clamp: 3;
}
.online-classroom-box .online-classroom-item:hover {
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .online-classroom-box {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .online-classroom-box .online-classroom-item .online-classroom-text-box .text-box {
    display: none;
  }
}

.member-login-fram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.member-login-fram .member-login-left {
  width: 50%;
  background-color: #fff;
  padding: 60px;
}
.member-login-fram .member-login-left .member-login-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.member-login-fram .member-login-left .member-login-group .membr-login-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  text-align: center;
  padding: 10px 0;
  background-color: #B6BB56;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-login-fram .member-login-left .member-login-group .membr-login-btn:hover {
  text-decoration: none;
  background-color: #94C2E1;
}
.member-login-fram .member-login-left .member-login-group .membr-login-btn:nth-child(even) {
  background-color: #7BC4C4;
}
.member-login-fram .member-login-left .member-login-group .membr-login-btn:nth-child(even):hover {
  background-color: #4C582D;
}
.member-login-fram .member-login-left .forget-btn {
  color: #AEAEAE;
  border-bottom: 1px solid #AEAEAE;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-login-fram .member-login-left .forget-btn:hover {
  text-decoration: none;
  border-bottom: 1px solid #B6BB56;
}
.member-login-fram .member-login-right {
  width: 50%;
  border: 1px solid #7BC4C4;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .member-login-fram .member-login-left, .member-login-fram .member-login-right {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .member-login-fram .member-login-left {
    padding: 20px;
  }
}

.about-page-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.about-page-section .round-bg-box {
  position: absolute;
  left: 0;
  top: 70vh;
  z-index: -1;
}
.about-page-section .round-bg-box-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about-page-section .left-about-imgbox {
  width: 45%;
  overflow: hidden;
  border-radius: 0px 150px 150px 0;
}
.about-page-section .right-about-textbox {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page-section .right-about-textbox .right-box {
  width: 35vw;
}
.about-page-section .right-about-textbox .right-box .text-box {
  line-height: 28.8px;
}
.about-page-section .about-section-box {
  margin-top: 180px;
}
.about-page-section .about-section-box .right-about-imgbox {
  overflow: hidden;
  border-radius: 99rem;
  border: 5px solid #fff;
}
@media (max-width: 991.98px) {
  .about-page-section .left-about-imgbox {
    width: 40%;
    border-radius: 0px 50px 50px 0;
  }
  .about-page-section .right-about-textbox {
    width: 60%;
  }
  .about-page-section .right-about-textbox .right-box {
    width: 50vw;
  }
  .about-page-section .about-section-box {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .about-page-section {
    padding: 0;
  }
  .about-page-section .round-bg-box, .about-page-section .round-bg-box-1 {
    display: none;
  }
  .about-page-section .left-about-imgbox {
    width: 100%;
    border-radius: 0;
    margin-bottom: 0px;
  }
  .about-page-section .right-about-textbox {
    width: 100%;
    padding: 30px;
  }
  .about-page-section .right-about-textbox .right-box {
    width: 95%;
    margin: 0 auto;
  }
}

.about-page-section-2 {
  margin-top: -130px;
  position: relative;
  z-index: 2;
}
.about-page-section-2::before {
  content: "";
  width: 100%;
  height: 50%;
  background: #D6E3EC;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.about-page-section-2 .round-about-top {
  width: 290px;
  height: 290px;
  border-radius: 99rem;
  overflow: hidden;
  border: 5px solid #fff;
}
.about-page-section-2 .round-about-bottom {
  width: 383px;
  height: 383px;
  margin: -50px 0 0 auto;
  border-radius: 99rem;
  overflow: hidden;
  border: 5px solid #fff;
}
.about-page-section-2 .text-bg-box {
  position: absolute;
  top: 32vh;
  right: -20px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about-page-section-2 {
    margin-top: 0;
  }
  .about-page-section-2 .round-about-bottom {
    margin-top: 0px;
  }
  .about-page-section-2 .text-bg-box {
    top: 35vh;
  }
}
@media (max-width: 991.98px) {
  .about-page-section-2 .round-about-top {
    width: 180px;
    height: 180px;
  }
  .about-page-section-2 .round-about-bottom {
    width: 250px;
    height: 250px;
  }
  .about-page-section-2 .text-bg-box {
    top: 23vh;
  }
}
@media (max-width: 767.98px) {
  .about-page-section-2 .round-about-bottom {
    margin-top: -20px;
  }
}

.about-product-fram {
  background-color: #D6E3EC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px;
}
.about-product-fram .left-about-protext-box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-product-fram .left-about-protext-box .text-box {
  width: 35vw;
}
.about-product-fram .left-about-protext-box .text-box .text {
  line-height: 28.8px;
}
.about-product-fram .left-about-protext-box .about-icon-box {
  width: 120px;
  height: 120px;
  background-color: #EFEFEF;
  margin: 0 auto;
  border-radius: 99rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-product-fram .right-about-proimg-box {
  width: 50%;
  overflow: hidden;
  border-radius: 150px 0px 0px 150px;
}
@media (max-width: 1199.98px) {
  .about-product-fram {
    padding: 80px 0;
  }
  .about-product-fram .left-about-protext-box .text-box {
    width: 40vw;
  }
}
@media (max-width: 991.98px) {
  .about-product-fram {
    padding: 30px 0;
  }
  .about-product-fram .left-about-protext-box {
    width: 100%;
  }
  .about-product-fram .left-about-protext-box .text-box {
    width: 80vw;
    margin: 0 auto;
  }
  .about-product-fram .right-about-proimg-box {
    width: 100%;
    border-radius: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .about-product-fram .left-about-protext-box .text-box {
    width: 95%;
  }
  .about-product-fram .left-about-protext-box .about-icon-box {
    width: 90px;
    height: 90px;
  }
  .about-product-fram .left-about-protext-box .about-icon-box img {
    width: 50%;
  }
}

.about-guard-fram {
  background-attachment: fixed;
  background-image: url(../_img/about/guard-bg.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 300px 0;
}
.about-guard-fram .text-box {
  line-height: 28.8px;
}
@media (max-width: 1199.98px) {
  .about-guard-fram {
    padding: 180px 0;
  }
}
@media (max-width: 991.98px) {
  .about-guard-fram {
    background-attachment: initial;
    padding: 150px 0;
  }
}

.about-event-section {
  padding: 100px 0;
}
.about-event-section .event-slider-box {
  width: 64vw;
  margin: 0 auto;
}
.about-event-section .event-slider-box .event-item-box {
  text-decoration: none;
}
.about-event-section .event-slider-box .event-item-box .event-item {
  padding: 10px;
  background-color: #7BC4C4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-event-section .event-slider-box .event-item-box .event-item .event-title {
  color: #fff;
  padding: 10px 10px 0px 10px;
  line-height: 30px;
}
.about-event-section .event-slider-box .event-item-box:hover .event-item {
  background-color: #B6BB56;
}
@media (max-width: 1440px) {
  .about-event-section .event-slider-box {
    width: 85vw;
  }
}
@media (max-width: 991.98px) {
  .about-event-section {
    padding: 30px 0 50px;
  }
  .about-event-section .event-slider-box {
    width: 100%;
  }
}

.about-section-page {
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
.about-section-page .round-bg-box {
  position: absolute;
  right: 0;
  bottom: 40%;
  z-index: -1;
}
.about-section-page .round-bg-box-1 {
  position: absolute;
  left: 50px;
  bottom: 20%;
  z-index: -1;
}
.about-section-page .about__top-fram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section-page .about__top-fram .about__left-img-box {
  padding-bottom: 35%;
  height: 0;
  width: 45%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}
.about-section-page .about__top-fram .about__right-text-box {
  width: 55%;
  padding-left: 30px;
}
.about-section-page .about__top-fram .about__right-text-box .text-box {
  line-height: 35px;
}
@media (max-width: 991.98px) {
  .about-section-page .about__top-fram .about__left-img-box {
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 50px;
  }
  .about-section-page .about__top-fram .about__right-text-box {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .about-section-page .round-bg-box, .about-section-page .round-bg-box-1 {
    display: none;
  }
}

.about2-title-box {
  color: #558E03;
}

.about2__img-box-fram {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about2__img-box-fram .about__img-box {
  width: calc(20% - 10px);
}
@media (max-width: 767.98px) {
  .about2__img-box-fram {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about2__img-box-fram .about__img-box {
    width: 50%;
    margin-bottom: 15px;
  }
}

.about2-page-section {
  width: 80%;
  margin: 0 0 80px auto;
  padding: 32px 0px 32px 100px;
  background-color: #D5E2EB;
  border-radius: 50px 0px 0px 50px;
}
.about2-page-section .about2-two__fram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text {
  width: 55%;
  padding-right: 60px;
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-title {
  color: #3A738C;
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox {
  width: calc(33.3333333333% - 30px);
  background-color: #fff;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox .about2__two-textbox {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox .about2__two-textbox .title {
  padding-right: 30px;
}
.about2-page-section .about2-two__fram .about2__two-fram-right-imgbox {
  width: 45%;
  padding-bottom: 36.5%;
  height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}
@media (max-width: 1440px) {
  .about2-page-section {
    width: 90%;
  }
}
@media (max-width: 1199.98px) {
  .about2-page-section {
    padding: 32px 0px 32px 32px;
    width: 95%;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-left-text {
    width: 60%;
    padding-right: 30px;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox {
    width: calc(33.3333333333% - 10px);
    border-radius: 35px;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-right-imgbox {
    width: 40%;
    padding-bottom: 32%;
  }
}
@media (max-width: 991.98px) {
  .about2-page-section .about2-two__fram .about2__two-fram-left-text {
    width: 100%;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox {
    border-radius: 45px;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-right-imgbox {
    width: 100%;
    padding-bottom: 80%;
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .about2-page-section {
    margin-bottom: 0px;
  }
  .about2-page-section .about2-two__fram .about2__two-fram-left-text .about2__two-img-fram .about2__two-listbox {
    width: 230px;
    margin: 0 auto 30px;
    border-radius: 50px;
  }
}

.about__page-section-3 {
  padding: 80px 0;
}
.about__page-section-3 .about3__page-box .img-box {
  position: relative;
  z-index: 2;
}
.about__page-section-3 .about3__page-box .img-box::before {
  content: "";
  width: 240px;
  height: 240px;
  border-radius: 99rem;
  background-color: #DEE099;
  position: absolute;
  left: -100px;
  top: -100px;
  z-index: -1;
}
.about__page-section-3 .about3__page-title {
  color: #558E03;
}
.about__page-section-3 .about3__list-fram .about3__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.about__page-section-3 .about3__list-fram .about3__item .img-box {
  width: 100px;
  margin-right: 20px;
}
.about__page-section-3 .about3__list-fram .about3__item .text-box {
  width: calc(100% - 120px);
}
.about__page-section-3 .about3__list-fram .about3__item .text-box .text {
  padding-left: 15px;
}
@media (max-width: 1199.98px) {
  .about__page-section-3 {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .about__page-section-3 .about3__page-box .img-box::before {
    left: -30px;
    top: -30px;
  }
}
@media (max-width: 767.98px) {
  .about__page-section-3 {
    padding: 50px 0;
  }
  .about__page-section-3 .about3__page-box .img-box::before {
    display: none;
  }
}

.about__page-section-4 {
  width: 80%;
  margin: 0 auto 80px 0;
  padding: 32px 100px 32px 0px;
  background-color: #D5E2EB;
  border-radius: 0px 50px 50px 0px;
}
.about__page-section-4 .about__page-4-fram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__page-section-4 .about__page-4-fram .about__page-4-left-box {
  width: 45%;
  padding-bottom: 36.5%;
  height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}
.about__page-section-4 .about__page-4-fram .about__page-4-right-box {
  width: 55%;
  padding-left: 50px;
}
@media (max-width: 1440px) {
  .about__page-section-4 {
    width: 90%;
  }
}
@media (max-width: 1199.98px) {
  .about__page-section-4 {
    width: 95%;
    padding-right: 32px;
  }
}
@media (max-width: 991.98px) {
  .about__page-section-4 .about__page-4-fram .about__page-4-left-box {
    width: 100%;
    padding-bottom: 80%;
    margin-bottom: 50px;
  }
  .about__page-section-4 .about__page-4-fram .about__page-4-right-box {
    width: 100%;
    padding: 0 0px 0px 20px;
  }
}

.about__page-section-5 .title {
  color: #B5BB58;
  padding-bottom: 80px;
}
.about__page-section-5 .about__page-5-fram {
  width: 80%;
  margin: 0 0 80px auto;
}
.about__page-section-5 .about__page-5-fram .about__page-5-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__left-box {
  width: 35%;
}
.about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__right-box {
  width: 65%;
  padding-bottom: 41%;
  height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}
@media (max-width: 1440px) {
  .about__page-section-5 .about__page-5-fram {
    width: 90%;
  }
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__left-box {
    width: 40%;
  }
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__right-box {
    width: 60%;
    padding-bottom: 37.8%;
  }
}
@media (max-width: 1199.98px) {
  .about__page-section-5 .about__page-5-fram {
    width: 95%;
  }
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__left-box {
    width: 50%;
  }
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__right-box {
    width: 50%;
    padding-bottom: 31%;
  }
}
@media (max-width: 991.98px) {
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__left-box {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
  .about__page-section-5 .about__page-5-fram .about__page-5-list .about__page-5__right-box {
    width: 100%;
    padding-bottom: 63%;
  }
}

.mall-tabsort-section {
  padding: 80px 0 30px 0;
}
.mall-tabsort-section .mall-tabsort-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mall-tabsort-section .mall-tabsort-list .mall-tab-item {
  margin: 0px 15px;
  font-weight: bold;
  color: #B5B5B5;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.mall-tabsort-section .mall-tabsort-list .mall-tab-item span {
  position: relative;
}
.mall-tabsort-section .mall-tabsort-list .mall-tab-item span::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #424242;
  position: absolute;
  left: 0;
  bottom: -5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mall-tabsort-section .mall-tabsort-list .mall-tab-item.active, .mall-tabsort-section .mall-tabsort-list .mall-tab-item:hover {
  color: #424242;
}
.mall-tabsort-section .mall-tabsort-list .mall-tab-item.active span::after, .mall-tabsort-section .mall-tabsort-list .mall-tab-item:hover span::after {
  width: 100%;
}
@media (max-width: 991.98px) {
  .mall-tabsort-section {
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .mall-tabsort-section .mall-tabsort-list .mall-tab-item {
    margin: 0px 10px 10px;
  }
  .mall-tabsort-section .mall-tabsort-list .mall-tab-item.fsr-20 {
    font-size: 1.1rem;
  }
}

.mall-product-list {
  padding: 30px 0 80px;
  background-color: #EFEFEF;
}
@media (max-width: 991.98px) {
  .mall-product-list {
    padding: 30px 0;
  }
}

.mall-page-section {
  padding: 80px 0;
}
.mall-page-section .mall-product-big-box .slider-big {
  border: 1px solid #EFEFEF;
}
.mall-page-section .mall-product-big-box .slider-small .swiper-slide {
  border: 2px solid #EFEFEF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mall-page-section .mall-product-big-box .slider-small .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #7BC4C4;
}
.mall-page-section .mall-product-info-box {
  padding-left: 30px;
}
.mall-page-section .mall-product-info-box .pro-sort span {
  background-color: #B6BB56;
  padding: 10px 20px;
  color: #fff;
}
.mall-page-section .mall-product-info-box .mall-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mall-page-section .mall-product-info-box .mall-price-box .o-price-box {
  padding: 0 10px;
  margin-right: 20px;
  position: relative;
}
.mall-page-section .mall-product-info-box .mall-price-box .o-price-box::before {
  content: "";
  width: 100%;
  height: 1.74px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mall-page-section .mall-product-info-box .mall-price-box .s-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .mall-page-section {
    padding: 30px 0;
  }
  .mall-page-section .mall-product-info-box {
    padding-left: 0;
  }
}

.cause-page-section-1 {
  padding: 80px 0;
}
.cause-page-section-1 .cause-icon-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0 30px;
}
.cause-page-section-1 .cause-icon-group .cause-icon {
  margin: 10px 10px 20px;
}
@media (max-width: 991.98px) {
  .cause-page-section-1 {
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .cause-page-section-1 .cause-icon-group {
    margin-bottom: 0;
  }
  .cause-page-section-1 .cause-icon-group .cause-icon {
    width: calc(33.3333333333% - 20px);
    margin-bottom: 50px;
  }
}

.cause-feature-section {
  background-attachment: fixed;
  background-image: url(../_img/cause/bg01.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.cause-feature-section .feature-img-box {
  margin: 80px 0;
}
@media (max-width: 991.98px) {
  .cause-feature-section {
    padding: 50px 0 30px;
  }
}

.cause-pioneer-section {
  padding: 80px 0;
}
.cause-pioneer-section .cause-product-link {
  display: block;
  background-color: #EFEFEF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.cause-pioneer-section .cause-product-link .cause-text-fram {
  padding: 40px 30px;
  line-height: 28.8px;
}
.cause-pioneer-section .cause-product-link .cause-text-fram .text-box {
  height: 115px;
  color: #000;
}
.cause-pioneer-section .cause-product-link .cause-pro-btn {
  background-color: #B6BB56;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cause-pioneer-section .cause-product-link .cause-classroom-btn {
  background-color: #7BC4C4;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cause-pioneer-section .cause-product-link:hover .cause-pro-btn {
  background-color: #424242;
}
.cause-pioneer-section .cause-product-link:hover .cause-classroom-btn {
  background-color: #B5B5B5;
}
@media (max-width: 991.98px) {
  .cause-pioneer-section {
    padding: 30px 0;
  }
  .cause-pioneer-section .cause-product-link .cause-text-fram .text-box {
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .cause-pioneer-section .cause-product-link .cause-text-fram .text-box {
    height: auto;
  }
}

.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide {
  width: calc(33.3333333333% - 10px);
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item {
  position: relative;
  margin-bottom: 10px;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item::before {
  content: "";
  width: 85px;
  height: 44px;
  background-image: url(../_img/cause/polygon.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -45px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .p-tab-img-box {
  width: 285px;
  height: 285px;
  border-radius: 99rem;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid #fff;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item.active::before {
  opacity: 1;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item.active .p-tab-img-box {
  border: 5px solid #7BC4C4;
}
.cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item.active .title {
  color: #7BC4C4;
}
.cause-page-section-2 .bg-box {
  background-color: #EFEFEF;
  padding: 50px;
}
.cause-page-section-2 .p-tag-content .p-tag-content-item .p-tab-list .p-tab-item {
  margin-bottom: 10px;
}
.cause-page-section-2 .p-tag-content .p-tag-content-item .p-tab-list .p-tab-item span {
  position: relative;
  padding-left: 20px;
}
.cause-page-section-2 .p-tag-content .p-tag-content-item .p-tab-list .p-tab-item span::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #7BC4C4;
  border-radius: 99rem;
  position: absolute;
  top: 4px;
  left: 0;
}
@media (max-width: 1199.98px) {
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .p-tab-img-box {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 991.98px) {
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .p-tab-img-box {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 767.98px) {
  .cause-page-section-2 {
    background-color: #EFEFEF;
  }
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item::before {
    width: 35px;
    height: 20px;
    background-size: 100%;
    bottom: -27px;
    background-image: url(../_img/cause/polygon-1.svg);
  }
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .p-tab-img-box {
    width: 118px;
    height: 118px;
  }
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .title.fsr-32 {
    font-size: 1rem;
  }
  .cause-page-section-2 .bg-box {
    background-color: #fff;
    padding: 30px;
  }
}
@media (max-width: 320px) {
  .cause-page-section-2 .p-txt-content .tage-slider .swiper-slide .p-tag-item .p-tab-img-box {
    width: 90px;
    height: 90px;
  }
}

.cause-page-section-3 .table-fram .table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 2px;
}
.cause-page-section-3 .table-fram .table-box .left-table-box {
  width: 254px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D6E3EC;
}
.cause-page-section-3 .table-fram .table-box .right-table-box {
  width: calc(100% - 256px);
  padding: 10px 20px;
  background-color: #D6E3EC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cause-page-section-3 .table-fram .table-box .right-table-box .p-tab-list .p-tab-item {
  margin-bottom: 10px;
}
.cause-page-section-3 .table-fram .table-box .right-table-box .p-tab-list .p-tab-item span {
  position: relative;
  padding-left: 20px;
}
.cause-page-section-3 .table-fram .table-box .right-table-box .p-tab-list .p-tab-item span::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #7BC4C4;
  border-radius: 99rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cause-page-section-3 .table-fram .table-box .right-table-box .p-tab-list .p-tab-item:nth-last-child(1) {
  margin-bottom: 0;
}
.cause-page-section-3 .table-fram .table-box:nth-child(even) .left-table-box {
  background-color: #EFEFEF;
}
.cause-page-section-3 .table-fram .table-box:nth-child(even) .right-table-box {
  background-color: #EFEFEF;
}
@media (max-width: 767.98px) {
  .cause-page-section-3 {
    padding-top: 30px;
  }
  .cause-page-section-3 .table-fram .table-box .left-table-box {
    padding-top: 25px;
    width: 100%;
  }
  .cause-page-section-3 .table-fram .table-box .right-table-box {
    width: 100%;
    -moz-box-pack: 10px;
  }
}

.causr-bonus-section {
  padding: 0 0 80px 0;
}
.causr-bonus-section .sub-title {
  color: #fff;
  border-radius: 5px;
  padding: 10px 0;
  background-color: #424242;
}
@media (max-width: 991.98px) {
  .causr-bonus-section {
    padding: 0 0 40px 0;
  }
}

.causr-retail-section {
  padding: 80px 0;
  background-color: #D6E3EC;
}
@media (max-width: 991.98px) {
  .causr-retail-section {
    padding: 50px 0;
  }
}

.cause-page-section-4 {
  padding: 50px 0;
  background-color: #EFEFEF;
}

.cause-page-section-5 {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  background-image: url(../_img/cause/cause-add.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
.cause-page-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(214, 227, 236, 0.31);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .cause-page-section-5 {
    background-attachment: inherit;
    background-repeat: 50% 50%;
  }
}

.cause-class-section-1 {
  padding: 80px 0;
  background-color: #EFEFEF;
  background-image: url(../_img/cause/class-bg.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
}
.cause-class-section-1 .class-list .class-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.cause-class-section-1 .class-list .class-item .class-icon {
  width: 60px;
  height: 60px;
  border-radius: 99rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #7BC4C4;
  color: #fff;
}
.cause-class-section-1 .class-list .class-item .class-text {
  width: calc(100% - 80px);
  margin-left: 20px;
  font-weight: bold;
}
.cause-class-section-1 .class-list .class-item:nth-child(even) .class-icon {
  background-color: #B6BB56;
}
@media (max-width: 991.98px) {
  .cause-class-section-1 {
    padding: 50px 0;
  }
}

.cause-class-section-2 {
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cause-class-section-2 .class-round-bg-box {
  position: absolute;
  left: 0;
  top: 70vh;
  z-index: -1;
}
.cause-class-section-2 .class-round-bg-box-1 {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: -1;
}
.cause-class-section-2 .class-fram-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cause-class-section-2 .class-fram-1 .class-left-img-box {
  width: 50%;
  border-radius: 0px 80px 80px 0px;
  overflow: hidden;
}
.cause-class-section-2 .class-fram-1 .class-right-text-box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cause-class-section-2 .class-fram-1 .class-right-text-box .text-box {
  width: 380px;
  margin: 0 auto;
}
.cause-class-section-2 .class-fram-2 {
  padding: 80px 0;
}
.cause-class-section-2 .class-fram-2 .right-img-box {
  border: 5px solid #EFEFEF;
  border-radius: 80px;
  overflow: hidden;
}
.cause-class-section-2 .class-fram-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cause-class-section-2 .class-fram-3 .class-left-img-box {
  width: 50%;
  border-radius: 0px 80px 80px 0px;
  overflow: hidden;
}
.cause-class-section-2 .class-fram-3 .class-right-text-box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cause-class-section-2 .class-fram-3 .class-right-text-box .text-box {
  width: 380px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .cause-class-section-2 {
    padding-top: 50px;
  }
  .cause-class-section-2 .class-fram-1 .class-left-img-box {
    width: 100%;
    border-radius: 0;
    margin-bottom: 50px;
  }
  .cause-class-section-2 .class-fram-1 .class-right-text-box {
    width: 100%;
    padding: 0px 10px;
  }
  .cause-class-section-2 .class-fram-1 .class-right-text-box .text-box {
    width: 100%;
    margin: 0 auto;
  }
  .cause-class-section-2 .class-fram-2 {
    padding-top: 30px;
  }
  .cause-class-section-2 .class-fram-3 .class-left-img-box {
    width: 100%;
    border-radius: 0px;
    margin-bottom: 50px;
  }
  .cause-class-section-2 .class-fram-3 .class-right-text-box {
    width: 100%;
    padding: 0px 10px;
  }
  .cause-class-section-2 .class-fram-3 .class-right-text-box .text-box {
    width: 100%;
    margin: 0 auto;
  }
}

.cause-class-section-3 {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cause-class-section-3 .class-round-bg-box-2 {
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: -2;
}
.cause-class-section-3 .right-img-box {
  position: relative;
  z-index: 2;
}
.cause-class-section-3 .right-img-box .img-box {
  width: 480px;
  height: 480px;
  overflow: hidden;
  border-radius: 99rem;
  border: 5px solid #fff;
  z-index: 2;
}
.cause-class-section-3 .right-img-box::before {
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 99rem;
  overflow: hidden;
  background-color: #EFEFEF;
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: -1;
}
.cause-class-section-3 .left-img-box .img-box {
  border-radius: 80px;
  overflow: hidden;
  border: 5px solid #EFEFEF;
}
@media (max-width: 991.98px) {
  .cause-class-section-3 {
    padding-bottom: 50px;
  }
  .cause-class-section-3 .right-img-box .img-box {
    width: 100%;
    height: 100%;
  }
}

.product-section-1 {
  padding: 80px 0;
}
.product-section-1 .product-top-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0;
}
.product-section-1 .product-top-group .icon-list {
  width: 110px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-section-1 .product-top-group .icon-list .icon {
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .product-section-1 {
    padding: 30px 0;
  }
}

.product-section-2 {
  padding: 80px 0;
}
.product-section-2 .pro-icontext-list .pro-icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-section-2 .pro-icontext-list .pro-icon-item .icon-box {
  width: 58px;
  height: 58px;
  border-radius: 99rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
}
.product-section-2 .pro-icontext-list .pro-icon-item .text-box {
  width: calc(100% - 78px);
  margin-left: 12px;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .product-section-2 {
    padding: 30px 0;
  }
}

.product-section-3 {
  background-color: #EFEFEF;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .product-section-3 {
    padding: 30px 0;
  }
}

.product-section-4 {
  padding: 80px 0;
}
.product-section-4 .health-column-swiper-section {
  width: 64vw;
  margin: 50px auto;
}
.product-section-4 .health-column-swiper-section .health-item {
  display: block;
  text-decoration: none;
}
.product-section-4 .health-column-swiper-section .health-item .health-title-box {
  background-color: #7BC4C4;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
}
@media (max-width: 1440px) {
  .product-section-4 .health-column-swiper-section {
    width: 85%;
  }
}
@media (max-width: 1199.98px) {
  .product-section-4 .health-column-swiper-section {
    width: 95%;
  }
}
@media (max-width: 991.98px) {
  .product-section-4 {
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .product-section-4 .health-column-swiper-section .health-item .health-title-box {
    font-size: 0.9rem;
  }
  .product-section-4 .health-column-swiper-section .health-item .health-srot.fsr-20 {
    font-size: 1rem;
  }
  .product-section-4 .health-column-swiper-section .health-item .hralth-title.fsr-20 {
    font-size: 1rem;
  }
}

.product-section-5 .control-secticon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #B6BB56;
}
.product-section-5 .control-secticon-box .left-img-box {
  width: 50%;
}
.product-section-5 .control-secticon-box .right-text-box {
  width: 50%;
}
.product-section-5 .control-secticon-box .right-text-box .pro-page-btn {
  cursor: pointer;
}
.product-section-5 .control-secticon-box .right-text-box .pro-page-btn:hover {
  background-color: #424242;
}
@media (max-width: 767.98px) {
  .product-section-5 .control-secticon-box .left-img-box {
    width: 100%;
  }
  .product-section-5 .control-secticon-box .right-text-box {
    width: 100%;
    padding: 30px;
    margin: 20px 0;
  }
}

.retail-section-1 {
  background-color: #EFEFEF;
  padding: 100px 0;
}
.retail-section-1 .retail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 5px 20px;
  cursor: pointer;
}
.retail-section-1 .retail-item .retail-img-box {
  width: 50%;
}
.retail-section-1 .retail-item .retail-text-box {
  width: calc(50% - 20px);
  margin-left: 20px;
}
.retail-section-1 .retail-item .retail-text-box .s-price-box {
  width: 60%;
}
.retail-section-1 .retail-item .retail-text-box .o-price-box {
  width: 40%;
  padding: 0 10px;
  text-decoration: line-through;
}
.retail-section-1 .retail-item:hover {
  color: #424242;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .retail-section-1 {
    padding: 50px 0;
  }
}
@media (max-width: 767.98px) {
  .retail-section-1 .retail-item {
    padding: 10px 20px 5px;
  }
  .retail-section-1 .retail-item .retail-img-box {
    width: 30%;
  }
  .retail-section-1 .retail-item .retail-text-box {
    width: calc(70% - 20px);
  }
}

.retail-page-section {
  padding: 80px 0;
}
.retail-page-section .retail-product-big-box .slider-big {
  border: 1px solid #EFEFEF;
}
.retail-page-section .retail-product-big-box .slider-small .swiper-slide {
  border: 2px solid #EFEFEF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.retail-page-section .retail-product-big-box .slider-small .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #7BC4C4;
}
.retail-page-section .retail-info-box .o-price-box {
  padding: 0 10px;
  margin-right: 20px;
}
.retail-page-section .retail-info-box .o-price-box span {
  text-decoration: line-through;
}
.retail-page-section .retail-info-box .s-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.retail-page-section .retail-info-box .add-car-btn {
  width: 270px;
  margin-left: 10px;
  border-radius: 5px;
}
@media (max-width: 991.98px) {
  .retail-page-section {
    padding: 50px 0;
  }
}

.shoppcar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 3;
}
.shoppcar-list::after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.shoppcar-list .shoppcar-itme {
  width: 70px;
  text-align: center;
  font-weight: bold;
  position: relative;
  color: #000;
}
.shoppcar-list .shoppcar-itme .icon-box {
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  border-radius: 99rem;
  margin-bottom: 20px;
}
.shoppcar-list .shoppcar-itme .icon-box.active {
  background-color: #7BC4C4;
  color: #fff;
}

.shopping-table-header {
  background-color: #7BC4C4;
  color: #fff;
  padding: 10px 15px;
}
@media (max-width: 991.98px) {
  .shopping-table-header {
    display: none;
  }
}

.shopping-table-body {
  background-color: #fff;
  border: 1px solid #EFEFEF;
  padding: 10px 15px;
}
.shopping-table-body .shopping-table-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #424242;
  padding: 10px 0;
}
.shopping-table-body .shopping-table-list .shopping-table-itme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.shopping-table-body .shopping-table-list .shopping-table-itme .img-box {
  width: 100px;
}
.shopping-table-body .shopping-table-list .shopping-table-itme .title {
  width: calc(100% - 110px);
  margin-left: 10px;
}
.shopping-table-body .shopping-table-list .shopping-table-itme .amount {
  width: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #B5B5B5;
  border-radius: 5px;
  padding: 5px;
}
.shopping-table-body .shopping-table-list .shopping-table-itme .amount .down, .shopping-table-body .shopping-table-list .shopping-table-itme .amount .up {
  width: 25px;
  cursor: pointer;
  text-align: center;
}
.shopping-table-body .shopping-table-list .shopping-table-itme .amount .input-row {
  width: calc(100% - 50px);
}
.shopping-table-body .shopping-table-list .shopping-table-itme .amount .input-row input {
  width: 100%;
  border: 0px;
  text-align: center;
}
.shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box {
  text-align: center;
}
.shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box .trash-btn {
  margin: 0 auto;
  border: 0px;
  background-color: transparent;
}
.shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box .trash-btn:hover {
  color: #B6BB56;
}
.shopping-table-body .shopping-table-list:nth-last-child(1) {
  border-bottom: 0px;
}
@media (max-width: 991.98px) {
  .shopping-table-body .shopping-table-list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
  .shopping-table-body .shopping-table-list .shopping-table-itme {
    margin-bottom: 15px;
  }
  .shopping-table-body .shopping-table-list .shopping-table-itme::before {
    content: attr(data-mask);
    display: block;
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    background-color: #7BC4C4;
    padding: 5px;
  }
  .shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box::before {
    display: none;
  }
  .shopping-table-body .shopping-table-list .shopping-table-itme.trash-btn-box .trash-btn {
    color: #fff;
  }
}

.shopping-other-frambox {
  border: 1px solid #EFEFEF;
  background-color: #fff;
  padding-bottom: 25px;
}
.shopping-other-frambox .form-group {
  padding: 10px 20px 0px;
  margin-bottom: 0px;
}
.shopping-other-frambox .form-group .shopping-select {
  border: 1px solid #B5B5B5;
  border-radius: 5px;
}

.shopping-nextbtn {
  display: block;
  background-color: #424242;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  padding: 15px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shopping-nextbtn:hover {
  color: #000;
  text-decoration: none;
  background-color: #B6BB56;
}

.shopping-back-btn {
  display: block;
  width: 150px;
  padding: 15px 0px;
  background-color: #7BC4C4;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shopping-back-btn:hover {
  color: #000;
  text-decoration: none;
  background-color: #B6BB56;
}

.shoppimg-radio-input {
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shoppimg-radio-input input {
  margin-right: 5px;
}
.shoppimg-radio-input .radio-box {
  width: 15px;
}
.shoppimg-radio-input .radio-input-box {
  width: calc(100% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shoppimg-radio-input .radio-input-box .text-box {
  width: 225px;
  height: 39px;
  padding-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shoppimg-radio-input .radio-input-box .text-box.phone-title {
  width: 100px;
}
.shoppimg-radio-input .radio-input-box .shopping-select {
  width: calc(100% - 230px);
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #000;
}
.shoppimg-radio-input .radio-input-box .shopping-select.phone-title {
  width: calc(100% - 100px);
}
/*# sourceMappingURL=style.css.map */