@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
html,
body {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 148px;
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
.blank::before,
.blank::after {
  display: none !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
  font-size: clamp(16px, 1.4583333vw, 28px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 148px;
}
header .logo {
  width: 20.46667%;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #98a4af;
  font-weight: 700;
}
header .lv1 > li > a {
  color: inherit;
  transition: all 0.5s;
}
header .lv1 > li > a:hover {
  color: #012365;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-10%, 0);
  visibility: visible;
}
header .lv1 > .active > a {
  color: #012365;
}
header .lv1 > .active > a:hover {
  text-decoration: none !important;
}
header .lv2 {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translate(-10%, 10%);
  transition: all 0.5s;
  background-color: #012365;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  padding: 2px 15px;
  min-width: 200px;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  font-weight: 300;
}
header .lv2 > li a {
  color: inherit;
  transition: all 0.5s;
}
header .lv2 > li:hover a {
  color: #0165aa;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  width: 74.8%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
header .lang-search {
  margin-bottom: 12px;
}
header .lang-search .lang {
  display: inline-block;
  word-spacing: 0.25em;
  color: #98a4af;
  transition: all 0.5s;
}
header .lang-search .lang .on {
  color: #012365;
}
header .lang-search .lang a {
  color: inherit;
}
header .lang-search .lang a:hover {
  text-decoration: underline !important;
}
header .lang-search .search {
  display: inline-block;
  position: relative;
  color: #98a4af;
  margin-left: 2.36em;
  cursor: pointer;
  transition: all 0.5s;
}
header .lang-search .search img {
  margin-right: 0.25em;
  width: 1.42857143em;
  transition: all 0.5s;
}
header .lang-search .search i {
  margin-left: 0.2em;
}
header .lang-search .search:hover {
  color: #012365;
}
/* header .lang-search .search:hover form {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
} */
header .lang-search .search form {
  position: absolute;
	display: none;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  /* transition: all 0.5s; */
  z-index: 1;
}
header .lang-search .search form input {
  width: 15em;
  height: 2.5em;
  border-radius: 15px;
  outline: none;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 2em 0 0.9em;
  transition: all 0.5s;
  border: 1px solid #ddd;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
header .lang-search .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .lang-search .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 0.2em;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
header .lang-search .search form button img {
  margin: 0;
  width: 0.9em;
}
.header-active {
  background-color: transparent;
  box-shadow: none;
  animation: slideInDown 1s;
}
.header-active .logo img {
  filter: contrast(0) brightness(200%);
}
.header-active .lv1 > li {
  color: #fff;
}
.header-active .lang-search .lang {
  color: #fff;
}
.header-active .lang-search .search {
  color: #fff;
}
.header-active .lang-search .search > img {
  filter: contrast(0) brightness(200%);
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #00a0e9;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #00a0e9;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #00a0e9;
  border-color: transparent;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-banner .swiper .swiper-slide-active h3 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -23%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h3 {
  font-size: clamp(20px, 2.0833333vw, 40px);
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  padding: 0 1.5em;
  line-height: 1.7;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 0.75em;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  margin-top: 20.266667%;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.5s;
  margin: 0 6.5px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(16px, 1.25vw, 22px);
  width: 2.1818182em;
  height: 2.1818182em;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #fff;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  font-size: inherit;
  color: inhert;
}
.index-banner .swiper-button-prev {
  left: 9.375%;
}
.index-banner .swiper-button-next {
  right: 9.375%;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h3 {
  font-size: clamp(20px, 1.7708333vw, 34px);
  color: #000;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}
.index-title h5 {
  color: #999;
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 300;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 13.1770833% 0 13.59375%;
  position: relative;
  overflow: hidden;
}
.index-about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1550px;
}
.index-about .container .lt {
  width: 53.6129%;
}
.index-about .container .lt .pic img {
  transition: all 0.5s;
}
.index-about .container .lt .pic:hover img {
  scale: 1.02;
}
.index-about .container .rt {
  width: 41.22581%;
}
.index-about .container .rt .index-title {
  text-align: left;
}
.index-about .container .rt .index-title h3 {
  padding-left: 1.1764706em;
}
.index-about .container .rt .index-title h3::before {
  display: block;
  position: absolute;
  content: "";
  left: -1.32353em;
  top: 50%;
  width: 1.9411765em;
  height: 2px;
  background-color: #00a0e9;
}
.index-about .container .rt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  line-height: 1.77778;
}
.index-about .container .rt a {
  display: inline-block;
  margin-top: 18.1534%;
  font-size: clamp(14px, 1.05vw, 16px);
  color: #000;
  border-bottom: 2px solid #00a0e9;
  padding: 0 0.8125em;
}
.index-about .container .rt a:hover {
  animation: pulse 1s;
}
.index-business {
  background-color: #f4f4f4;
  margin-bottom: 4.6875%;
}
.index-business .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/index-business-bg.jpg) no-repeat;
  background-size: cover;
  color: #4ba9ff;
  text-align: center;
  text-transform: uppercase;
  min-height: 51.0416667vw;
  padding: 3.215%;
}
.index-business .container:hover {
  color: #61cbfb;
}
.index-business .container:hover .icon {
  filter: brightness(120%);
}
.index-business .icon {
  font-size: clamp(20px, 2.0833333vw, 40px);
  transition: all 0.5s;
  margin-bottom: 1.866667%;
}
.index-business .icon img {
  width: 2.8em;
  animation: bounce 1s infinite;
}
.index-business h3 {
  font-size: clamp(20px, 2.0833333vw, 40px);
  font-weight: 700;
}
.index-business h5 {
  font-size: clamp(14px, 1.25vw, 24px);
  max-width: 984px;
  line-height: 2.125;
}
.index-business a {
  display: inline-block;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #61cbfb;
  background-color: #fff;
  line-height: 2.1;
  border-radius: 1.05em;
  padding: 0 1.25em;
  margin-top: 5.466667%;
  transition: all 0.5s;
}
.index-business a:hover {
  background-color: #61cbfb;
  color: #fff;
}
.index-pipeline {
  margin-bottom: 5.72916667%;
}
.index-pipeline .index-title h3::before,
.index-pipeline .index-title h3::after {
  display: inline-block;
  width: 1em;
  height: 0.29411765em;
  content: "";
  background-color: #00a0e9;
  margin: 0 0.41176471em;
  vertical-align: middle;
}
.index-pipeline .pic img {
  display: block;
  width: 100%;
}
.index-pipeline .wrapper {
  overflow: auto;
}
.index-pipeline .wrapper table {
  width: 100%;
  border-spacing: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.index-pipeline .wrapper table tr td {
  position: relative;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ddd;
  font-size: clamp(12px, 1vw, 16px);
  height: 72px;
  padding: 0.5em;
  box-sizing: border-box;
  line-height: 1.5;
  word-break: break-all;
  white-space: nowrap;
  width: 9%;
}
.index-pipeline .wrapper table tr td:nth-last-child(-n+7) {
  min-width: 7em;
  max-width: 7em;
  width: 7em !important;
}
.index-pipeline .wrapper table tr td em {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 42px;
  width: 0;
  background: -webkit-linear-gradient(left, #5a90c2, #b6d1eb 60%, #a1c6e7 90%);
  z-index: 1;
  transition: all 2s;
}
.index-pipeline .wrapper table tr td em::after {
  position: absolute;
  display: block;
  content: "";
  border: 21px solid transparent;
  border-left: 22px solid #a1c6e7;
  right: 0;
  top: 0;
  transform: translate(100%, 0);
}
.index-pipeline .wrapper table tr:first-child td {
  background-color: #0070b9;
  color: #fff;
  height: 4.0625em;
}
.index-pipeline .wrapper .animate-flow tr td em {
  width: calc(var(--w) * 7 - 22px);
}
.index-news {
  margin-bottom: 7.708333%;
}
.index-news .container {
  max-width: 1510px;
}
.index-news .index-title {
  text-align: left;
}
.index-news .index-title h3::after {
  display: block;
  content: "";
  width: 2.117647em;
  height: 0.235294em;
  background-color: #00a0e9;
}
.index-news .swiper {
  padding: 10px 5px;
}
.index-news .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62.47379455%;
  border-radius: 8px;
}
.index-news .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .swiper .title {
  padding: 0 6.302521% 11.76471%;
  border-radius: 8px;
  box-shadow: 4.316px 4.168px 5px 0px rgba(8, 8, 71, 0.19);
}
.index-news .swiper .title h4 {
  font-size: clamp(16px, 1.8229167vw, 35px);
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news .swiper .title p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 12em;
  overflow: hidden;
}
.index-news .swiper .title a {
  color: inherit;
}
.index-news .swiper .swiper-slide {
  transition: all 0.5s;
}
.index-news .swiper .swiper-slide:hover {
  transform: translateY(-5px);
}
.index-news .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.inner-news {
  margin-bottom: 3.708333%;
}
.inner-news .container {
  max-width: 1500px;
}
.inner-news .index-title h3::after {
  display: block;
  content: "";
  width: 2.117647em;
  height: 0.235294em;
  background-color: #00a0e9;
  margin: 0 auto;
}
.inner-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-news .wrapper .block {
  width: 31.733333%;
  transition: all 0.5s;
  margin-bottom: 3%;
}
.inner-news .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62.47379455%;
  border-radius: 8px;
}
.inner-news .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.inner-news .wrapper .block .title {
  padding: 0 6.302521% 11.76471%;
  border-radius: 8px;
  box-shadow: 4.316px 4.168px 5px 0px rgba(8, 8, 71, 0.19);
}
.inner-news .wrapper .block .title h4 {
  font-size: clamp(16px, 1.6229167vw, 25px);
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-news .wrapper .block .title p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 12em;
  overflow: hidden;
}
.inner-news .wrapper .block .title a {
  color: inherit;
}
.inner-news .wrapper .block:hover {
  transform: translateY(-5px);
}
.inner-news .wrapper .block:hover .pic img {
  scale: 1.05;
}
.news-detail .index-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 2%;
}
.news-detail article {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}
.news-detail .article-tab {
  margin: 3% auto 0;
  padding-top: 2%;
  border-top: 1px solid #ddd;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #666;
  max-width: 1400px;
}
.news-detail .article-tab a {
  color: inherit;
}
.news-detail .article-tab a:hover {
  text-decoration: underline !important;
}
.news-detail .article-tab p {
  margin-bottom: 0.5em;
}
footer {
  background-color: #27374d;
  color: #fff;
  /* text-transform: uppercase; */
}
footer h4 {
	text-transform: uppercase;
}
footer .container {
  max-width: 1360px;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: inherit;
  text-decoration: underline !important;
}
footer .footer-top {
  padding: 2.60416667% 0;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer-top .container .logo {
  width: 22.57353%;
}
footer .footer-top .container .logo img {
  filter: contrast(0) brightness(200%);
}
footer .footer-top .container .address {
  width: 38.3088%;
  font-size: clamp(14px, 1.05vw, 16px);
  text-align: center;
}
footer .footer-top .container .email {
  width: 35.29412%;
  font-size: clamp(16px, 1.1vw, 18px);
}
footer .footer-top .container .email img {
  width: 1.23333em;
}
footer .footer-bt {
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  padding: 0.9% 0;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-content {
  background-color: #f4f4f4;
  padding: 7.8125% 0 4.166667%;
}
.inner-tab {
  max-width: 1500px;
  margin: 0 auto 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #a0a0a0;
  font-size: clamp(14px, 1.97916667vw, 38px);
  padding: 0 0.91304348em;
  margin-bottom: 7.3125%;
}
.inner-tab li {
  color: #012365;
  transition: all 0.5s;
  line-height: 1.23913;
  padding: 0 0.5652174em;
  border-radius: 0.619565em;
  margin: 0 0.95652174em 0.7173913em;
}
.inner-tab li a {
  color: inherit;
}
.inner-tab li a:hover {
  text-decoration: underline !important;
}
.inner-tab .active {
  color: #fff;
  background-color: #012365;
}
.inner-tab .active a:hover {
  text-decoration: none !important;
}
.inner-pipeline {
  margin-bottom: 0;
}
.inner-pipeline .index-title h3::before {
  width: 0.6470588em;
  height: 0.6470588em;
}
.inner-pipeline .index-title h3::after {
  display: none;
}
.what-we-do .container {
  max-width: 1420px;
}
.what-we-do .index-title h3::before {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #00a0e9;
  width: 0.6470588em;
  height: 0.6470588em;
  margin: 0 0.41176471em;
}
.what-we-do .intro {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  text-align: center;
  line-height: 1.8889;
  margin-bottom: 5.915493%;
}
.what-we-do .intro h4 {
  font-weight: 500;
}
.what-we-do .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12.67605634%;
}
.what-we-do .wrapper .block:last-of-type {
  margin-bottom: 0;
}
.what-we-do .wrapper .block:nth-of-type(even) {
  flex-direction: row-reverse;
}
.what-we-do .wrapper .block .lt {
  width: 46.408451%;
}
.what-we-do .wrapper .block .lt .pic img {
  transition: all 0.5s;
}
.what-we-do .wrapper .block .rt {
  width: 49.29577465%;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  line-height: 1.8889;
}
.what-we-do .wrapper .block:hover .pic img {
  scale: 1.02;
}
.anchor-fixed {
  position: relative;
  top: -148px;
}
.indications .wrapper .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12.0625%;
}
.indications .wrapper .block:last-of-type {
  margin-bottom: 0;
}
.indications .wrapper .block:nth-of-type(even) {
  flex-direction: row-reverse;
}
.indications .wrapper .block:nth-of-type(even) .lt {
  padding: 3% 7.6875% 3% 0;
}
.indications .wrapper .block:nth-of-type(even) .lt .index-title h3::before {
  display: none;
}
.indications .wrapper .block:nth-of-type(even) .lt .index-title h3::after {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #00a0e9;
  width: 0.6470588em;
  height: 0.6470588em;
  margin: 0 0.41176471em;
}
.indications .wrapper .block:nth-of-type(even) .lt::after {
  left: auto;
  right: 0;
}
.indications .wrapper .block .lt {
  position: relative;
  width: 48.8125%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3% 0 3% 7.6875%;
  margin-top: 3%;
}
.indications .wrapper .block .lt::after {
  display: block;
  content: "";
  position: absolute;
  width: 106.658131%;
  height: 100%;
  background-color: #fff;
  left: 0;
}
.indications .wrapper .block .lt .index-title {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 10%;
}
.indications .wrapper .block .lt .index-title h3::before {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #00a0e9;
  width: 0.6470588em;
  height: 0.6470588em;
  margin: 0 0.41176471em;
}
.indications .wrapper .block .lt .brief {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.8889;
}
.indications .wrapper .block .rt {
  width: 51.1875%;
  margin-bottom: 3%;
}
.indications .wrapper .block .rt .pic {
  position: relative;
  overflow: hidden;
}
.indications .wrapper .block .rt .pic img {
  transition: all 0.5s;
}
.indications .wrapper .block:hover .pic img {
  scale: 1.05;
}
.contact-us {
  background-color: #f4f4f4;
  padding: 1.6145833% 0 3.5416667%;
}
.contact-us .global-layout {
  background-color: #fafafa;
  padding: 2.96875% 0 3.333333%;
  margin-bottom: 6.82291667%;
}
.contact-us .global-layout .pic {
  text-align: center;
}
.contact-us .index-title h3::after {
  display: block;
  content: "";
  width: 3em;
  height: 0.29411765em;
  background-color: #18c0ff;
  margin: 0 auto;
}
.contact-us .title {
  text-align: center;
  margin-bottom: 4.6875%;
}
.contact-us .title h2 {
  font-size: clamp(20px, 1.875vw, 36px);
  color: #012365;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.375%;
}
.contact-us .title h4 {
  font-size: clamp(16px, 1.458333vw, 28px);
  color: #000;
}
.contact-us .online-msg {
  background-color: #fff;
  padding: 2.2395833% 0 2.8125%;
}
.contact-us .online-msg .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1420px;
}
.contact-us .online-msg .container .lt {
  width: 48.0986%;
}
.contact-us .online-msg .container .lt .pic {
  width: 100%;
  height: 100%;
}
.contact-us .online-msg .container .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us .online-msg .container .rt {
  width: 46.26761%;
}
.contact-us .online-msg .container .rt h4 {
  font-size: clamp(16px, 1.458333vw, 28px);
  color: #000;
  margin-bottom: 7.61035%;
}
.contact-us .online-msg .container .rt h4 img {
  width: 1.67857em;
  margin-right: 0.5em;
}
.contact-us .online-msg .container .rt form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us .online-msg .container .rt form input,
.contact-us .online-msg .container .rt form textarea {
  outline: none;
  background-color: #f4f4f4;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #000;
}
.contact-us .online-msg .container .rt form input::placeholder,
.contact-us .online-msg .container .rt form textarea::placeholder {
  color: #919191;
}
.contact-us .online-msg .container .rt form input {
  width: 48.40183%;
  height: 2.875em;
  padding: 0 0.83333em 0 1.75em;
  margin-bottom: 0.8333em;
}
.contact-us .online-msg .container .rt form textarea {
  width: 100%;
  height: 13em;
  padding: 0.83333em 0.83333em 0.83333em 1.75em;
}
.contact-us .online-msg .container .rt form button {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  background-color: #012365;
  cursor: pointer;
  width: 100%;
  height: 2em;
  margin-top: 0.7916667em;
  transition: all 0.5s;
}
.contact-us .online-msg .container .rt form button:hover {
  filter: brightness(200%);
}
.publications {
  background-color: #f4f4f4;
  padding-bottom: 7.76041667%;
}
.publications .download {
  background-color: #fff;
  padding: 3.5416667% 0 13.1770833%;
}
.publications .download .container {
  max-width: 1500px;
}
.publications .download .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1356px;
  margin: 0 auto;
}
.publications .download .wrapper .block {
  width: 21.0177%;
  margin-bottom: 5%;
}
.publications .download .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 139.649123%;
  background-color: #012365;
  transition: all 0.5s;
}
.publications .download .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publications .download .wrapper .block .pic .mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.publications .download .wrapper .block .pic .mask .date {
  font-size: clamp(20px, 2.2916667vw, 44px);
  font-weight: 800;
}
.publications .download .wrapper .block .pic .mask .brief {
  font-size: clamp(14px, 1.875vw, 36px);
  font-weight: 500;
  padding: 0 1em;
  line-height: 1.47;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.publications .download .wrapper .block .title {
  line-height: 2.46667;
  border-bottom: 1px solid #a0a0a0;
}
.publications .download .wrapper .block .title a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.publications .download .wrapper .block .title p {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #484848;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.publications .download .wrapper .block .title img {
  font-size: clamp(14px, 1.2vw, 21px);
  width: 1em;
  transition: all 0.5s;
  filter: hue-rotate(310deg) brightness(3);
}
.publications .download .wrapper .block:hover .pic {
  box-shadow: 7px 7px 18px rgba(8, 8, 71, 0.47);
}
.publications .download .wrapper .block:hover .title img {
  filter: hue-rotate(0deg) brightness(1);
}
.about-us {
  background-color: #f4f4f4;
  padding: 7.708333% 0 0;
}
.about-us .about-intro {
  position: relative;
  padding: 3.125% 0 11.3541667%;
}
.about-us .about-intro .container {
  position: relative;
  z-index: 1;
  max-width: 1288px;
}
.about-us .about-intro .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  top: 0;
  left: 0;
}
.about-us .about-intro .bg img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us .about-intro .index-title {
  margin-bottom: 13.9751553%;
}
.about-us .about-intro .index-title h3::before {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #00a0e9;
  width: 0.6470588em;
  height: 0.6470588em;
  margin: 0 0.41176471em;
}
.about-us .about-intro .brief {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #000;
  line-height: 2.444444;
}
.about-us .therapy {
  margin: 9.739583% 0 0;
  padding-bottom: 4.895833%;
}
.about-us .therapy .container {
  max-width: 1446px;
}
.about-us .therapy .index-title {
  margin-bottom: 5.81%;
}
.about-us .therapy .index-title h3 {
  display: inline-block;
  position: relative;
}
.about-us .therapy .index-title h3::after {
  display: block;
  content: "";
  width: 3.5882353em;
  height: 0.47058824em;
  background-color: #00a0e9;
  transform: translate(-1.176471em);
  margin-top: 0.64706em;
}
.about-us .therapy .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15.90595%;
}
.about-us .therapy .wrapper .block:nth-child(even) {
  flex-direction: row-reverse;
}
.about-us .therapy .wrapper .block:last-child {
  margin-bottom: 0;
}
.about-us .therapy .wrapper .block .lt {
  width: 52.973721%;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #000;
}
.about-us .therapy .wrapper .block .rt {
  width: 42.18534%;
}
.about-us .therapy .wrapper .block .rt .pic img {
  transition: all 0.5s;
}
.about-us .therapy .wrapper .block:hover .pic img {
  scale: 1.02;
}
.about-us .out-motto {
  background: url(../images/our-motto-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 2.8645833% 0 3.59375%;
}
.about-us .out-motto .container {
  max-width: 1476px;
}
.about-us .out-motto .index-title {
  text-align: left;
  padding-left: 0.706em;
}
.about-us .out-motto .index-title h3::after {
  display: block;
  content: "";
  width: 3em;
  height: 0.235294em;
  background-color: #00a0e9;
}
.about-us .out-motto .wrapper .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(14px, 2.0833333vw, 40px);
  min-height: 5.8em;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.03252%;
  padding: 0.5em 1em;
  cursor: default;
}
.about-us .out-motto .wrapper .block:last-child {
  margin-bottom: 0;
}
.about-us .out-motto .wrapper .block .icon {
  width: 1.525em;
  height: 1.525em;
  margin-bottom: 0.5em;
}
.about-us .out-motto .wrapper .block .icon img {
  max-height: 100%;
  transition: all 0.5s;
}
.about-us .out-motto .wrapper .block h4 {
  color: #000;
  text-transform: uppercase;
}
.about-us .out-motto .wrapper .block:hover {
  background-color: #0055a2;
}
.about-us .out-motto .wrapper .block:hover .icon img {
  animation: swing 1s;
  filter: contrast(0) brightness(200%);
}
.about-us .out-motto .wrapper .block:hover h4 {
  color: #fff;
}
.our-team {
  margin: 3.333333% 0 0;
  padding-bottom: 4.375%;
}
.our-team .container {
  max-width: 1485px;
}
.our-team .index-title {
  text-align: left;
  padding-left: 0.706em;
  line-height: 1.6;
  margin-bottom: 6.33%;
}
.our-team .index-title h3::after {
  display: inline-block;
  content: "";
  width: 8.05882353em;
  height: 0.1764706em;
  background-color: #00a0e9;
  vertical-align: middle;
  margin-left: 1.0588em;
}
.our-team .index-title h5 {
  font-size: clamp(12px, 1.4583333vw, 28px);
  text-transform: uppercase;
  font-weight: 300;
}
.our-team .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.our-team .wrapper .block {
  position: relative;
  width: 15.4343434%;
  background-color: #fff;
  margin-bottom: 2.0875421%;
  cursor: pointer;
}
.our-team .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 121.8391%;
}
.our-team .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.our-team .wrapper .block .title {
  font-size: clamp(14px, 1vw, 16px);
  color: #000;
  text-align: center;
  line-height: 1.25;
  padding: 1.1em 0.5em 2.3em;
}
.our-team .wrapper .block::before {
  content: "V";
  position: absolute;
  display: block;
  font-size: clamp(20px, 1.7708333vw, 34px);
  width: 1.3529412em;
  height: 1.3529412em;
  line-height: 1.3529412;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: 50%;
  background-color: #00a0e9;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 35%);
  z-index: 1;
  transition: all 0.5s;
  transform-origin: center;
}
.our-team .wrapper .block::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  font-size: clamp(14px, 1.2vw, 20px);
  height: 0.7em;
  background-color: #00a0e9;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
