:root {
  --theme_color: #0c437b;
  --subtheme_color: #1c5e92;
  --hover_color: #000;
  --title_color: #101011;
  --content_color: #000;
  --bg_color: linear-gradient(to right, #0c437b, #1c5e92);
  --subbg_color: #f6fafd;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1470px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  overflow: hidden;
}
.swiper_content_big {
  max-width: 1650px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title_color);
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  word-break: break-word;
  color: var(--title_color);
  font-family: 'fangsong','SourceHanSansCN', sans-serif;
}
body .home_about .home_nav,
body .home_about .swiper_box p,
body .home_about .swiper_box .swiper-slide li,
body .contact_nav li a {
  font-family: 'fangsong','SourceHanSansCN', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--theme_color);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.img.img_ct img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.btn {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-weight: 300;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  padding: 17.5px 32px;
  min-width: 242px;
  background-image: linear-gradient(to right, #003d7c, #67beff, var(--theme_color), #1c5e92);
  background-size: 300%;
  background-position: right;
}
.btn:hover {
  background-position: left;
}
.btn_sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.3s;
  min-width: 52px;
  aspect-ratio: 1;
  position: relative;
}
.btn_sm::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: var(--bg_color);
  top: 0;
  left: 0;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s;
}
.btn_sm::after {
  content: '';
  width: 21px;
  height: 10px;
  background: url("../img/arrow-line-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  z-index: 2;
}
.btn_sm:hover {
  background: transparent;
}
.btn_sm:hover::before {
  opacity: 1;
}
.btn_sm:hover::after {
  filter: contrast(0) brightness(2);
}
.btn_sm.active {
  background: transparent;
}
.btn_sm.active::before {
  opacity: 1;
}
.btn_sm.active::after {
  filter: contrast(0) brightness(2);
}
.btn_sm.active:hover {
  opacity: 0.5;
}
.swiper_btns {
  display: flex;
  gap: 38px;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  transform: rotate(180deg);
  overflow: hidden;
  transition: all 0.3s;
  background: #ffffff;
  border: 1px solid transparent;
}
.swiper_btns div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #003d7c, #67beff, var(--theme_color), #1c5e92);
  background-size: 300%;
  background-position: right;
  transition: all 0.3s;
  content: '';
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
  position: relative;
  z-index: 2;
}
.swiper_btns div:hover::before {
  background-position: left;
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  border-color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::before {
  opacity: 0;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 1540px;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
/*.swiper_btns {
  display: flex;
  gap: 38px;

  div {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid transparent;
    background-image: linear-gradient(to right, #003d7c, #67beff, var(--theme_color), #1c5e92);
    background-size: 300%;
    background-position: right;
    transform: rotate(180deg);
    transition: all .3s;

    &::after {
      content: '';
      display: block;
      width: 1rem;
      height: 1rem;
      transition: all .3s;
      background: url(../img/arrow-b.svg) no-repeat center/contain;
    }

    &:hover {
      border-color: transparent;
      background-position: left;

      &::after {
        filter: contrast(0) brightness(2);
      }
    }
  }

  .btn_next {
    &::after {
      transform: rotate(180deg);
    }
  }

  .swiper-button-disabled {
    //border-color: #b4b4b4;
    border-color: #8c8c8c;
    background-image: none;
    background-color: #ffffff;
    pointer-events: none;
    transition: all .3s;

    &::after {
      filter: contrast(0) brightness(0);
      transition: all .3s;
    }
  }

  &.middle {
    width: 98%;
    max-width: 1540px;
    justify-content: space-between;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;

    div {
      pointer-events: all;
    }

    .swiper-button-disabled {
      pointer-events: none;
    }
  }

  div.swiper-button-lock {
    opacity: 0;
    pointer-events: none;
  }
}*/
.content_header {
  max-width: 1812px;
  margin: 0 auto;
  position: relative;
}
.head .title {
  font-size: 64px;
  line-height: 102px;
  color: var(--title_color);
  display: inline-flex;
  display: block !important;
  font-weight: 500;
}
.head .title span {
  background: linear-gradient(to right, var(--theme_color), #1c5e92);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.head .subtitle {
  font-size: 20px !important;
  letter-spacing: 3px;
  font-weight: 300;
  color: #808080;
  text-transform: uppercase;
}
.head h1 {
  font-size: 76px;
  line-height: 121px;
  font-weight: 400;
  letter-spacing: 4px;
}
.head .subtitle_banner {
  font-size: 30px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 1px;
}
.head h2 {
  font-size: 60px;
  font-size: 52px !important;
  line-height: 72px;
  font-weight: 600 !important;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.head .desc {
  font-size: 22px;
  line-height: 39px;
  color: #3a3a3a;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 996;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
header.bg {
  position: sticky;
  background: #ffffff;
}
header.sticky {
  background: #ffffff;
  border-bottom-color: #d0d0d0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .left {
  /* min-width: 263px; */
  display: flex;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
header.bg .logo, header.sticky .logo {
  filter: none;
}
header .logo img {
  display: block;
  width: 131px;
  height: auto;
}
header .logo p {
  position: absolute;
  inset: 0;
}
header .header_top {
  padding-top: 16px;
}
header .infos {
  display: flex;
  align-items: center;
  gap: 44px;
}
header .infos li a {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  gap: 12px;
  transition: all 0.3s;
}
header.bg .infos li a, header.sticky .infos li a {
  color: var(--title_color);
}
header .infos li a:hover {
  color: var(--theme_color);
}
header .infos li a span {
  width: 21px;
  aspect-ratio: 1;
  content: '';
  transition: all .3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / cover;
}
header.bg .infos li a span, header.sticky .infos li a span {
  filter: none;
}
header .infos::after {
  display: inline-block;
  content: '';
  width: 1px;
  height: 22px;
  background-color: rgba(16, 16, 17, 0.3);
  margin: 0 31px 0 -10px;
}
header .lang_select {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  line-height: 22px;
  gap: 9px;
  cursor: pointer;
  color: #fff;
}
header.bg .lang_select, header.sticky .lang_select {
  color: var(--title_color);
}
header .lang_select::before {
  display: inline-block;
  width: 29px;
  height: 19px;
  content: '';
  background: url("../img/icon-china.svg") no-repeat center / contain;
}
header .lang_select.de::before {
  background-image: url("../img/icon-de.svg");
}
header .lang_select a {
  display: none;
}
header .lang_select .gt-current-lang {
  display: block;
  pointer-events: none;
}
header .lang_select .gt-current-lang span {
  display: none;
}
header .lang_select::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 10px;
  transition: all .3s;
  background: url("../img/arrow-down.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header.bg .lang_select::after, header.sticky .lang_select::after {
  filter: contrast(0) brightness(0);
}
header nav {
  margin-right: 4.3%;
}
header nav .menu {
  display: flex;
  gap: 57px;
}
header nav .menu > li {
  position: relative;
  padding-bottom: 9px;
}
header nav .menu > li > a {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 95px;
  transition: all 0.3s;
}
header.bg nav .menu > li > a, header.sticky nav .menu > li > a {
  color: var(--title_color);
}
header nav .menu > li > a:hover {
  color: var(--theme_color);
}
header nav .menu > li.menu-item-has-children:hover a::after {
  filter: unset;
}
header nav .menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: url("../img/arrow-down.svg") no-repeat center / contain;
  margin-left: 8px;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
header.bg nav .menu > li.menu-item-has-children > a::after, header.sticky nav .menu > li.menu-item-has-children > a::after {
  filter: contrast(0) brightness(0);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  color: var(--theme_color);
}
header nav .menu > li:hover ul {
  pointer-events: all;
  opacity: 1;
  padding: 1rem 1.5rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .sub-menu {
  left: -1.5rem;
  position: absolute;
  min-width: 12rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem 1.5rem 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: translateY(-1rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 600;
}
header nav .sub-menu > li > a:hover {
  color: var(--theme_color);
}
header .btns {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 95px;
  margin-bottom: 6px;
}
header .btns .btn_lang {
  display: none;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  min-width: 227px;
  padding: 16.5px 32px;
}
footer {
  overflow: hidden;
  background: #ffffff;
}
footer .footer_main {
  color: #fff;
  background-color: #0e477e;
}
footer .footer_main .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}
footer .footer_main .logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  filter: contrast(0) brightness(2);
}
footer .footer_main .logo img {
  display: block;
  width: 161px;
  height: auto;
}
footer .footer_main .logo p {
  position: absolute;
  inset: 0;
}
footer .footer_main .slide_info ul {
  display: grid;
  align-items: center;
  gap: 1rem;
}
footer .footer_main .slide_info ul li {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}
footer .footer_main .slide_info ul li strong {
  display: inline-block;
  font-weight: 500;
  font-size: 26px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}
footer .footer_main .slide_link strong {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin-bottom: 1rem;
}
footer .footer_main .slide_link li {
  margin-bottom: 1rem;
}
footer .footer_main .slide_link li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_link a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: all .3s;
}
footer .footer_main .slide_link a:hover {
  color:#fff;
}
footer .copyright {
  font-size: 16px;
  line-height: 25px;
  color: #5c5c5c;
  font-weight: 500;
  background-color: #c8d8e5;
}
footer .copyright p {
  padding: 12px 0;
}
footer .copyright .menu {
  display: inline-flex;
  flex-wrap: wrap;
}
footer .copyright .menu li:last-child ::after {
  display: none;
}
footer .copyright .menu li > a {
  display: inline-block;
  line-height: 54px;
  align-items: center;
  transition: all 0.3s;
}
footer .copyright .menu li > a:hover {
  color: var(--theme_color);
}
footer .copyright .menu li > a::after {
  width: 1px;
  height: 15px;
  background-color: #5c5c5c;
  content: '';
  display: inline-block;
  margin: 0 10px;
}
.footer_contact {
  position: relative;
}
.footer_contact::before {
  content: '';
  width: 100%;
  height: 152.46%;
  background-image: linear-gradient(to top, #f1f7ff, #ffffff);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer_contact .flex {
  min-height: 528px;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.footer_contact .flex::after {
  content: '';
  position: absolute;
  bottom: -13%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  aspect-ratio: 1072 / 486;
  background: url(../img/bg-earth.svg) no-repeat center / contain;
}
.footer_contact .head {
  padding-top: 1.8%;
  position: relative;
  z-index: 2;
}
.footer_contact .head .btn {
  padding: 16.5px 32px;
  min-width: 219px;
  margin-top: 28px;
}
.page_banner {
  padding: 100px 0 89px;
  position: relative;
}
.page_banner .flex {
  min-height: 612px;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}
.page_banner .head {
  color: #ffffff;
}
.page_banner .head a.btn {
  margin-top: 40px;
}
.item_cooperation {
  cursor: pointer;
}
.item_cooperation:hover .link_more p {
  display: block;
}
.item_cooperation:hover .scrollbar::after {
  width: 85%;
}
.item_cooperation .img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 453/322;
  margin-bottom: 40px;
  transition: all 0.3s;
}
.item_cooperation .img:hover img {
  transform: scale(105%);
}
.item_cooperation ul > li {
  display: inline-flex;
  font-size: 22px;
  line-height: 25px;
  color: rgba(16, 16, 17, 0.85);
  font-weight: 400;
  letter-spacing: 1px;
}
.item_cooperation ul + p{
  margin: 1rem 0 0;
  font-size: 18px;
}
.item_cooperation ul > li.name {
  font-size: 26px;
  color: var(--title_color);
  font-weight: 500;
  margin-right: 3px;
}
.item_cooperation .star {
  width: 127px;
  height: 18px;
  margin: 14px 0 38px;
}
.item_cooperation .star::after {
  background: url("../img/icon-star.svg") no-repeat left center / 127px 100%;
}
.item_cooperation .link_more {
  font-size: 20px;
  line-height: 24px;
  min-height: 24px;
  color: var(--theme_color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.item_cooperation .link_more p {
  /* display: none; */
  transition: all 0.3s;
}
.item_cooperation .link_more::after {
  content: '';
  width: 21px;
  height: 10px;
  background: url("../img/arrow-line-r.svg") no-repeat center / contain;
}
.item_cooperation .scrollbar {
  content: '';
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #d2d2d2;
  position: relative;
  margin: 23px 0;
}
.item_cooperation .scrollbar::after {
  position: absolute;
  width: 0;
  height: 100%;
  background-color: var(--theme_color);
  top: 0;
  left: 0;
  content: '';
  transition: all 0.3s;
}
.star {
  width: 155px;
  height: 22px;
}
.star::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--value);
  background: url("../img/icon-star.svg") no-repeat left center / 155px 100%;
}
.storys_section {
  padding: 95px 0 58px;
}
.storys_section .storynav {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}
.storys_section .storynav ul {
  max-width: 870px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.storys_section .storynav ul li {
  font-size: 20px;
  line-height: 24px;
  color: var(--title_color);
  font-weight: 400;
  border-radius: 6px;
  background-color: #ecf0f3;
  padding: 11px 16px;
  min-width: 158px;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
}
.storys_section .storynav ul li.active {
  background-color: var(--theme_color);
  color: #ffffff;
}
.storys_section .storynav ul li:hover {
  color: #ffffff;
  background-image: var(--bg_color);
}
.storys_section .swiper_content_big {
  margin-top: 60px;
}
.storys_section .story_swiper {
  display: none;
  max-width: 957.8485px;
  margin: 0 auto;
  padding: 4.5% 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.storys_section .story_swiper.active {
  display: block;
}
.storys_section .story_swiper::before {
  content: '';
  width: 91.6479485%;
  height: 100%;
  border-radius: 25px;
  background-color: #f2f6f9;
  position: absolute;
  top: 0;
  right: 0;
}
.storys_section .story_swiper .swiper-slide {
  display: grid;
  grid-template-columns: 32.0352% 1fr;
  align-items: center;
}
.storys_section .story_swiper .swiper-slide .main {
  color: var(--title_color);
  padding: 0 11%;
}
.storys_section .story_swiper .swiper-slide .main .name {
  font-size: 36px;
  line-height: 75px;
}
.storys_section .story_swiper .swiper-slide .main .level {
  font-size: 20px;
  line-height: 24px;
  color: #3d3e40;
}
.storys_section .story_swiper .swiper-slide .main .level strong {
  margin-right: 7px;
}
.storys_section .story_swiper .swiper-slide .main .level::before {
  display: inline-block;
  content: '';
  width: 14px;
  aspect-ratio: 1;
  background-color: var(--theme_color);
  margin-right: 5px;
}
.storys_section .story_swiper .swiper-slide .main ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  font-size: 18px;
  color: #3d3e40;
  border-top: 1px solid #c7cccf;
  padding-top: 24px;
  margin-top: 58px;
}
.storys_section .story_swiper .swiper-slide .main ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
}
.storys_section .story_swiper .swiper-slide .main ul li span {
  width: 34px;
  aspect-ratio: 1;
  content: '';
  background: no-repeat center / cover;
  display: inline-block;
}
.storys_section .story_swiper .swiper-slide .img {
  aspect-ratio: 307/375;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}
.storys_section .story_swiper .swiper-slide .img:hover img {
  transform: scale(105%);
}
.storys_section .swiper_box:has(.swiper-pagination) {
  margin-top: 44px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.storys_section .swiper_btns {
  position: absolute;
  justify-content: space-between;
  width: 59.1264%;
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.storys_section .swiper-pagination {
  position: static;
  width: 100%;
  height: 15px;
}
.storys_section .swiper-pagination .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 14px !important;
}
.storys_section .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  margin: 0 14px !important;
  position: relative;
  transition: all 0.3s;
}
.storys_section .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  width: 13px;
  aspect-ratio: 1;
  border-radius: 100%;
  border: 1px solid #000000;
  background-color: transparent;
  position: absolute;
  top: -4px;
  left: -4px;
  display: inline-block;
  transition: all 0.3s;
  opacity: 0;
}
.storys_section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}
.storys_section .swiper-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
}
.storys_section .swiper_switch {
  width: 99.4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 32px;
  line-height: 45px;
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}
.storys_section .swiper_switch > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  min-height: 460px;
  padding-right: 40px;
  cursor: pointer;
  transition: all 0.3s;
  width: 200px;
  text-align: right;
}
.storys_section .swiper_switch > div:hover {
  color: var(--theme_color);
}
.storys_section .swiper_switch > div:hover::after {
  transform: translateX(-12px);
}
.storys_section .swiper_switch > div::before {
  width: 1px;
  height: 100%;
  content: '';
  background-color: #dadada;
  position: absolute;
  top: 0;
  right: 0;
}
.storys_section .swiper_switch > div::after {
  display: block;
  content: '';
  width: 100%;
  height: 15px;
  background: url("../img/story-arrow-l.svg") no-repeat right center / 25px 100%;
  transition: all 0.3s;
}
.storys_section .swiper_switch .switch_next {
  padding-right: 0;
  padding-left: 40px;
  text-align: left;
}
.storys_section .swiper_switch .switch_next:hover::after {
  transform: translateX(12px);
}
.storys_section .swiper_switch .switch_next::before {
  right: unset;
  left: 0;
}
.storys_section .swiper_switch .switch_next::after {
  background: url("../img/story-arrow-r.svg") no-repeat left center / 25px 100%;
}

.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../global/img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}
.home_banner {
  position: relative;
  z-index: 2;
}
.home_banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.lang_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  opacity: 0;
}
.lang_modal.active {
  opacity: 1;
  pointer-events: all;
}
.lang_modal.active .modal_content {
  transform: translate(0);
}
.lang_modal > .close {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
}
.lang_modal .modal_content {
  width: calc(100% - 2.4rem);
  max-width: 700px;
  transition: all cubic-bezier(0.5, 0, 0.5, 1.5) 0.35s;
  background-color: #fff;
  overflow: auto;
  padding: 20px 2.5rem 3rem 3rem;
  border-radius: 12px;
  transform: scale(0.9);
}
.lang_modal .modal_content .close {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all .3s;
  margin: 0 -1rem 2rem auto;
  filter: contrast(0) brightness(0);
  background: url(../img/mobile-menu/close.svg) no-repeat center/1rem;
}
.lang_modal .modal_content .close:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.lang_modal .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin: -1rem 0 2rem;
  text-align: center;
}
.lang_modal .modal_content .gtranslate_wrapper {
  display: grid;
  gap: 1rem;
  max-height: 60vh;
  overflow: auto;
  padding-right: 8px;
  grid-template-columns: repeat(2, 1fr);
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 100px;
  }
}
.lang_modal .modal_content .gtranslate_wrapper a {
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  padding: 1rem 20px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .3s;
}
.lang_modal .modal_content .gtranslate_wrapper a img {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  display: block;
  object-fit: cover;
  opacity: 1;
}
.lang_modal .modal_content .gtranslate_wrapper a span {
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
}
.lang_modal .modal_content .gtranslate_wrapper a:hover, .lang_modal .modal_content .gtranslate_wrapper a.gt-current-lang {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
  span {
    color: #fff;
  }
}

