@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #082d4a;
  transition: 0.3s;
}
a:hover {
  color: #ff0000;
}

::-moz-selection {
  background: #082d4a;
  color: #fff;
}

::selection {
  background: #082d4a;
  color: #fff;
}

html {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0.5rem;
  background: #eee;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: #082d4a;
  border-radius: 1rem;
}

.section-content {
  max-width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
@media (max-width: 450px) {
  .section-content {
    max-width: 100%;
  }
}

.index-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 40%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 450px) {
  .index-section-title {
    max-width: 80%;
  }
}
.index-section-title img {
  max-width: 45%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.1;
}
@media (max-width: 450px) {
  .index-section-title img {
    max-width: 60%;
  }
}
.index-section-title h2 {
  text-align: center;
  padding: 3rem 0rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 1rem;
}
@media (max-width: 450px) {
  .index-section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 600;
  }
}
.index-section-title h2 span {
  text-align: center;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}
@media (max-width: 450px) {
  .index-section-title h2 span {
    font-size: 1.6rem;
  }
}
.index-section-title p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
}
@media (max-width: 450px) {
  .index-section-title p {
    text-align: left;
    font-weight: 600;
    line-height: 1.5;
  }
}

.more-btn {
  text-align: center;
  margin-top: 10rem;
}
.more-btn a {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  background-color: #fff;
  color: #000;
  padding: 1.5rem 5rem;
  border-radius: 3rem;
  box-shadow: 0rem 0.8rem 1rem 0.1rem #999;
}

