@charset "UTF-8";
/*responsive mixin*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
:root {
  --easing-quart-easeout: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easing-quint-easeout: cubic-bezier(0.23, 1, 0.32, 1);
  --easing-quart-easeinout: cubic-bezier(0.77, 0, 0.175, 1);
}

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

select {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}

a, a:hover, button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}

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

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
    width: 14px;
    height: 14px;
  }
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  background-clip: padding-box;
  border: 4px solid transparent;
  border-radius: 8px;
}
@media (max-width: 768px) {
  html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    border-radius: 7px;
  }
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
  background-color: #fafafa;
  border: 1px solid #ddd;
}

.image--pc {
  display: block;
}
.image--mob {
  display: none;
}
@media (max-width: 768px) {
  .image--pc {
    display: none;
  }
  .image--mob {
    display: block;
  }
}

html, body, div, h1, h2, h3, h4, h5, h6, p, span, ul, ol, li, a, pre {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}

.gsap__item[data-motion=up]:nth-of-type(2) > * {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.gsap__item[data-motion=up]:nth-of-type(3) > * {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.gsap__item[data-motion=up]:nth-of-type(4) > * {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.gsap__item[data-motion=up] > * {
  width: 100%;
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
  -webkit-transition: opacity 0.5s, -webkit-transform 1.5s var(--easing-quart-easeout);
  transition: opacity 0.5s, -webkit-transform 1.5s var(--easing-quart-easeout);
  transition: opacity 0.5s, transform 1.5s var(--easing-quart-easeout);
  transition: opacity 0.5s, transform 1.5s var(--easing-quart-easeout), -webkit-transform 1.5s var(--easing-quart-easeout);
  opacity: 0;
  will-change: transform, opacity;
}

.gsap__item[data-motion=up].is-active > * {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

@-webkit-keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.micro-header {
  position: fixed;
  left: 0;
  width: 100%;
  top: -80px;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .micro-header {
    top: -50px;
    height: 50px;
  }
}
.micro-header.micro-header--is-background {
  background: #F7F8FA;
  border-bottom-color: #F7F8FA;
}
.micro-header.micro-header--is-background .header__logo svg, .micro-header.micro-header--is-background .header__logo svg path {
  fill: #0A1322;
}
.micro-header.micro-header--is-background .header__logo .logo--white {
  display: none;
}
.micro-header.micro-header--is-background .header__logo .logo--black {
  display: block;
}
.micro-header.micro-header--is-background .header__menu .menu__link {
  color: #0A1322;
}
.micro-header.micro-header--is-background .header__buttons .lang__item button {
  color: #676a6e;
}
.micro-header.micro-header--is-background .header__buttons .lang__item button::after {
  background: #676a6e;
}
.micro-header.micro-header--is-background .header__buttons .lang__item:hover button {
  color: #0A1322;
}
.micro-header.micro-header--is-background .header__buttons .lang__item:hover button::after {
  background: #0A1322;
}
.micro-header.micro-header--is-background .header__buttons .lang__item.lang__item--is-active button {
  color: #0A1322;
}
.micro-header.micro-header--is-background .header__buttons .lang__item.lang__item--is-active button::after {
  background: #0A1322;
}
.micro-header.micro-header--is-background .header__buttons .menu__button .menu__line {
  background: #0A1322;
}
.micro-header.micro-header--is-active {
  background: #0A1322;
  border-bottom-color: #0A1322;
}
.micro-header.micro-header--is-active .header__logo svg, .micro-header.micro-header--is-active .header__logo svg path {
  fill: #fff;
}
.micro-header.micro-header--is-active .header__logo .logo--white {
  display: block;
}
.micro-header.micro-header--is-active .header__logo .logo--black {
  display: none;
}
.micro-header.micro-header--is-active .header__menu .menu__link {
  color: #fff;
}
.micro-header.micro-header--is-active .header__buttons .lang__item button {
  color: #535964;
}
.micro-header.micro-header--is-active .header__buttons .lang__item button::after {
  background: #535964;
}
.micro-header.micro-header--is-active .header__buttons .lang__item:hover button {
  color: #fff;
}
.micro-header.micro-header--is-active .header__buttons .lang__item:hover button::after {
  background: #fff;
}
.micro-header.micro-header--is-active .header__buttons .lang__item.lang__item--is-active button {
  color: #fff;
}
.micro-header.micro-header--is-active .header__buttons .lang__item.lang__item--is-active button::after {
  background: #fff;
}
.micro-header.micro-header--is-active .header__buttons .menu__button .menu__line {
  background: #fff;
}
@media (max-width: 768px) {
  .micro-header.micro-header--is-mobile-active {
    background: #F7F8FA;
    border-bottom-color: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__logo svg, .micro-header.micro-header--is-mobile-active .header__logo svg path {
    fill: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__logo .logo--white {
    display: none;
  }
  .micro-header.micro-header--is-mobile-active .header__logo .logo--black {
    display: block;
  }
  .micro-header.micro-header--is-mobile-active .header__menu {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .micro-header.micro-header--is-mobile-active .header__menu .menu__link {
    color: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__buttons {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    margin-right: 0;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item button {
    color: #676a6e;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item button::after {
    background: #676a6e;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item:hover button {
    color: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item:hover button::after {
    background: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item.lang__item--is-active button {
    color: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .lang__item.lang__item--is-active button::after {
    background: #0A1322;
  }
  .micro-header.micro-header--is-mobile-active .header__buttons .menu__button .menu__line {
    background: #0A1322;
  }
}
.micro-header .header__container {
  width: 1340px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .micro-header .header__container {
    padding: 0 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.micro-header .header__logo {
  width: 83px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .micro-header .header__logo {
    width: 71px;
  }
  .micro-header .header__logo .logo {
    width: 71px;
  }
}
.micro-header .header__logo .logo--white {
  display: block;
}
.micro-header .header__logo .logo--black {
  display: none;
}
.micro-header .header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 274px;
}
@media (max-width: 1200px) {
  .micro-header .header__menu {
    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;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .micro-header .header__menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background: #F7F8FA;
    display: block;
    padding: 16px;
    left: -100%;
    -webkit-box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
}
.micro-header .header__menu .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .micro-header .header__menu .menu__list {
    display: block;
  }
}
.micro-header .header__menu .menu__item {
  margin-right: 44px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .micro-header .header__menu .menu__item {
    margin-right: 0;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 0;
  }
  .micro-header .header__menu .menu__item::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%230A1322' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }
  .micro-header .header__menu .menu__item:last-child {
    margin-bottom: 0;
  }
}
.micro-header .header__menu .menu__item:last-child {
  margin-right: 0;
}
.micro-header .header__menu .menu__item.menu__item--only-mobile {
  display: none;
}
@media (max-width: 768px) {
  .micro-header .header__menu .menu__item.menu__item--only-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.micro-header .header__menu .menu__item:hover .menu__link {
  color: #3051F9;
}
.micro-header .header__menu .menu__item:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 5L16 12L9 19' stroke='%233051F9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.micro-header .header__menu .menu__link {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .micro-header .header__menu .menu__link {
    color: #0A1322;
    font-size: 20px;
    font-weight: 700;
  }
}
.micro-header .header__buttons {
  width: auto;
}
@media (max-width: 768px) {
  .micro-header .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.micro-header .header__buttons .lang__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .micro-header .header__buttons .lang__buttons {
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    margin-right: 20px;
  }
}
.micro-header .header__buttons .lang__item {
  margin-right: 26px;
}
@media (max-width: 768px) {
  .micro-header .header__buttons .lang__item {
    margin-right: 12px;
  }
}
.micro-header .header__buttons .lang__item:last-child {
  margin-right: 0;
}
.micro-header .header__buttons .lang__item button {
  font-size: 18px;
  font-weight: 500;
  color: #54565b;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .micro-header .header__buttons .lang__item button {
    font-size: 16px;
  }
}
.micro-header .header__buttons .lang__item button::after {
  content: "";
  width: 23px;
  height: 2px;
  background: #54565b;
  position: absolute;
  bottom: -2px;
  left: 1px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .micro-header .header__buttons .lang__item button::after {
    width: 20px;
    left: 1px;
    bottom: -3px;
  }
}
.micro-header .header__buttons .lang__item:hover button {
  color: #fff;
}
.micro-header .header__buttons .lang__item:hover button::after {
  background: #fff;
}
.micro-header .header__buttons .lang__item.lang__item--is-active button {
  color: #fff;
}
.micro-header .header__buttons .lang__item.lang__item--is-active button::after {
  background-color: #fff;
}
.micro-header .header__buttons .menu__button {
  display: none;
}
@media (max-width: 768px) {
  .micro-header .header__buttons .menu__button {
    cursor: pointer;
    margin-left: 20px;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
}
.micro-header .header__buttons .menu__button .menu__line {
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  margin-bottom: 4px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.micro-header .header__buttons .menu__button .menu__line:last-child {
  margin-bottom: 0;
}
.micro-header .header__buttons .menu__button.menu__button--is-active .menu__line {
  position: absolute;
  margin-bottom: 0;
}
.micro-header .header__buttons .menu__button.menu__button--is-active .menu__line:nth-child(1) {
  width: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.micro-header .header__buttons .menu__button.menu__button--is-active .menu__line:nth-child(2) {
  width: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  left: calc(50% + 12px);
}
.micro-header .header__buttons .menu__button.menu__button--is-active .menu__line:nth-child(3) {
  width: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
/*
  241202 add stick banner
*/
.micro-stick-banner {
  position: fixed;
  z-index: 10;
  width: 100%;
  background: #EEB839;
  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;
  height: 50px;
  padding-right: 16px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  top: -50px;
  opacity: hidden;
}
.micro-stick-banner .stick-banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.micro-stick-banner .stick-banner:hover a {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.micro-stick-banner a {
  width: 100%;
  display: block;
  text-align: right;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  -webkit-animation: textLoop 20s linear infinite;
          animation: textLoop 20s linear infinite;
  padding-right: 1.4881vw;
}
.micro-stick-banner .micro-icon.micro-icon--close {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='undefined'%3E%3Cpath d='m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z'/%3E%3C/svg%3E") center/24px 24px no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .micro-stick-banner {
    height: 40px;
  }
  .micro-stick-banner .stick-banner a {
    font-size: 16px;
  }
}