header:has([data-gt-lang="de"].gt-current-lang) nav {
  margin-right: 0;
}
header:has([data-gt-lang="de"].gt-current-lang) nav .menu {
  gap: 2rem;
}
header:has([data-gt-lang="de"].gt-current-lang) nav .menu > li > a {
  font-size: 18px;
}

.btn_quote {
  position: fixed;
  right: 20px;
  bottom: 2rem;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  background: url(../img/form_fill.svg) no-repeat center/20px var(--theme_color);
}

.quote_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}


.home_team {
  padding: 80px 0;
}
.home_team .list {
  margin-top: 4rem;
}
.home_team .list > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 20px;
}
.home_team .list .team_item {
  cursor: pointer;
}
.home_team .list .team_item:has(.active) {
  cursor: unset;
}
.home_team .list .img {
  aspect-ratio: 1;
}
.home_team .list .img:hover img {
  transform: scale(1.03);
}
.home_team .list .info {
  padding-top: 1.4rem;
  text-align: center !important;
}
.home_team .list .info strong {
  font-size: 30px;
}
.home_team .list .info p {
  font-size: 24px;
  color: #333;
  margin-top: 5px;
}
.home_team .pop_team {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 996;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.home_team .pop_team .mask {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home_team .pop_team.active {
  opacity: 1;
  pointer-events: all;
}
.home_team .pop_team.active .con {
  top: 50%;
}
.home_team .pop_team .con {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 5%;
  align-items: start;
  width: calc(100% - 40px);
  max-width: 938px;
  max-height: calc(100vh - 4rem);
  border-radius: 30px;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem 3.27%;
  transition: all 0.3s;
}
.home_team .pop_team .con .popimg {
  width: 156px;
  aspect-ratio: 1;
}
.home_team .pop_team .con .popimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_team .pop_team .con .pop_info {
  flex: 1;
  padding-top: 30px;
  height: 100%;
  overflow: auto;
}
.home_team .pop_team .con .pop_info::-webkit-scrollbar {
  background-color: #c2c2c2;
  border-radius: 100px;
  width: 10px;
}
.home_team .pop_team .con .pop_info::-webkit-scrollbar-thumb {
  background: var(--theme_color);
  border-radius: 100px;
}
.home_team .pop_team .con .pop_info strong {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--theme_color);
}
.home_team .pop_team .con .pop_info .role {
  border-bottom: 1px solid #afafaf7e;
  padding-bottom: 15px;
  margin-top: 15px;
}
.home_team .pop_team .con .pop_info .role p {
  font-size: 20px;
  line-height: 1.6;
  color: #5f5e5e;
  margin-bottom: 8px;
}
.home_team .pop_team .con .pop_info .role p:last-child {
  margin-bottom: 0;
}
.home_team .pop_team .con .desc {
  font-size: 18px;
  line-height: 1.8;
  color: #606060;
  margin-top: 40px;
}
.home_team .pop_team .con .desc ul {
  margin-top: 10px;
}
.home_team .pop_team .con .desc li {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.home_team .pop_team .con .desc li::before {
  content: '•';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.home_team .pop_team .con .desc a {
  color: var(--theme_color);
  text-decoration: underline;
}
.home_team .pop_team .con .desc a:hover {
  text-decoration: unset;
}
.home_team .pop_team .close {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  border-radius: 50%;
  background: url(../img/popclose.svg) no-repeat center / contain;
}

.home_news {
  padding: 80px 0;
}
.home_news .list {
  margin-top: 6rem;
}
.home_news .list .news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.777777%;
}
.home_news p.center:has(.btn) {
  min-height: 68px;
  margin-top: 4rem;
}

.section_form {
  padding: 100px 0;
}
.section_form:has(.right) .left {
  max-width: 870px;
}
.section_form .left {
  flex: 1;
}
.section_form .left .form {
  margin-top: 52px;
}
.section_form .left form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem 20px;
}
.section_form .left form input,
.section_form .left form textarea {
  background: #eeeeee;
  width: 100%;
  font-size: 17px;
  padding: 17px 20px;
  border: 1px solid #eeeeee;
  transition: all 0.3s;
}
.section_form .left form input:focus,
.section_form .left form textarea:focus,
.section_form .left form input:hover,
.section_form .left form textarea:hover {
  border-color: var(--theme_color);
  box-shadow: 0 0 15px rgba(12, 67, 123, 0.6);
}
.section_form .left form input::placeholder,
.section_form .left form textarea::placeholder {
  color: #757575;
}
.section_form .left form textarea {
  height: 160px;
}
.section_form .left .col3 {
  width: 31%;
}
.section_form .left span {
  width: 100%;
}
.section_form .left span.wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section_form .left .col {
  width: 65.5%;
}
.section_form .left .col2 {
  width: 48%;
}
.section_form .left .submit {
  margin-top: 25px;
  position: relative;
}
.section_form .left .submit input {
  display: none;
}
.section_form .left .submit .btn {
  font-size: 18px;
  padding: 16px 32px;
}
.section_form .head p {
  font-size: 18px;
  color: #999;
  line-height: 1.6;
}
.section_form .right {
  width: 30%;
}
.section_form .right .con {
  background: var(--bg_color);
  display: flex;
  padding: 64px 12%;
  flex-direction: column;
}
.section_form .right .con strong {
  font-size: 28px;
  color: #fff;
  font-weight: 200;
  margin-top: 35px;
}
.section_form .right .con strong:first-child {
  margin-top: 0;
}
.section_form .right .con .phone {
  font-size: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section_form .right .con .phone::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/call.svg) no-repeat center / contain;
}
.section_form .right .con a {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  margin-top: 15px;
}
.section_form .right .con a:hover {
  text-decoration: underline;
}
.section_form .right .other_way {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 65px;
}
.section_form .right .other_way div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  background: no-repeat center / contain rgba(255, 255, 255, 0.6);
}
.news_list .news_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  padding-bottom: 25px;
}
.news_list .news_item a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.news_list .news_item a:hover img {
  transform: scale(1.03);
}
.news_list .news_item .img {
  padding-bottom: 59.962049%;
  position: relative;
  overflow: hidden;
}
.news_list .news_item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.news_list .news_item .info {
  padding: 24px 5% 0;
  margin-bottom: 54px;
}
.news_list .news_item strong {
  font-size: 22px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .news_item p {
  font-size: 18px;
  line-height: 1.8;
  color: #9ca3b0;
  margin-top: 19px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .news_item .end {
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.news_list .news_item .end span {
  font-size: 20px;
  color: #333;
}
.news_list .news_item .news_btn {
  display: flex;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.45);
}
.news_list .news_item .news_btn:hover {
  border-color: transparent;
}
.news_list .news_item .news_btn:hover::after {
  opacity: 1;
}
.news_list .news_item .news_btn:hover::before {
  filter: contrast(0) brightness(2);
}
.news_list .news_item .news_btn::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
  border-radius: inherit;
  background: var(--bg_color);
  z-index: -1;
}
.news_list .news_item .news_btn::before {
  content: '';
  display: block;
  width: 21px;
  height: 8px;
  margin: auto;
  transition: all 0.3s;
  background: url(../img/arrow-line-r.svg) no-repeat center / contain;
}
.news_main {
  padding-top: 84px;
  padding-bottom: 90px;
}
.news_main .video {
  position: relative;
  padding-bottom: 56.25%;
}
.news_main .video.play i {
  opacity: 0;
  pointer-events: none;
}
.news_main .video video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_main .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_main .video i {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon-play.svg) no-repeat center / 20px;
  background-color: var(--theme_color);
  cursor: pointer;
  transition: all 0.3s;
}
.news_main .main {
  /* margin-top: 4rem; */
  border-bottom: 1px solid #eaf1f7;
}
.news_main .news_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5.8333%;
}
.news_main .news_nav .nav_item {
  font-size: 20px;
  color: #333;
  line-height: 80px;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.news_main .news_nav .nav_item.active,
.news_main .news_nav .nav_item:hover {
  color: var(--theme_color);
  border-color: var(--theme_color);
}
.news_main .list {
  margin-top: 42px;
  margin-bottom: 6rem;
}
.news_main .list .news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.777777%;
}
.news_main p:has(button) {
  margin-top: 4rem;
  min-height: 68px;
}