.index-banner {
  width: 100%;
  height: 100vh;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content {
  background-size: cover;
  background-position: top center;
  position: relative;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text h3 {
  font-size: 8rem;
  color: #fff;
  font-weight: 400;
  transition: 1.7s;
  transition-delay: 0.1s;
  opacity: 0;
  transform: translateY(-100px);
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text p {
  width: 60rem;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  color: #fff;
  margin-top: 2rem;
  transition: 1.7s;
  transition-delay: 0.1s;
  opacity: 0;
  transform: translateY(100px);
}
@media (max-width: 450px) {
  .index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text p {
    width: 33rem;
  }
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text .index-banner-btn {
  width: 50rem;
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}
@media (max-width: 450px) {
  .index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text .index-banner-btn {
    flex-direction: column;
    margin-top: 5rem;
    width: 33rem;
  }
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text .index-banner-btn .btn {
  border-radius: 1rem;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 3rem;
  margin: 0 0.5rem;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text .index-banner-btn .message-btn {
  width: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  transition: 0.3s;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide .index-banner-content .index-banner-text .index-banner-btn .message-btn:hover {
  background-color: red;
}
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide-active .index-banner-content .index-banner-text h3,
.index-banner .index-banner-swiper .swiper-wrapper .swiper-slide-active .index-banner-content .index-banner-text p {
  opacity: 1;
  transform: translateY(0px);
  transition: 2s;
}

.pc-navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 9;
  width: 100%;
  background: #082d4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
@media (max-width: 1024px) {
  .pc-navbar {
    display: none;
  }
}
.pc-navbar > a {
  width: 50%;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.pc-navbar > a #seal {
  width: 8%;
  color: darkred;
}
.pc-navbar > a #logo {
  padding-left: 1rem;
  width: 40%;
  color: #fff;
}
.pc-navbar .nav-list {
  width: 50rem;
  display: flex;
  justify-content: space-between;
  padding-right: 2rem;
}
.pc-navbar .nav-list .nav-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.pc-navbar .nav-list .nav-link a:hover {
  color: #ff0000;
}
.pc-navbar .nav-list .nav-link a span {
  font-size: 1.6rem;
}
.pc-navbar .nav-list .nav-link a span:last-child {
  font-size: 1.2rem;
}

.m-navbar {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding-top: 3rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .m-navbar {
    display: flex;
  }
}
.m-navbar #menu-icon-shape {
  width: 90px;
  height: 100px;
  position: absolute;
  top: 100%;
  right: 0px;
  background-color: rgba(8, 45, 74, 0.6);
  border-radius: 0% 0% 0% 100%;
  transform: translateY(-50%);
  z-index: 101;
  transition: all 0.5s ease;
}
.m-navbar #menu-icon-shape #menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
}
.m-navbar #menu-icon-shape #menu-icon #top,
.m-navbar #menu-icon-shape #menu-icon #middle,
.m-navbar #menu-icon-shape #menu-icon #bottom {
  width: 100%;
  height: 4px;
  background: #fff;
  transition: all 0.35s ease;
}
.m-navbar #menu-icon-shape #menu-icon #middle {
  margin: 4px 0;
}
.m-navbar #menu-icon-shape #menu-icon #top.active {
  transform: translateY(8px) translateX(0) rotate(45deg);
}
.m-navbar #menu-icon-shape #menu-icon #middle.active {
  opacity: 0;
}
.m-navbar #menu-icon-shape #menu-icon #bottom.active {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}
.m-navbar > a {
  position: absolute;
  top: 75%;
  left: 0;
  border-radius: 0rem 2rem 2rem 0rem;
  background: rgba(8, 45, 74, 0.8);
  width: 60%;
  padding-left: 10px;
}
.m-navbar > a #logoBtn {
  color: #fff;
  width: 80%;
  transition: 0.5s;
}
.m-navbar > a #seal2 {
  width: 15%;
}
.m-navbar .menu-list {
  width: 0%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  transition: width 0.5s ease;
}
.m-navbar .menu-list ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.m-navbar .menu-list ul li {
  margin: 2.5rem 0;
  opacity: 0;
  transition: 0.3s;
}
.m-navbar .menu-list ul li a {
  color: #fff;
  font-size: 2rem;
}
.m-navbar .menu-list ul li a span {
  text-align: center;
  display: block;
}
.m-navbar .menu-list.active {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.m-navbar .menu-list.active li {
  opacity: 1;
}

.index-merit {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.index-merit .m-merit-swiper {
  width: 100%;
  height: 100%;
}
.index-merit .m-merit-swiper .swiper-slide {
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-merit .m-merit-swiper .swiper-slide .index-merit-content {
  width: 95%;
  height: 90%;
  border: 5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text {
  color: #fff;
  text-align: center;
}
.index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text .index-merit-title {
  font-size: 5rem;
  position: relative;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(10rem);
  transition: 1s;
}
@media (max-width: 450px) {
  .index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text .index-merit-title {
    font-size: 4rem;
  }
}
.index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text .index-merit-title::before {
  content: "";
  width: 10rem;
  height: 0.3rem;
  background-color: #fff;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
.index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text .index-merit-paragraph {
  font-size: 2.5rem;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(10rem);
  transition: 1s;
}
@media (max-width: 450px) {
  .index-merit .m-merit-swiper .swiper-slide .index-merit-content .index-merit-text .index-merit-paragraph {
    font-size: 2rem;
  }
}
.index-merit .m-merit-swiper .swiper-slide-active .index-merit-content .index-merit-text .index-merit-title {
  opacity: 1;
  transform: translateY(0rem);
}
.index-merit .m-merit-swiper .swiper-slide-active .index-merit-content .index-merit-text .index-merit-paragraph {
  opacity: 1;
  transform: translateY(0rem);
}
.index-merit .index-merit-swiper {
  width: 40%;
  height: 10%;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 450px) {
  .index-merit .index-merit-swiper {
    display: none;
  }
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 25%;
  height: 100%;
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
  transition: 0.3s;
  cursor: pointer;
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide img:hover {
  filter: brightness(30%);
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide h4 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide-thumb-active img {
  filter: brightness(30%);
}
.index-merit .index-merit-swiper .swiper-wrapper .swiper-slide-thumb-active h4 {
  color: #ff9900;
}

.index-about {
  width: 100%;
  height: 50rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .index-about {
    height: 100vh;
  }
}
.index-about .index-about-swiper {
  width: 100%;
  height: 100%;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide {
  color: #fff;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content {
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content h2 {
  font-size: 5rem;
  font-weight: 300;
  position: relative;
  margin-bottom: 3rem;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content h2::before {
  content: "";
  width: 9rem;
  height: 0.5rem;
  background-color: #fff;
  position: absolute;
  top: 7.5rem;
  left: 0.5rem;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content h2 span {
  font-size: 3rem;
  padding-left: 3rem;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content h2 span {
    display: block;
    padding-left: 0;
    padding-top: 5rem;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-content p {
  font-size: 1.6rem;
  line-height: 2;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-1 {
  background-image: url(../img/about01.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-1::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-1 .index-about-text {
  width: 50%;
  margin: 0 auto;
  transform: translateX(30rem);
  opacity: 0;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-1 .index-about-text {
    width: 90%;
    position: relative;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2 {
  background-image: url(../img/about02.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2 .index-about-text {
  position: relative;
  padding: 15rem 10rem;
  width: 55%;
  z-index: 1;
  transform: translateX(-10rem);
  opacity: 0;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2 .index-about-text {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2 .index-about-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 120%;
  height: 100%;
  transform: skewX(30deg) translateX(-100rem);
  transition: 1s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-2 .index-about-text::before {
    display: none;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3 {
  background-image: url(../img/about03.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3 .index-about-text {
  position: relative;
  right: 0;
  padding: 20rem 10rem;
  width: 55%;
  z-index: 1;
  transform: translateX(10rem);
  opacity: 0;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3 .index-about-text {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3 .index-about-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 120%;
  height: 100%;
  transform: skewX(150deg) translateX(100rem);
  transition: 1s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-3 .index-about-text::before {
    display: none;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4 {
  background-image: url(../img/about04.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4 .index-about-text {
  position: relative;
  right: 0;
  padding: 20rem 10rem;
  width: 55%;
  z-index: 1;
  transform: translateX(-10rem);
  opacity: 0;
  transition: 1.5s;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4 .index-about-text {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4 .index-about-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 120%;
  height: 100%;
  transform: skewX(30deg) translateX(-120rem);
  transition: 1s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-4 .index-about-text::before {
    display: none;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5 {
  background-image: url(../img/about05.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5 .index-about-text {
  position: relative;
  right: 0;
  padding: 20rem 10rem;
  width: 55%;
  z-index: 1;
  transform: translateX(10rem);
  opacity: 0;
  transition: 1.5s;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5 .index-about-text {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5 .index-about-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 120%;
  height: 100%;
  transform: skewX(150deg) translateX(100rem);
  transition: 1s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-5 .index-about-text::before {
    display: none;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6 {
  background-image: url(../img/about06.jpg);
  background-position: center center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6 .index-about-text {
  position: relative;
  right: 0;
  padding: 20rem 10rem;
  width: 55%;
  z-index: 1;
  transform: translateX(-10rem);
  opacity: 0;
  transition: 1.5s;
  transition: 1.5s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6 .index-about-text {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6 .index-about-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 120%;
  height: 100%;
  transform: skewX(30deg) translateX(-120rem);
  transition: 1s;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide .bg-6 .index-about-text::before {
    display: none;
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #878a8c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide .index-about-bar::before {
  content: "";
  background-color: #ff0000;
  width: 0%;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 4.9s;
  z-index: 3;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-1 .index-about-text {
  transform: translateX(0);
  opacity: 1;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-2 .index-about-text {
  transform: translateX(0);
  opacity: 1;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-2 .index-about-text::before {
  transform: skewX(30deg) translateX(0rem);
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-2 .index-about-text::before {
    transform: skewX(0deg) translateX(5rem);
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-3 .index-about-text,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-5 .index-about-text {
  transform: translateX(0);
  opacity: 1;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-3 .index-about-text::before,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-5 .index-about-text::before {
  transform: skewX(150deg) translateX(0rem);
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-3 .index-about-text::before,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-5 .index-about-text::before {
    transform: skewX(0deg) translateX(-5rem);
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-4 .index-about-text,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-6 .index-about-text {
  transform: translateX(0);
  opacity: 1;
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-4 .index-about-text::before,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-6 .index-about-text::before {
  transform: skewX(30deg) translateX(-20rem);
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-4 .index-about-text::before,
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .bg-6 .index-about-text::before {
    transform: skewX(0deg) translateX(-5rem);
  }
}
.index-about .index-about-swiper .swiper-wrapper .swiper-slide-active .index-about-bar::before {
  width: 100%;
}
.index-about .index-about-swiper .swiper-pagination-horizontal {
  bottom: 5rem;
}
.index-about .index-about-swiper .swiper-pagination-bullet {
  width: 5rem;
  height: 0.6rem;
  border-radius: 0.5rem;
  margin: 0 2rem;
  background: #fff;
  opacity: 1;
  z-index: -3;
}
@media (max-width: 1024px) {
  .index-about .index-about-swiper .swiper-pagination-bullet {
    width: 5rem;
    margin: 0rem 0.5rem;
  }
}
.index-about .index-about-swiper .swiper-pagination-bullet-active {
  background: #ff0000;
  z-index: -3;
}

.index-qa {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  background-image: url(../img/merit04.jpg);
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .index-qa {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
  }
}
.index-qa .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  margin-bottom: 10rem;
  text-align: center;
}
@media (max-width: 450px) {
  .index-qa .title {
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}
.index-qa .title img {
  width: 8%;
}
@media (max-width: 1024px) {
  .index-qa .title img {
    width: 30%;
  }
}
@media (max-width: 450px) {
  .index-qa .title img {
    width: 40%;
  }
}
.index-qa .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
@media (max-width: 1024px) {
  .index-qa .title h2 {
    font-size: 2rem;
  }
}
.index-qa .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.index-qa .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-qa .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-qa .qa-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 0;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  .index-qa .qa-content {
    top: 60%;
    height: 65%;
  }
}
.index-qa .qa-content::-webkit-scrollbar {
  display: none;
}
.index-qa .qa-content .accordion {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .index-qa .qa-content .accordion {
    width: 85%;
  }
}
.index-qa .qa-content .accordion .accordion-item {
  background-color: transparent;
  border: none;
  margin: 5rem 0;
  position: relative;
}
.index-qa .qa-content .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #082d4a;
  color: #ff9900;
  justify-content: center;
  font-size: 2rem;
  padding: 1rem 0;
  border-radius: 3rem;
  position: relative;
}
.index-qa .qa-content .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.index-qa .qa-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  border-color: transparent;
}
.index-qa .qa-content .accordion .accordion-item .accordion-header .accordion-button i {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.index-qa .qa-content .accordion .accordion-item .accordion-body {
  margin-top: 2.5rem;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li {
  position: relative;
  margin: 3rem 0;
  padding: 1rem 0;
  border-radius: 3rem;
  text-align: center;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li:nth-child(odd)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #aaa;
  border-bottom: 0;
  border-left: 0;
  margin-left: -10px;
  margin-bottom: -20px;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 80%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
  border-right: 0;
  margin-left: -10px;
  margin-bottom: -20px;
}
@media (max-width: 1024px) {
  .index-qa .qa-content .accordion .accordion-item .accordion-body li {
    padding: 2rem;
  }
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li a {
  font-size: 2rem;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li:nth-child(odd) {
  background-color: #aaa;
  opacity: 0;
  transform: translateX(-50rem);
  transition: 1s;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li:nth-child(even) {
  background-color: #fff;
  opacity: 0;
  transform: translateX(50rem);
  transition: 1s;
}
.index-qa .qa-content .accordion .accordion-item .accordion-body li i {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.index-qa .qa-content .accordion .accordion-item .accordion-collapse.show li:nth-child(odd), .index-qa .qa-content .accordion .accordion-item .accordion-collapse.show li:nth-child(even) {
  opacity: 1;
  transform: translateX(0rem);
}
.index-qa > img {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 30%;
}
@media (max-width: 1024px) {
  .index-qa > img {
    display: none;
  }
}

.index-teams {
  width: 100%;
  height: 100vh;
}
@media (max-width: 1024px) {
  .index-teams {
    height: 110vh;
  }
}
.index-teams .index-teams-swiper {
  background-image: url(../img/team_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide {
    height: 110vh;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100rem);
  opacity: 0;
  transition: 1s;
  transition-delay: 0.3s;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide {
    width: 100%;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title {
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title img {
  width: 60%;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title img {
    width: 60%;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer span {
  color: #ff9900;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer .name {
  font-size: 3.5rem;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer .job {
  font-size: 3rem;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer .school {
  font-size: 2rem;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer-more-btn {
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer-more-btn {
    margin-top: 0;
    width: 100%;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .left-slide .lawyer-more-btn a {
  background-color: #fff;
  color: #000;
  padding: 1rem 5rem;
  border-radius: 2rem;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .right-slide {
  width: 45%;
  background: linear-gradient(#4b5053, #34393a);
  position: relative;
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1024px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .right-slide {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: none;
            clip-path: none;
    background: transparent;
    width: 65%;
    z-index: 1;
  }
}
@media (max-width: 450px) {
  .index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .right-slide {
    width: 100%;
  }
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide .right-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(100rem);
  opacity: 0;
  transition: 1s;
  transition-delay: 0.3s;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide-active .left-slide {
  transform: translateY(0rem);
  opacity: 1;
}
.index-teams .index-teams-swiper .swiper-wrapper .swiper-slide-active .right-slide img {
  transform: translateY(0rem);
  opacity: 1;
}

.index-count {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 15rem;
  position: relative;
  z-index: 1;
  background-image: url(../img/merit01.jpg);
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .index-count {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
  }
}
.index-count .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
  font-family: "Lato", sans-serif;
  text-align: center;
}
@media (max-width: 1024px) {
  .index-count .title {
    padding: 0 2rem;
    margin-bottom: 5rem;
  }
}
.index-count .title img {
  width: 30%;
}
@media (max-width: 1024px) {
  .index-count .title img {
    width: 60%;
  }
}
@media (max-width: 450px) {
  .index-count .title img {
    width: 40%;
  }
}
.index-count .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
@media (max-width: 1024px) {
  .index-count .title h2 {
    font-size: 2rem;
  }
}
.index-count .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.index-count .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-count .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-count .icon-group {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.index-count .icon-group .icon-box {
  width: 20rem;
  height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: 50%;
  margin: 0 3rem;
}
@media (max-width: 1024px) {
  .index-count .icon-group .icon-box {
    padding: 0 3rem;
  }
}
.index-count .icon-group .icon-box i {
  font-size: 5rem;
}
@media (max-width: 1024px) {
  .index-count .icon-group .icon-box i {
    width: 5rem;
    margin-right: 3rem;
    font-size: 6rem;
  }
}
.index-count .icon-group .icon-box > div {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 450px) {
  .index-count .icon-group .icon-box > div {
    text-align: left;
  }
}
.index-count .icon-group .icon-box span {
  font-size: 3rem;
}
@media (max-width: 1024px) {
  .index-count .icon-group .icon-box span:first-child {
    font-size: 5rem;
    font-weight: 600;
  }
}
@media (max-width: 1024px) {
  .index-count .icon-group .icon-box {
    width: 27rem;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
  }
}

.index-case {
  position: relative;
  top: -128px;
  left: 0;
  z-index: 2;
  width: 100%;
  background-image: url(../img/example_bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
          clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  .index-case {
    padding-top: 0;
    top: 0;
    -webkit-clip-path: none;
            clip-path: none;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
  }
}
.index-case .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
  font-family: "Lato", sans-serif;
}
@media (max-width: 1024px) {
  .index-case .title {
    margin-bottom: 5rem;
  }
}
.index-case .title img {
  width: 10%;
}
@media (max-width: 1024px) {
  .index-case .title img {
    width: 40%;
  }
}
.index-case .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
.index-case .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.index-case .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-case .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-case .index-case-swiper {
  margin-top: 6rem;
  width: 100%;
  height: 60vh;
}
@media (max-width: 1024px) {
  .index-case .index-case-swiper {
    height: 70vh;
    width: 90%;
    margin: 0 auto;
  }
}
.index-case .index-case-swiper .swiper-wrapper {
  height: 85%;
  align-items: center;
}
.index-case .index-case-swiper .swiper-wrapper .swiper-slide {
  width: 90%;
  height: 90%;
  font-size: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: 0.1rem 0.1rem 0.3rem #ccc;
}
@media (max-width: 1024px) {
  .index-case .index-case-swiper .swiper-wrapper .swiper-slide {
    border-radius: 2rem;
  }
}
.index-case .index-case-swiper .swiper-wrapper img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (max-width: 1550px) {
  .index-case .index-case-swiper .swiper-wrapper img {
    height: 160px;
  }
}
.index-case .index-case-swiper .swiper-wrapper a {
  font-size: 2rem;
  color: #000;
  font-weight: 600;
  padding-top: 3rem;
  position: relative;
}
.index-case .index-case-swiper .swiper-wrapper a:hover {
  color: #ff0000;
}
.index-case .index-case-swiper .swiper-wrapper a::before {
  content: "";
  background-color: #000;
  width: 10rem;
  height: 0.2rem;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.index-case .index-case-swiper .swiper-wrapper p {
  padding-top: 3rem;
  font-size: 1.6rem;
  color: #999;
}
@media (max-width: 1550px) {
  .index-case .index-case-swiper .swiper-wrapper p {
    padding-top: 1rem;
  }
}
.index-case .index-case-swiper .swiper-pagination-horizontal {
  bottom: 0rem;
}
.index-case .index-case-swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 0rem;
  margin: 0 1rem;
  margin-top: 3rem;
  background: #fff;
  opacity: 1;
  z-index: -3;
}
@media (max-width: 1024px) {
  .index-case .index-case-swiper .swiper-pagination-bullet {
    z-index: 3;
    width: 2rem;
    border-radius: 0.5rem;
  }
}
.index-case .index-case-swiper .swiper-pagination-bullet-active {
  background: #082d4a;
  z-index: -3;
}
@media (max-width: 1024px) {
  .index-case .index-case-swiper .swiper-pagination-bullet-active {
    background: #ff0000;
    z-index: 3;
  }
}

.index-know {
  width: 100%;
  position: relative;
  top: -255px;
  left: 0;
  z-index: 1;
  background-image: url(../img/knowledge_bg1.jpg);
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .index-know {
    top: 0;
    padding-bottom: 5rem;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
  }
}
.index-know::before {
  content: "";
  position: absolute;
  bottom: -255px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 255px;
  background-image: url(../img/knowledge_bg1.jpg);
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .index-know::before {
    display: none;
  }
}
.index-know .title {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .index-know .title {
    padding-top: 0;
    margin-bottom: 5rem;
  }
}
.index-know .title img {
  width: 10%;
}
@media (max-width: 1024px) {
  .index-know .title img {
    width: 40%;
  }
}
.index-know .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
.index-know .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
  font-family: "Lato", sans-serif;
}
.index-know .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-know .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-know .index-know-swiper {
  padding-top: 5rem;
  width: 80%;
  height: 60vh;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper {
    padding-top: 0;
    height: 100%;
  }
}
.index-know .index-know-swiper .swiper-wrapper {
  height: 90%;
  padding: 0 0.5rem;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper {
    height: 60vh;
    padding: 0;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide {
  background-color: #fff;
  width: 18% !important;
  margin-right: 2rem;
  margin-left: 0rem;
  height: calc((100% - 30px) / 2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem 5rem 1.5rem 5rem;
  box-shadow: 0rem 0rem 1rem #aaa;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
    height: 80% !important;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content {
    padding: 3rem 3rem;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-title {
  display: flex;
  align-items: baseline;
  padding: 0 1rem;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-title {
    margin-bottom: 1rem;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-title i {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-title i {
    display: none;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-title h4 {
  font-size: 2.3rem;
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-text {
  font-size: 1.6rem;
}
@media (max-width: 1550px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-text {
    display: none;
  }
}
@media (max-width: 1024px) {
  .index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-text {
    display: initial;
    margin-bottom: 2rem;
  }
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-info {
  display: flex;
  justify-content: space-between;
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-info span {
  color: #aaa;
  font-size: 1.6rem;
}
.index-know .index-know-swiper .swiper-wrapper .swiper-slide .know-content .know-info a {
  font-size: 2rem;
}
.index-know .index-know-swiper .swiper-pagination-horizontal {
  bottom: 0rem;
}
.index-know .index-know-swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 0rem;
  margin: 0 1rem;
  margin-top: 3rem;
  background: #d7e0ec;
  opacity: 1;
  z-index: -3;
}
.index-know .index-know-swiper .swiper-pagination-fraction {
  font-size: 2rem;
  color: #fff;
}
.index-know .index-know-swiper .swiper-pagination-bullet-active {
  background: #082d4a;
  z-index: -3;
}
@media (max-width: 1024px) {
  .index-know .more-btn {
    margin-top: 7rem;
  }
}

.index-feedback {
  width: 100%;
  background-image: url(../img/feedback_bg1.jpg);
  background-size: cover;
}
.index-feedback .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.index-feedback .title img {
  width: 10%;
}
@media (max-width: 1024px) {
  .index-feedback .title img {
    width: 40%;
  }
}
.index-feedback .title h2 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0rem 0rem 0.5rem #333;
}
.index-feedback .title span {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
  font-family: "Lato", sans-serif;
}
.index-feedback .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-feedback .title span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.5rem;
  background-color: #fff;
}
.index-feedback .index-feedback-swiper {
  width: 100%;
  height: 50vh;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content {
  background-image: url(../img/icon/ios-text.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 5rem;
}
@media (max-width: 1280px) {
  .index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content {
    height: 68%;
  }
}
@media (max-width: 1024px) {
  .index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content {
    height: 90%;
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content i {
  font-size: 5rem;
  margin-bottom: 1rem;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content p {
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content p {
    font-size: 1.2rem;
  }
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content .name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-slide .feedback-content .addr {
  font-size: 1.4rem;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-next,
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-prev {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  top: auto;
  bottom: 0;
  background-color: #082d4a;
  color: #fff;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-next::after,
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-prev::after {
  font-size: 1.6rem;
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-next {
  left: 51%;
}
@media (max-width: 1024px) {
  .index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-next {
    left: 60%;
  }
}
.index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-prev {
  left: auto;
  right: 51%;
}
@media (max-width: 1024px) {
  .index-feedback .index-feedback-swiper .swiper-wrapper .swiper-button-prev {
    right: 60%;
  }
}

footer {
  background-color: #082d4a;
  color: #ff9900;
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}
footer .footer-phone .phone-title p {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
@media (max-width: 450px) {
  footer .footer-phone .phone-title p {
    line-height: 1.5;
  }
}
footer .footer-phone .phone-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 450px) {
  footer .footer-phone .phone-list {
    flex-direction: column;
    padding: 0;
  }
}
footer .footer-phone .phone-list a {
  background-color: #ff9900;
  color: #082d4a;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 3rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: 0.3s;
}
@media (max-width: 450px) {
  footer .footer-phone .phone-list a {
    margin: 1.5rem 0;
  }
}
footer .footer-phone .phone-list a i {
  font-size: 2rem;
  color: #082d4a;
  transition: 0.3s;
}
footer .footer-phone .phone-list a:hover {
  color: #fff;
}
footer .footer-phone .phone-list a:hover i {
  color: #fff;
}

.copyright {
  position: relative;
  border-top: 2px solid #fff;
}
@media (max-width: 450px) {
  .copyright {
    display: flex;
    flex-direction: column-reverse;
  }
}
.copyright .copyright-text {
  background-color: #082d4a;
  text-align: center;
  padding: 2rem 0;
  color: #fff;
}
.copyright .copyright-text span {
  color: #ff9900;
}
.copyright .privacy-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 450px) {
  .copyright .privacy-btn {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0%);
    background-color: #082d4a;
    padding-top: 2rem;
    text-align: center;
  }
}
.copyright .privacy-btn a {
  color: #ff9900;
  padding: 0 1rem;
  border-right: 1px solid #fff;
  transition: 0.3s;
}
.copyright .privacy-btn a:last-child {
  border-right: none;
}
.copyright .privacy-btn a:hover {
  color: #fff;
}

.fix-btn {
  position: fixed;
  width: 5rem;
  height: 5rem;
  right: 1.5rem;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.go-top {
  border-radius: 50%;
  bottom: 10rem;
  background-color: rgba(255, 153, 0, 0.5);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .go-top {
    bottom: 3rem;
  }
}
.go-top:hover {
  background-color: #ff9900;
}
.go-top a {
  display: block;
}
.go-top a i {
  font-size: 3rem;
  color: #fff;
}

.line-top {
  border-radius: 20%;
  bottom: 30rem;
  background-color: rgba(62, 149, 53, 0.5);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .line-top {
    right: 0;
    left: 1.5rem;
    bottom: 3rem;
  }
}
.line-top:hover {
  background-color: #3e9535;
}
.line-top a {
  display: block;
}
.line-top a i {
  font-size: 3rem;
  color: #fff;
}

.phone-top {
  border-radius: 20%;
  bottom: 37rem;
  background-color: rgba(0, 142, 254, 0.5);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .phone-top {
    right: 0;
    left: 1.5rem;
    bottom: 11rem;
  }
}
.phone-top:hover {
  background-color: #008efe;
}
.phone-top a {
  display: block;
}
.phone-top a i {
  font-size: 2.5rem;
  color: #fff;
}

.live800 {
  border-radius: 20%;
  bottom: 44rem;
  background-color: rgba(206, 145, 40, 0.5);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .live800 {
    right: 0;
    left: 1.5rem;
    bottom: 19rem;
  }
}
.live800:hover {
  background-color: #ce9128;
}
.live800 a {
  display: block;
}
.live800 a i {
  font-size: 2.5rem;
  color: #fff;
}

.page-back-list-btn {
  border-radius: 50%;
  bottom: 17rem;
  background-color: rgba(255, 0, 0, 0.5);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .page-back-list-btn {
    right: 0;
    right: 1.5rem;
    bottom: 11rem;
  }
}
.page-back-list-btn:hover {
  background-color: red;
}
.page-back-list-btn a {
  display: block;
}
.page-back-list-btn a img {
  width: 130%;
}

.page-banner {
  padding-top: 5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-banner .banner-container {
  width: 50%;
  height: 35vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 450px) {
  .page-banner .banner-container {
    width: 90%;
  }
}
.page-banner .banner-container .page-banner-title {
  font-size: 3.5rem;
  text-align: center;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.page-banner .banner-container .page-banner-title span {
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  display: block;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.page-banner .banner-container p {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  text-shadow: 0rem 0rem 1rem #333;
}
.page-banner .banner-container img {
  width: 35%;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .page-banner .banner-container img {
    width: 80%;
    opacity: 0.35;
    top: 50%;
    transform: translateY(-50%);
  }
}

.about-page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 5rem 0;
}
.about-page-content h1 {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 6rem;
  font-weight: 600;
  position: relative;
}
.about-page-content h1::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  bottom: -0.5rem;
  background-color: #ff0000;
  width: 10rem;
  height: 0.3rem;
}
.about-page-content h2 {
  font-size: 4rem;
  margin-top: 8rem;
  margin-bottom: 6rem;
  font-weight: 600;
  position: relative;
}
.about-page-content h2::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  bottom: -0.5rem;
  background-color: #000;
  width: 10rem;
  height: 0.3rem;
}
.about-page-content h2 span {
  font-size: 2rem;
  margin-left: 2rem;
}
@media (max-width: 1024px) {
  .about-page-content h2 span {
    display: block;
    margin-left: 0;
  }
}
.about-page-content p {
  font-size: 2rem;
  font-weight: 600;
}
.about-page-content img {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: -10rem;
  z-index: -1;
}
@media (max-width: 1024px) {
  .about-page-content img {
    width: 100%;
    right: 0;
  }
}

.breadcrumb {
  padding: 2rem 0;
}
@media (max-width: 450px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .breadcrumb-item a {
  font-size: 1.6rem;
}
.breadcrumb .breadcrumb-item.active {
  font-size: 1.6rem;
  color: #ff0000;
}

.public-page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.public-page-content .top-img {
  width: 100%;
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.public-page-content article {
  padding: 5rem 0;
}
.public-page-content article span {
  display: block;
  font-size: 3rem;
  margin: 3rem 0;
  font-weight: 600;
}
.public-page-content article p,
.public-page-content article li {
  line-height: 2;
  font-size: 2rem;
  font-weight: 400;
}
.public-page-content article h1 {
  color: #ff0000;
  font-size: 3rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 3rem;
}
.public-page-content article h1::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background: #ff0000;
}
.public-page-content article h2 {
  font-size: 3rem;
  font-weight: 600;
}
.public-page-content article h3 {
  font-weight: 600;
}
.public-page-content .public-page-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  margin-bottom: 15rem;
}
.public-page-content .public-page-button .btn {
  font-size: 3rem;
}
.public-page-content .public-page-button .btn i {
  font-size: 3rem;
}
.public-page-content .public-page-button .hidden {
  visibility: hidden;
}
.public-page-content .page-bg {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: -10rem;
  z-index: -1;
}
@media (max-width: 1024px) {
  .public-page-content .page-bg {
    width: 100%;
    right: 0;
  }
}

.example-index-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 450px) {
  .example-index-page {
    padding: 3rem 0;
  }
}
.example-index-page .example-box {
  width: 80%;
  margin: 0 auto;
  background: linear-gradient(#fefefe, #d7e0ec);
  box-shadow: 0rem 0.3rem 1rem 0.2rem #aaa;
  border-radius: 2rem;
  display: flex;
  align-items: stretch;
  padding: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 450px) {
  .example-index-page .example-box {
    flex-direction: column;
  }
}
.example-index-page .example-box img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 450px) {
  .example-index-page .example-box img {
    width: 100%;
  }
}
.example-index-page .example-box .box-content {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
@media (max-width: 1024px) {
  .example-index-page .example-box .box-content {
    padding: 0;
  }
}
.example-index-page .example-box .box-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #082d4a;
}
@media (max-width: 450px) {
  .example-index-page .example-box .box-content h2 {
    margin: 3rem 0;
  }
}
.example-index-page .example-box .box-content p {
  font-size: 1.6rem;
}
@media (max-width: 450px) {
  .example-index-page .example-box .box-content p {
    display: none;
  }
}
.example-index-page .example-box .box-content a {
  font-size: 1.6rem;
  align-self: flex-end;
}
.example-index-page #pagination ul li {
  margin: 0 0.5rem;
  margin-bottom: 5rem;
}
.example-index-page #pagination ul li.show a {
  background-color: #082d4a;
  color: #fff;
}
.example-index-page #pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  color: #082d4a;
  font-size: 2rem;
  border-radius: 50%;
}
.example-index-page .page-bg {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .example-index-page .page-bg {
    right: 0;
    width: 100%;
  }
}

.know-index-page {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (max-width: 450px) {
  .know-index-page {
    padding: 3rem 0;
  }
}
.know-index-page .know-box {
  width: 46%;
  margin: 0 auto;
  background: linear-gradient(#fefefe, #d7e0ec);
  box-shadow: 0rem 0.3rem 1rem 0.2rem #aaa;
  border-radius: 2rem;
  display: flex;
  align-items: stretch;
  padding: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 450px) {
  .know-index-page .know-box {
    width: 80%;
  }
}
.know-index-page .know-box img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 450px) {
  .know-index-page .know-box img {
    width: 100%;
  }
}
.know-index-page .know-box .box-content {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
@media (max-width: 1024px) {
  .know-index-page .know-box .box-content {
    width: 100%;
    padding: 0;
  }
}
.know-index-page .know-box .box-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #082d4a;
}
@media (max-width: 450px) {
  .know-index-page .know-box .box-content h2 {
    margin: 3rem 0;
  }
}
.know-index-page .know-box .box-content p {
  font-size: 1.6rem;
}
@media (max-width: 450px) {
  .know-index-page .know-box .box-content p {
    display: none;
  }
}
.know-index-page .know-box .box-content a {
  font-size: 1.6rem;
  align-self: flex-end;
}
.know-index-page #pagination {
  width: 100%;
}
.know-index-page #pagination ul {
  justify-content: center;
}
.know-index-page #pagination ul li {
  margin: 0 0.5rem;
  margin-bottom: 5rem;
}
.know-index-page #pagination ul li.show a {
  background-color: #082d4a;
  color: #fff;
}
.know-index-page #pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  color: #082d4a;
  font-size: 2rem;
  border-radius: 50%;
}
.know-index-page .page-bg {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .know-index-page .page-bg {
    right: 0;
    width: 100%;
  }
}

.teams-index {
  align-items: initial;
}
@media (max-width: 1024px) {
  .teams-index {
    display: none;
  }
}
.teams-index .lawyer-teams {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
}
.teams-index .lawyer-teams .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.teams-index .lawyer-teams .box a {
  text-align: center;
}
.teams-index .lawyer-teams .box a img {
  max-width: 80%;
  cursor: pointer;
}
.teams-index .lawyer-teams .box h3 {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  color: #082d4a;
  font-weight: 600;
}
.teams-index .lawyer-teams .box span {
  font-size: 2rem;
}
.teams-index .lawyer-teams .box span:last-child {
  font-size: 1.5rem;
}
.teams-index .modal-content {
  border-radius: 1rem;
  padding: 1rem;
}
.teams-index .modal-content .modal-header {
  border-bottom: none;
  position: relative;
}
.teams-index .modal-content .modal-header button {
  font-size: 2rem;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #fff;
}
.teams-index .modal-content .modal-body {
  display: flex;
}
.teams-index .modal-content .modal-body .resume {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}
.teams-index .modal-content .modal-body .resume .name h3 {
  font-size: 3.5rem;
  font-weight: 600;
}
.teams-index .modal-content .modal-body .resume .name h3 span {
  padding-left: 1rem;
  font-size: 1.8rem;
}
.teams-index .modal-content .modal-body .resume .school,
.teams-index .modal-content .modal-body .resume .work,
.teams-index .modal-content .modal-body .resume .expertise {
  position: relative;
  z-index: 1;
}
.teams-index .modal-content .modal-body .resume .school h5,
.teams-index .modal-content .modal-body .resume .work h5,
.teams-index .modal-content .modal-body .resume .expertise h5 {
  font-size: 3rem;
  font-weight: 600;
}
.teams-index .modal-content .modal-body .resume .school span,
.teams-index .modal-content .modal-body .resume .school li,
.teams-index .modal-content .modal-body .resume .school p,
.teams-index .modal-content .modal-body .resume .work span,
.teams-index .modal-content .modal-body .resume .work li,
.teams-index .modal-content .modal-body .resume .work p,
.teams-index .modal-content .modal-body .resume .expertise span,
.teams-index .modal-content .modal-body .resume .expertise li,
.teams-index .modal-content .modal-body .resume .expertise p {
  font-size: 1.8rem;
}
.teams-index .modal-content .modal-body .resume img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 0.5;
  transform: translate(-50%, -50%);
}
.teams-index .modal-content .modal-body .pic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.teams-index .modal-content .modal-body .pic img {
  max-width: 100%;
}
.teams-index .modal-content .modal-body .pic span {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  color: #d7e0ec;
  font-family: "Lato", sans-serif;
}

.m-teams {
  padding: 3rem 0;
  width: 95%;
  margin: 0 auto;
  display: none;
}
@media (max-width: 1024px) {
  .m-teams {
    display: flex;
  }
}
.m-teams .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-teams .swiper-wrapper .swiper-slide img {
  max-width: 80%;
}
.m-teams .swiper-wrapper .swiper-slide .name {
  margin-top: 1rem;
  text-align: center;
}
.m-teams .swiper-wrapper .swiper-slide .name span {
  display: block;
}
.m-teams .swiper-wrapper .swiper-slide .name span:first-child {
  font-size: 3rem;
  font-weight: 600;
}
.m-teams .swiper-wrapper .swiper-slide .name span:last-child {
  font-size: 1.8rem;
}
.m-teams .swiper-wrapper .swiper-slide .school,
.m-teams .swiper-wrapper .swiper-slide .resume,
.m-teams .swiper-wrapper .swiper-slide .expertise {
  margin-top: 1rem;
  text-align: center;
}
.m-teams .swiper-wrapper .swiper-slide .school span,
.m-teams .swiper-wrapper .swiper-slide .resume span,
.m-teams .swiper-wrapper .swiper-slide .expertise span {
  display: block;
  font-size: 1.6rem;
}
.m-teams .swiper-wrapper .swiper-slide .school span:first-child,
.m-teams .swiper-wrapper .swiper-slide .resume span:first-child,
.m-teams .swiper-wrapper .swiper-slide .expertise span:first-child {
  font-size: 2rem;
  font-weight: 600;
}
.m-teams .swiper-wrapper .swiper-slide .school p,
.m-teams .swiper-wrapper .swiper-slide .resume p,
.m-teams .swiper-wrapper .swiper-slide .expertise p {
  text-align: center;
  font-size: 1.6rem;
}
.m-teams .swiper-button-prev,
.m-teams .swiper-button-next {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  top: 40%;
  background-color: #fff;
  box-shadow: 0.1rem 0.1rem 1rem #aaa;
  opacity: 0.9;
}
.m-teams .swiper-button-prev::after {
  font-size: 2rem;
  color: #000;
}
.m-teams .swiper-button-next::after {
  font-size: 2rem;
  color: #000;
}

#page-liveBtn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 3rem;
  padding: 1rem 2rem;
  border: 3px solid #082d4a;
  border-radius: 1rem;
  transition: 0.3s;
}
#page-liveBtn:hover {
  background-color: #082d4a;
  color: #fff;
}/*# sourceMappingURL=main.css.map */