@import "/assets/lib/alert-message/alert-message.css";
@import "/assets/lib/imagePreview/viewer.css";
.website-head-module {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 4.6rem;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.2s ease;
  z-index: 99;
}
.website-head-module.header_top {
  background-color: #FFFFFF;
  padding: 1.6rem 0;
  border-bottom: 1px solid #eeeeee;
}
.website-head-module.header_top .logo {
  width: 8rem;
  height: 8rem;
}
.website-head-module.header_top .website-menu {
  color: var(--ui-color-font-primary);
}
.website-head-module.header_top .website-menu .menu-item {
  color: var(--ui-color-font-primary);
}
.website-head-module.header_top .website-menu .menu-item a {
  color: var(--ui-color-font-primary);
}
.website-head-module.header_top .website-head-btn {
  background: linear-gradient(90deg, #7874FE 0%, #AB2CF0 100%);
}
.website-head-module.header_top .website-head-btn:hover {
  color: #ffffff;
}
.website-head-module.header_top .website-head-btn:hover .btn-icon i {
  color: #FFFFFF;
}
.website-head-module.header_top .module-wrapper .mobile-head-option > label > i {
  color: var(--ui-color-font-primary);
}
.website-head-module.header_top .module-wrapper .mobile-head-option .website-search-icon i {
  color: var(--ui-color-font-primary);
}
.website-head-module .mobile-head-option, .website-head-module .website-mobile-menu {
  display: none;
}
.website-head-module .module-wrapper {
  justify-content: center;
  width: 148.6rem;
  max-width: 100%;
  display: flex;
  grid-gap: 4.6rem;
  align-items: center;
  margin: 0 auto;
}
.website-head-module .logo {
  transition: 0.2s ease-in-out;
  width: 11rem;
  height: 10.2rem;
}
.website-head-module .logo img {
  object-fit: contain;
}
.website-head-module .website-menu {
  font-size: var(--f-s-18);
  display: flex;
  grid-gap: 3.2rem;
  align-items: center;
  color: #ffffff;
}
.website-head-module .website-menu .menu-item {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.website-head-module .website-menu .menu-item a {
  color: #FFFFFF;
}
.website-head-module .website-menu .menu-item:after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 0;
  height: 0.2rem;
  background-color: var(--ui-color-primary);
  transition: 0.3s ease-in-out;
}
.website-head-module .website-menu .menu-item .child-menu-list {
  position: absolute;
  font-size: var(--f-s-16);
  grid-gap: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  color: var(--ui-color-font-primary);
  padding: 2rem 2rem;
  top: calc(100% + 1.4rem);
  cursor: default;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(-1rem);
  visibility: hidden;
  border: 1px solid #eeeeee;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-menu-item {
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  color: var(--ui-color-font-primary);
}
.website-head-module .website-menu .menu-item .child-menu-list .child-menu-item:after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 0;
  height: 0.2rem;
  background-color: var(--ui-color-primary);
  transition: 0.3s ease-in-out;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-menu-item:hover {
  color: var(--ui-color-primary);
}
.website-head-module .website-menu .menu-item .child-menu-list .child-menu-item:hover:after {
  width: 100%;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box {
  position: absolute;
  top: 0;
  left: calc(100% - 2.1rem);
  background-color: transparent;
  min-height: 100%;
  min-width: 0;
  padding: 0 0 0 2rem;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box .submenu-list {
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0 0 0.6rem 0.6rem;
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box .submenu-list .submenu-item {
  width: fit-content;
  position: relative;
  color: var(--ui-color-font-primary);
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box .submenu-list .submenu-item:after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 0;
  height: 0.2rem;
  background-color: var(--ui-color-primary);
  transition: 0.3s ease-in-out;
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box .submenu-list .submenu-item:hover {
  color: var(--ui-color-primary);
}
.website-head-module .website-menu .menu-item .child-menu-list .child-submenu-box .submenu-list .submenu-item:hover:after {
  width: 100%;
}
.website-head-module .website-menu .menu-item:hover:after {
  width: 100%;
}
.website-head-module .website-menu .menu-item:hover .child-menu-list {
  opacity: 1;
  transform: translateY(0);
  visibility: inherit;
}
.website-head-module .website-menu .other-option {
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  font-size: var(--f-s-16);
}
.website-head-module .website-head-btn {
  font-size: var(--f-s-16);
  padding: 2rem 4.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  line-height: 1.5;
  width: fit-content;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.website-head-module .website-head-btn i {
  font-size: var(--f-s-12);
  transition: 0.3s ease-in-out;
}
@keyframes btn-hover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}
@media screen and (max-width: 992px) {
  .website-head-module .website-head-btn {
    padding: 1rem 3rem;
  }
}
.website-head-module .website-head-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 5rem;
  padding: 1.1rem 1.1rem 1.1rem 3.1rem;
}
.website-head-module .website-head-btn:after {
  content: unset;
}
.website-head-module .website-head-btn .btn-icon {
  width: 6.2rem;
  height: 4.2rem;
  border-radius: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.website-head-module .website-head-btn .btn-icon i {
  font-size: var(--f-s-12);
  color: var(--ui-color-primary);
}
.website-head-module .website-head-btn.linear-gradient {
  background-position-x: 1%;
  background-size: 400% 100%;
  background-image: linear-gradient(90deg, var(--ui-color-secondary), var(--ui-color-primary) 25%, #ffffff 75%);
}
.website-head-module .website-head-btn.linear-gradient:hover {
  background-position-x: 99%;
  color: var(--ui-color-secondary);
}
.website-head-module .website-head-btn:hover {
  color: var(--ui-color-secondary);
  background-color: #ffffff;
  grid-gap: 2rem;
  transform: translateX(1rem);
}
.website-head-module .website-head-btn:hover .btn-icon i {
  color: #ffffff;
}
.website-head-module .website-head-btn:hover .btn-icon {
  background-color: var(--ui-color-secondary);
}
.website-head-module.header_active {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1.6rem 0;
}
@media (max-width: 992px) {
  .website-head-module {
    overflow: hidden;
    padding: unset !important;
  }
  .website-head-module .module-wrapper {
    padding: 1.6rem;
    justify-content: space-between;
  }
  .website-head-module .module-wrapper .website-search-icon i {
    color: #FFFFFF;
  }
  .website-head-module .module-wrapper .logo {
    width: 5.6rem;
    height: 5.2rem;
  }
  .website-head-module .module-wrapper .website-menu {
    display: none;
  }
  .website-head-module .module-wrapper .website-head-btn {
    display: none;
  }
  .website-head-module .module-wrapper .mobile-head-option {
    display: flex;
    align-items: center;
    grid-gap: 1.8rem;
  }
  .website-head-module .module-wrapper .mobile-head-option a {
    display: flex;
    align-items: center;
  }
  .website-head-module .module-wrapper .mobile-head-option > label > i {
    color: #ffffff;
    font-size: var(--f-s-20);
  }
  .website-head-module .module-wrapper .mobile-head-option .website-menu-icon {
    margin-top: -0.4rem;
  }
  .website-head-module .module-wrapper .mobile-head-option .website-menu-icon:has(input:checked) .icon-meun-icon-heise-01:before {
    content: "\e65c";
  }
  .website-head-module .module-wrapper .mobile-head-option .website-menu-icon:has(input:checked) .website-mobile-menu-list {
    visibility: inherit;
    opacity: 1;
    transform: translateY(0);
  }
  .website-head-module .module-wrapper .website-mobile-menu-list {
    overflow: hidden;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    flex-direction: column;
    transform: translateY(-5rem);
    width: calc(100% - 3.6rem);
    background-color: var(--ui-color-secondary);
    color: #ffffff;
    position: fixed;
    top: 8.8rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    align-items: center;
    border-radius: 0.5rem;
    padding: 1rem 1.8rem 4.8rem 1.8rem;
    max-height: calc(100vh - 14rem);
  }
  .website-head-module .module-wrapper .website-mobile-menu-list .website-head-btn.mobile-head-btn {
    display: flex;
    margin-top: 1.8rem;
  }
  .website-head-module .module-wrapper .website-mobile-menu-list .website-mobile-lang-set {
    margin-top: 5rem;
    font-size: var(--f-s-14);
    display: flex;
    align-items: center;
    grid-gap: 0.8rem;
  }
  .website-head-module .module-wrapper .website-mobile-menu-list .website-mobile-lang-set i {
    height: 1.5rem;
    width: 0.1rem;
    background-color: #ffffff;
  }
  .website-head-module .module-wrapper .website-mobile-menu {
    display: flex;
    flex-direction: column;
    grid-gap: 0.8rem;
    width: 100%;
    align-items: center;
    flex: 1;
    min-height: 0.1rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item label {
    position: relative;
    display: flex;
    width: fit-content;
    justify-content: center;
    padding: 1rem 0;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item label:before {
    content: "";
    position: absolute;
    width: 0;
    transition: 0.3s ease-in-out;
    height: 0.2rem;
    background-color: #ffffff;
    bottom: -0.6rem;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item label:has(input:checked):before {
    width: 100%;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item .child-menu-list {
    transition: 0.3s ease-in-out;
    opacity: 0;
    background-color: #ffffff;
    width: 100%;
    color: #2E2E2E;
    flex-direction: column;
    border-radius: 0.2rem;
    font-size: var(--f-s-14);
    overflow: hidden;
    height: 0;
    display: flex;
    text-align: center;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item .child-menu-list .child-menu-item {
    margin: 1.2rem 0;
    justify-content: center;
    width: 100%;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item .child-menu-list .child-submenu-box {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item .child-menu-list .child-submenu-box .submenu-item {
    margin: 0.6rem 0;
    width: 100%;
    justify-content: center;
    font-size: var(--f-s-12);
  }
  .website-head-module .module-wrapper .website-mobile-menu .menu-item:has(input:checked) .child-menu-list {
    height: auto;
    opacity: 1;
  }
}

body[lang=en-us] .website-head-module .website-menu {
  grid-gap: 2.2rem;
  font-size: var(--f-s-16);
}

.website-bottom-module {
  flex-direction: column;
}
.website-bottom-module .module-wrapper {
  color: #FFFFFF;
}
.website-bottom-module .module-wrapper .module-width {
  width: 130rem !important;
}
.website-bottom-module .module-wrapper.top-wrapper {
  background-color: #0D093E;
  padding: 6.5rem 0;
  position: relative;
}
.website-bottom-module .module-wrapper.top-wrapper .website-module-menu {
  display: none;
}
.website-bottom-module .module-wrapper.top-wrapper .bottom-back-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width {
  position: relative;
  z-index: 2;
  display: flex;
  grid-gap: 7.2rem;
  align-items: center;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .left {
  width: 36.5rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5.2rem 5.6rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form {
  padding: 3.2rem;
  background-color: #FFFFFF;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .form-title {
  font-size: var(--f-s-24);
  color: #232323;
  font-weight: bold;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .form-input {
  background: #F0F4FF;
  padding: 2rem 3.2rem;
  border-radius: 5rem;
  margin-top: 2.5rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .form-input input {
  font-size: var(--f-s-16);
  color: #595A5A;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .module-primary-btn {
  margin-top: 3.4rem;
  width: 100%;
  justify-content: space-between;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .module-primary-btn span {
  flex: 1;
  text-align: center;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-menu-list-body {
  display: flex;
  flex-direction: column;
  grid-gap: 1.4rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-menu-list {
  display: flex;
  flex-direction: column;
  grid-gap: 1.4rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-menu-list .website-menu-title {
  font-weight: bold;
  font-size: var(--f-s-20);
  margin-bottom: 0.6rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-logo {
  display: flex;
  align-items: center;
  grid-gap: 1.7rem;
  font-size: var(--f-s-24);
  font-weight: bold;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-logo img {
  width: 7.7rem;
  height: 7.1rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-logo > div {
  flex-shrink: 1;
  word-break: break-word;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-desc {
  margin-top: 2.4rem;
  line-height: 1.8;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-qrcode {
  margin-top: 3.4rem;
  display: flex;
  align-items: center;
  grid-gap: 1.8rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-qrcode img {
  width: 13.5rem;
  height: 13.3rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-social-btn {
  margin-top: 3.6rem;
  display: flex;
  grid-gap: 1rem;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-social-btn .website-btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid #D9D9D9;
  border-radius: 50%;
}
.website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-social-btn .website-btn-item i {
  color: #D9D9D9;
}
.website-bottom-module .module-wrapper.bottom-wrapper {
  padding: 1.8rem;
  background-color: #130180;
  text-align: center;
  font-size: 1.5rem;
}
.website-bottom-module .module-wrapper.bottom-wrapper a {
  display: contents;
}
@media (max-width: 992px) {
  .website-bottom-module .module-wrapper.top-wrapper {
    padding: 0;
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    grid-gap: 2rem;
    color: #CCCCCC;
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu .website-menu-list {
    grid-gap: 0;
    padding: 0.6rem 2rem;
    background-color: #001E56;
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu .website-menu-list .website-menu-title {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--f-s-18);
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu .website-menu-list .website-menu-title::after {
    content: "\ee4d";
    font-family: "iconfont";
    color: #CCCCCC;
    font-size: var(--f-s-14);
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu .website-menu-list-body {
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
  .website-bottom-module .module-wrapper.top-wrapper .website-module-menu .website-menu-title:has(input:checked) + .website-menu-list-body {
    height: auto;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width {
    flex-direction: column;
    padding: 3.5rem;
    grid-gap: 3.8rem;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .left, .website-bottom-module .module-wrapper.top-wrapper .module-width .center, .website-bottom-module .module-wrapper.top-wrapper .module-width .right {
    width: 100%;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .center {
    display: none;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-logo {
    font-size: var(--f-s-20);
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-logo img {
    width: 5.3rem;
    height: 4.9rem;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .website-info .website-desc {
    font-size: var(--f-s-14);
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .website-social-btn {
    justify-content: center;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form {
    padding: 3.2rem 1.8rem;
  }
  .website-bottom-module .module-wrapper.top-wrapper .module-width .bottom-form .form-title {
    font-size: var(--f-s-20);
  }
  .website-bottom-module .module-width {
    line-height: 2;
    font-size: 1.3rem;
  }
}

body[lang=en-us] .website-bottom-module .module-wrapper .module-width {
  width: 100% !important;
  justify-content: center;
}
body[lang=en-us] .website-bottom-module .module-wrapper .module-width .right {
  flex: 1;
  min-width: 1px;
  max-width: 40rem;
}
body[lang=en-us] .website-bottom-module .module-wrapper .module-width .website-info .website-logo {
  font-size: var(--f-s-20);
}

.layout-cookie-module {
  z-index: 999;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4666666667);
  transition-duration: 300ms;
}
.layout-cookie-module .cookie-box {
  position: relative;
  transition-duration: 300ms;
  color: #55595D;
  border-radius: 0.5rem;
  background: white;
  padding: 4.6rem 7.7rem;
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
  display: flex;
  grid-gap: 6.6rem;
}
.layout-cookie-module .cookie-box .close {
  cursor: pointer;
  position: absolute;
  right: 3.8rem;
  top: 3.1rem;
  color: #041A57;
  font-size: var(--f-s-26);
}
.layout-cookie-module .cookie-box .icon-box {
  display: flex;
  grid-gap: 1.5rem;
}
.layout-cookie-module .cookie-box .icon-box .icon {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
}
.layout-cookie-module .cookie-box .icon-box .title {
  display: none;
  font-size: var(--f-s-16);
  font-weight: bold;
}
.layout-cookie-module .cookie-box .text {
  flex: 1;
}
.layout-cookie-module .cookie-box .text .title {
  font-size: var(--f-s-16);
  margin-bottom: 1.6rem;
  font-weight: bold;
}
.layout-cookie-module .cookie-box .text .describe {
  line-height: 1.8;
  font-size: var(--f-s-14);
}
.layout-cookie-module .cookie-box .button-box {
  text-align: center;
}
.layout-cookie-module .cookie-box .button-box .accept {
  font-size: var(--f-s-16);
  cursor: pointer;
  padding: 1.3rem 2.9rem;
  border: 0.1rem solid #041A57;
  color: #041A57;
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
}
.layout-cookie-module .cookie-box .button-box .disagree {
  font-size: var(--f-s-16);
  cursor: pointer;
  padding: 1.3rem 2.9rem;
}
.layout-cookie-module.hidden {
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.layout-cookie-module.hidden .cookie-box {
  transform: translateY(100%);
}
@media screen and (max-width: 992px) {
  .layout-cookie-module .cookie-box {
    padding: 3.5rem 1.8rem;
    grid-gap: 1.6rem;
    flex-direction: column;
  }
  .layout-cookie-module .cookie-box .close {
    right: 2.7rem;
    top: 2.2rem;
  }
  .layout-cookie-module .cookie-box .icon-box {
    align-items: flex-end;
  }
  .layout-cookie-module .cookie-box .icon-box .icon {
    width: 3.8rem;
    height: 3.8rem;
  }
  .layout-cookie-module .cookie-box .icon-box .title {
    display: block;
  }
  .layout-cookie-module .cookie-box .text .title {
    display: none;
  }
}

.contact-us-form-module .module-wrapper .module-width .form-box {
  padding: 7.2rem 8rem 9.8rem;
  background-color: #F9FAFC;
}
.contact-us-form-module .module-wrapper .module-width .form-box .form-title {
  font-weight: bold;
  font-size: var(--f-s-24);
  color: #2E2E2E;
  margin-bottom: 3.6rem;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-line {
  display: none;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item {
  width: calc(50% - 1.2rem);
  margin-bottom: 1.8rem;
  background-color: #FFFFFF;
  border-radius: 5rem;
  border: 0.2rem solid #fff;
  position: relative;
  transition: 0.3s all;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item.active label {
  transform: translateY(-3.2rem);
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item.isFocus {
  border-color: var(--ui-color-secondary);
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item.isFocus label:after {
  width: 100%;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item.full-item {
  width: 100%;
  margin-bottom: 4.6rem;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item label {
  position: absolute;
  top: 2.2rem;
  left: 4.6rem;
  max-width: calc(100% - 9.2rem);
  z-index: 3;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s all;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item label:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.3rem;
  background-color: var(--ui-color-bg-primary);
  left: 50%;
  transform: translateX(-50%);
  top: 0.75rem;
  z-index: -1;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item .item {
  position: relative;
  z-index: 5;
  background-color: transparent;
  width: 100%;
  padding: 2.2rem 4.6rem;
  border: unset;
  color: #595959;
  outline: unset;
  box-shadow: unset;
  border-radius: 5rem;
}
.contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item .item.select-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/assets/image/file-icon/drow_down.svg") no-repeat scroll calc(100% - 4.6rem) center transparent;
  background-size: 2.2rem;
}
@media (max-width: 992px) {
  .contact-us-form-module .module-wrapper .module-width .form-box {
    padding: 3rem 2rem;
  }
  .contact-us-form-module .module-wrapper .module-width .form-box .form-title {
    font-size: var(--f-s-20);
    margin-bottom: 3rem;
  }
  .contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item {
    width: 100%;
    margin-bottom: 1.4rem;
    border-radius: 3rem;
  }
  .contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item.full-item {
    margin-bottom: 3rem;
  }
  .contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item .item {
    width: 100%;
    padding: 1.4rem 2.4rem;
  }
  .contact-us-form-module .module-wrapper .module-width .form-box .contact-form .form-item .item.select-item {
    background: url("/assets/image/file-icon/drow_down.svg") no-repeat scroll calc(100% - 2.4rem) center transparent;
    background-size: 2rem;
  }
}

.popup-form {
  transition-duration: 300ms;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5333333333);
  display: flex;
  align-items: center;
}
.popup-form .inner {
  width: fit-content;
  position: relative;
}
.popup-form .inner .module-width .close {
  cursor: pointer;
  display: block;
  transform: translate(-120%, 150%);
  float: right;
  font-size: 4rem;
}
.popup-form .inner .form-box {
  border-radius: 1.6rem;
}
.popup-form.hide {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}
.popup-form.hide .inner {
  opacity: 0;
  transform: translateY(6rem);
}

#videoModal .modal-content {
  background-color: transparent;
  border: none;
}
#videoModal .modal-header {
  border-bottom: none;
}
#videoModal .btn-close {
  color: #fff;
  background: transparent;
  opacity: 1;
  font-size: var(--f-s-24);
}
#videoModal .btn-close:focus {
  outline: none;
}
#videoModal .modal-title {
  font-size: var(--f-s-24);
}
#videoModal .modal-dialog {
  max-width: 83rem;
  margin-top: 10rem;
}

.layout_body {
  transition: 0.6s ease-in-out;
}

.module-wrapper {
  width: 100%;
}

.module-title-s + .module-title {
  margin-top: 1.6rem;
}

.module-title-s {
  font-size: var(--f-s-18);
  color: var(--ui-color-primary);
}

.module-title {
  font-size: var(--f-s-36);
  font-weight: bold;
  position: relative;
  line-height: 1.3;
}
.module-title.module-title-underline:before {
  left: 0;
  bottom: -2rem;
  position: absolute;
  background-image: linear-gradient(90deg, var(--ui-color-secondary) 0%, var(--ui-color-secondary) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 70%, var(--ui-color-primary) 70%, var(--ui-color-primary) 100%);
  content: "";
  width: 10.2rem;
  height: 0.2rem;
}

.module-desc {
  font-size: var(--f-s-18);
  color: #595959;
  line-height: 2;
}

.module-desc + .module-primary-btn {
  margin-top: 3.2rem;
}

.module-title-underline ~ .module-desc {
  margin-top: 6rem;
}

.module-desc + .module-btn {
  margin-top: 2.4rem;
}

.module-width > .module-title-s {
  text-align: center;
}
.module-width > .module-title {
  text-align: center;
}
.module-width > .module-title.module-title-underline:before {
  right: 0;
  margin: auto;
}
.module-width > .module-desc {
  text-align: center;
}

.website-top-btn {
  background-color: var(--ui-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 0.2rem;
  position: fixed;
  right: 2.6rem;
  bottom: 3rem;
  z-index: 10;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.website-top-btn:hover {
  background-color: var(--ui-color-secondary);
}
.website-top-btn i {
  color: #FFFFFF;
}

.module-primary-btn {
  font-size: var(--f-s-16);
  padding: 2rem 4.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  line-height: 1.5;
  width: fit-content;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.module-primary-btn i {
  font-size: var(--f-s-12);
  transition: 0.3s ease-in-out;
}
@keyframes btn-hover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}
@media screen and (max-width: 992px) {
  .module-primary-btn {
    padding: 1rem 3rem;
  }
}
.module-primary-btn {
  color: #ffffff;
  border-radius: 5rem;
  border: 1px solid transparent;
  background-position-x: 1%;
  background-size: 400% 100%;
  background-image: linear-gradient(90deg, var(--ui-color-secondary), var(--ui-color-primary) 25%, #ffffff 75%);
}
.module-primary-btn:after {
  transition: 0.2s ease-in-out;
  font-family: "iconfont";
  content: "\e72e";
  color: #ffffff;
  font-size: var(--f-s-12);
}
.module-primary-btn:hover {
  background-position-x: 99%;
  color: var(--ui-color-secondary);
  border: 1px solid var(--ui-color-secondary);
  transform: translateX(1rem);
}
.module-primary-btn:hover:after {
  transition-delay: 0.1s;
  transform: translateX(1rem);
  color: var(--ui-color-secondary);
}

.module-light-btn {
  font-size: var(--f-s-16);
  padding: 2rem 4.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  line-height: 1.5;
  width: fit-content;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.module-light-btn i {
  font-size: var(--f-s-12);
  transition: 0.3s ease-in-out;
}
@keyframes btn-hover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}
@media screen and (max-width: 992px) {
  .module-light-btn {
    padding: 1rem 3rem;
  }
}
.module-light-btn {
  color: var(--ui-color-secondary);
  border-radius: 5rem;
  border: 1px solid var(--ui-color-secondary);
  background-position-x: 1%;
  background-size: 400% 100%;
  background-image: linear-gradient(90deg, #ffffff 25%, var(--ui-color-secondary) 75%, var(--ui-color-primary));
}
.module-light-btn:after {
  transition: 0.2s ease-in-out;
  content: "\e72e";
  font-family: "iconfont";
  color: var(--ui-color-secondary);
  font-size: var(--f-s-12);
}
.module-light-btn:hover {
  color: #ffffff;
  background-position-x: 99%;
  border: 1px solid transparent;
  transform: translateX(1rem);
}
.module-light-btn:hover:after {
  transition-delay: 0.1s;
  transform: translateX(1rem);
  color: #ffffff;
}

.module-transparent-btn {
  font-size: var(--f-s-16);
  padding: 2rem 4.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  line-height: 1.5;
  width: fit-content;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.module-transparent-btn i {
  font-size: var(--f-s-12);
  transition: 0.3s ease-in-out;
}
@keyframes btn-hover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}
@media screen and (max-width: 992px) {
  .module-transparent-btn {
    padding: 1rem 3rem;
  }
}
.module-transparent-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 5rem;
  padding: 1.1rem 1.1rem 1.1rem 3.1rem;
}
.module-transparent-btn:after {
  content: unset;
}
.module-transparent-btn .btn-icon {
  width: 6.2rem;
  height: 4.2rem;
  border-radius: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-transparent-btn .btn-icon i {
  font-size: var(--f-s-12);
  color: var(--ui-color-primary);
}
.module-transparent-btn.linear-gradient {
  background-position-x: 1%;
  background-size: 400% 100%;
  background-image: linear-gradient(90deg, var(--ui-color-secondary), var(--ui-color-primary) 25%, #ffffff 75%);
}
.module-transparent-btn.linear-gradient:hover {
  background-position-x: 99%;
  color: var(--ui-color-secondary);
}
.module-transparent-btn:hover {
  color: var(--ui-color-secondary);
  background-color: #ffffff;
  grid-gap: 2rem;
  transform: translateX(1rem);
}
.module-transparent-btn:hover .btn-icon i {
  color: #ffffff;
}
.module-transparent-btn:hover .btn-icon {
  background-color: var(--ui-color-secondary);
}

.module-text-btn {
  font-size: var(--f-s-16);
  padding: 2rem 4.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  grid-gap: 1.6rem;
  line-height: 1.5;
  width: fit-content;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.module-text-btn i {
  font-size: var(--f-s-12);
  transition: 0.3s ease-in-out;
}
@keyframes btn-hover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}
@media screen and (max-width: 992px) {
  .module-text-btn {
    padding: 1rem 3rem;
  }
}
.module-text-btn {
  color: var(--ui-color-secondary);
}
.module-text-btn:after {
  color: var(--ui-color-secondary);
  font-family: "iconfont";
  content: "\e72e";
  font-size: var(--f-s-12);
}
.module-text-btn:hover {
  transform: translateX(1rem);
}
.module-text-btn:hover:after {
  transition-delay: 0.1s;
  transform: translateX(1rem);
}

.owl-carousel {
  position: relative;
}
.owl-carousel .owl-dots {
  display: flex;
  grid-gap: 1.2rem;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: center;
}
.owl-carousel .owl-dots .owl-dot {
  width: 0.8rem;
  background: #CCCCCC;
  height: 0.8rem;
  border-radius: 0.8rem;
  transition: 0.2s ease-in-out;
}
.owl-carousel .owl-dots .owl-dot.active {
  width: 1.9rem;
  background-color: var(--ui-color-secondary);
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ui-color-secondary) !important;
  transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav .owl-prev::after, .owl-carousel .owl-nav .owl-next::after {
  transition: 0.3s ease-in-out;
  color: var(--ui-color-secondary);
}
.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled {
  cursor: unset;
  border-color: #9E9E9E !important;
}
.owl-carousel .owl-nav .owl-prev.disabled::after, .owl-carousel .owl-nav .owl-next.disabled::after {
  color: #9E9E9E;
}
.owl-carousel .owl-nav .owl-prev:hover:not(.disabled), .owl-carousel .owl-nav .owl-next:hover:not(.disabled) {
  background-color: var(--ui-color-secondary);
}
.owl-carousel .owl-nav .owl-prev:hover:not(.disabled)::after, .owl-carousel .owl-nav .owl-next:hover:not(.disabled)::after {
  color: #ffffff;
}
.owl-carousel .owl-nav .owl-prev {
  left: -4.8rem;
}
.owl-carousel .owl-nav .owl-prev:after {
  margin-left: -0.4rem;
}
.owl-carousel .owl-nav .owl-next {
  right: -4.8rem;
}
.owl-carousel .owl-nav .owl-next:after {
  margin-right: -0.4rem;
}

.layout-module-head-owl-nav {
  display: flex;
  grid-gap: 2rem;
  align-items: center;
}
.layout-module-head-owl-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 2rem;
  width: 8.8rem;
  height: 4.4rem;
  background: #E8EBF1;
  border-radius: 8rem;
}
.layout-module-head-owl-nav .nav-list .iconfont {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.layout-module-head-owl-nav .nav-list .iconfont:hover {
  color: var(--ui-color-primary);
}

@media (max-width: 992px) {
  .module-title-s + .module-title {
    margin-top: 1rem;
  }
  .module-title-s {
    font-size: var(--f-s-16) !important;
    text-align: center;
  }
  .module-title {
    font-size: var(--f-s-28) !important;
    text-align: center;
  }
  .module-title.module-title-underline:before {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
  }
  .module-desc {
    font-size: var(--f-s-18) !important;
    color: #595959;
    line-height: 2;
  }
  .module-desc + .module-primary-btn {
    margin-top: 3.2rem;
  }
  .module-title-underline ~ .module-desc {
    margin-top: 5rem;
    text-align: center;
  }
  .module-desc + .module-btn {
    margin: 3.6rem auto 0 auto;
  }
}
.viewer-canvas > img {
  object-fit: contain;
}

/*# sourceMappingURL=layout.css.map */