.contact2_join {
  padding-top: 50px;
  padding-bottom: 80px;
}
.contact2_join .head {
  position: relative;
  margin: auto;
  padding-top: 88px;
  text-align: center;
  padding-bottom: 175px;
  min-height: 462px;
  background: url(../img/contact_join.jpg) no-repeat center top / cover;
  margin-bottom: -142px;
}
.contact2_join .head h2 {
  font-size: 56px;
  line-height: 72px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
  /* font-family: 'SourceHanSansCN'; */
}
.contact2_join .head p {
  font-size: 22px;
  line-height: 39px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  /* font-family: 'SourceHanSansCN'; */
}
.contact2_join .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact2_join .list li .join_item {
  padding: 54px 50px 57px;
  display: block;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(140, 140, 140, 0.1);
}
.contact2_join .list li .join_item:has(.active) {
  cursor: unset;
}
.contact2_join .list li .join_item h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  color: #101011;
  margin-bottom: 30px;
  /* font-family: 'SourceHanSansCN'; */
}
.contact2_join .list li .join_item p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #3D3D3D;
  /* font-family: 'SourceHanSansCN'; */
}
.contact2_join .list li .join_item .position {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
}
.contact2_join .list li .join_item .position i {
  width: 14px;
  height: 17px;
  background: url(../img/location.svg) no-repeat center / cover;
}
.contact2_join .list li .join_item .edu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact2_join .list li .join_item .edu i {
  width: 16px;
  height: 16px;
  background: url(../img/educational.svg) no-repeat center / cover;
}
.contact2_join .list .pop_join {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 996;
  pointer-events: none;
}
.contact2_join .list .pop_join .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.contact2_join .list .pop_join.active {
  pointer-events: all;
  opacity: 1;
}
.contact2_join .list .pop_join.active .con {
  top: 50%;
}
.contact2_join .list .pop_join .close {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/popclose.svg) no-repeat center / contain;
  margin-bottom: 54px;
  margin-left: auto;
  cursor: pointer;
  margin-right: 20px;
}
.contact2_join .list .pop_join .con {
  width: calc(100% - 40px);
  max-width: 938px;
  max-height: 882px;
  height: calc(100vh - 4rem);
  border-radius: 30px;
  background-color: #fff;
  overflow: hidden;
  padding: 0 5.27%;
  padding-top: 30px;
  padding-right: 4%;
  padding-right: 2%;
  padding-bottom: 34px;
  position: absolute;
  top: 40%;
  left: 50%;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
}
.contact2_join .list .pop_join .details {
  max-height: calc(93% - 34px);
  overflow: auto;
}
.contact2_join .list .pop_join .details::-webkit-scrollbar {
  background-color: #c2c2c2;
  border-radius: 100px;
  width: 10px;
}
.contact2_join .list .pop_join .details::-webkit-scrollbar-thumb {
  background: var(--theme_color);
  border-radius: 100px;
}
.contact2_join .list .pop_join .details p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 44px;
}
.contact2_join .list .pop_join .details li {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 44px;
  position: relative;
  padding-left: 32px;
}
.contact2_join .list .pop_join .details li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  top: 17px;
}
.contact2_join .list .pop_join .title {
  font-size: 54px;
  font-weight: 500;
  color: #101011;
  margin-top: -13px;
}
.contact2_join .list .pop_join .require {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 38px;
  font-weight: 200;
  font-size: 20px;
  color: #3d3d3d;
  margin-top: 30px;
}
.contact2_join .list .pop_join .require div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact2_join .list .pop_join .require div::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: no-repeat center / contain;
}
.contact2_join .list .pop_join .require .address::before {
  background-image: url(../img/address.svg);
}
.contact2_join .list .pop_join .require .edu::before,
.contact2_join .list .pop_join .require .experience::before {
  background-image: url(../img/book.svg);
}
.contact2_join .list .pop_join h2 {
  font-size: 34px;
  font-weight: 500;
  color: #101011;
  line-height: 42px;
  margin: 18px 0;
  display: block;
}
.contact2_join .list .pop_join .popdetail {
  margin-top: 44px;
  padding-right: 3rem;
}
.contact2_join .list .pop_join .contact_way {
  font-size: 20px;
  color: #000000;
  margin-top: 23px;
}
.contact2_join .list .pop_join .contact_way a {
  font-weight: 700;
  color: var(--theme_color);
  text-decoration: underline;
}
.contact2_join .list .pop_join .contact_way a:hover {
  text-decoration: unset;
}
.contact2_join p.center:has(.btn) {
  min-height: 68px;
  margin-top: 60px;
}


