@charset "UTF-8";
.header {
  background: #fff;
  height: 90px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header.floating {
  box-shadow: 13px 13px 25px rgba(0, 0, 0, 0.1);
}
.header_wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 50px;
  position: relative;
  width: 100%;
  z-index: 1000;
}
.header_wrapper .gnb .list {
  display: flex;
  gap: 0 35px;
}
.header_wrapper .gnb .list .item.active .link {
  background: #1754ff;
  color: #fff;
}
.header_wrapper .gnb .list .item .link {
  align-items: center;
  border-radius: 25px;
  display: flex;
  font-size: 18px;
  height: 50px;
  justify-content: center;
  padding: 0 15px;
  transition: color 0.3s ease, background 0.3s ease;
}
.header_wrapper .gnb .list .item .link:hover {
  background: #1754ff;
  color: #fff;
}
.header .logo .link {
  background: url("../images/logo_color.png") no-repeat center center/100% auto;
  display: flex;
  font-size: 0;
  height: 39px;
  line-height: 1;
  width: 113px;
}
.header .mobile_bar {
  display: none;
}
.header .mobile_menu {
  display: none;
}

.subpage .header {
  background-color: transparent;
}
.subpage .header.floating {
  background-color: #fff;
}
.subpage .header.floating .header_wrapper .gnb .list .item.active .link {
  color: #fff;
}
.subpage .header.floating .header_wrapper .gnb .list .item .link {
  color: #000;
}
.subpage .header.floating .header_wrapper .gnb .list .item .link:hover {
  color: #fff;
}
.subpage .header.floating .logo .link {
  background: url("../images/logo_color.png") no-repeat center center/100% auto;
}
.subpage .header.floating .mobile_bar::before, .subpage .header.floating .mobile_bar::after {
  background-color: #1754ff;
}
.subpage .header_wrapper .gnb .list .item .link {
  color: #fff;
}
.subpage .header .logo .link {
  background: url("../images/sub_logo.png") no-repeat center center/100% auto;
}
.subpage .header .mobile_bar::before, .subpage .header .mobile_bar::after {
  background-color: #fff;
}

