/* Reset
-------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
pre,
blockquote,
figure,
hr {
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

a,
button,
input,
select,
textarea {
  color: inherit;
}

a,
button,
input,
select,
textarea,
[role='button'] {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
  cursor: pointer;
}

button * {
  pointer-events: none;
}

button,
textarea,
[type='button'],
[type='reset'],
[type='submit'],
[type='email'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='text'],
[type='url'] {
  -webkit-appearance: none;
  border-radius: 0;
}

[type='image'] {
  border-radius: 0;
}

input[no-spin-button],
input[no-spin-button]::-webkit-inner-spin-button,
input[no-spin-button]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

/* Common
-------------------- */
body {
  font-family: 'Roboto', sans-serif;
}

#app {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1180px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.btn {
  padding: 0;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.btn--default {
  border: 2px solid #d8d8d8;
  background-color: #fff;
  color: #9b9b9b;
}

.btn--default:hover {
  background-color: #d8d8d8;
}

.btn--primary {
  background-color: #9fc775;
  color: #fff;
}

.btn--primary:hover {
  background-color: #83b054;
}

.btn--next {
  width: auto;
  overflow: hidden;
  display: inline-flex;
}

.btn--next span {
  position: relative;
  transition: all 0.4s ease;
}

.btn--next .icon {
  position: absolute;
  top: 50%;
  font-size: 32px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}

.btn--next:hover .icon {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header ~ .main {
  padding-top: 60px;
}

@supports (padding-top: env(safe-area-inset-top)) {
  .header ~ .main {
    padding-top: calc(60px + env(safe-area-inset-top));
  }
}

/* Animation
-------------------- */
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Website Loading
-------------------- */
.website-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 114px;
  box-sizing: border-box;
  background-color: #eee;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-out;
}

.website-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.website-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 5px;
  border-radius: 50%;
  margin: 34px 0 0 -25px;
  background: #000;
  opacity: 0.1;
  -webkit-animation: loading-shadow 0.5s linear infinite;
  animation: loading-shadow 0.5s linear infinite;
}

.website-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin: -25px 0 0 -25px;
  background: #9fc775;
  -webkit-animation: loading-rotate 0.5s linear infinite;
  animation: loading-rotate 0.5s linear infinite;
}

.website-loading span {
  font-size: 18px;
  color: #9b9b9b;
  overflow: hidden;
}

.website-loading span::after {
  content: '...\A..\A.';
  height: 1em;
  line-height: 1;
  white-space: pre-wrap;
  vertical-align: bottom;
  display: inline-block;
  -webkit-animation: loading-dot 1.5s step-start infinite both;
  animation: loading-dot 1.5s step-start infinite both;
}