.micro--is-active {
  /*맨처음 진입 시 header에 animation을 주기 위함*/
}
.micro--is-active .micro-header {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.micro--is-active .main__banner .banner__text .text__subtitle {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.micro--is-active .main__banner .banner__text .text__list--wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.micro--is-active .main__banner .banner__text .text__desc {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.micro--is-active .main__banner .banner__text .text__link {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.micro--is-active .main__banner .banner__scroll-down {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  opacity: 1;
  visibility: visible;
}
.micro--has-stick-banner .micro-header {
  top: 50px;
}
@media (max-width: 768px) {
  .micro--has-stick-banner .micro-header {
    top: 40px;
  }
  .micro--has-stick-banner .micro-header .header__menu {
    top: 90px;
  }
}
.micro--has-stick-banner .micro-stick-banner {
  top: 0;
  opacity: 1;
}
.micro__container {
  width: 1340px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .micro__container {
    padding: 0 16px;
  }
}

.micro-footer {
  background: #0A1322;
  padding: 64px 20px;
}
@media (max-width: 768px) {
  .micro-footer {
    padding: 40px 16px;
  }
}
@media (max-width: 480px) {
  .micro-footer {
    padding: 24px 16px;
  }
}
.micro-footer .footer__container {
  width: 1740px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.micro-footer .footer__top {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .micro-footer .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #fff;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__logo img {
    width: 55px;
  }
}
.micro-footer .footer__badge {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 991px) {
  .micro-footer .footer__badge {
    position: relative;
    top: auto;
    right: auto;
  }
}
.micro-footer .footer__badge li {
  margin-right: 20px;
}
.micro-footer .footer__badge li:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .micro-footer .footer__badge li {
    margin-right: 12px;
  }
  .micro-footer .footer__badge li img {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__badge li {
    margin-right: 8px;
  }
  .micro-footer .footer__badge li img {
    width: 40px;
  }
}
.micro-footer .footer__external {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .micro-footer .footer__external {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .micro-footer .footer__external {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__external {
    margin-bottom: 16px;
  }
}
.micro-footer .footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.micro-footer .footer__link li {
  margin-right: 28px;
  position: relative;
}
@media (max-width: 480px) {
  .micro-footer .footer__link li {
    margin-right: 20px;
  }
}
.micro-footer .footer__link li a {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .micro-footer .footer__link li a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__link li a {
    font-size: 14px;
  }
}
.micro-footer .footer__link li::after {
  content: "";
  width: 1px;
  height: 17px;
  background: #fff;
  position: absolute;
  right: -15px;
  top: 6px;
}
@media (max-width: 768px) {
  .micro-footer .footer__link li::after {
    top: 4px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__link li::after {
    height: 14px;
    top: 4px;
    right: -11px;
  }
}
.micro-footer .footer__link li:last-child {
  margin-right: 0;
}
.micro-footer .footer__link li:last-child::after {
  display: none;
}
.micro-footer .footer__info {
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .micro-footer .footer__info {
    margin-bottom: 20px;
  }
}
.micro-footer .footer__info .info__headline {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .micro-footer .footer__info .info__headline {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__info .info__headline {
    font-size: 14px;
  }
}
.micro-footer .footer__info .info__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1200px) {
  .micro-footer .footer__info .info__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .micro-footer .footer__info .info__list {
    display: block;
  }
}
.micro-footer .footer__info .info__list li {
  position: relative;
  margin-right: 24px;
  font-size: 22px;
  color: #fff;
}
.micro-footer .footer__info .info__list li a {
  font-size: 22px;
  color: #fff;
}
.micro-footer .footer__info .info__list li::after {
  content: "";
  width: 1px;
  height: 22px;
  position: absolute;
  top: 5px;
  right: -12px;
  background-color: #fff;
}
.micro-footer .footer__info .info__list li:last-child {
  margin-right: 0;
}
.micro-footer .footer__info .info__list li:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .micro-footer .footer__info .info__list li {
    margin-right: 0;
  }
  .micro-footer .footer__info .info__list li::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .micro-footer .footer__info .info__list li {
    font-size: 16px;
  }
  .micro-footer .footer__info .info__list li a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__info .info__list li {
    font-size: 13px;
  }
  .micro-footer .footer__info .info__list li a {
    font-size: 13px;
  }
}
.micro-footer .footer__copy p {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  .micro-footer .footer__copy p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .micro-footer .footer__copy p {
    font-size: 12px;
  }
}

.main__banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .main__banner {
    height: auto;
    margin-bottom: -60px;
  }
}
.main__banner .banner__bg {
  position: relative;
  width: 100%;
  top: -60px;
  height: calc(100% + 60px);
}
@media (max-width: 991px) {
  .main__banner .banner__bg {
    height: auto;
    aspect-ratio: 9/16;
  }
}
.main__banner .banner__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
.main__banner .banner__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112.5%;
}
.main__banner .banner__iframe.banner__iframe--mobile {
  display: none;
}
@media (max-width: 991px) {
  .main__banner .banner__iframe {
    display: none;
  }
  .main__banner .banner__iframe.banner__iframe--mobile {
    display: block;
    height: auto;
    aspect-ratio: 9/16;
  }
}
.main__banner .banner__text {
  width: 1340px;
  padding: 0 20px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 991px) {
  .main__banner .banner__text {
    top: calc(50% - 60px);
  }
}
@media (max-width: 768px) {
  .main__banner .banner__text {
    text-align: center;
  }
}
.main__banner .banner__text .text__subtitle {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 18px;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-timing-function: var(--easing-quart-easeout);
          transition-timing-function: var(--easing-quart-easeout);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media (max-width: 768px) {
  .main__banner .banner__text .text__subtitle {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.main__banner .banner__text .text__list--wrap {
  height: 81px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-timing-function: var(--easing-quart-easeout);
          transition-timing-function: var(--easing-quart-easeout);
}
@media (max-width: 768px) {
  .main__banner .banner__text .text__list--wrap {
    height: 48px;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__list--wrap {
    height: 34px;
  }
}
.main__banner .banner__text .text__list {
  height: 81px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .main__banner .banner__text .text__list {
    height: 48px;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__list {
    height: 34px;
  }
}
.main__banner .banner__text .text__title {
  font-size: 68px;
  font-weight: 600;
  color: #fff;
  line-height: normal;
}
@media (max-width: 768px) {
  .main__banner .banner__text .text__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__title {
    font-size: 28px;
  }
}
.main__banner .banner__text .text__desc {
  margin-top: 24px;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-timing-function: var(--easing-quart-easeout);
          transition-timing-function: var(--easing-quart-easeout);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 768px) {
  .main__banner .banner__text .text__desc {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__desc {
    margin-top: 12px;
    font-size: 18px;
  }
}
.main__banner .banner__text .text__desc span {
  font-weight: 700;
}
.main__banner .banner__text .text__link {
  margin-top: 52px;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition-timing-function: var(--easing-quart-easeout);
          transition-timing-function: var(--easing-quart-easeout);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media (max-width: 480px) {
  .main__banner .banner__text .text__link {
    margin-top: 38px;
  }
}
.main__banner .banner__text .link__button {
  width: 190px;
  height: 65px;
  border-radius: 32.5px;
  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;
  border: 1px solid #fff;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .main__banner .banner__text .link__button {
    width: 180px;
    height: 60px;
    border-radius: 30px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .main__banner .banner__text .link__button {
    width: 160px;
    height: 42px;
    border-radius: 21px;
    font-size: 18px;
  }
}
.main__banner .banner__text .link__button:hover {
  background: #3051F9;
  border-color: #3051F9;
}
.main__banner .banner__scroll-down {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media (max-width: 991px) {
  .main__banner .banner__scroll-down {
    bottom: 100px;
  }
}
.main__banner .banner__scroll-down .scroll-down__text {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.main__banner .banner__scroll-down .scroll-down__mouse {
  position: relative;
  width: 10px;
  height: 35px;
  border-radius: 17.5px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}
.main__banner .banner__scroll-down .scroll-down__wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: scrollDown 2.5s infinite;
          animation: scrollDown 2.5s infinite;
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    top: 0;
    opacity: 1;
  }
  30% {
    top: 0;
    opacity: 1;
  }
  45% {
    top: 25px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    top: 0;
    opacity: 1;
  }
  30% {
    top: 0;
    opacity: 1;
  }
  45% {
    top: 25px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

.micro__information {
  background: #0A1322;
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
@media (max-width: 768px) {
  .micro__information {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__information {
    padding: 60px 0;
  }
}
.micro__information .information__bg {
  position: absolute;
  top: 0;
}
.micro__information .information__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: inherit;
}
@media (max-width: 768px) {
  .micro__information .information__bg img {
    -o-object-fit: none;
       object-fit: none;
  }
}
.micro__information .information__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .micro__information .information__row {
    display: block;
    margin-bottom: 20px;
  }
}
.micro__information .information__row:nth-child(2) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.micro__information .information__row .gsap__item {
  margin-right: 32px;
}
.micro__information .information__row .gsap__item:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .micro__information .information__row .gsap__item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .micro__information .information__row .gsap__item:last-child {
    margin-bottom: 0;
  }
}
.micro__information .information__item {
  width: 500px;
  max-width: 100%;
  min-height: 380px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  padding: 0 40px 0 60px;
  margin-right: 32px;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .micro__information .information__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .micro__information .information__item {
    padding: 0 40px 0 80px;
    min-height: 280px;
  }
}
@media (max-width: 480px) {
  .micro__information .information__item {
    padding: 0 40px 0 40px;
    min-height: 220px;
  }
}
.micro__information .information__item:last-child {
  margin-right: 0;
}
.micro__information .information__item:nth-child(1) {
  background: url("./../images/information-bg1.png") center/cover no-repeat;
}
.micro__information .information__item:nth-child(2) {
  background: url("./../images/information-bg2.png") center/cover no-repeat;
}
.micro__information .information__item:nth-child(3) {
  background: url("./../images/information-bg3.png") center/cover no-repeat;
}
.micro__information .information__item:nth-child(4) {
  background: url("./../images/information-bg4.png") center/cover no-repeat;
}
.micro__information .information__title {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 768px) {
  .micro__information .information__title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .micro__information .information__title {
    font-size: 18px;
  }
}
.micro__information .information__desc {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .micro__information .information__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro__information .information__desc {
    font-size: 12px;
    margin-top: 8px;
  }
}
.micro__information .information__caption {
  font-size: 12px;
  font-weight: 300;
  width: 100%;
  margin-top: 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .micro__information .information__caption {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .micro__information .information__caption {
    font-size: 10px;
    margin-top: 8px;
  }
}

.micro__portal {
  padding: 140px 0 100px;
  background: #F7F8FA;
}
@media (max-width: 768px) {
  .micro__portal {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__portal {
    padding: 60px 0;
  }
}
.micro__portal .portal__list .gsap__item {
  margin-bottom: 24px;
}
.micro__portal .portal__list .gsap__item:last-child {
  margin-bottom: 0;
}
.micro__portal .portal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #CCCCCC;
  border-radius: 20px;
  padding: 36px 96px;
  background: #fff;
}
@media (max-width: 1400px) {
  .micro__portal .portal__item {
    padding: 36px 60px;
  }
}
@media (max-width: 991px) {
  .micro__portal .portal__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .micro__portal .portal__item {
    padding: 28px 16px;
  }
}
.micro__portal .portal__image {
  margin-right: 90px;
  width: 430px;
}
@media (max-width: 1400px) {
  .micro__portal .portal__image {
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .micro__portal .portal__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .micro__portal .portal__image img {
    width: 100%;
  }
}
.micro__portal .portal__text {
  width: calc(100% - 520px);
}
@media (max-width: 1400px) {
  .micro__portal .portal__text {
    width: calc(100% - 470px);
  }
}
@media (max-width: 991px) {
  .micro__portal .portal__text {
    width: 100%;
  }
}
.micro__portal .portal__text .text__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #8d8d8d;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .micro__portal .portal__text .text__subtitle {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .micro__portal .portal__text .text__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro__portal .portal__text .text__subtitle {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.micro__portal .portal__text .text__title {
  font-size: 30px;
  font-weight: 700;
  color: #0A1322;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .micro__portal .portal__text .text__title {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .micro__portal .portal__text .text__title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .micro__portal .portal__text .text__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
.micro__portal .portal__text .text__desc {
  font-size: 18px;
  color: #0A1322;
}
@media (max-width: 768px) {
  .micro__portal .portal__text .text__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro__portal .portal__text .text__desc {
    font-size: 13px;
  }
}

.micro__module {
  padding: 140px 0;
  position: relative;
  background-color: #0A1322;
}
@media (max-width: 768px) {
  .micro__module {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__module {
    padding: 60px 0;
  }
}
.micro__module .module__list .gsap__item:last-child .module__item {
  margin-bottom: 0;
}
.micro__module .module__list .gsap__item:nth-child(2n) .module__item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.micro__module .module__list .gsap__item:nth-child(2n) .module__text {
  left: 60%;
}
@media (max-width: 768px) {
  .micro__module .module__list .gsap__item:nth-child(2n) .module__text {
    left: 50%;
  }
}
.micro__module .module__item {
  margin-bottom: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  width: auto;
}
@media (max-width: 768px) {
  .micro__module .module__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .micro__module .module__image {
    width: 100%;
  }
  .micro__module .module__image img {
    width: 100%;
  }
}
.micro__module .module__text {
  position: absolute;
  left: 50%;
}
.micro__module .module__text .text__title {
  font-size: 36px;
  color: #0A1322;
  font-weight: 700;
  margin-bottom: 8px;
}
.micro__module .module__text .text__subtitle {
  font-size: 26px;
  color: #0A1322;
  margin-bottom: 14px;
}
.micro__module .module__text .text__desc {
  font-size: 18px;
  color: #0A1322;
}
@media (max-width: 768px) {
  .micro__module .module__text {
    width: 100%;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 40px;
  }
  .micro__module .module__text .text__title {
    font-size: 28px;
  }
  .micro__module .module__text .text__subtitle {
    font-size: 18px;
  }
  .micro__module .module__text .text__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro__module .module__text {
    bottom: 40px;
  }
  .micro__module .module__text .text__title {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .micro__module .module__text .text__subtitle {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .micro__module .module__text .text__desc {
    font-size: 12px;
  }
}
.micro__customer {
  padding: 140px 0 160px;
  background: #F7F8FA;
}
@media (max-width: 768px) {
  .micro__customer {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__customer {
    padding: 70px 0;
  }
}
.micro__customer .customer__swiper {
  margin-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .micro__customer .customer__swiper {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .micro__customer .customer__swiper {
    margin-bottom: 30px;
  }
}
.micro__customer .customer__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.micro__customer .customer__swiper .swiper-slide {
  width: auto;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .micro__customer .customer__swiper .swiper-slide {
    width: 160px;
    margin-right: 20px;
  }
  .micro__customer .customer__swiper .swiper-slide img {
    width: 100%;
  }
}
@media (max-width: 48px) {
  .micro__customer .customer__swiper .swiper-slide {
    width: 120px;
  }
}
.micro__customer .customer__review {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .micro__customer .customer__review {
    padding: 0 16px;
  }
}
.micro__customer .customer__review .review__list {
  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;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .micro__customer .customer__review .review__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .micro__customer .customer__review .review__list {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .micro__customer .customer__review .review__list {
    margin-bottom: 16px;
  }
}
.micro__customer .customer__review .review__list:last-child {
  margin-bottom: 0;
}
.micro__customer .customer__review .review__list .gsap__item {
  margin-right: 24px;
}
.micro__customer .customer__review .review__list .gsap__item:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .micro__customer .customer__review .review__list .gsap__item {
    margin-right: 0;
    width: 100%;
    margin-bottom: 40px;
  }
  .micro__customer .customer__review .review__list .gsap__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .micro__customer .customer__review .review__list .gsap__item {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .micro__customer .customer__review .review__list .gsap__item {
    margin-bottom: 16px;
  }
}
.micro__customer .customer__review .review__item {
  padding: 36px 40px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .micro__customer .customer__review .review__item {
    padding: 36px 24px;
  }
}
@media (max-width: 480px) {
  .micro__customer .customer__review .review__item {
    padding: 28px 30px;
  }
}
.micro__customer .customer__review .review__content {
  margin-bottom: 12px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 768px) {
  .micro__customer .customer__review .review__content {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .micro__customer .customer__review .review__content {
    font-size: 14px;
  }
}
.micro__customer .customer__review .review__star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .micro__customer .customer__review .review__star {
    margin-bottom: 8px;
  }
}
.micro__customer .customer__review .review__name {
  font-size: 18px;
  font-weight: 700;
  color: #999;
}
@media (max-width: 768px) {
  .micro__customer .customer__review .review__name {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .micro__customer .customer__review .review__name {
    font-size: 14px;
  }
}

.micro__resource {
  padding: 140px 0;
  background: #0A1322;
}
@media (max-width: 768px) {
  .micro__resource {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__resource {
    padding: 70px 0;
  }
}
.micro__resource .resource__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 36px;
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .micro__resource .resource__list {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .micro__resource .resource__list {
    margin-bottom: -16px;
  }
}
.micro__resource .resource__list:last-child {
  margin-bottom: 0;
}
.micro__resource .resource__list .gsap__item {
  margin-right: 20px;
  margin-bottom: 20px;
}
.micro__resource .resource__list .gsap__item:nth-child(2n) {
  margin-right: 0;
}
.micro__resource .resource__list .gsap__item:nth-child(1) {
  width: calc(42% - 10px);
}
.micro__resource .resource__list .gsap__item:nth-child(1) .resource__item {
  background: url("./../images/resource-bg1.png") center/cover no-repeat;
}
.micro__resource .resource__list .gsap__item:nth-child(2) {
  width: calc(58% - 10px);
}
.micro__resource .resource__list .gsap__item:nth-child(2) .resource__item {
  background: url("./../images/resource-bg2.png") center/cover no-repeat;
}
.micro__resource .resource__list .gsap__item:nth-child(3) {
  width: calc(53% - 10px);
}
.micro__resource .resource__list .gsap__item:nth-child(3) .resource__item {
  background: url("./../images/resource-bg3.png") center/cover no-repeat;
}
.micro__resource .resource__list .gsap__item:nth-child(4) {
  width: calc(47% - 10px);
}
.micro__resource .resource__list .gsap__item:nth-child(4) .resource__item {
  background: url("./../images/resource-bg4.png") center/cover no-repeat;
}
@media (max-width: 768px) {
  .micro__resource .resource__list .gsap__item:nth-child(n) {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .micro__resource .resource__list .gsap__item {
    margin-bottom: 16px;
  }
}
.micro__resource .resource__item {
  display: block;
  position: relative;
  min-height: 280px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .micro__resource .resource__item {
    min-height: 200px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .micro__resource .resource__item {
    min-height: 85px;
    border-radius: 12px;
  }
}
.micro__resource .resource__item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.micro__resource .resource__item:hover::after {
  opacity: 0;
  visibility: hidden;
}
.micro__resource .resource__item span.micro-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
}
@media (max-width: 768px) {
  .micro__resource .resource__item span.micro-icon {
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
  }
}
.micro__resource .resource__name {
  position: absolute;
  left: 72px;
  bottom: 40px;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}
@media (max-width: 991px) {
  .micro__resource .resource__name {
    left: 40px;
  }
}
@media (max-width: 768px) {
  .micro__resource .resource__name {
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 20px;
    width: 100%;
    padding: 0 36px;
  }
}
@media (max-width: 480px) {
  .micro__resource .resource__name {
    font-size: 14px;
    padding: 0 24px;
  }
}

.micro__contact {
  padding: 140px 0;
  background: #F7F8FA;
}
@media (max-width: 768px) {
  .micro__contact {
    padding: 90px 0;
  }
}
@media (max-width: 480px) {
  .micro__contact {
    padding: 70px 0;
  }
}
.micro__contact .micro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .micro__contact .micro__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.micro__contact .micro__text.micro__text--contact {
  width: calc(100% - 1015px);
}
@media (max-width: 1400px) {
  .micro__contact .micro__text.micro__text--contact {
    width: calc(100% - 800px);
  }
}
@media (max-width: 1200px) {
  .micro__contact .micro__text.micro__text--contact {
    width: calc(100% - 650px);
  }
}
@media (max-width: 991px) {
  .micro__contact .micro__text.micro__text--contact {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .micro__contact .micro__text.micro__text--contact {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .micro__contact .micro__text.micro__text--contact {
    margin-bottom: 32px;
  }
}
.micro__contact .contact__form {
  width: 870px;
  margin-left: 145px;
  background: #fff;
  padding: 60px;
  border-radius: 25px;
}
@media (max-width: 1400px) {
  .micro__contact .contact__form {
    width: 770px;
    margin-left: 30px;
  }
}
@media (max-width: 1200px) {
  .micro__contact .contact__form {
    width: 620px;
    margin-left: 30px;
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .micro__contact .contact__form {
    width: 100%;
    margin-left: 0;
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .micro__contact .contact__form {
    padding: 52px 40px;
  }
}
@media (max-width: 480px) {
  .micro__contact .contact__form {
    padding: 48px 32px;
  }
}
.micro__contact .contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.micro__contact .contact__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .micro__contact .contact__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .micro__contact .contact__row {
    margin-bottom: 28px;
  }
}
.micro__contact .contact__item {
  width: 250px;
  margin-right: 105px;
}
@media (max-width: 1400px) {
  .micro__contact .contact__item {
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  .micro__contact .contact__item {
    margin-right: 25px;
  }
}
@media (max-width: 991px) {
  .micro__contact .contact__item {
    margin-right: 100px;
  }
}
@media (max-width: 768px) {
  .micro__contact .contact__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .micro__contact .contact__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .micro__contact .contact__item {
    margin-bottom: 28px;
  }
  .micro__contact .contact__item:last-child {
    margin-bottom: 0;
  }
}
.micro__contact .contact__item.contact__item--message {
  width: 100%;
}
.micro__contact .contact__item:last-child {
  margin-right: 0;
}
.micro__contact .contact__label {
  font-size: 22px;
  font-weight: 700;
  color: #0A1322;
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .micro__contact .contact__label {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .micro__contact .contact__label {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.micro__contact .contact__input {
  border: 0;
  border-bottom: 2px solid #0A1322;
  padding-bottom: 10px;
  font-size: 16px;
  color: #000;
  width: 100%;
}
.micro__contact .contact__input::-webkit-input-placeholder {
  color: #b6b9bd;
}
.micro__contact .contact__input::-moz-placeholder {
  color: #b6b9bd;
}
.micro__contact .contact__input:-ms-input-placeholder {
  color: #b6b9bd;
}
.micro__contact .contact__input::-ms-input-placeholder {
  color: #b6b9bd;
}
.micro__contact .contact__input::placeholder {
  color: #b6b9bd;
}
@media (max-width: 768px) {
  .micro__contact .contact__input {
    font-size: 14px;
  }
}
.micro__contact .contact__input--hidden {
  width: 1px;
  height: 1px;
  opacity: 0;
  padding: 0;
  margin: 0;
  position: absolute;
}
.micro__contact .contact__select {
  position: relative;
  cursor: pointer;
}
.micro__contact .contact__select.contact__select--is-active .select__value .micro-icon--arrow-bot {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.micro__contact .contact__select.contact__select--is-active .select__option {
  opacity: 1;
  visibility: visible;
}
.micro__contact .contact__select.contact__select--is-selected .select__value {
  color: #000;
}
.micro__contact .contact__select .select__value {
  border: 0;
  border-bottom: 2px solid #0A1322;
  padding-bottom: 10px;
  height: 30px;
  font-size: 16px;
  color: #b6b9bd;
  position: relative;
}
.micro__contact .contact__select .select__value .micro-icon--arrow-bot {
  position: absolute;
  right: 8px;
  display: block;
  top: 7px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.micro__contact .contact__select .select__option {
  position: absolute;
  z-index: 1;
  background: #0A1322;
  padding: 16px;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-transform-origin: top top;
          transform-origin: top top;
  opacity: 0;
  visibility: hidden;
}
.micro__contact .contact__select .select__list {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.micro__contact .contact__select .select__list:hover {
  font-weight: 700;
  color: #3051F9;
}
.micro__contact .contact__select .select__list:last-child {
  margin-bottom: 0;
}
.micro__contact .contact__agree {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .micro__contact .contact__agree {
    margin-top: 30px;
  }
}
.micro__contact .contact__agree .agree__caption {
  font-size: 16px;
  color: #3b424E;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .micro__contact .contact__agree .agree__caption {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .micro__contact .contact__agree .agree__caption {
    font-size: 13px;
  }
}
.micro__contact .contact__agree .agree__checkbox {
  position: relative;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  opacity: 0;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__square {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #0A1322;
  margin-right: 15px;
  display: block;
  position: relative;
  top: 1px;
}
@media (max-width: 768px) {
  .micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__square {
    top: -1px;
    margin-right: 8px;
  }
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__text {
  font-size: 16px;
  color: #3b424E;
  width: calc(100% - 35px);
}
@media (max-width: 768px) {
  .micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__text {
    width: calc(100% - 28px);
    font-size: 13px;
  }
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__text a {
  color: #3051F9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox] + .checkbox__label .checkbox__text a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #3051F9;
  position: absolute;
  bottom: 1px;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox]:checked + .checkbox__label .checkbox__square {
  background: #3051F9;
  border-color: #3051F9;
}
.micro__contact .contact__agree .agree__checkbox input[type=checkbox]:checked + .checkbox__label .checkbox__square::after {
  content: "";
  display: block;
  height: 6px;
  width: 12px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
          transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.micro__contact .contact__button {
  width: 190px;
  height: 50px;
  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;
  margin: 60px auto 0;
  background: #3051F9;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.micro__contact .contact__button:hover {
  background: #172c9b;
}
@media (max-width: 768px) {
  .micro__contact .contact__button {
    width: 250px;
    font-size: 16px;
    margin-top: 45px;
  }
}

.micro__text.micro__text--information {
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .micro__text.micro__text--information {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .micro__text.micro__text--information {
    margin-bottom: 32px;
  }
}
.micro__text.micro__text--portal {
  margin-bottom: 78px;
}
@media (max-width: 768px) {
  .micro__text.micro__text--portal {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .micro__text.micro__text--portal {
    margin-bottom: 32px;
  }
}
.micro__module .module__list{
  padding-top: 60px;
}
.micro__text.micro__text--module {
  /* margin-bottom: 60px; */
  background: #0A1322;
  z-index: 1;
  position: relative;
}
.micro__text.micro__text--module .micro__desc {
  padding-bottom: 40px;
}
.micro__text.micro__text--module::after {
  content: "";
  width: 100%;
  height: 140px;
  top: -140px;
  background: #0A1322;
  position: absolute;
}
@media (max-width: 768px) {
  .micro__module .module__list{
    padding-top: 50px;
  }
  .micro__text.micro__text--module {
    /* margin-bottom: 50px; */
  }
  .micro__text.micro__text--module .micro__desc {
    padding-bottom: 30px;
  }
  .micro__text.micro__text--module::after {
    content: "";
    height: 90px;
    top: -90px;
  }
}
@media (max-width: 480px) {
  .micro__module .module__list{
    padding-top: 32px;
  }
  .micro__text.micro__text--module {
    /* margin-bottom: 32px; */
  }
  .micro__text.micro__text--module .micro__desc {
    padding-bottom: 20px;
  }
  .micro__text.micro__text--module::after {
    content: "";
    height: 60px;
    top: -60px;
  }
}
.micro__text.micro__text--customer {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .micro__text.micro__text--customer {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .micro__text.micro__text--customer {
    margin-bottom: 32px;
  }
}
.micro__text.micro__text--resource {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .micro__text.micro__text--resource {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .micro__text.micro__text--resource {
    margin-bottom: 32px;
  }
}
.micro__text.micro__text--black .micro__title, .micro__text.micro__text--black .micro__desc {
  color: #0A1322;
}
.micro__text .micro__title {
  font-size: 62px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .micro__text .micro__title {
    font-size: 36px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .micro__text .micro__title {
    font-size: 28px;
  }
}
.micro__text .micro__desc {
  font-size: 22px;
  color: #fff;
  margin-top: 28px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .micro__text .micro__desc {
    margin-top: 18px;
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .micro__text .micro__desc {
    margin-top: 10px;
    font-size: 18px;
  }
}

.micro__popup.micro__popup--is-active .popup {
  opacity: 1;
  visibility: visible;
}
.micro__popup.micro__popup--is-active .popup__bg {
  opacity: 1;
  visibility: visible;
}
.micro__popup .popup {
  width: 750px;
  max-width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 25px;
  text-align: center;
  z-index: 12;
  padding: 80px 0;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .micro__popup .popup {
    width: calc(100% - 32px);
    padding: 50px 0;
  }
}
.micro__popup .popup__bg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.micro__popup .popup__head {
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .micro__popup .popup__head {
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .micro__popup .popup__head {
    margin-bottom: 20px;
  }
}
.micro__popup .popup__title {
  font-size: 26px;
  color: #0A1322;
  font-weight: 700;
}
@media (max-width: 768px) {
  .micro__popup .popup__title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .micro__popup .popup__title {
    font-size: 20px;
  }
}
.micro__popup .popup__button {
  font-size: 18px;
  color: #fff;
  width: 155px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  background: #3051F9;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.micro__popup .popup__button:hover {
  background-color: #172c9b;
}

.scroll__buttons {
  position: fixed;
  right: 70px;
  bottom: 70px;
  z-index: 1;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1400px) {
  .scroll__buttons {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .scroll__buttons {
    right: 16px;
    bottom: 40px;
  }
}
.scroll__buttons.scroll__buttons--is-active {
  opacity: 1;
  visibility: visible;
}
.scroll__buttons a, .scroll__buttons button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3051F9;
  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;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .scroll__buttons a, .scroll__buttons button {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .scroll__buttons a, .scroll__buttons button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.scroll__buttons a:hover, .scroll__buttons button:hover {
  background: #172c9b;
}
.scroll__buttons a.scroll__top, .scroll__buttons button.scroll__top {
  margin-top: 16px;
  background: none;
  border: 1px solid #fff;
}
@media (max-width: 480px) {
  .scroll__buttons a.scroll__top, .scroll__buttons button.scroll__top {
    margin-top: 8px;
  }
}
.scroll__buttons a.scroll__top.scroll__top--is-active, .scroll__buttons button.scroll__top.scroll__top--is-active {
  border-color: #0A1322;
}
.scroll__buttons a.scroll__top.scroll__top--is-active .micro-icon.micro-icon--top-arrow, .scroll__buttons button.scroll__top.scroll__top--is-active .micro-icon.micro-icon--top-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='33' viewBox='0 0 26 33' fill='none'%3E%3Cpath d='M13 2L12.2929 1.29289L13 0.585786L13.7071 1.29289L13 2ZM14 32C14 32.5523 13.5523 33 13 33C12.4477 33 12 32.5523 12 32L14 32ZM0.292894 13.2929L12.2929 1.29289L13.7071 2.70711L1.70711 14.7071L0.292894 13.2929ZM13.7071 1.29289L25.7071 13.2929L24.2929 14.7071L12.2929 2.70711L13.7071 1.29289ZM14 2L14 32L12 32L12 2L14 2Z' fill='%230A1322'/%3E%3C/svg%3E");
}

.micro-icon.micro-icon--top-arrow {
  width: 30px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='33' viewBox='0 0 26 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L12.2929 1.29289L13 0.585786L13.7071 1.29289L13 2ZM14 32C14 32.5523 13.5523 33 13 33C12.4477 33 12 32.5523 12 32L14 32ZM0.292894 13.2929L12.2929 1.29289L13.7071 2.70711L1.70711 14.7071L0.292894 13.2929ZM13.7071 1.29289L25.7071 13.2929L24.2929 14.7071L12.2929 2.70711L13.7071 1.29289ZM14 2L14 32L12 32L12 2L14 2Z' fill='white'/%3E%3C/svg%3E%0A") center/30px 24px no-repeat;
}
.micro-icon.micro-icon--star-active {
  width: 15px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.24813 0.342233L10.3739 4.59296L15.1266 5.27476C15.6364 5.34779 15.7509 5.69482 15.3821 6.04985L11.9428 9.35863L12.7546 14.031C12.8415 14.5321 12.5423 14.7469 12.0865 14.5103L7.83551 12.3044L3.58453 14.5103C3.12816 14.7469 2.82949 14.5326 2.91645 14.031L3.72819 9.35863L0.288952 6.04985C-0.0799233 5.69482 0.0340344 5.34779 0.544411 5.27476L5.29713 4.59296L7.4218 0.342233C7.64972 -0.114078 8.01968 -0.114078 8.24759 0.342233H8.24813Z' fill='%23FFCE00'/%3E%3C/svg%3E%0A") center/15px 14px no-repeat;
}
.micro-icon.micro-icon--north-east {
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.4074 38.0433C29.5735 38.0433 37.8148 29.802 37.8148 19.6359C37.8148 9.46979 29.5735 1.22852 19.4074 1.22852C9.24128 1.22852 1 9.46979 1 19.6359C1 29.802 9.24128 38.0433 19.4074 38.0433Z' stroke='white' stroke-width='1.79099'/%3E%3Cpath d='M24 14.2285H18.4447M24 14.2285L23.9997 19.7841M24 14.2285L14 24.2285' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/40px 40px no-repeat;
}
.micro-icon.micro-icon--arrow-bot {
  width: 14px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='9' viewBox='0 0 16 9' fill='none'%3E%3Cpath d='M15 1L8 8L1 1' stroke='%230A1322' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px 7px no-repeat;
}

.line__break--mobile {
  display: none;
}
@media (max-width: 768px) {
  .line__break--mobile {
    display: block;
  }
}
.line__break--pc {
  display: block;
}
@media (max-width: 768px) {
  .line__break--pc {
    display: none;
  }
}
.error {
  width: 100%;
  background: url("./../images/error-bg2.png") center/cover no-repeat;
}
.error .micro__container {
  height: 100vh;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.error__text {
  text-align: center;
}
.error__text h2 {
  font-size: 180px;
  color: #fff;
  margin-bottom: -20px;
  font-weight: 600;
}
.error__text h5 {
  font-size: 48px;
  font-weighT: 200;
  color: #fff;
}
@media (max-width: 768px) {
  .error__text h2 {
    font-size: 140px;
  }
  .error__text h5 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .error__text h2 {
    font-size: 100px;
    margin-bottom: -10px;
  }
  .error__text h5 {
    font-size: 28px;
  }
}
.error__button {
  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;
  margin: 70px auto 0;
  width: 330px;
  height: 65px;
  border-radius: 32.5px;
  color: #fff;
  font-size: 20px;
  border: 1px solid #fff;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.error__button:hover {
  border-color: #3051F9;
  background: #3051F9;
}
@media (max-width: 768px) {
  .error__button {
    width: 250px;
    height: 60px;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 30px;
  }
}