@media (max-width: 992px) {
  .header {
    height: 80px;
  }
  .header_wrapper {
    padding: 0 20px;
  }
  .header_wrapper .gnb {
    display: none;
  }
  .header .logo {
    width: 90px;
  }
  .header .logo .img {
    width: 100%;
  }
  .header .mobile_bar {
    background: transparent;
    border: 0;
    display: block;
    height: 15px;
    position: relative;
    width: 30px;
  }
  .header .mobile_bar.active::before, .header .mobile_bar.active::after {
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .mobile_bar.active::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .mobile_bar.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header .mobile_bar::before, .header .mobile_bar::after {
    content: "";
    background: #1754ff;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .header .mobile_bar::before {
    top: 0;
  }
  .header .mobile_bar::after {
    bottom: 0;
  }
  .header .mobile_menu {
    background: #1754ff;
    display: block;
    height: 100vh;
    max-width: 576px;
    opacity: 0;
    padding: 80px 40px 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 999;
  }
  .header .mobile_menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .header .mobile_menu .gnb {
    height: calc(100% - 100px);
  }
  .header .mobile_menu .gnb .list {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-bottom: 150px;
  }
  .header .mobile_menu .gnb .list .item {
    margin-top: 30px;
  }
  .header .mobile_menu .gnb .list .item:first-child {
    margin-top: 0;
  }
  .header .mobile_menu .gnb .list .item.active .link {
    opacity: 1;
  }
  .header .mobile_menu .gnb .list .item .link {
    color: #fff;
    display: block;
    font-size: 26px;
    font-weight: 700;
    opacity: 0.6;
  }
  .header .mobile_footer {
    flex-shrink: 0;
    height: 100px;
    margin: 0 -30px;
  }
  .header .mobile_footer ul {
    display: flex;
  }
  .header .mobile_footer ul li {
    flex: 1 0 0;
    overflow: hidden;
  }
  .header .mobile_footer ul li:nth-child(1) i::before {
    height: 30px;
    width: 32px;
  }
  .header .mobile_footer ul li:nth-child(2) i::before {
    background-position-x: -32px;
    height: 31px;
    width: 36px;
  }
  .header .mobile_footer ul li:nth-child(3) i::before {
    background-position-x: -68px;
    height: 29px;
    width: 30px;
  }
  .header .mobile_footer ul li a {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
    width: 100%;
  }
  .header .mobile_footer ul li a i {
    display: block;
  }
  .header .mobile_footer ul li a i::before {
    background-image: url("../images/quick_icons.png");
    content: "";
    display: inline-block;
  }
  .header .mobile_footer ul li a p {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
}
.quick_menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  z-index: 999;
}
@media (max-width: 1919px) {
  .quick_menu {
    transform: translate(100%, -50%);
  }
  .quick_menu.active {
    transform: translate(0, -50%);
  }
}
@media (max-width: 1200px) {
  .quick_menu {
    display: none;
  }
}
.quick_menu .quick_btn {
  background-color: #1754ff;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  left: 0;
  opacity: 0;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
@media (max-width: 1919px) {
  .quick_menu .quick_btn {
    opacity: 1;
    visibility: visible;
  }
}
.quick_menu ul {
  overflow: hidden;
}
.quick_menu ul li {
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}
.quick_menu ul li:nth-child(1) {
  border-radius: 20px 0 0 0;
}
.quick_menu ul li:nth-child(1) i::before {
  height: 30px;
  width: 32px;
}
.quick_menu ul li:nth-child(2) i::before {
  background-position-x: -32px;
  height: 31px;
  width: 36px;
}
.quick_menu ul li:nth-child(3) i::before {
  background-position-x: -68px;
  height: 29px;
  width: 30px;
}
.quick_menu ul li:last-child {
  border: 0;
  border-radius: 0 0 0 20px;
}
.quick_menu ul li:last-child a {
  background-color: #1754ff;
}
.quick_menu ul li:last-child i {
  background-color: transparent;
  border-radius: 0;
  height: auto;
  width: auto;
}
.quick_menu ul li:last-child i::before {
  background-position-x: -98px;
  height: 14px;
  width: 8px;
}
.quick_menu ul li:last-child p {
  color: #fff;
  font-size: 20px;
}
.quick_menu ul li a {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 20px;
  width: 100px;
}
.quick_menu ul li a i {
  align-items: center;
  background-color: #1754ff;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 55px;
  justify-content: center;
  width: 55px;
}
.quick_menu ul li a i::before {
  background-image: url("../images/quick_icons.png");
  content: "";
  display: inline-block;
}
.quick_menu ul li a p {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.main_visual {
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.main_visual .color {
  font-weight: 800;
}
.main_visual .box_cont {
  display: flex;
  gap: 50px;
}
@media (max-width: 1200px) {
  .main_visual .box_cont {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .main_visual .box_cont {
    flex-direction: column;
    gap: 30px;
  }
}
.main_visual .box {
  background: #1754ff;
  border-radius: 20px;
  width: 50%;
  height: 285px;
}
.main_visual .box .sec_text {
  align-items: center;
  color: #fff;
  display: flex;
  height: 50%;
  justify-content: center;
}
.main_visual .box:first-child {
  background: #0303ae;
}
@media (max-width: 768px) {
  .main_visual .box {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .main_visual .box {
    height: auto;
    padding: 20px 0;
  }
}
.main_visual .num {
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: 800;
  font-size: 48px;
  height: 50%;
  justify-content: center;
  position: relative;
}
.main_visual .num::before {
  background: #fff;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 90%;
}
@media (max-width: 1200px) {
  .main_visual .num {
    font-size: 28px;
    height: auto;
    margin-top: 20px;
    padding-top: 20px;
  }
}
.main_faq .inner {
  max-width: 1480px;
}
.main_faq .list {
  padding-left: 12.5%;
}
@media (max-width: 768px) {
  .main_faq .list {
    padding-left: 0;
  }
}
.main_faq .item {
  background: #fff;
  filter: blur(10px);
  height: auto;
}
.main_faq .item.swiper-slide-active {
  filter: blur(0);
}
.main_faq .link {
  display: block;
  height: 100%;
}
.main_faq .cont {
  align-items: center;
  display: flex;
  gap: 0 10px;
  height: 100%;
}
@media (max-width: 1200px) {
  .main_faq .cont {
    align-items: flex-start;
    flex-direction: column;
  }
}
.main_faq .left {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 55.902778%;
}
@media (max-width: 1200px) {
  .main_faq .left {
    border-radius: 20px 20px 0 0;
    width: 87.5%;
    z-index: 10;
  }
}
@media (max-width: 768px) {
  .main_faq .left {
    width: 100%;
  }
}
.main_faq .img_wrap {
  font-size: 0;
  line-height: 1;
  min-height: 700px;
  position: relative;
}
.main_faq .img_wrap .img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 2100px) {
  .main_faq .img_wrap {
    min-height: 550px;
  }
}
@media (max-width: 1200px) {
  .main_faq .img_wrap {
    min-height: 400px;
  }
}
@media (max-width: 992px) {
  .main_faq .img_wrap {
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .main_faq .img_wrap {
    min-height: 300px;
  }
}
.main_faq .text_box {
  left: 0;
  padding: 70px 50px;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .main_faq .text_box {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .main_faq .text_box {
    padding: 30px 20px;
  }
}
.main_faq .box_cate {
  color: #1754ff;
  font-weight: 800;
  font-size: 70px;
  line-height: 70px;
}
@media (max-width: 1400px) {
  .main_faq .box_cate {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .main_faq .box_cate {
    font-size: 48px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .main_faq .box_cate {
    font-size: 38px;
    line-height: 40px;
  }
}
.main_faq .q_text {
  font-weight: 800;
  font-size: 48px;
  line-height: 70px;
}
@media (max-width: 1400px) {
  .main_faq .q_text {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (max-width: 1200px) {
  .main_faq .q_text {
    font-size: 28px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .main_faq .q_text {
    font-size: 25px;
    line-height: 40px;
  }
}
.main_faq .text_mark {
  background: #1754ff;
  color: #fff;
  padding: 5px 20px 5px 10px;
  position: relative;
}
.main_faq .right {
  background: #fff;
  border: 5px solid #1754ff;
  border-radius: 20px;
  height: 478px;
  padding: 0 20px;
  position: relative;
  width: 29.166667%;
}
.main_faq .right::before {
  background: #fff;
  content: "";
  height: calc(100% + 10px);
  left: -5px;
  position: absolute;
  top: -5px;
  width: 20px;
}
.main_faq .right::after {
  background: #fff;
  content: "";
  height: 600px;
  position: absolute;
  right: -55px;
  top: 0;
  width: 50px;
  z-index: 50;
}
@media (max-width: 1200px) {
  .main_faq .right {
    border-width: 3px;
    height: 100%;
    margin-top: -20px;
    padding-bottom: 30px;
    width: 87.5%;
  }
  .main_faq .right::before {
    height: 20px;
    right: 5px;
    top: -5px;
    width: calc(100% + 10px);
  }
}
@media (max-width: 768px) {
  .main_faq .right {
    width: 100%;
  }
}
.main_faq .top {
  align-items: center;
  border-bottom: 1px solid #000;
  display: flex;
  height: 150px;
  justify-content: space-between;
}
.main_faq .logo {
  align-items: center;
  background: #1754ff;
  border-radius: 50%;
  display: flex;
  height: 80px;
  justify-content: center;
  width: 80px;
}
.main_faq .logo .img {
  width: 60px;
}
.main_faq .quotes {
  display: block;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  margin: 35px 0 -10px;
}
.main_faq .text {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}
.main_faq .text .color {
  font-weight: 800;
}
@media (max-width: 1400px) {
  .main_faq .text {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .main_faq .text {
    font-size: 24px;
    line-height: 34px;
  }
  .main_faq .text br {
    display: none;
  }
}
.main_faq .paging {
  align-items: center;
  display: flex;
  gap: 0 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}
.main_faq .swiper-scrollbar {
  background: #f4f6fa;
  bottom: auto;
  height: 10px;
  left: 0;
  margin-right: 30px;
  position: relative;
  top: auto;
  width: 100%;
}
.main_faq .swiper-scrollbar-drag {
  background: #1754ff;
  border-radius: 0;
}
.main_faq .swiper-pagination {
  align-items: center;
  bottom: auto;
  display: flex;
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  gap: 0 5px;
  line-height: 1;
  top: auto;
  position: relative;
  width: auto;
}
@media (max-width: 1200px) {
  .main_faq .swiper-pagination {
    font-size: 24px;
  }
}
.main_faq .swiper-button-prev,
.main_faq .swiper-button-next {
  flex-shrink: 0;
  height: auto;
  margin-top: auto;
  left: auto;
  position: relative;
  right: auto;
  top: auto;
  width: auto;
}
.main_faq .swiper-button-prev::after,
.main_faq .swiper-button-next::after {
  color: #000;
  content: "";
  font-family: "NanumSquare";
  font-weight: 700;
  font-size: 28px;
}
@media (max-width: 1200px) {
  .main_faq .swiper-button-prev::after,
  .main_faq .swiper-button-next::after {
    font-size: 24px;
  }
}
.main_faq .swiper-button-prev::after {
  content: "<";
}
.main_faq .swiper-button-next::after {
  content: ">";
}

.main_process .swiper .list > .item {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main_process .swiper .list > .item {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.main_process .text_wrap {
  width: 50%;
}
.main_process .text_wrap .cate {
  font-weight: 800;
  font-size: 28px;
}
.main_process .text_wrap .sec_title {
  text-align: left;
}
.main_process .text_wrap .sec_text {
  text-align: left;
}
@media (max-width: 1200px) {
  .main_process .text_wrap .cate {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .main_process .text_wrap {
    width: 100%;
  }
  .main_process .text_wrap .cate {
    display: block;
    text-align: center;
    width: 100%;
  }
  .main_process .text_wrap .sec_title {
    text-align: center;
  }
  .main_process .text_wrap .sec_text {
    text-align: center;
  }
  .main_process .text_wrap .sec_text br {
    display: none;
  }
}
.main_process .step {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 50%;
}
@media (max-width: 992px) {
  .main_process .step {
    width: 100%;
  }
}
.main_process .step .item {
  border-radius: 20px;
  width: calc(50% - 10px);
}
.main_process .step .item:first-child .icon {
  width: 57px;
  height: 63px;
}
.main_process .step .item:nth-child(2) .icon {
  width: 81px;
  height: 49px;
  background-position-x: -57px;
}
.main_process .step .item:nth-child(3) .icon {
  width: 69px;
  height: 69px;
  background-position-x: -138px;
}
.main_process .step .item:nth-child(4) .icon {
  width: 55px;
  height: 63px;
  background-position-x: -207px;
}
.main_process .step .item.active .link {
  background: #1754ff;
}
.main_process .step .item.active .cate {
  color: #fff;
}
.main_process .step .item.active .title {
  color: #fff;
}
.main_process .step .item.active .icon {
  background-position-y: -69px;
}
.main_process .step .link {
  background: #f4f6fa;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 295px;
  padding: 50px;
  position: relative;
  transition: background 0.3s ease;
}
.main_process .step .link:hover {
  background: #1754ff;
}
.main_process .step .link:hover .cate {
  color: #fff;
}
.main_process .step .link:hover .title {
  color: #fff;
}
.main_process .step .link:hover .icon {
  background-position-y: -69px;
}
@media (max-width: 2100px) {
  .main_process .step .link {
    height: 260px;
  }
}
@media (max-width: 992px) {
  .main_process .step .link {
    height: auto;
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .main_process .step .link {
    text-align: center;
  }
}
.main_process .step .cate {
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease;
}
.main_process .step .title {
  font-weight: 800;
  font-size: 28px;
  margin-top: 5px;
  transition: color 0.3s ease;
}
@media (max-width: 1200px) {
  .main_process .step .title {
    font-size: 24px;
  }
}
.main_process .step .icon {
  background: url("../images/section2_icons.png");
  margin: auto 0 0 auto;
  transition: background 0.3s ease;
}
@media (max-width: 992px) {
  .main_process .step .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: scale(0.7) translateY(-50%);
  }
}
@media (max-width: 576px) {
  .main_process .step .icon {
    display: none;
  }
}

.main_banner {
  background: #1754ff;
}
.main_banner .title {
  color: #fff;
  font-weight: 800;
  font-size: 48px;
  text-align: center;
}
.main_banner .title::before {
  background: #fff;
  content: "";
  display: block;
  height: 5px;
  margin: 0 auto 40px;
  width: 70px;
}
@media (max-width: 1200px) {
  .main_banner .title {
    font-size: 28px;
  }
}
.main_commu {
  text-align: center;
}
.main_commu .round {
  align-items: center;
  background: #1754ff;
  border-radius: 30px;
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 28px;
  min-height: 60px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 635px;
  padding: 10px 20px;
}
@media (max-width: 1200px) {
  .main_commu .round {
    font-size: 24px;
  }
}
.main_commu .box {
  align-items: center;
  background: #f4f6fa;
  border-radius: 100px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  padding: 20px;
}
@media (max-width: 576px) {
  .main_commu .box {
    flex-direction: column;
    gap: 40px;
    max-width: 200px;
  }
}
.main_commu .item {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 160px;
  justify-content: center;
  width: 160px;
}
.main_commu .item .icon {
  background: url("../images/main_icons.png");
  background-position-x: -59px;
  display: block;
  height: 53px;
  margin: 0 auto;
  width: 53px;
}
.main_commu .img {
  width: 100px;
}
.main_commu .center {
  position: relative;
}
.main_commu .center .icon {
  background: url("../images/main_icons.png");
  display: block;
  margin: 0 auto;
}
.main_commu .center .icon:first-child {
  width: 59px;
  height: 59px;
}
.main_commu .center .icon:last-child {
  background-position-x: -112px;
  width: 136px;
  height: 30px;
}
@media (max-width: 576px) {
  .main_commu .center {
    padding-left: 30px;
  }
  .main_commu .center .icon:last-child {
    right: calc(50% - 30px);
    position: absolute;
    top: calc(50% - 14px);
    transform: rotate(-90deg) translateY(-50%);
  }
}
.main_commu .center_text {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}
.main_commu .item_text {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}

.main_rebrading {
  background: #f4f6fa;
}
.main_rebrading .inner {
  align-items: center;
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 992px) {
  .main_rebrading .inner {
    flex-direction: column;
    gap: 30px;
  }
}
.main_rebrading .box {
  align-items: center;
  background: #1754ff;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 28px;
  height: 270px;
  justify-content: center;
  width: 270px;
}
.main_rebrading .box span {
  font-size: 48px;
}
@media (max-width: 1200px) {
  .main_rebrading .box {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .main_rebrading .box {
    gap: 10px;
    height: auto;
    padding: 20px;
    width: 100%;
  }
  .main_rebrading .box span {
    font-size: 28px;
  }
}
.main_rebrading .text {
  font-weight: 800;
  font-size: 48px;
  line-height: 70px;
}
.main_rebrading .text .mark {
  background: #1754ff;
  color: #fff;
  padding: 10px;
}
@media (max-width: 576px) {
  .main_rebrading .text .mark {
    padding: 5px;
  }
}
@media (max-width: 1200px) {
  .main_rebrading .text {
    font-size: 28px;
    line-height: 50px;
  }
  .main_rebrading .text br {
    display: none;
  }
}
@media (max-width: 992px) {
  .main_rebrading .text {
    text-align: center;
  }
  .main_rebrading .text br {
    display: block;
  }
}
@media (max-width: 576px) {
  .main_rebrading .text br {
    display: none;
  }
}

.main_branding {
  text-align: center;
}
.main_branding .sec_text .mark {
  display: inline-block;
  background: #1754ff;
  color: #fff;
  padding: 10px;
}
@media (max-width: 576px) {
  .main_branding .sec_text .mark {
    padding: 5px;
  }
}
.main_branding .list {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main_branding .list {
    flex-direction: column;
  }
}
.main_branding .item {
  width: 33.333333%;
}
.main_branding .item:nth-child(2) .round_list {
  background: #1754ff;
}
.main_branding .item:nth-child(2) .round_item {
  background: #fff;
  color: #000;
}
@media (max-width: 992px) {
  .main_branding .item {
    width: 100%;
  }
}
.main_branding .round_list {
  border: 2px solid #1754ff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 25px;
}
.main_branding .round_item {
  align-items: center;
  background: #1754ff;
  border-radius: 35px;
  color: #fff;
  display: flex;
  font-weight: 700;
  font-size: 28px;
  height: 70px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .main_branding .round_item {
    font-size: 24px;
  }
}
.main_card {
  background: #f4f6fa;
}
.main_card .swiper {
  overflow: visible;
}
.main_card .list {
  transition: transform 0.3s linear;
}
.main_card .item {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  display: flex;
  height: 670px;
  padding: 45px;
  width: 400px;
}
@media (max-width: 1200px) {
  .main_card .item {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .main_card .item {
    padding: 35px;
  }
}
.main_card .item:nth-child(1) .icon {
  height: 91px;
  width: 90px;
}
.main_card .item:nth-child(2) .icon {
  background-position-x: -90px;
  height: 67px;
  width: 88px;
}
.main_card .item:nth-child(3) .icon {
  background-position-x: -178px;
  height: 68px;
  width: 81px;
}
.main_card .item:nth-child(4) .icon {
  background-position-x: -259px;
  height: 74px;
  width: 71px;
}
.main_card .item:nth-child(5) .icon {
  background-position-x: -330px;
  height: 74px;
  width: 76px;
}
.main_card .item:nth-child(6) .icon {
  background-position-x: -406px;
  height: 84px;
  width: 82px;
}
.main_card .item:nth-child(7) .icon {
  background-position-x: -488px;
  height: 68px;
  width: 91px;
}
.main_card .item:nth-child(8) .icon {
  background-position-x: -579px;
  height: 75px;
  width: 69px;
}
.main_card .item:nth-child(9) .icon {
  background-position-x: -648px;
  height: 58px;
  width: 92px;
}
.main_card .item:nth-child(10) .icon {
  background-position-x: -740px;
  height: 75px;
  width: 75px;
}
.main_card .text_box {
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .main_card .text_box {
    height: 300px;
  }
}
.main_card .text {
  font-size: 28px;
  line-height: 40px;
  padding-bottom: 3px;
}
.main_card .text .color {
  border-bottom: 1px solid #1754ff;
}
@media (max-width: 1200px) {
  .main_card .text {
    font-size: 24px;
    line-height: 34px;
  }
}
.main_card .icon {
  background: url("../images/section05_icons.png");
}
@media (max-width: 576px) {
  .main_card .icon {
    margin-top: 20px;
    transform: scale(0.8);
  }
}
.main_card .swiper-scrollbar {
  background: #fff;
  border-radius: 0;
  bottom: auto;
  height: 10px;
  left: 0;
  position: relative;
}
.main_card .swiper-scrollbar-drag {
  background: #1754ff;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.main_reason .mark {
  padding-bottom: 7px;
  position: relative;
}
.main_reason .mark::before {
  background-color: #a9c0ff;
  bottom: 0;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .main_reason .mark::before {
    height: 15px;
  }
}
@media (max-width: 576px) {
  .main_reason .mark::before {
    display: none;
  }
  .main_reason .mark span {
    display: inline-block;
    position: relative;
  }
  .main_reason .mark span::before {
    background-color: #a9c0ff;
    bottom: 0;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}
.main_reason .list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}
.main_reason .item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 665px;
  overflow: hidden;
  padding: 50px 45px 0;
  width: calc(50% - 10px);
}
@media (max-width: 2100px) {
  .main_reason .item {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .main_reason .item {
    height: auto;
    padding: 45px 35px 0;
  }
}
@media (max-width: 768px) {
  .main_reason .item {
    width: 100%;
  }
}
.main_reason .cate {
  align-items: center;
  background-color: #1754ff;
  border-radius: 19px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 100px;
}
.main_reason .text {
  font-size: 28px;
  font-weight: 700;
  margin-top: auto;
  min-height: 6em;
}
@media (max-width: 1200px) {
  .main_reason .text {
    font-size: 24px;
  }
  .main_reason .text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .main_reason .text {
    min-height: 1px;
  }
}
.main_reason .img_wrap {
  display: flex;
  font-size: 0;
  justify-content: center;
  line-height: 1;
  margin: auto -50px 0;
}
.main_reason .img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.main_reason .mark_box {
  align-items: center;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #1754ff;
  border-radius: 20px;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  min-height: 100px;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1200px) {
  .main_reason .mark_box .mark {
    font-size: 24px;
    line-height: 34px;
  }
  .main_reason .mark_box .mark::before {
    height: 15px;
  }
}
@media (max-width: 768px) {
  .main_reason .mark_box .mark {
    text-align: center;
  }
  .main_reason .mark_box .mark::before {
    display: none;
  }
  .main_reason .mark_box .mark span {
    display: inline-block;
    position: relative;
  }
  .main_reason .mark_box .mark span::before {
    background-color: #a9c0ff;
    bottom: 0;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}
.main_marketing {
  background-color: #f4f6fa;
}
.main_marketing .cont {
  margin: 0 auto;
  max-width: 1820px;
  position: relative;
}
.main_marketing .pt190 {
  margin: 0 -60px -60px;
  overflow: clip;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .main_marketing .pt190 {
    padding-top: 80px;
  }
}
.main_marketing .box_wrap {
  height: 450px;
  position: relative;
}
@media (max-width: 1200px) {
  .main_marketing .box_wrap {
    height: auto;
  }
}
.main_marketing .box_inner {
  height: 100%;
  position: relative;
}
@media (min-width: 1201px) {
  .main_marketing .box_inner {
    transform: none !important;
  }
}
@media (max-width: 1200px) {
  .main_marketing .box_inner {
    display: flex;
  }
}
.main_marketing .box {
  border-radius: 20px;
  box-shadow: 0 0 55px rgba(23, 84, 255, 0.13);
  display: flex;
  height: 100%;
  justify-content: space-between;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: transform;
}
@media (max-width: 1200px) {
  .main_marketing .box {
    flex-shrink: 0;
    height: auto;
    opacity: 1 !important;
    position: relative;
  }
}
@media (max-width: 992px) {
  .main_marketing .box {
    flex-direction: column-reverse;
  }
}
.main_marketing .box:nth-child(1) {
  opacity: 1 !important;
}
.main_marketing .box:nth-child(1) .left {
  background-color: #1754ff;
  color: #fff;
}
.main_marketing .box:nth-child(2) .left {
  background-color: #ffcc00;
}
.main_marketing .box:nth-child(3) .left {
  background-color: #4748fc;
  color: #fff;
}
.main_marketing .box:nth-child(4) .left {
  background-color: #6c58ca;
  color: #fff;
}
.main_marketing .box:nth-child(5) .left {
  background-color: #c6255d;
  color: #fff;
}
.main_marketing .box:nth-child(6) .left {
  background-color: #065a8d;
  color: #fff;
}
.main_marketing .box:nth-child(7) .left {
  background-color: #000;
  color: #fff;
}
.main_marketing .box:nth-child(8) .left {
  background-color: #fff;
}
.main_marketing .left {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  padding-left: 50px;
  position: relative;
  width: 360px;
}
.main_marketing .left::after {
  background: url("../images/section07_icon.png");
  content: "";
  height: 26px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 54px;
}
.main_marketing .left .list {
  margin-top: 45px;
}
.main_marketing .left .list .item {
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
  position: relative;
}
.main_marketing .left .list .item::before {
  content: "·";
}
.main_marketing .left .list .item:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .main_marketing .left {
    flex-shrink: 1;
    height: 100%;
    padding: 45px 35px;
    width: 100%;
  }
  .main_marketing .left::after {
    display: none;
  }
}
.main_marketing .box_title {
  font-size: 28px;
  font-weight: 800;
}
@media (max-width: 1200px) {
  .main_marketing .box_title {
    font-size: 24px;
  }
}
.main_marketing .box_text {
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}
.main_marketing .right {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .main_marketing .right {
    flex-shrink: 0;
    height: 300px;
  }
}
.main_marketing .img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.main_marketing .paging {
  right: 50px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.main_marketing .paging .list {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
.main_marketing .paging .list .item {
  margin-top: 30px;
}
.main_marketing .paging .list .item:first-child {
  margin-top: 0;
}
.main_marketing .paging .list .item .link {
  align-items: center;
  display: flex;
  gap: 0 10px;
  transition: color 0.3s ease;
}
.main_marketing .paging .list .item .link::after {
  background-color: #555;
  content: "";
  display: block;
  height: 5px;
  width: 50px;
  transition: background-color 0.3s ease;
}
.main_marketing .paging .list .item .link:hover, .main_marketing .paging .list .item .link.active {
  color: #1754ff;
}
.main_marketing .paging .list .item .link:hover::after, .main_marketing .paging .list .item .link.active::after {
  background-color: #1754ff;
}
@media (max-width: 1800px) {
  .main_marketing .paging {
    display: none;
  }
}
.main_marketing .swiper-scrollbar {
  background: #fff;
  bottom: auto;
  display: none;
  height: 10px;
  left: 0;
  margin-right: 30px;
  position: relative;
  top: auto;
  width: 100%;
}
.main_marketing .swiper-scrollbar-drag {
  background: #1754ff;
  border-radius: 0;
}
@media (max-width: 1200px) {
  .main_marketing .swiper-scrollbar {
    display: block;
  }
}
.main_org .img_wrap {
  font-size: 0;
  line-height: 1;
}
.main_org .img {
  width: 100%;
}

.main_graph {
  background-color: #f4f6fa;
  text-align: center;
}
.main_graph .big_title {
  font-size: 70px;
}
@media (max-width: 1200px) {
  .main_graph .big_title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .main_graph .big_title {
    font-size: 36px;
  }
}
.main_graph .list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .main_graph .list {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .main_graph .list {
    flex-direction: column;
  }
}
.main_graph .item {
  border: 1px solid #000;
  border-radius: 20px;
  overflow: hidden;
  width: calc(50% - 25px);
}
@media (max-width: 992px) {
  .main_graph .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 576px) {
  .main_graph .item {
    width: 100%;
  }
}
.main_graph .img {
  width: 100%;
}

.main_video .swiper {
  padding-top: 44.444444%;
  position: relative;
}
@media (max-width: 768px) {
  .main_video .swiper {
    padding-top: 51.444444444%;
  }
}
.main_video .list {
  align-items: center;
  left: 0;
  position: absolute;
  top: 0;
}
.main_video .item {
  height: auto;
}
.main_video .link {
  display: block;
  font-size: 0;
  line-height: 1;
  position: relative;
}
.main_video .link::after {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  display: block;
  left: 50%;
  top: 50%;
  padding-top: 80px;
  position: absolute;
  width: 80px;
  transform: translate(-50%, -50%);
}
.main_video .link::before {
  border-bottom: 20px solid transparent;
  border-left: 35px solid #fff;
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  content: "";
  display: block;
  left: calc(50% + 15px);
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .main_video .link::after {
    padding-top: 40px;
    width: 40px;
  }
  .main_video .link::before {
    border-width: 10px 10px 10px 20px;
    left: calc(50% + 8px);
  }
}
.main_video .img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.main_video .item {
  border-radius: 20px;
  filter: grayscale(1) opacity(0.3);
  opacity: 0;
  overflow: hidden;
  transform: scale(1.5);
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .main_video .item {
    border-radius: 10px;
  }
}
.main_video .swiper-slide-prev {
  opacity: 1;
  transform: scale(1.5) translateX(17%);
}
.main_video .swiper-slide-next {
  opacity: 1;
  transform: scale(1.5) translateX(-17%);
}
.main_video .swiper-slide-active {
  filter: grayscale(0) opacity(1);
  opacity: 1;
  transform: scale(2.15);
  z-index: 10;
}
@media (max-width: 768px) {
  .main_video .swiper-slide-active {
    transform: scale(2.5);
  }
}
.main_video .swiper-scrollbar {
  background: #f4f6fa;
  bottom: auto;
  height: 10px;
  left: 0;
  margin-right: 30px;
  position: relative;
  top: auto;
  width: 100%;
}
.main_video .swiper-scrollbar-drag {
  background: #1754ff;
  border-radius: 0;
}

.video_pop {
  left: 50%;
  max-width: 1000px;
  opacity: 0;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  width: 96%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}
.video_pop.show {
  opacity: 1;
  visibility: visible;
}
.video_pop .pop_close {
  height: 30px;
  position: absolute;
  right: 2%;
  top: -10px;
  transform: rotate(45deg) translate(-50%, -100%);
  width: 30px;
}
.video_pop .pop_close::before, .video_pop .pop_close::after {
  background-color: #fff;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
}
.video_pop .pop_close::before {
  height: 2px;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.video_pop .pop_close::after {
  height: 100%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.video_pop .video_box {
  padding-top: 56.25%;
  position: relative;
}
.video_pop .video_box iframe {
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.mask {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}
.mask.show {
  opacity: 1;
  visibility: visible;
}

.main_check .sec_title .icon {
  background: url("../images/main_icons.png") no-repeat 0 -58px;
  display: inline-block;
  height: 59px;
  margin-left: 7px;
  width: 59px;
  vertical-align: text-bottom;
}
@media (max-width: 576px) {
  .main_check .sec_title .icon {
    margin: -5px 0 -8px;
  }
}
.main_check .sec_text .color {
  position: relative;
}
.main_check .sec_text .color::before {
  background: url("../images/main_marketing_line.png") no-repeat center center/100% auto;
  bottom: -20px;
  content: "";
  height: 17px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 300px;
}
@media (max-width: 576px) {
  .main_check .sec_text .color::before {
    width: 200px;
  }
}
.main_check .item {
  align-items: center;
  background-color: #f4f6fa;
  border: 1px solid #1754ff;
  border-radius: 20px;
  display: flex;
  margin-top: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main_check .item {
    flex-direction: column;
  }
}
.main_check .item:first-child {
  margin-top: 0;
}
.main_check .item:nth-child(even) {
  background-color: #1754ff;
}
.main_check .item:nth-child(even) .cate {
  color: #fff;
}
.main_check .item:nth-child(even) .text {
  color: #fff;
}
.main_check .item:nth-child(1) .icon {
  height: 42px;
  width: 41px;
}
.main_check .item:nth-child(2) .icon {
  background-position-x: -41px;
  height: 46px;
  width: 70px;
  vertical-align: middle;
}
.main_check .item:nth-child(3) .icon {
  background-position-x: -111px;
  height: 68px;
  width: 57px;
  margin-top: -30px;
}
@media (max-width: 576px) {
  .main_check .item:nth-child(3) .icon {
    margin: -20px 0 -16px 5px;
  }
}
.main_check .left {
  min-width: 440px;
  padding: 50px;
  width: 53.33333333%;
}
@media (max-width: 992px) {
  .main_check .left {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .main_check .left {
    min-width: 1px;
    width: 100%;
  }
}
.main_check .cate {
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .main_check .cate {
    font-size: 24px;
  }
}
.main_check .text {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 1200px) {
  .main_check .text {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .main_check .text br {
    display: none;
  }
}
.main_check .icon {
  background: url("../images/section11_icons.png");
  display: inline-block;
  margin-left: 10px;
  vertical-align: text-bottom;
}
@media (max-width: 576px) {
  .main_check .icon {
    transform: scale(0.6);
    margin: -5px 0 -8px 5px;
  }
}
.main_check .right {
  display: flex;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
  width: 46.66666667%;
  min-width: 400px;
}
@media (max-width: 768px) {
  .main_check .right {
    width: 100%;
    min-width: 1px;
  }
}
.main_check .img {
  height: 100%;
}
@media (max-width: 768px) {
  .main_check .img {
    height: auto;
    max-width: 100%;
  }
}
.main_meeting {
  align-items: center;
  background: #1754ff;
  display: flex;
  height: 560px;
  position: relative;
}
@media (max-width: 992px) {
  .main_meeting {
    height: auto;
    padding: 100px 0;
  }
}
.main_meeting::after {
  content: "";
  right: 0;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("../images/section12_img.jpg") no-repeat 0 0/cover;
}
.main_meeting .inner {
  position: relative;
  z-index: 2;
}
.main_meeting .title {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
}
@media (max-width: 2100px) {
  .main_meeting .title {
    font-size: 58px;
  }
}
@media (max-width: 1200px) {
  .main_meeting .title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .main_meeting .title {
    font-size: 34px;
  }
}
.main_meeting .box {
  align-items: center;
  background-color: #fff;
  display: flex;
  gap: 20px;
  height: 135px;
  max-width: 825px;
  padding: 0 45px;
}
.main_meeting .box .title {
  color: #000;
}
@media (max-width: 1200px) {
  .main_meeting .box {
    height: auto;
    max-width: 565px;
    padding: 25px 50px 25px 20px;
  }
}
@media (max-width: 576px) {
  .main_meeting .box {
    gap: 0;
    margin-right: -20px;
    padding: 20px 20px 20px 20px;
  }
  .main_meeting .box .title {
    font-size: 28px;
  }
}
.main_meeting .icon {
  background: url("../images/main_icons.png") no-repeat -59px -58px;
  display: inline-block;
  height: 69px;
  width: 48px;
}
@media (max-width: 576px) {
  .main_meeting .icon {
    transform: scale(0.5);
  }
}

.main_visit .item {
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 28px;
  font-weight: 700;
  justify-content: space-between;
  line-height: 45px;
  margin-top: 50px;
  min-height: 140px;
  padding: 40px 100px;
  text-align: center;
}
.main_visit .item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 35px;
  width: 36px;
  background: url("../images/main_icons.png") no-repeat -107px -59px;
}
.main_visit .item::after {
  content: "";
  display: block;
  width: 36px;
}
@media (max-width: 1200px) {
  .main_visit .item {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 992px) {
  .main_visit .item {
    padding: 40px 35px;
  }
}
@media (max-width: 768px) {
  .main_visit .item {
    flex-direction: column;
    gap: 30px;
  }
  .main_visit .item::after {
    display: none;
  }
  .main_visit .item br {
    display: none;
  }
}
.main_visit .big_title {
  font-size: 70px;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 1200px) {
  .main_visit .big_title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .main_visit .big_title {
    font-size: 36px;
  }
}
.main_visit .mark {
  display: inline-block;
  background-color: #1754ff;
  color: #fff;
  padding: 5px 10px;
}

.consulting {
  background-color: #1754ff;
  margin-top: 410px;
}
@media (max-width: 1200px) {
  .consulting {
    margin-top: 300px;
  }
}
@media (max-width: 768px) {
  .consulting {
    margin-top: 200px;
  }
}
.consulting .inner {
  padding-top: 1px;
}
.consulting .title {
  color: #1754ff;
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  margin-top: -121px;
  text-align: center;
}
@media (max-width: 2100px) {
  .consulting .title {
    font-size: 120px;
    margin-top: -99px;
  }
}
@media (max-width: 1200px) {
  .consulting .title {
    font-size: 120px;
    margin-top: -100px;
  }
}
@media (max-width: 992px) {
  .consulting .title {
    font-size: 100px;
    margin-top: -84px;
  }
}
@media (max-width: 768px) {
  .consulting .title {
    font-size: 60px;
    margin-top: -48px;
  }
}
@media (max-width: 576px) {
  .consulting .title {
    font-size: 48px;
    margin-top: -41px;
  }
}
.consulting .sec_text {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  padding: 35px 0;
}
.consulting .sec_title {
  color: #fff;
  font-weight: 700;
}
.consulting .big_title {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  text-align: center;
}
.consulting .big_title .mark {
  display: inline-block;
  background-color: #fff;
  color: #1754ff;
  line-height: 1.1;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .consulting .big_title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .consulting .big_title {
    font-size: 36px;
  }
}
.consulting .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.consulting .item {
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  height: 97px;
  padding: 30px 35px;
  width: 100%;
}
.consulting .item.half {
  width: calc(50% - 10px);
}
.consulting .item.textarea {
  align-items: flex-start;
  flex-direction: column;
  height: 350px;
}
@media (max-width: 992px) {
  .consulting .item {
    height: auto;
    padding: 20px 25px;
  }
  .consulting .item.half {
    width: 100%;
  }
}
.consulting label {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .consulting label {
    font-size: 24px;
  }
}
.consulting input {
  border: 0;
  font-size: 28px;
  font-weight: 500;
  height: 100%;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1200px) {
  .consulting input {
    font-size: 24px;
  }
}
.consulting textarea {
  border: 0;
  font-size: 28px;
  font-weight: 500;
  height: 100%;
  resize: none;
  width: 100%;
}
@media (max-width: 1200px) {
  .consulting textarea {
    font-size: 24px;
  }
}
.consulting .prive {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  padding: 30px 35px;
}
.consulting .prive div {
  font-size: 18px;
}
@media (max-width: 992px) {
  .consulting .prive {
    padding: 20px 25px;
  }
}
.consulting .chk {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.consulting .chk_input {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.consulting .chk_input:checked ~ .chk_label::before {
  background: url("../images/form_icon.png") no-repeat #fff 50% 50%;
}
.consulting .chk_label {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  gap: 0 15px;
  position: relative;
}
.consulting .chk_label::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
}
@media (max-width: 992px) {
  .consulting .chk_label::before {
    width: 25px;
    height: 25px;
  }
}
.consulting .btn {
  background-color: #000;
  border: 0;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  height: 97px;
  margin-left: auto;
  margin-right: auto;
  width: 315px;
}
@media (max-width: 1200px) {
  .consulting .btn {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .consulting .btn {
    height: auto;
    padding: 20px 25px;
  }
}
.port_visual {
  align-items: flex-end;
  background-color: #1754ff;
  display: flex;
  height: 100vh;
  justify-content: flex-end;
  max-height: 830px;
  overflow: hidden;
  padding-bottom: 140px;
  position: relative;
}
.port_visual .inner {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.port_visual .cont {
  position: relative;
  margin: 0 auto;
  max-width: 1820px;
  width: 100%;
}
.port_visual .title {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
}
.port_visual .title .color {
  color: #ff8a00;
}
.port_visual .text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.port_visual .img_wrap {
  font-size: 0;
  line-height: 1;
  position: absolute;
}
.port_visual .img_wrap.img1 {
  left: 50%;
  top: -10px;
  margin-left: -1100px;
  max-width: 952px;
  width: 100%;
}
@media (min-width: 1201px) {
  .port_visual .img_wrap.img1.on {
    animation: img_ani1 0.8s ease forwards;
  }
}
.port_visual .img_wrap.img2 {
  bottom: -100px;
  right: 100px;
  width: 359px;
}
.port_visual .img_wrap.img2.on {
  animation: img_ani2 0.8s ease forwards;
}
.port_visual .img_wrap img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .port_visual {
    align-items: center;
    padding-bottom: 0;
  }
  .port_visual .inner {
    align-items: center;
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .port_visual .img_wrap.img1 {
    top: 50%;
    margin-left: -50px;
    opacity: 0.7;
  }
  .port_visual .img_wrap.img1.on {
    animation: mobile_ani 0.8s ease forwards;
  }
  .port_visual .img_wrap.img2 {
    display: none;
  }
}
@media (max-width: 992px) {
  .port_visual .title {
    font-size: 28px;
  }
  .port_visual .text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .port_visual .cont {
    height: 100%;
  }
  .port_visual .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}
@media (max-width: 576px) {
  .port_visual .img_wrap.img1 {
    width: 150%;
    margin-left: 0;
  }
}

@keyframes img_ani1 {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(0);
  }
}
@keyframes img_ani2 {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(0);
  }
}
@keyframes img_ani3 {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translate(50px, -50%);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translate(0, -50%);
  }
}
@keyframes mobile_ani {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translate(-50%, -50%);
  }
}
.port_top {
  background-color: #0030b6;
  color: #fff;
}
.port_top .sec_title {
  font-weight: 700;
  line-height: 70px;
}
@media (max-width: 1200px) {
  .port_top .sec_title {
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .port_top br {
    display: none;
  }
}
.port_title_wrap {
  border-bottom: 1px solid #e5e5e5;
}
.port_title_wrap .sec_title {
  line-height: 70px;
}
.port_title_wrap .color {
  padding-bottom: 7px;
  position: relative;
}
.port_title_wrap .color::before {
  background-color: #eef2ff;
  bottom: 0;
  content: "";
  height: 34px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .port_title_wrap .color::before {
    height: 15px;
  }
}
@media (max-width: 768px) {
  .port_title_wrap .color::before {
    display: none;
  }
  .port_title_wrap .color span {
    display: inline-block;
    position: relative;
  }
  .port_title_wrap .color span::before {
    background-color: #a9c0ff;
    bottom: 5px;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}
@media (max-width: 1200px) {
  .port_title_wrap .sec_title {
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .port_title_wrap .sec_title {
    font-size: 29px;
  }
  .port_title_wrap br {
    display: none;
  }
}

.port_make .box_wrap {
  display: flex;
  gap: 50px;
}
.port_make .box {
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 50%;
}
.port_make .box:first-child .icon {
  height: 44px;
  width: 45px;
}
.port_make .box:last-child .icon {
  height: 56px;
  width: 60px;
  background-position-x: -45px;
}
.port_make .img_wrap {
  overflow: hidden;
}
.port_make .img_wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.port_make .text_wrap {
  padding: 50px;
}
.port_make .top {
  align-items: center;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.port_make .cate {
  font-size: 18px;
}
.port_make .title {
  font-size: 28px;
  font-weight: 800;
  margin-top: 12px;
}
.port_make .icon {
  background: url("../images/portfolio_icons.png") no-repeat;
}
.port_make .text {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .port_make .title {
    font-size: 24px;
  }
  .port_make .text br {
    display: none;
  }
}
@media (max-width: 992px) {
  .port_make .box_wrap {
    gap: 30px;
  }
  .port_make .box {
    width: calc(50% - 15px);
  }
  .port_make .text_wrap {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .port_make .box_wrap {
    flex-direction: column;
  }
  .port_make .box {
    width: 100%;
  }
  .port_make .img_wrap {
    height: 200px;
  }
}
.port_seo .cate {
  background-color: #e60500;
  border-radius: 25px;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 115px;
}
.port_seo .img_wrap {
  font-size: 0;
  line-height: 1;
}
.port_seo .img_wrap img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .port_seo .cate {
    font-size: 24px;
    line-height: 36px;
    width: 90px;
  }
}
@media (max-width: 992px) {
  .port_seo .img_wrap {
    margin-left: -50px;
  }
}
.port_site {
  background-color: #f4f6fa;
  overflow: hidden;
  position: relative;
}
.port_site .port_inner {
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
}
.port_site .inner {
  position: relative;
  z-index: 5;
}
.port_site .sec_title {
  text-align: left;
}
.port_site .sec_text {
  text-align: left;
}
.port_site .img_wrap {
  position: absolute;
  right: -137px;
  top: 50%;
  transform: translateY(-50%);
}
.port_site .img_wrap.on {
  animation: img_ani3 0.8s ease forwards;
}
.port_site .img_wrap img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.port_site .img_wrap::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 1260px;
  left: 50px;
  position: absolute;
  top: 50%;
  width: 1263px;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .port_site .img_wrap {
    left: 50%;
    right: auto;
    width: 855px;
  }
}
@media (max-width: 992px) {
  .port_site::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .port_site .inner {
    color: #fff;
  }
  .port_site .sec_title .color {
    background-color: #1754ff;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 20px;
  }
  .port_site .sec_title,
  .port_site .sec_text {
    text-align: center;
  }
  .port_site .port_inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    text-align: center;
  }
  .port_site .img_wrap {
    opacity: 0.7;
    padding: 0 30px;
    width: 100%;
  }
  .port_site .img_wrap.on {
    animation: mobile_ani 0.8s ease forwards;
  }
  .port_site .img_wrap::before {
    display: none;
  }
  .port_site .mt195 {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .port_site .sec_text br {
    display: none;
  }
}

.port_frame .img_wrap {
  font-size: 0;
  line-height: 1;
  text-align: center;
}
.port_frame .img_wrap img {
  max-width: 100%;
}

.port_change .top {
  background-color: #1754ff;
  border-radius: 50px;
  margin: 0 auto;
  max-width: 1820px;
  width: 100%;
}
.port_change .top .sec_title {
  color: #fff;
  text-align: left;
}
.port_change .top .sec_text {
  color: #fff;
  text-align: left;
}
@media (max-width: 1820px) {
  .port_change .top {
    border-radius: 0;
  }
}
.port_change .box {
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  min-height: 130px;
  padding: 35px 50px;
  transform: translateY(-50%);
}
.port_change .box .icon {
  height: 58px;
  width: 57px;
  background: url("../images/portfolio_icons.png") no-repeat -105px 0;
}
@media (max-width: 1200px) {
  .port_change .box {
    min-height: 1px;
  }
  .port_change .box .icon {
    transform: scale(0.7);
  }
}
.port_change .item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.port_change .arrow {
  font-size: 0;
  flex-shrink: 0;
  line-height: 1;
  margin-left: -20px;
  text-align: center;
}
.port_change .arrow img {
  max-width: 100%;
}
.port_change .gray_box {
  align-items: center;
  align-self: stretch;
  background-color: #f4f6fa;
  border-radius: 10px;
  display: flex;
  font-size: 25px;
  flex-shrink: 0;
  font-weight: 800;
  max-width: 430px;
  min-height: 180px;
  padding: 35px;
  width: 50%;
}
.port_change .blue_box {
  background-color: #1754ff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 430px;
  min-height: 180px;
  padding: 35px;
  width: 50%;
}
.port_change .blue_item {
  color: #fff;
  font-size: 25px;
  margin-top: 15px;
}
.port_change .blue_item:first-child {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .port_change .gray_box {
    font-size: 20px;
    min-height: 1px;
  }
  .port_change .blue_box {
    min-height: 1px;
  }
  .port_change .blue_item {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .port_change .list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
  }
  .port_change .item {
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
    width: calc(50% - 15px);
  }
  .port_change .gray_box {
    align-self: center;
    width: 100%;
  }
  .port_change .arrow {
    height: 70px;
    margin-left: 0;
    transform: translateX(-50%) rotate(90deg);
    width: 70px;
  }
  .port_change .blue_box {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .port_change .box {
    flex-direction: column-reverse;
    gap: 15px;
    margin-top: -40px;
    transform: none;
  }
  .port_change .item {
    width: 100%;
  }
  .port_change .gray_box br {
    display: none;
  }
}
@media (max-width: 576px) {
  .port_change .blue_item {
    font-size: 18px;
  }
}

.port_bagic {
  background-color: #f4f6fa;
}
.port_bagic .sec_title {
  text-align: left;
}
.port_bagic .sec_text {
  text-align: left;
}
.port_bagic .list {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
}
.port_bagic .item {
  text-align: center;
  width: calc(50% - 27.5px);
}
.port_bagic .text {
  font-size: 25px;
}
.port_bagic .round {
  align-items: center;
  background-color: #1754ff;
  border-radius: 30px;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  justify-content: center;
  margin: 20px auto 0;
  max-width: 395px;
  min-height: 58px;
  text-align: center;
}
@media (max-width: 1200px) {
  .port_bagic .round {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .port_bagic .sec_title {
    text-align: center;
  }
  .port_bagic .sec_text {
    text-align: center;
  }
  .port_bagic .list {
    gap: 30px;
  }
  .port_bagic .item {
    width: 100%;
  }
}
.port_free {
  background-color: #001348;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.port_free::after {
  background: url("../images/portfolio_free_bg.jpg") no-repeat;
  content: "";
  height: 592px;
  position: absolute;
  right: -47px;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 603px;
}
.port_free .inner {
  position: relative;
  width: auto;
  z-index: 3;
}
.port_free .line_box {
  display: flex;
  height: 100%;
  justify-content: space-between;
  left: 50%;
  max-width: 1080px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
.port_free .line_box .line {
  background-color: #fff;
  height: 100%;
  opacity: 0.5;
  width: 1px;
}
.port_free .big_title {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
}
.port_free .big_title .color {
  color: #ff8a00;
}
.port_free .sec_text {
  color: #fff;
  line-height: 45px;
  text-align: left;
}
.port_free .btn {
  background-color: #1754ff;
  border-radius: 25px;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 800;
  height: 45px;
  line-height: 45px;
  max-width: 225px;
  text-align: center;
}
@media (max-width: 1200px) {
  .port_free .big_title {
    font-size: 48px;
  }
  .port_free .sec_text {
    line-height: 34px;
  }
}
@media (max-width: 992px) {
  .port_free::after {
    background-position: center center;
    background-size: 100% auto;
    height: 100%;
    opacity: 0.7;
    max-width: 100%;
  }
  .port_free .inner {
    padding-top: 0;
  }
  .port_free br {
    display: none;
  }
  .port_free .big_title {
    font-size: 36px;
  }
}
.port_about .box_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.port_about .box {
  border: 1px solid #000;
  border-radius: 20px;
  min-height: 700px;
  padding: 50px;
  position: relative;
  width: calc(50% - 25px);
}
.port_about .box::after {
  background: url("../images/portfolio_sence_bg.png") no-repeat #fff;
  content: "";
  height: 50px;
  position: absolute;
  right: -2px;
  top: -3px;
  width: 50px;
}
.port_about .box:nth-child(1) .icon {
  background-position-x: -379px;
  width: 30px;
}
.port_about .box:nth-child(2) .icon {
  background-position-x: -409px;
  height: 34px;
  width: 47px;
}
.port_about .box:nth-child(3) .icon {
  background-position-x: -456px;
  height: 30px;
  width: 40px;
}
.port_about .box:nth-child(4) .icon {
  background-position-x: -496px;
  height: 31px;
  width: 40px;
}
.port_about .title {
  align-items: center;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  text-align: center;
}
.port_about .icon {
  background: url("../images/portfolio_icons.png") no-repeat;
  height: 48px;
}
.port_about .cate {
  display: block;
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}
.port_about .item {
  align-items: center;
  border-bottom: 1px solid #000;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 20px;
  min-height: 95px;
}
.port_about .item:first-child {
  border-top: 1px solid #000;
}
.port_about .item span {
  font-size: 28px;
}
@media (max-width: 1200px) {
  .port_about .box_wrap {
    gap: 30px;
  }
  .port_about .box {
    min-height: 1px;
    padding: 50px 30px;
    width: calc(50% - 15px);
  }
  .port_about .title {
    font-size: 24px;
  }
  .port_about .item {
    min-height: 1px;
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .port_about .box {
    width: 100%;
  }
}
.port_list .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.port_list .item {
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.333333333% - 13.3333333333px);
}
.port_list .link {
  display: block;
  padding-top: 100%;
  position: relative;
}
.port_list .img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.port_list .paging {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.port_list .paging .btn {
  align-items: center;
  background-color: #dddddd;
  border-radius: 3px;
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  width: 30px;
  transition: background 0.3s ease;
}
.port_list .paging .btn:hover {
  background-color: #1754ff;
}
.port_list .paging .btn.current {
  background-color: #1754ff;
}
.port_list .paging .btn.arrow {
  background-color: transparent;
  border: 1px solid #555555;
}
.port_list .paging .btn.arrow::before {
  border-bottom: 5px solid transparent;
  border-radius: 2px;
  border-top: 5px solid transparent;
  content: "";
  display: block;
}
.port_list .paging .btn.arrow.prev::before {
  border-right: 7px solid #555555;
}
.port_list .paging .btn.arrow.next::before {
  border-left: 7px solid #555555;
}
@media (max-width: 992px) {
  .port_list .item {
    width: calc(50% - 10px);
  }
}
.video_visual {
  align-items: center;
  background: url("../images/portfolio_colorBg.jpg") no-repeat center center/cover;
  display: flex;
  height: 100vh;
  max-height: 835px;
  text-align: center;
}
.video_visual .title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}
.video_visual .text {
  font-size: 28px;
  color: #fff;
}
.video_visual .text span {
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  margin: 0 5px;
  padding: 10px 30px;
}
@media (max-width: 992px) {
  .video_visual .title {
    font-size: 28px;
  }
  .video_visual .text {
    font-size: 24px;
  }
  .video_visual .text span {
    margin: 15px 5px;
  }
}
@media (max-width: 768px) {
  .video_visual {
    height: auto;
    padding: 100px 0;
  }
  .video_visual .title br {
    display: none;
  }
  .video_visual .text {
    margin-top: 50px;
  }
  .video_visual .text span {
    display: block;
    margin: 20px 0;
  }
}
.video_top {
  background: url("../images/portfolio_photoBg.jpg") #000 no-repeat right center;
  color: #fff;
}
.video_top .inner > .sec_title {
  align-items: center;
  display: flex;
  font-weight: 700;
  justify-content: center;
}
.video_top .inner > .sec_title::before, .video_top .inner > .sec_title::after {
  content: "";
  display: block;
  height: 120px;
  width: 50px;
}
.video_top .inner > .sec_title::before {
  background: url("../images/video_top_box1.png") no-repeat 0 center/100% 100%;
}
.video_top .inner > .sec_title::after {
  background: url("../images/video_top_box2.png") no-repeat 0 center/100% 100%;
}
.video_top .inner > .sec_title .color {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .video_top .inner > .sec_title::before, .video_top .inner > .sec_title::after {
    width: 30px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .video_top .inner > .sec_title::before, .video_top .inner > .sec_title::after {
    width: 20px;
    height: 100px;
  }
}
.video_top .color {
  color: #77fffa;
}
.video_top .sec_text {
  line-height: 60px;
}
.video_top .sec_text .color {
  font-weight: 700;
}
.video_top .sec_text .sec_title {
  font-weight: 700;
}
.video_top .sec_text .sec_title span {
  display: inline-block;
  margin-top: 20px;
  position: relative;
}
.video_top .sec_text .sec_title span::before {
  content: "";
  position: absolute;
}
.video_top .sec_text .sec_title span:first-child::before {
  background: url("../images/video_top_text_line.png") no-repeat 0 0/100% auto;
  bottom: -30px;
  height: 24px;
  left: 50%;
  width: 152px;
  transform: translateX(-50%);
}
.video_top .sec_text .sec_title span:last-child::before {
  background: url("../images/video_top_text_line2.png") no-repeat 0 center/100% auto;
  top: 50%;
  height: 92px;
  left: 50%;
  width: 148px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .video_top .sec_text {
    line-height: 45px;
  }
  .video_top .sec_text .sec_title span:first-child::before {
    width: 100px;
  }
  .video_top .sec_text .sec_title span:last-child::before {
    width: 110px;
  }
}
@media (max-width: 768px) {
  .video_top .sec_text br {
    display: none;
  }
}
@media (max-width: 576px) {
  .video_top .sec_text .sec_title span:first-child::before {
    width: 90px;
    bottom: -20px;
  }
  .video_top .sec_text .sec_title span:last-child::before {
    width: 80px;
  }
}

.video_expert .sec_text {
  line-height: 45px;
}
.video_expert .list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.video_expert .item {
  width: calc(50% - 25px);
}
.video_expert .img_wrap {
  border-radius: 20px;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
}
.video_expert .img_wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.video_expert .title {
  font-size: 28px;
  font-weight: 800;
  margin-top: 45px;
}
.video_expert .text {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .video_expert .sec_text {
    line-height: 35px;
  }
  .video_expert .title {
    font-size: 24px;
    margin-top: 35px;
  }
}
@media (max-width: 992px) {
  .video_expert .list {
    gap: 50px 30px;
  }
  .video_expert .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 576px) {
  .video_expert .item {
    width: 100%;
  }
}

.video_qulity {
  background-color: #f4f6fa;
}
.video_qulity .box {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
.video_qulity .box .sec_text {
  border-bottom: 1px solid #1754ff;
  display: inline-block;
}
@media (max-width: 768px) {
  .video_qulity .box .sec_text {
    border-bottom: 0;
  }
  .video_qulity .box .sec_text span {
    border-bottom: 1px solid #1754ff;
  }
}
.video_qulity .box .sec_title {
  display: inline-block;
  position: relative;
}
.video_qulity .box .sec_title::after {
  background: url("../images//portfolio_make_mark2.png") no-repeat 0 0/100% auto;
  content: "";
  height: 62px;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: translate(100%, -100%);
  width: 77px;
}
.video_qulity .box .sec_title span {
  position: relative;
}
.video_qulity .box .sec_title span::before {
  background: url("../images//portfolio_make_mark.png") no-repeat 0 center/100% auto;
  content: "";
  height: 99px;
  left: calc(50% + 10px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 288px;
}
@media (max-width: 1200px) {
  .video_qulity .box .sec_title span::before {
    opacity: 0.6;
    width: 180px;
  }
}
@media (max-width: 576px) {
  .video_qulity .box .sec_title::after {
    bottom: -10px;
    right: 20px;
    top: auto;
    width: 47px;
  }
  .video_qulity .box .sec_title span::before {
    width: 140px;
  }
}
.video_qulity .img_wrap {
  font-size: 0;
  line-height: 1;
  text-align: center;
}
.video_qulity .img_wrap img {
  max-width: 100%;
}

.video_process {
  background-color: #f4f6fa;
}
.video_process .list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.video_process .item {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 50px 50px 0;
  width: calc(50% - 25px);
}
.video_process .item:nth-child(3), .video_process .item:nth-child(4) {
  flex-direction: column-reverse;
  padding: 0 50px 50px;
}
.video_process .item:nth-child(3) .img_wrap, .video_process .item:nth-child(4) .img_wrap {
  margin: 0 -50px 25px;
}
.video_process .cate {
  background-color: #1754ff;
  border-radius: 25px;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 800;
  max-width: 125px;
  line-height: 42px;
  text-align: center;
}
.video_process .text {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 25px;
  min-height: 120px;
}
.video_process .img_wrap {
  font-size: 0;
  line-height: 1;
  margin: 25px -50px 0;
  overflow: hidden;
}
.video_process .img_wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1200px) {
  .video_process .cate {
    font-size: 24px;
  }
  .video_process .text {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .video_process .list {
    gap: 30px;
  }
  .video_process .item {
    padding: 30px 30px 0;
    width: calc(50% - 15px);
  }
  .video_process .item:nth-child(3), .video_process .item:nth-child(4) {
    flex-direction: column-reverse;
    padding: 0 30px 30px;
  }
  .video_process .item:nth-child(3) .img_wrap, .video_process .item:nth-child(4) .img_wrap {
    margin: 0 -30px 25px;
  }
  .video_process .img_wrap {
    margin: 25px -30px 0;
  }
  .video_process .text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .video_process .item {
    width: 100%;
  }
  .video_process .item:nth-child(3) .img_wrap img, .video_process .item:nth-child(4) .img_wrap img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .video_process .img_wrap {
    height: 250px;
  }
  .video_process .img_wrap img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.footer {
  background-color: #000;
}
@media (max-width: 1200px) {
  .footer {
    padding-bottom: 182px;
  }
}
@media (max-width: 992px) {
  .footer {
    padding-bottom: 167px;
  }
}
.footer .inner {
  max-width: 1860px;
}
.footer .logo {
  font-size: 0;
  line-height: 1;
}
.footer .footer_inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .footer_inner {
    flex-direction: column;
    gap: 30px;
  }
}
.footer address {
  max-width: 910px;
}
.footer address .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.footer address .list .item {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  line-height: 25px;
  max-width: 445px;
  width: 50%;
}
.footer address .list .item a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .footer address .list .item {
    width: 100%;
  }
}
.footer .right {
  flex-shrink: 0;
}
.footer .right .title {
  color: #fff;
  font-size: 18px;
}
.footer .right .tel {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
}
.footer .right .tel:hover {
  text-decoration: underline;
}
.footer .right .btn {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 23px;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  height: 45px;
  justify-content: center;
  width: 235px;
}
.footer .right .btn .icon {
  display: inline-block;
  height: 37px;
  margin-right: 10px;
  width: 39px;
  background: url("../images/footer_icons.png") no-repeat -47px 0;
}
.footer .right .btn span {
  color: #5d5d5d;
  display: inline-block;
  margin-right: 7px;
}
@media (max-width: 1200px) {
  .footer .right .tel {
    font-size: 38px;
  }
  .footer .right .btn {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .footer .right .tel {
    font-size: 28px;
  }
}
.sns {
  background-color: #fff;
}
@media (max-width: 1200px) {
  .sns {
    bottom: 0;
    left: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
}
.sns .inner {
  max-width: 1860px;
}
@media (max-width: 1200px) {
  .sns .inner {
    padding: 0;
  }
}
.sns .list {
  background-color: #1200bc;
  border-radius: 70px;
  display: flex;
  gap: 15px;
  padding: 20px;
}
@media (max-width: 1200px) {
  .sns .list {
    border-radius: 0;
    padding: 20px;
  }
}
.sns .item {
  flex: 1 0 0;
}
@media (max-width: 1200px) {
  .sns .item {
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .sns .item {
    width: 100%;
  }
}
.sns .item:nth-child(1) .link {
  background-color: #1200bc;
  border: 1px solid #fff;
}
.sns .item:nth-child(1) .icon {
  height: 44px;
  width: 47px;
}
/* .sns .item:nth-child(2) .link {
  background-color: #fae100;
  color: #000;
}
.sns .item:nth-child(2) .icon {
  height: 45px;
  width: 49px;
  background-position-x: -86px;
} */
.sns .item:nth-child(2) .link {
  background-color: #000;
}
.sns .item:nth-child(2) .icon {
  height: 45px;
  width: 65px;
  background-position-x: -134px;
}
.sns .item:nth-child(3) .link {
  background-color: #3bac37;
}
.sns .item:nth-child(3) .icon {
  height: 36px;
  width: 80px;
  background-position-x: -199px;
}
.sns .link {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 50px;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  gap: 20px;
  height: 98px;
  justify-content: center;
  position: relative;
  transition: border 0.3s ease;
}
.sns .link:hover::after {
  visibility: visible;
  opacity: 1;
}
.sns .link::after {
  content: "";
  border: 4px solid #fff;
  border-radius: inherit;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
}
@media (max-width: 1200px) {
  .sns .link {
    height: 100%;
    font-size: 18px;
    gap: 10px;
    padding: 10px 30px 10px 15px;
  }
}
@media (max-width: 992px) {
  .sns .link {
    padding: 10px;
  }
  .sns .link span {
    display: none;
  }
}
.sns .icon {
  background: url("../images/footer_icons.png") no-repeat 0 0;
}
@media (max-width: 1200px) {
  .sns .icon {
    transform: scale(0.6);
    margin: -5px 0;
  }
}
@media (max-width: 992px) {
  .sns .icon {
    transform: scale(0.5);
    margin: -7px;
  }
}/*# sourceMappingURL=style.css.map */

.main_seo .inner {
  max-width:1440px;
}
.main_seo_title {
  text-align: center
}
.main_seo_title h3 {
  display: inline-block;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  position: relative;
}
.main_seo_title span {
  position: relative;
}
.main_seo_title h3::before {
  background: url("../images/seo_dots_left.png") no-repeat top left / 100% auto;
  content: "";
  display:inline-block;
  height:17px;
  left:-10px;
  position: absolute;
  top:0;
  transform: translateX(-100%);
  width:22px;
}
.main_seo_title h3::after {
  background: url("../images/seo_dots_right.png") no-repeat top right / 100% auto;
  content: "";
  display:inline-block;
  height:17px;
  right:-10px;
  position: absolute;
  top:0;
  transform: translateX(100%);
  width:22px;
}

.main_seo_icon {
  font-size: 0;
  line-height: 1;
  left: 10px;
  position: absolute;
  top: -10px;
  transform: translateY(-100%)
}

.main_seo_icon img {
  max-width:100%;
}

.main_seo .list {
  display: flex;
  gap: 30px;
  justify-content: space-between
}

.main_seo .item {
  background-color: #f4f6fa;
  border-radius: 20px;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 334px;
  overflow: hidden;
  padding-top: 35px;
  position: relative;
  text-align: center
}

.main_seo .item:hover::after {
  opacity: 1;
  visibility: visible
}
.main_seo .item:hover .sec_text {
  color: #fff;
}

.main_seo .item::after {
  background: url("/resources/images/seo_bg.jpg") no-repeat #1754ff left top/100% auto;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s, visibility .3s;
  visibility: hidden;
  width: 100%
}

.main_seo .item .sec_text {
  transition: color .3s;
  position: relative;
  z-index: 2;
}

.main_seo .img_wrap {
  font-size: 0;
  margin-top: 25px;
  line-height: 1;
  position: relative;
  z-index: 2
}

.main_seo .img_wrap img {
  max-width: 100%
}

@media(max-width: 2100px) {
  .main_seo_title h3 {
      font-size: 54px
  }
}

@media(max-width: 1200px) {
  .main_seo_title h3 {
      font-size: 32px;
  }
  .main_seo_title h3::before,
  .main_seo_title h3::after {
    width:18px;
  }
  .main_seo_icon {
    left:5px;
    top:-5px;
  }
}

@media(max-width: 992px) {
  .main_seo .list {
      flex-wrap: wrap;
      gap: 20px
  }

  .main_seo .item {
      flex: auto;
      max-width: 100%;
      min-height: 1px;
      padding-top: 30px;
      width: calc(50% - 10px)
  }
}

@media(max-width: 576px) {
  .main_seo_title h3 {
      font-size: 26px;
  }

  .main_seo_title h3::before,
  .main_seo_title h3::after {
    width:10px;
  }

  .main_seo .item {
      width: 100%;
  }
}