.index-section.sec01 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-section.sec01 .container {
  width: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index-section.sec01 .container > h1 {
  margin-bottom: 70px;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}
.index-section.sec01 .container > p {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.index-section.sec01 .container > a {
  width: 200px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-gap: 30px;
  border: 1px solid white;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.2);
}
.index-section.sec01 .container > a > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.index-section.sec01 .container > a > svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1660px) {
  .index-section.sec01 .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .index-section.sec01 {
    height: 500px;
  }
  .index-section.sec01 .container > h1 {
    margin-bottom: 50px;
    font-size: 60px;
  }
  .index-section.sec01 .container > p {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .index-section.sec01 .container > h1 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .index-section.sec01 .container > p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .index-section.sec01 .container > a {
    width: 150px;
    height: 40px;
    grid-gap: 14px;
  }
  .index-section.sec01 .container > a > span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index-section.sec01 {
    height: 360px;
  }
  .index-section.sec01 .container > h1 {
    font-size: 24px;
  }
  .index-section.sec01 .container > a {
    height: 35px;
  }
}
.index-section.sec02 {
  width: 100%;
  height: 970px;
  padding: 120px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-section.sec02 .container {
  width: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: row;
}
.index-section.sec02 .container .left, .index-section.sec02 .container .right {
  flex: 1 1 50%;
}
.index-section.sec02 .container .left {
  padding: 100px 60px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-section.sec02 .container .left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 140, 255, 0.2666666667);
}
.index-section.sec02 .container .left .left-content {
  position: relative;
  width: 60%;
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}
.index-section.sec02 .container .left .left-content > h4 {
  padding-bottom: 8px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: white;
  border-bottom: 1px solid white;
}
.index-section.sec02 .container .left .left-content > p {
  font-size: 20px;
  line-height: 1.2;
  color: white;
}
.index-section.sec02 .container .right {
  background: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index-section.sec02 .container .right .invest-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  grid-gap: 30px;
}
.index-section.sec02 .container .right .invest-list .invest-item {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px 50px;
}
.index-section.sec02 .container .right .invest-list .invest-item > figure {
  width: 90px;
  height: 90px;
}
.index-section.sec02 .container .right .invest-list .invest-item > figure > img {
  width: 100%;
  height: 100%;
}
.index-section.sec02 .container .right .invest-list .invest-item > p {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.index-section.sec02 .container .right .invest-list .invest-item > p > strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.index-section.sec02 .container .right .invest-list .invest-item > p > span {
  font-size: 16px;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1660px) {
  .index-section.sec02 {
    height: 800px;
    padding: 70px 0;
  }
  .index-section.sec02 .container {
    padding: 0 16px;
  }
  .index-section.sec02 .container .left {
    padding: 70px 40px;
  }
  .index-section.sec02 .container .right {
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .index-section.sec02 {
    height: auto;
  }
  .index-section.sec02 .container {
    flex-direction: column;
  }
  .index-section.sec02 .container .left {
    flex: unset;
    padding: 70px 30px;
  }
  .index-section.sec02 .container .left .left-content {
    width: 100%;
    grid-gap: 20px;
  }
  .index-section.sec02 .container .left .left-content > h4 {
    font-size: 32px;
  }
  .index-section.sec02 .container .left .left-content > p {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-section.sec02 .container .right {
    flex: unset;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .index-section.sec02 .container .left {
    padding: 50px 20px;
  }
  .index-section.sec02 .container .left .left-content > h4 {
    font-size: 26px;
  }
  .index-section.sec02 .container .right {
    padding: 20px;
  }
  .index-section.sec02 .container .right .invest-list {
    grid-gap: 20px;
  }
  .index-section.sec02 .container .right .invest-list .invest-item {
    grid-gap: 20px;
  }
  .index-section.sec02 .container .right .invest-list .invest-item > figure {
    width: 75px;
    height: 75px;
  }
  .index-section.sec02 .container .right .invest-list .invest-item > p > strong {
    font-size: 22px;
  }
  .index-section.sec02 .container .right .invest-list .invest-item > p > span {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .index-section.sec02 .container .left {
    padding: 50px 16px;
  }
  .index-section.sec02 .container .left .left-content {
    grid-gap: 14px;
  }
  .index-section.sec02 .container .left .left-content > h4 {
    font-size: 24px;
  }
  .index-section.sec02 .container .right {
    padding: 16px;
  }
  .index-section.sec02 .container .right .invest-list {
    grid-gap: 16px;
  }
  .index-section.sec02 .container .right .invest-list .invest-item {
    grid-gap: 14px;
    flex: 1 1 100%;
  }
  .index-section.sec02 .container .right .invest-list .invest-item > figure {
    align-self: center;
  }
  .index-section.sec02 .container .right .invest-list .invest-item > p > strong {
    font-size: 18px;
  }
}
.index-section.sec03 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
}
.index-section.sec03 .container {
  width: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: column;
  grid-gap: 100px;
}
.index-section.sec03 .container .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.index-section.sec03 .container .text-wrap > h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: #0047C1;
  text-align: center;
}
.index-section.sec03 .container .text-wrap > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #0047C1;
  text-align: center;
  word-break: keep-all;
}
@keyframes slideRtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideLtr {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.index-section.sec03 .container .sliding-area {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.index-section.sec03 .container .sliding-area .sliding-group {
  position: absolute;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.index-section.sec03 .container .sliding-area .sliding-group.rtl {
  left: 0;
  top: 0;
}
.index-section.sec03 .container .sliding-area .sliding-group.ltr {
  right: 0;
  bottom: 0;
}
.index-section.sec03 .container .sliding-area .sliding-logos-1 {
  padding-right: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 100px;
  animation: slideRtl 30s linear infinite;
}
.index-section.sec03 .container .sliding-area .sliding-logos-1 > li > img {
  width: auto;
  height: auto;
}
.index-section.sec03 .container .sliding-area .sliding-logos-2 {
  padding-left: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 100px;
  animation: slideLtr 18s linear infinite;
}
.index-section.sec03 .container .sliding-area .sliding-logos-2 > li > img {
  width: auto;
  height: auto;
}
@media (max-width: 1660px) {
  .index-section.sec03 .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .index-section.sec03 {
    top: 50px;
    height: 500px;
  }
  .index-section.sec03 .container {
    grid-gap: 50px;
  }
  .index-section.sec03 .container .text-wrap {
    grid-gap: 30px;
  }
  .index-section.sec03 .container .text-wrap > h1 {
    font-size: 50px;
  }
  .index-section.sec03 .container .text-wrap > p {
    font-size: 16px;
  }
  .index-section.sec03 .container .sliding-area {
    height: 120px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-1 {
    padding-right: 70px;
    grid-gap: 70px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-1 > li > img {
    width: auto;
    height: 30px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-2 {
    padding-left: 70px;
    grid-gap: 70px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-2 > li > img {
    width: auto;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .index-section.sec03 .container .text-wrap {
    grid-gap: 20px;
  }
  .index-section.sec03 .container .text-wrap > h1 {
    font-size: 32px;
  }
  .index-section.sec03 .container .text-wrap > p {
    font-size: 14px;
  }
  .index-section.sec03 .container .sliding-area {
    height: 80px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-1 {
    padding-right: 30px;
    grid-gap: 30px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-1 > li > img {
    width: auto;
    height: 20px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-2 {
    padding-left: 30px;
    grid-gap: 30px;
  }
  .index-section.sec03 .container .sliding-area .sliding-logos-2 > li > img {
    width: auto;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .index-section.sec03 .container .text-wrap {
    grid-gap: 16px;
  }
  .index-section.sec03 .container .text-wrap > h1 {
    font-size: 24px;
  }
}
.index-section.sec04 {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 70px;
  background: #F4F8FB;
}
.index-section.sec04 .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 24px;
}
.index-section.sec04 .title-wrap > h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-align: center;
}
.index-section.sec04 .title-wrap > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  text-align: center;
}
.index-section.sec04 .index-youtube-swiper {
  width: 100%;
  padding-bottom: 80px;
  overflow-x: hidden;
}
.index-section.sec04 .index-youtube-swiper .swiper-wrapper {
  width: 100%;
}
.index-section.sec04 .index-youtube-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 60%;
  height: 0;
  padding-bottom: 33.75%;
}
.index-section.sec04 .index-youtube-swiper .swiper-wrapper .swiper-slide > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel {
  position: absolute;
  bottom: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-gap: 30px;
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-prev, .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-next {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-prev > svg, .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-next > svg {
  width: auto;
  height: 50%;
  fill: #0047C1;
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-pagination {
  position: relative;
  width: auto;
  bottom: 0;
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  border-radius: 50000px;
}
.index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
}
@media (max-width: 1660px) {
  .index-section.sec04 {
    padding: 70px 0;
    grid-gap: 50px;
  }
}
@media (max-width: 1024px) {
  .index-section.sec04 .title-wrap {
    grid-gap: 18px;
  }
  .index-section.sec04 .title-wrap > h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .index-section.sec04 {
    grid-gap: 30px;
  }
  .index-section.sec04 .title-wrap {
    grid-gap: 14px;
  }
  .index-section.sec04 .title-wrap > h1 {
    font-size: 48px;
  }
  .index-section.sec04 .title-wrap > span {
    font-size: 16px;
  }
  .index-section.sec04 .index-youtube-swiper {
    padding-bottom: 70px;
  }
  .index-section.sec04 .index-youtube-swiper .swiper-wrapper .swiper-slide {
    width: 90%;
    padding-bottom: 50.62%;
  }
  .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-prev, .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-custom-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .index-section.sec04 .title-wrap > h1 {
    font-size: 32px;
  }
  .index-section.sec04 .title-wrap > span {
    font-size: 14px;
  }
  .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .index-section.sec04 .index-youtube-swiper .swiper-control-pannel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 24px;
  }
}
.index-section.sec05 {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
.index-section.sec05 .container {
  width: 100%;
  max-width: 1660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.index-section.sec05 .container .title-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.index-section.sec05 .container .title-wrap .txt-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.index-section.sec05 .container .title-wrap .txt-wrap > h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.index-section.sec05 .container .title-wrap .txt-wrap > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
}
.index-section.sec05 .container .title-wrap > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.index-section.sec05 .container .title-wrap > a > span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.index-section.sec05 .container .title-wrap > a > svg {
  width: auto;
  height: 20px;
}
.index-section.sec05 .container .news-latest-table {
  width: 100%;
  max-width: 1280px;
  border-top: 2px solid #3D3D3D;
}
.index-section.sec05 .container .news-latest-table colgroup > col:nth-of-type(2) {
  width: 70%;
}
.index-section.sec05 .container .news-latest-table thead tr {
  border-bottom: 1px solid #ccc;
}
.index-section.sec05 .container .news-latest-table thead tr th {
  padding: 25px 0;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-align: center;
  vertical-align: middle;
}
.index-section.sec05 .container .news-latest-table tbody tr {
  border-bottom: 1px solid #ccc;
}
.index-section.sec05 .container .news-latest-table tbody tr td {
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #3D3D3D;
  text-align: center;
  vertical-align: middle;
}
.index-section.sec05 .container .news-latest-table tbody tr td.txt_left {
  text-align: start;
}
.index-section.sec05 .container .news-latest-table tbody tr td > a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}
@media (max-width: 1660px) {
  .index-section.sec05 {
    padding: 70px 0;
  }
  .index-section.sec05 .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .index-section.sec05 .container {
    grid-gap: 30px;
  }
  .index-section.sec05 .container .title-wrap .txt-wrap {
    grid-gap: 20px;
  }
  .index-section.sec05 .container .title-wrap .txt-wrap > h1 {
    font-size: 60px;
  }
  .index-section.sec05 .container .title-wrap > a > span {
    font-size: 18px;
  }
  .index-section.sec05 .container .title-wrap > a > svg {
    height: 20px;
  }
  .index-section.sec05 .container .news-latest-table thead tr th {
    padding: 16px 0;
    font-size: 16px;
  }
  .index-section.sec05 .container .news-latest-table tbody tr td {
    padding: 14px 0;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .index-section.sec05 .container .title-wrap .txt-wrap {
    grid-gap: 14px;
  }
  .index-section.sec05 .container .title-wrap .txt-wrap > h1 {
    font-size: 40px;
  }
  .index-section.sec05 .container .title-wrap .txt-wrap > span {
    font-size: 16px;
  }
  .index-section.sec05 .container .title-wrap > a > span {
    font-size: 14px;
  }
  .index-section.sec05 .container .title-wrap > a > svg {
    height: 14px;
  }
  .index-section.sec05 .container .news-latest-table thead tr th {
    padding: 14px 0;
    font-size: 14px;
  }
  .index-section.sec05 .container .news-latest-table tbody tr td {
    padding: 10px 0;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .index-section.sec05 .container .news-latest-table colgroup > col:nth-of-type(1) {
    width: auto;
  }
  .index-section.sec05 .container .news-latest-table colgroup > col:nth-of-type(2) {
    width: auto;
  }
  .index-section.sec05 .container .news-latest-table colgroup > col:nth-of-type(3) {
    width: 44px;
  }
  .index-section.sec05 .container .news-latest-table colgroup > col:nth-of-type(4) {
    width: 80px;
  }
}/*# sourceMappingURL=main.css.map */