.our-team .wrapper .block:hover .pic img {
  scale: 1.05;
}
.our-team .wrapper .block:hover::before {
  transform: translate(-50%, 35%) rotate(360deg);
}
.our-team .wrapper .block:hover::after {
  width: 0;
}
.modal-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.61);
  top: 0;
  left: 0;
  display: none;
}
.modal-mask .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1504px;
  max-height: 95%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-mask .container::-webkit-scrollbar {
  display: none;
}
.modal-mask .container .close {
  position: absolute;
  right: 2.53%;
  top: 5%;
  background-color: #00a0e9;
  color: #fff;
  font-size: clamp(20px, 1.770833vw, 34px);
  width: 1.735294em;
  height: 1.735294em;
  line-height: 1.735294;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 10;
}
.modal-mask .container .close:hover {
  transform: rotate(360deg);
}
.modal-mask .modal {
  display: flex;
  flex-wrap: wrap;
}
.modal-mask .modal .lt {
  width: 39.69415%;
  background-color: #00a0e9;
  padding: 6.582447% 3.058511% 6.4494681% 3.723404%;
}
.modal-mask .modal .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 121.818182%;
}
.modal-mask .modal .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-mask .modal .lt .pic::before {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  content: "V";
  display: block;
  font-size: clamp(20px, 2.44791667vw, 47px);
  background-color: #fff;
  color: #00a0e9;
  width: 1.40425532em;
  height: 1.40425532em;
  line-height: 1.40425532;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.modal-mask .modal .lt .pic::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 91.515152%;
  height: 15.588723%;
  background-color: #fff;
  transform: translate(2.649%, 50%);
}
.modal-mask .modal .rt {
  width: 60.3058511%;
  background-color: #fff;
  padding: 6.515957% 8.643617%;
}
.modal-mask .modal .rt .title {
  font-size: clamp(16px, 1.4583333vw, 28px);
  color: #000;
  line-height: 1.2857143;
  margin-bottom: 12.983%;
}
.modal-mask .modal .rt .title::before {
  display: block;
  content: "";
  width: 2.9642857em;
  height: 0.5714286em;
  background-color: #00a0e9;
  margin-bottom: 10.20093%;
}
.modal-mask .modal .rt .title h3 {
  font-weight: 700;
}
.modal-mask .modal .rt .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #000;
  line-height: 1.8;
}