@-webkit-keyframes loading-rotate {
  17% {
    border-bottom-right-radius: 4px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes loading-rotate {
  17% {
    border-bottom-right-radius: 4px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes loading-shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
@keyframes loading-shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}

@-webkit-keyframes loading-dot {
  33% {
    transform: translateY(-2em);
  }
  66% {
    transform: translateY(-1em);
  }
}

@keyframes loading-dot {
  33% {
    transform: translateY(-2em);
  }
  66% {
    transform: translateY(-1em);
  }
}

/* Header
-------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #fff;
  z-index: 1001;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: block;
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 80px;
  display: block;
}

.header__nav {
  display: flex;
}

.header__nav .nav__link {
  position: relative;
  width: 80px;
  margin-left: 60px;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #4a4a4a;
}

.header__nav .nav__link:first-child {
  margin-left: 0;
}

.header__nav .nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background-color: #9fc775;
  display: block;
  pointer-events: none;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header__nav .nav__link:hover::after,
.header__nav .nav__link.is-active::after {
  transform: scaleX(1);
}

.header__nav .nav__link.is-active {
  font-weight: 700;
}

.header__btn--menu {
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  margin-left: -10px;
  margin-right: 10px;
  box-sizing: border-box;
  color: #4a4a4a;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.header__btn--menu i {
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background-color: currentColor;
  display: block;
  transform-origin: left;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.header__btn--menu.is-active i:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.header__btn--menu.is-active i:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

.header__btn--menu.is-active i:nth-child(2) {
  opacity: 0;
}

.header__language.nav__link {
  width: auto;
  height: 20px;
  cursor: pointer;
}

.header__language.nav__link::after {
  content: none;
}

.header__language .language__selected {
  padding: 10px 8px;
  margin-top: -10px;
  font-size: 13px;
  line-height: 20px;
  color: #9b9b9b;
  transition: color 0.2s ease;
}

.header__language .language__selected .icon {
  height: 20px;
  margin-right: 2px;
  font-size: 16px;
  vertical-align: top;
}

.header__language .language__list {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 70px;
  border-radius: 3px;
  margin: 10px 0 0 -35px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3), 0 0 2px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: all 0.2s ease-in-out;
}

.header__language .language__list::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(45deg);
}

.header__language .language__item {
  position: relative;
  border-radius: 3px;
  font-size: 13px;
  line-height: 26px;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  color: #9b9b9b;
  display: block;
  z-index: 1;
}

.header__language .language__item:hover {
  background-color: #e8e8e8;
  color: #4a4a4a;
}

.header__language:hover .language__selected {
  color: #4a4a4a;
}

.header__language:hover .language__list {
  opacity: 1;
  visibility: visible;
}

.header__overlay {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@supports (padding-top: env(safe-area-inset-top)) {
  .header {
    padding-top: env(safe-area-inset-top);
  }
}

@media (max-width: 991.98px) {
  .header__nav .nav__link {
    margin-left: 30px;
  }
}

@media (max-width: 767.98px) {
  .header__container {
    padding-left: 20px;
    padding-right: 20px;
    justify-content: flex-start;
  }

  .header__nav {
    position: fixed;
    top: 60px;
    bottom: -80px;
    left: -255px;
    width: 250px;
    padding-bottom: 92px;
    background-color: #fff;
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease-in-out;
  }

  .header__nav.is-active {
    transform: translate3d(255px, 0, 0);
  }

  .header__nav .nav__link {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    margin-left: 0;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 50px;
    text-align: left;
    display: block;
  }

  .header__nav .nav__link.is-active {
    background-color: #9fc775;
    color: #fff;
  }

  .header__nav .nav__link::after {
    content: none;
  }

  .header__btn--menu {
    display: flex;
  }

  .header__language.nav__link {
    margin-top: auto;
    flex-shrink: 0;
  }

  .header__language .language__selected {
    padding: 0;
    margin-top: 0;
    line-height: 50px;
  }

  .header__language:hover .language__selected {
    color: #9b9b9b;
  }

  .header__language .language__selected .icon {
    height: 50px;
  }

  .header__language .language__list {
    display: none;
  }

  .header__overlay {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(74, 74, 74, 0.5);
    display: block;
    transition: all 0.4s ease-in-out;
  }

  .header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  @supports (padding-top: env(safe-area-inset-top)) {
    .header__nav,
    .header__overlay {
      top: calc(60px + env(safe-area-inset-top));
    }
  }
}

/* Language Popup
-------------------- */
.language-popup {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f9f9f9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.language-popup.is-active {
  opacity: 1;
  visibility: visible;
}

.language__form {
  padding: 30px 20px;
}

.language__form fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}

.language__form .form__title {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #545554;
}

.language__form .form__title .icon {
  margin-right: 8px;
  font-size: 21px;
  color: #4a4a4a;
  vertical-align: top;
}

.language__form .form__radios {
  border-radius: 3px;
  background-color: #fff;
}

.language__form .form__radios label {
  border: 2px solid #d8d8d8;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 58px;
  color: #4a4a4a;
  display: block;
}

.language__form .form__radios label + label {
  margin-top: -2px;
}

.language__form .form__radios input {
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
}

.language__form .form__radios input + span {
  width: 14px;
  height: 14px;
  padding: 1.5px;
  border: 1.5px solid #e8e8e8;
  border-radius: 50%;
  margin-right: 20px;
  box-sizing: border-box;
  background-clip: content-box;
  vertical-align: middle;
  display: inline-block;
}

.language__form .form__radios input:checked + span {
  border-color: #d9ec84;
  background-color: #9fc775;
}

.language__form .form__buttons {
  margin-top: 48px;
  display: flex;
}

.language__form .form__buttons .btn {
  height: 40px;
  flex: 1;
}

.language__form .form__buttons .btn-save {
  margin-left: 20px;
}

@media (min-width: 768px) {
  .language-popup {
    display: none;
  }
}

@supports (padding-top: env(safe-area-inset-top)) {
  .language-popup {
    top: calc(60px + env(safe-area-inset-top));
  }
}

/* Footer
-------------------- */
.footer {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: auto;
  background-color: #c7c7c7;
  color: #fff;
  overflow: hidden;
}

.footer__nav {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.footer__nav a {
  padding: 0 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__nav a + a {
  border-left: 2px solid #fff;
}

.footer__copyright {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.footer__copyright a {
  white-space: nowrap;
  text-decoration: underline;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Corner Button
-------------------- */
.corner-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}

.corner-buttons .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

.corner-buttons .btn + .btn {
  margin-top: 10px;
}

/* .corner-buttons .btn-totop {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}

.corner-buttons .btn-totop.is-visible {
  opacity: 1;
  visibility: visible;
} */

/* Contact Popup
-------------------- */
.contact-popup {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 320px;
  border-radius: 10px;
  outline: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

@supports (padding-top: env(safe-area-inset-top)) {
  .corner-buttons {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .contact-popup {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

.contact-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-popup__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  padding: 30px;
  box-sizing: border-box;
  background-image: linear-gradient(to top, #d9ec84, #9fc775);
  color: #fff;
}

.contact-popup__title {
  margin-bottom: 11px;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.contact-popup__desc {
  font-size: 14px;
  line-height: 18px;
}

.contact-popup__btn--close {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  font-size: 24px;
  background-color: transparent;
  color: #fff;
  z-index: 2;
  display: none;
}

.contact-popup__body {
  position: relative;
  max-height: 550px;
  padding: 140px 20px 30px;
  box-sizing: border-box;
}

.contact-popup__body.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-vertical {
  top: 15px;
  bottom: 15px;
}

.contact-popup__body .os-scrollbar-vertical {
  right: 5px;
}

.contact-popup__body.os-theme-dark
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  background: rgba(224, 224, 224, 0.7);
}

.contact-popup__body.os-theme-dark
  > .os-scrollbar:hover
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  background: rgba(224, 224, 224, 1);
}

.contact-popup__form {
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-popup__form .form-item {
  display: flex;
}

.contact-popup__form .form-item + .form-item {
  margin-top: 10px;
}

.contact-popup__form .form-item--tips {
  font-size: 12px;
  color: #9b9b9b;
}

.contact-popup__form .form-item + .form-item--tips {
  margin-top: 4px;
}

.contact-popup__form .form-input,
.contact-popup__form .form-textarea {
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  color: #4a4a4a;
  flex: 1;
}

.contact-popup__form .form-textarea {
  height: 120px;
  padding: 12px;
  resize: none;
}

.contact-popup__form .form-input:focus,
.contact-popup__form .form-textarea:focus {
  border-color: #9fc775;
}

.contact-popup__form .form-input.has-error,
.contact-popup__form .form-textarea.has-error {
  border-color: #d39f9f;
  background-color: #fff6f6;
  color: #d39f9f;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input::-moz-placeholder,
.contact-popup__form .form-textarea::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .form-input:-ms-input-placeholder,
.contact-popup__form .form-textarea:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}
.contact-popup__form .form-input::placeholder,
.contact-popup__form .form-textarea::placeholder {
  color: #c8c8c8;
  opacity: 1;
}

.contact-popup__form .btn {
  height: 40px;
  margin-top: 20px;
  font-size: 20px;
  flex: 1;
}

.contact-popup__form .btn + .btn {
  margin-left: 20px;
}

.contact-popup__captcha {
  width: 78px;
  height: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-popup__policy {
  font-size: 14px;
  line-height: 16px;
  color: #9b9b9b;
}

.contact-popup__policy a {
  text-decoration: underline;
}

.contact-popup__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-popup__loading.is-active {
  display: flex;
}

.contact-popup__loading .typing-loading-wrap {
  width: 100px;
  height: 100px;
  background-color: rgba(248, 251, 241, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-popup__loading .typing-loading {
  position: relative;
  left: -16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-animation: typing 1.3s linear infinite alternate;
  animation: typing 1.3s linear infinite alternate;
}

@-webkit-keyframes typing {
  0% {
    background-color: rgba(159, 199, 117, 1);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 0.2),
      32px 0 0 0 rgba(159, 199, 117, 0.2);
  }
  25% {
    background-color: rgba(159, 199, 117, 0.4);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 1),
      32px 0 0 0 rgba(159, 199, 117, 0.2);
  }
  75% {
    background-color: rgba(159, 199, 117, 0.4);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 0.2),
      32px 0 0 0 rgba(159, 199, 117, 1);
  }
}

@keyframes typing {
  0% {
    background-color: rgba(159, 199, 117, 1);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 0.2),
      32px 0 0 0 rgba(159, 199, 117, 0.2);
  }
  25% {
    background-color: rgba(159, 199, 117, 0.4);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 1),
      32px 0 0 0 rgba(159, 199, 117, 0.2);
  }
  75% {
    background-color: rgba(159, 199, 117, 0.4);
    box-shadow: 16px 0 0 0 rgba(159, 199, 117, 0.2),
      32px 0 0 0 rgba(159, 199, 117, 1);
  }
}

.contact-popup__result {
  position: absolute;
  top: 140px;
  right: 20px;
  bottom: 30px;
  left: 20px;
  padding: 93px 20px 0;
  border-radius: 4px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.contact-popup__result.is-success,
.contact-popup__result.is-faild {
  opacity: 1;
  visibility: visible;
}

.contact-popup__result .result__logo {
  width: 240px;
  height: 160px;
  margin: 0 auto 19px;
  background-size: cover;
}

.contact-popup__result.is-success .result__logo {
  background-image: url(../img/Contact_state_success@2x.png);
}

.contact-popup__result.is-faild .result__logo {
  background-image: url(../img/Contact_state_fail@2x.png);
}

.contact-popup__result .result__title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  color: #9b9b9b;
}

.contact-popup__result .result__message {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #c8c8c8;
}

.contact-popup__result .result__button {
  width: 120px;
  height: 30px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 767.98px) {
  .contact-popup {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }

  .contact-popup__body {
    max-height: 100%;
  }

  .contact-popup__btn--close {
    display: block;
  }
}

/* Cookie Popup
-------------------- */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(48, 48, 48, 0.7);
  z-index: 1005;
  display: none;
  /* transition: transform 0.4s ease-in; */
  transition-property: transform;
  transition-duration: 0.4s;
  transform: translate3d(0, 0, 0);
}

.cookie-popup.is-hidden {
  transform: translate3d(0, 100%, 0);
}

.cookie-popup__container {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-popup__content {
  max-width: 814px;
  margin-right: 50px;
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
}

.cookie-popup__content a {
  text-decoration: underline;
}

.cookie-popup__btn {
  width: 100px;
  height: 30px;
  border: 1px solid #cfcfcf;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  color: #808080;
  flex-shrink: 0;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cookie-popup {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 767.98px) {
  .cookie-popup__container {
    flex-direction: column;
  }

  .cookie-popup__content {
    margin-bottom: 15px;
    margin-right: 0;
    text-align: justify;
  }

  .cookie-popup__btn {
    width: 100%;
  }
}

/* Section
-------------------- */
.section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  color: #4a4a4a;
}

.section__title::after {
  content: '';
  width: 80px;
  height: 2px;
  margin: 20px auto 0;
  background-color: #9fc775;
  display: block;
}

.section__subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #4a4a4a;
}

.section__description {
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #545554;
}

.section__subtitle + .section__description {
  margin-top: 7px;
}

.section__swiper {
  position: relative;
  padding: 0 70px;
  margin: 0 auto;
}

.section__swiper .swiper-wrapper {
  align-items: center;
}

.section__swiper .swiper-slide {
  margin-bottom: -40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  -webkit-justify-content: space-evenly;
}

.section__card {
  width: 200px;
  height: 100px;
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section__card img {
					 
		   
			
  width: auto;
  height: auto;
  transform: scale(0.5);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/*.section__card {
  width: 200px;
  height: 100px;
  margin: 0 0 40px;
}

.section__card img {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: scale(0.5) translate3d(-50%, -50%, 0);
  transform-origin: left top;
}*/

.section__swiper .swiper-button-prev,
.section__swiper .swiper-button-next {
  width: 20px;
  height: 38px;
  margin-top: -19px;
  outline: 0;
  font-size: 38px;
  background-image: none;
  color: #7a7a7a;
}

.section__swiper .swiper-button-prev {
  left: 0;
}

.section__swiper .swiper-button-next {
  right: 0;
}

.section__swiper .swiper-button-prev .icon,
.section__swiper .swiper-button-next .icon {
  width: 20px;
  vertical-align: top;
}

@media (max-width: 991.98px) {
  .section__swiper {
    padding: 0 50px;
  }

  .section__swiper .swiper-slide {
    margin: 0 0 -40px;
  }

  .section__card {
    margin: 0 0 40px;
  }
}

@media (max-width: 767.98px) {
  .section__swiper {
    padding: 0 45px;
  }

  .section__swiper .swiper-slide {
    margin-bottom: -30px;
    display: block;
  }

  .section__card {
    margin: 0 auto 30px;
  }
}

/* Banner
-------------------- */
.banner .swiper-container {
  height: calc(100vh - 60px);
  min-height: 476px;
}

.banner .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(74, 74, 74, 0.4);
  display: block;
}

.banner .swiper-slide__container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.banner .swiper-slide__inner {
  position: relative;
  margin: 0 100px;
}

.banner .swiper-slide__title {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 0;
  width: 100%;
  font-size: 56px;
  font-weight: 500;
  line-height: 66px;
  color: #fff;
}

.banner .swiper-slide__content {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
}

.banner .swiper-slide__btn {
  position: absolute;
  top: calc(100% + 50px);
  left: 0;
  height: 54px;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 22px;
  line-height: 54px;
}

.banner .swiper-slide__btn.btn--next .icon {
  right: -38px;
}

.banner .swiper-slide__btn.btn--next:hover .icon {
  right: -13px;
}

.banner .swiper-slide__btn.btn--next:hover span {
  padding-right: 25px;
}

.banner .swiper-slide__inner > * {
  opacity: 0;
}

.banner .swiper-slide.animated .swiper-slide__inner > * {
  -webkit-animation-name: fadeInLeftSmall;
  animation-name: fadeInLeftSmall;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.banner .swiper-slide-active .swiper-slide__title {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.banner .swiper-slide-active .swiper-slide__content {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.banner .swiper-slide-active .swiper-slide__btn {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 20px;
  height: 38px;
  margin-top: -19px;
  outline: 0;
  font-size: 38px;
  background-image: none;
  color: #fff;
}

.banner .swiper-button-prev .icon,
.banner .swiper-button-next .icon {
  width: 20px;
  vertical-align: top;
}

.banner .swiper-button-prev {
  left: 50px;
}

.banner .swiper-button-next {
  right: 50px;
}

.banner .swiper-pagination {
  bottom: 30px;
  font-size: 0;
}

.banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
}

.banner .swiper-pagination-bullet-active {
  background-color: #fff;
}

.banner
  .swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 12px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .banner .swiper-container {
    height: 760px;
  }

  .banner .swiper-slide {
    background-size: auto 100%;
    background-position: left center;
  }
}

@media (max-width: 1280px) {
  .banner .swiper-slide__content {
    line-height: 25px;
  }
}

@media (max-width: 991.98px) {
  .banner .swiper-slide__inner {
    margin: 0 70px;
  }

  .banner .swiper-slide__title {
    font-size: 46px;
    line-height: 54px;
  }
}

@media (max-width: 767.98px) {
  .banner .swiper-slide__inner {
    margin: 0;
  }

  .banner .swiper-slide__title {
    bottom: calc(100% + 20px);
    font-size: 30px;
    line-height: 36px;
  }

  .banner .swiper-slide__content {
    font-size: 18px;
    line-height: 26px;
  }

  .banner .swiper-slide__btn {
    top: calc(100% + 30px);
    height: 40px;
    padding: 0 11px;
    font-size: 16px;
  }

  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    display: none;
  }
}

/* Feature Section
-------------------- */
.feature-section {
  height: 400px;
  background-color: #f9f9f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section__container {
  display: flex;
}

.feature-section__item {
  width: 300px;
  min-height: 220px;
  margin: 0 30px;
  text-align: center;
  color: #545554;
}

.feature-section__item .item__logo {
  height: 90px;
  margin: 20px auto 17px;
}

.feature-section__item .item__logo img {
  width: auto;
  height: 100%;
}

.feature-section__item .item__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.feature-section__item .item__content {
  padding: 0 10px;
  font-size: 18px;
  line-height: 24px;
}

.feature-section__item > * {
  opacity: 0;
}

.feature-section__item.animated > * {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.feature-section__item.animated .item__logo {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.feature-section__item.animated .item__title {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.feature-section__item.animated .item__content {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@media (max-width: 1199.98px) {
  .feature-section {
    height: 300px;
  }

  .feature-section__item {
    width: 240px;
    min-height: 200px;
    margin: 0 6px;
  }

  .feature-section__item .item__logo {
    height: 70px;
    margin: 20px auto 22px;
  }

  .feature-section__item .item__title {
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 24px;
    white-space: nowrap;
  }

  .feature-section__item .item__title span {
    position: relative;
    left: 50%;
    min-width: 100%;
    display: inline-block;
    transform: translateX(-50%);
  }

  .feature-section__item .item__content {
    padding: 0;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 767.98px) {
  .feature-section {
    height: auto;
    padding: 50px 0;
  }

  .feature-section__container {
    flex-direction: column;
  }

  .feature-section__item {
    width: 250px;
    margin: 0 auto;
  }

  .feature-section__item + .feature-section__item {
    margin-top: 30px;
  }

  .feature-section__item .item__title {
    font-size: 24px;
  }

  .feature-section__item .item__content {
    font-size: 18px;
  }
}

/* Product Section
-------------------- */
.product-section {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-section__container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.product-section__container--right {
  justify-content: flex-end;
}

.product-section__inner {
  max-width: 660px;
  color: #545554;
  opacity: 0;
}

.product-section__container--left .product-section__inner.animated {
  -webkit-animation: fadeInLeft 1.5s ease forwards;
  animation: fadeInLeft 1.5s ease forwards;
}

.product-section__container--right .product-section__inner.animated {
  -webkit-animation: fadeInRight 1.5s ease forwards;
  animation: fadeInRight 1.5s ease forwards;
}

.product-section__container--left .product-section__inner {
  padding-left: 40px;
}

.product-section__container--right .product-section__inner {
  padding-right: 40px;
}

#e-commerce-section .product-section__inner {
  max-width: 480px;
}

.product-section__title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
}

.product-section__subtitle {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
}

#e-commerce-section .product-section__subtitle {
  font-weight: 500;
}

.product-section__desc {
  font-size: 17px;
  line-height: 24px;
}

.product-section__list {
  margin-bottom: 20px;
}

.product-section__item {
  font-size: 17px;
  line-height: 24px;
  display: flex;
}

.product-section__item + .product-section__item {
  margin-top: 7px;
}

.product-section__item::before {
  display: inline-block;
  vertical-align: top;
  flex-shrink: 0;
}

.product-section__item .item__label {
  font-weight: 700;
}

ul.product-section__list .product-section__item::before {
  content: '';
  width: 2px;
  height: 2px;
  margin: 10px 11px 10px 7px;
  border-radius: 50%;
  background-color: currentColor;
}

ol.product-section__list {
  counter-reset: item;
}

ol.product-section__list .product-section__item::before {
  counter-increment: item;
  content: counter(item) '.';
  width: 28px;
}

.product-section__item.no-list-style {
  display: list-item;
}

.product-section__item.no-list-style::before {
  content: none !important;
}

.product-section__btn {
  height: 50px;
  padding: 0 33px;
  margin-top: 20px;
  font-size: 22px;
}

.product-section__btn.btn--next .icon {
  right: -38px;
}

.product-section__btn.btn--next:hover .icon {
  right: -18px;
}

.product-section__btn.btn--next:hover span {
  padding-right: 20px;
}

.product-section .hightlight {
  font-weight: 700;
  text-decoration: underline;
  color: #4a90e2;
}

.product-section__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

@media (max-width: 991.98px) {
  .product-section {
    background-size: auto 100%;
    background-position: left center;
  }

  .product-section__container--right {
    justify-content: flex-start;
  }

  .product-section__container--left .product-section__inner,
  .product-section__container--right .product-section__inner {
    padding: 0;
  }

  .product-section__mask {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .product-section {
    height: auto;
  }

  .product-section__container--left .product-section__inner,
  .product-section__container--right .product-section__inner {
    padding: 60px 0;
  }

  #e-commerce-section .product-section__inner {
    max-width: 400px;
  }

  .product-section__title {
    font-size: 30px;
    line-height: 36px;
  }

  .product-section__subtitle {
    font-size: 20px;
    line-height: 26px;
  }

  .product-section__desc {
    font-size: 16px;
    line-height: 22px;
  }

  .product-section__item {
    font-size: 16px;
    line-height: 22px;
    display: block;
  }

  ul.product-section__list .product-section__item::before {
    margin: 10px 5px 10px 2px;
  }

  ol.product-section__list .product-section__item::before {
    width: 24px;
  }
}

/* Partners / Clients / Payment Methods Section
-------------------- */
.partner-section,
.payment-section {
  background-color: #f9f9f9;
}

.client-section {
  background-color: #f0f0f0;
}

.partner-section,
.client-section,
.payment-section {
  padding: 48px 0 60px;
  transform: translateZ(0);
}

.partner-section img,
.client-section img,
.payment-section img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.partner-section .section__swiper,
.client-section .section__swiper,
.payment-section .section__swiper {
  margin-top: 36px;
}

.client-section .section__swiper .swiper-button-prev,
.client-section .section__swiper .swiper-button-next {
  display: none;
}

@media (max-width: 991.98px) {
  .partner-section,
  .client-section,
  .payment-section {
    padding: 50px 0;
  }

  .partner-section .section__swiper,
  .client-section .section__swiper {
    margin-top: 40px;
  }

  .payment-section .section__swiper {
    margin-top: 40px;
  }

  .partner-section .container,
  .client-section .container,
  .payment-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767.98px) {
  .partner-section .container,
  .client-section .container,
  .payment-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .client-section .section__swiper .swiper-button-prev,
  .client-section .section__swiper .swiper-button-next {
    display: block;
  }
}

/* Vision Section
-------------------- */
.vision-section {
  height: 400px;
  display: flex;
}

.vision-section__item {
  position: relative;
  opacity: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.vision-section__item:nth-child(1) {
  background-color: #5b5b5b;
  z-index: 3;
}

.vision-section__item:nth-child(2) {
  background-color: #747474;
  z-index: 2;
}

.vision-section__item:nth-child(3) {
  z-index: 1;
}

.vision-section__item.animated {
  -webkit-animation: fadeInLeft 1s ease forwards;
  animation: fadeInLeft 1s ease forwards;
}

.vision-section__item:nth-child(1).animated {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.vision-section__item:nth-child(2).animated {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.vision-section__item:nth-child(3).animated {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.vision-section__item .item__inner {
  width: 66.666667%;
  margin: 0 auto;
}

.vision-section__item .item__title {
  margin-bottom: 42px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
}

.vision-section__item .item__content {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.vision-section__item .item__content p + p {
  margin-top: 26px;
}

.vision-section__item .item__cover {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1280px) {
  .vision-section__item .item__inner {
    width: 80%;
  }
}

@media (max-width: 991.98px) {
  .vision-section__item:nth-child(3) {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .vision-section {
    height: auto;
    background-image: none;
    display: block;
  }

  .vision-section__item .item__inner {
    width: auto;
    height: auto !important;
    padding: 40px 30px;
    text-align: center;
  }
}

/* Privacy Section
-------------------- */
.privacy-section {
  padding: 50px 0;
  font-size: 18px;
  line-height: 24px;
  color: #545554;
}

.privacy-section h1 {
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 33px;
  color: #9fc775;
}

.privacy-section h2 {
  margin: 24px 0 2px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #9fc775;
}

.privacy-section h3 {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #9fc775;
}

.privacy-section p {
  margin-bottom: 24px;
}

.privacy-section .container > ul {
  margin-bottom: 24px;
}

.privacy-section .container > ul > li {
  position: relative;
  padding-left: 18px;
}

.privacy-section .container > ul > li > ul > li {
  position: relative;
  padding-left: 10px;
}

.privacy-section .container > ul > li::before,
.privacy-section .container > ul > li > ul > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.privacy-section .container > ul > li::before {
  content: '・';
}

.privacy-section .container > ul > li > ul > li::before {
  content: '-';
}

.privacy-section a {
  text-decoration: underline;
  color: #4a90e2;
}

@media (max-width: 575.98px) {
  .privacy-section {
    padding: 30px 0;
  }
}

/* Portfolio Section
-------------------- */
.portfolio-section {
  padding: 57px 0 78px;
  background-color: #f8f8f8;
}

.portfolio__container {
  max-width: 1500px;
  margin: 0 auto;
}

.portfolio__nav {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid #c8c8c8;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.portfolio__nav .nav__item {
  padding: 0 60px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  color: #4a4a4a;
  display: block;
}

.portfolio__nav .nav__thumb {
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 4px;
  margin-bottom: -1px;
  background-color: #9fc775;
  background-clip: content-box;
  order: 2;
  transition: all 0.4s ease;
}

.portfolio__inner {
  overflow: hidden;
}

.portfolio__grid {
  width: 100%;
}

.portfolio__grid .grid__item {
  position: relative;
}

.portfolio__grid .grid__item::before {
  content: '';
  display: block;
}

.portfolio__grid .grid__sizer,
.portfolio__grid .grid__item {
  width: 33.333333%;
}

.portfolio__grid .grid__item--col2 {
  width: 66.666667%;
}

.portfolio__grid .grid__item::before {
  padding-top: 65%;
}

.portfolio__grid .grid__item--row2::before {
  padding-top: 130%;
}

.portfolio__grid .grid__item .item__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 32px;
  color: #4a4a4a;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio__popup-container {
  padding: 28px 10px;
}

.portfolio__popup {
  max-width: 1200px;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background-color: #f5f5f5;
  box-shadow: 0 7px 30px 0 rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.3);
}

.portfolio__popup .swal2-close {
  top: 12px;
  right: 12px;
  font-size: 36px;
  color: #4a4a4a;
}

.portfolio__detail {
  padding: 78px 60px;
  display: flex;
}

.portfolio__detail .detail__preview {
  width: 59.259259%;
  margin-right: 40px;
}

.portfolio__detail .detail__cover,
.portfolio__detail .detail__thumb {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio__detail .detail__cover::before,
.portfolio__detail .detail__thumb::before {
  content: '';
  padding-top: 62.5%;
  display: block;
}

.portfolio__detail .detail__cover::after,
.portfolio__detail .detail__thumb::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #bcbcbc;
  box-sizing: border-box;
  display: block;
  pointer-events: none;
}

.portfolio__detail .detail__cover img,
.portfolio__detail .detail__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio__detail .detail__thumbs {
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}

.portfolio__detail .detail__thumb {
  width: calc(100% / 3 - 20px);
  margin-top: 20px;
  margin-right: 20px;
  cursor: pointer;
}

.portfolio__detail .detail__thumb.is-active::after {
  border: 2px solid #67b8f5;
}

.portfolio__detail .detail__info {
  width: 37.037037%;
  text-align: left;
}

.portfolio__detail .detail__info .info__title {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  color: #4a4a4a;
}

.portfolio__detail .detail__info .info__category {
  margin-bottom: 60px;
  font-size: 24px;
  color: #4a4a4a;
}

.portfolio__detail .detail__info .info__desc {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 24px;
  color: #9b9b9b;
}

.portfolio__detail .detail__info .info__link {
  font-size: 16px;
  text-decoration: underline;
  color: #4a90e2;
}

@media (max-width: 1300px) {
  .portfolio__nav .nav__item {
    padding: 0 30px;
  }
}

@media (max-width: 991.98px) {
  .portfolio__nav {
    flex-direction: column;
  }

  .portfolio__nav .nav__item.is-active {
    font-weight: 700;
  }

  .portfolio__nav .nav__thumb {
    display: none;
  }

  .portfolio__detail {
    padding: 70px 15px 50px;
    flex-direction: column;
  }

  .portfolio__detail .detail__preview,
  .portfolio__detail .detail__info {
    width: 100%;
  }

  .portfolio__detail .detail__preview {
    margin-right: 0;
    margin-bottom: 34px;
  }

  .portfolio__detail .detail__thumbs {
    margin-right: -10px;
  }

  .portfolio__detail .detail__thumb {
    width: calc(100% / 3 - 10px);
    margin-top: 10px;
    margin-right: 10px;
  }

  .portfolio__detail .detail__info .info__title {
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 400;
  }

  .portfolio__detail .detail__info .info__category {
    margin-bottom: 34px;
    font-size: 20px;
  }
}

/* Status Section
-------------------- */
.status-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 50px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-section__logo {
  height: 120px;
  margin-bottom: 24px;
}

.status-section__logo img {
  width: auto;
  height: 100%;
}

.status-section__title {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #9b9b9b;
}

.status-section__desc {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 18px;
  color: #9b9b9b;
}

.status-section__back {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  color: #95c467;
  display: block;
}