.address_main {
  padding: 6rem 0;
}
.address_main .news_nav {
  margin-top: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.address_main_swiper {
  overflow: hidden;
  margin-top: 2rem;
}
.address_main_swiper .swiper-slide {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
.address_main_swiper .img {
  width: 55%;
  border-radius: 1rem;
}
.address_main_swiper .img:hover img {
  transform: scale(1.03);
}
.address_main_swiper .infos {
  flex: 1;
}
.address_main_swiper .map {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1920/1080;
}
.address_main_swiper .map iframe, .address_main_swiper .map .map_div {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.address_main_swiper .swiper-slide ul {
  margin-top: 2rem;
}
.address_main_swiper .swiper-slide li {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
}
.address_main_swiper .swiper-slide li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 3px;
}
.address_main_swiper .swiper-slide .address::before {
  background-image: url(../img/icon-address1.svg);
}
.address_main_swiper .swiper-slide .phone::before {
  background-image: url(../img/icon-phone1.svg);
}
.address_main_swiper .swiper-slide .email::before {
  background-image: url(../img/icon-email1.svg);
}
.address_main_swiper .swiper-slide a {
  transition: all .3s;
}
.address_main_swiper .swiper-slide a:hover {
  color: var(--theme_color);
  text-decoration: underline;
}

section.contact_about::before {
  max-width: 2300px;
  left: 50%;
  transform: translateX(-50%);
}

.migration_advantage .items .item .card {
  height: 100%;
}


section.home_about .swiper_box {
  max-width: 1600px;
}
.home_about .swiper_box li:nth-child(2n) .con {
  margin-left: auto;
  text-align: right;
}
.home_about .swiper_box .swiper-slide:nth-child(2n)::before {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}
.home_about .swiper_box li:nth-child(2n) .flex {
  justify-content: flex-end;
}
.home_about .swiper_box .swiper-slide li {
  max-width: max-content;
}
.home_about .swiper_box .swiper-slide:nth-child(2n) li {
  margin-left: auto;
}

footer .social {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
footer .social li {
  position: relative;
}
footer .social .qrcode {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
footer .social li:hover .qrcode {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 8px);
}
footer .social .qrcode img {
  width: 120px;
  height: 120px;
  display: block;
}
footer .social a, footer .social span {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all .3s;
  overflow: hidden;
  text-indent: -999px;
  background: no-repeat center/50% rgba(255, 255, 255, 0.1);
}
footer .social a:hover, footer .social span:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
footer .social .gongzhonghao span {
  background-image: url(../img/gongzhonghao.svg);
}
footer .social .shipinhao span {
  background-image: url(../img/shipinhao.svg);
}
footer .social .douyin span {
  background-image: url(../img/douyin.svg);
}


.referral_advantage .swiper_btns {
  display: none;
}

.section_form .left .title span {
  width: auto;
}


.lang_popup{
  padding: 70px 53px;
  border-radius: 12px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1005;
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup strong{
  display: block;
  font-size: 32px;
  margin-bottom: 45px;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lang_popup li{
  padding: 19px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}
.lang_popup li + li{
  margin-top: 16px;
}
.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../img/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  background-color: var(--theme_color);
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}
.lang_popup li.active p, .lang_popup li.active span{
  color: white;
}
.lang_popup li.active:after{
  filter: brightness(100);
}

.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  background: url('../img/lang-close.svg') no-repeat center/contain;
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.over_lang{
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.over_lang.active{
  opacity: 1;
  pointer-events: all;
}
.lang_list{
  display: none !important;
}

.home_certificates .certificates_img_swiper .swiper-slide{
  opacity: 1 !important;
}

.footer_contact .head .title {
  display: inline-flex !important;
}

@media screen and (min-width: 769px) {
  section.guide_process {
    padding: 100px 0 80px;
  }
  section.guide_service {
    padding: 60px 0;
  }
  section.guide_eligibility {
    padding: 80px 0;
  }
  section.guide_german {
    padding-bottom: 100px;
  }
  section.home_about .home_nav .nav_item {
    padding: 30px;
    text-align: center;
  }
  section.home_certificates .certificates_intro_swiper .swiper-slide p {
    font-size: 20px;
    line-height: 1.5;
  }
}

.migration_shortage .item a .more_link{
  text-indent: -352px!important;
}

.migration_shortage .item.active a .more_link {
  text-indent: 0!important;
}

.guide_eligibility .item .img {
  max-width: 520px;
  max-width: unset;
}
section.guide_eligibility .item .img {
  width: 60%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
section.guide_eligibility .item .info {
  padding: 0 8%;
}
section.guide_eligibility .item {
  font-size: 22px;
}
section.guide_eligibility .item:nth-child(even)::before {
  transform: rotateZ(180deg);
}

.default_page h1{
  font-size: 28px;
  margin: 4rem 0;
}
.default_page h2{
  font-size: 25px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.default_page p{
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.default_page ul{
  margin-top: 1.5rem;
}
.default_page ul li{
  font-size: 18px;
  list-style: disc;
  margin-left: 20px;
}
.default_page ul li + li{
  margin-top: 0.5rem;
}


.cat_list{
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.cat_list ul{
  display: flex;
  flex-flow: wrap;
  gap: 1.2rem;

}

.cat_list ul li{
  font-size: 20px;
  line-height: 24px;
  color: var(--title_color);
  font-weight: 400;
  border-radius: 6px;
  background-color: rgb(236, 240, 243);
  padding: 11px 16px;
  min-width: 158px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
.cat_list ul li.active{
  background-color: var(--theme_color);
  color: white;
}

.major_list{
  display: none;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.major_list.active{
  display: grid;
}
.major_list li a{
  display: block;
  border-radius: 5px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.major_list li a i{
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1rem;
  transition: all 0.3s;
  background: url('../img/arrow-line-r.svg') no-repeat center/contain;
}
.major_list li a strong{
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.major_list li a p{
  line-height: 1.6rem;
  transition: all 0.3s;
  font-size: 18px;
}
.major_list li a:hover i{
  transform: translateX(5px);
  filter: brightness(100);
}
.major_list li a:hover{
  background: var(--bg_color);
}
.major_list li a:hover strong, .major_list li a:hover p{
  color: white;
}

.guide_institution .guide_institution_swiper .swiper-slide .img {
  width: 100% !important;
}


.contact2_benefit .flex .head h3 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  margin: 4rem 0 2rem;
}
.contact2_benefit .flex .head p {
  font-size: 22px;
  line-height: 1.5;
  margin: 12px 0;
}
section.migration_hot .item {
  padding-left: 2%;
  padding-right: 2%;
}


.guide_german .head{
  max-width: 100% !important;
}


.swiper-container-fade .swiper-slide-active{
  opacity: 1 !important;
}

.migration_advantage .items .item .img::before{
  background: unset !important;
}