/* Start Animation Style */

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}


@keyframes fourth_page_text {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  70% {
    transform: translateY(-10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fourth_page_bg_animation {
  0% {
    filter:blur(10px);
  }

  100% {
    filter:blur(0px);
  }
}

@-webkit-keyframes tracking-in-contract-bck{0%{letter-spacing:1em;-webkit-transform:translateZ(400px);transform:translateZ(400px);opacity:0}40%{opacity:.6}100%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes tracking-in-contract-bck{0%{letter-spacing:1em;-webkit-transform:translateZ(400px);transform:translateZ(400px);opacity:0}40%{opacity:.6}100%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}

/* End Animation Style */

  .swiper-pagination {
    position:fixed;
  } 

  span.swiper-pagination-bullet {
    background-color:#fff;
    opacity: 1;
    transition:all .3s;
  }

  #swiper-pagination.black_theme span.swiper-pagination-bullet {
    background-color:#000;
  }

  #swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--swiper-pagination-color,var(--swiper-theme-color))!important;
  }

  html, body {
      height: 100%;
      margin:0;
      position:relative;
  }

  .body_container {
      width: 100%;
      height: 100%;
  }

  .swiper-wrapper {
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
  }

  .swiper-slide {
    width: 100%!important;
    height: 100%!important;
    scroll-snap-align: start;
  }

  .first_page {
    position:relative;
    display:flex;
    flex-direction: row;
    justify-content: center;
  }

  .first_page .first_page_bg {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display:flex;
    z-index:0;
    overflow:hidden;
  }

  .first_page .first_page_bg video {
    flex:1;
    object-fit: cover;
  }

  .first_page  .first_page_content_box {
    width: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    z-index:1;
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    text-align:center;
  }

  .first_page  .first_page_content_box h2.first_page_title {
    color:#fff;
    font-size:5rem;
    font-weight:bold;
    transition:all .35s;
  }

  .first_page  .first_page_content_box p.first_page_subtitle {
    font-size:2.2rem;
    color:#fff;
    font-weight: 400;
    margin-top:40px;
    transition:all .35s;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
  }

  .second_page {
    display:flex;
    flex-direction: column;
    position:relative;
    overflow:hidden;
    justify-content: end;
  }

  .second_page .second_page_bg_box {
    position:absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index:0;
    background-image:url("../images/pages/Sunman_revised.jpg");
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
    filter:brightness(1.15) contrast(1.1) sepia(0.05) blur(10px);
    transform: scale(1.5);
    transition:all 2s;
  } 

  .second_page.swiper-slide-active .second_page_bg_box {
    filter:brightness(1.15) contrast(1.1) sepia(0.05) blur(0);
    transform: scale(1);
  }

  .second_page .second_page_content_box {
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    z-index:10;
    color:#fff;
    text-align: center;
    opacity: 0;
    transition:all 2s ease-in-out;
    letter-spacing: -1em;
    height: 60%;
    width: 100%;
  }

  .second_page.swiper-slide-active .second_page_content_box {
    opacity: 1;
    letter-spacing: normal;
  }

  .second_page .second_page_content_box h3.second_page_title {
    font-size:5rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  }

  .second_page .second_page_content_box p.second_page_subtitle {
    font-size:2.5rem;
    line-height:3rem;
    margin-top:40px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    text-align:left;
  }
  
  .second_page .second_page_content_box p.second_page_subtitle svg {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }

  .second_page .second_page_content_box ul.second_page_item_list {
    display:flex;
    width: 75%;
    flex:1;
    margin-top:40px;
    margin-bottom:40px;
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box {
    width: 25%;
    padding:10px;
    display:flex;
    box-sizing: border-box;
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box .item_bg {
    border-radius: 10px;
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
    background-color:#2F80ED;
    flex:1;
    display:flex;
    justify-content: center;
    align-items: start;
    text-align:center;
    font-size:2rem;
    color:#fff;
      text-shadow: 
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box:nth-child(1) .item_bg {
    background-image:url(../images/part/second_page_cctv.jpg);
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box:nth-child(2) .item_bg {
    background-image:url(../images/part/second_page_battery.jpg);
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box:nth-child(3) .item_bg {
    background-image:url(../images/part/second_page_solar_panel.jpg);
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box:nth-child(4) .item_bg {
    background-image:url(../images/part/second_page_easymove.jpg);
  }

  .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box .item_bg h5.item_desc {
    padding-top:10px;
  }

  .third_page {
    display:flex;
    flex-direction:column;
    justify-content: end;
    position:relative;
    overflow: hidden;
  }

  .third_page .third_page_bg {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-image:url(../images/pages/third_page_bg.jpg);
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
    z-index: 0;
    transition:all 2s ease-out;
    transform: scale(1.3);
  }

  .third_page.swiper-slide-active .third_page_bg {
    transform:scale(1);
  }

    .third_page .third_page_content_box {
      width: 100%;
      height: 60%;
      display:flex;
      flex-direction: column;
      align-items: center;
      z-index:10;
      transition:all 2s ease-out;
      opacity: 0;
    }

    .third_page.swiper-slide-active .third_page_content_box {
      opacity: 1;
    }

    .third_page .third_page_content_box h3.third_page_title {
      font-size:5rem;
      color:#fff;
      font-weight:bold;
    }

    .third_page .third_page_content_box p.third_page_subtitle {
      color:#fff;
      font-size:2.5rem;
      margin-top:40px;
      text-align:center;
    }

    .third_page .third_page_content_box ul.third_page_item_list {
      display:flex;
      width: 75%;
      flex:1;
      margin-top:40px;
      margin-bottom:40px;
      flex-direction: row;
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box {
      width: 25%;
      box-sizing: border-box;
      padding: 10px;
      display:flex;
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box .item_bg {
      background-position:center;
      background-size:cover;
      background-repeat: no-repeat;
      flex:1;
      border-radius: 10px;
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box:nth-child(1) .item_bg {
      background-image:url(../images/part/third_page_solarPanel.jpg);
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box:nth-child(2) .item_bg {
      background-image:url(../images/part/third_page_inverter.jpg);
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box:nth-child(3) .item_bg {
      background-image:url(../images/part/third_page_powerDistributionPanel.jpg);
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box:nth-child(4) .item_bg {
      background-image:url(../images/part/third_page_solarPanelStructure.jpg);
    }
    
    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box .item_bg h5.item_desc {
      font-size:2rem;
      font-weight:bold;
      text-align: center;
      padding-top:10px;
      color:#fff;
      text-shadow: 
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
    }

  .fourth_page {
    display:flex;
    position:relative;
    overflow:hidden;
  }

  .fourth_page .fourth_page_bg {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-image:url(../images/pages/fourth_page_bg2.jpg);
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
    z-index:0;
  }

  .fourth_page.swiper-slide-active .fourth_page_bg {
    animation: fourth_page_bg_animation 2s ease-in-out forwards;
  }

  .fourth_page .fourth_page_content_container {
    flex:1;
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .fourth_page .fourth_page_content_container .fourth_page_content_box {
    width: 100%;
    height: 60%;
    position:relative;
    z-index:2;
    opacity: 0;
    display:flex;
    flex-direction: column;
    align-items: center;
  }

  .fourth_page.swiper-slide-active .fourth_page_content_container .fourth_page_content_box {
    animation: fourth_page_text 2s ease-in-out .5s forwards;
  }

  .fourth_page .fourth_page_content_box h2.fourth_page_title {
    font-size:5rem;
    text-align: center;
    font-weight: bold;
    color:#fff;
    text-shadow: 2px 2px 4px rgba(255, 255, 255,0.4);
    z-index:2;
    position:relative;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    transition:all .35s;
  }

  .fourth_page .fourth_page_content_box p.fourth_page_subtitle {
    margin-top:70px;
    font-size:2.5rem;
    font-weight:bold;
    text-align:center;
    z-index:2;
    color:#fff;
    position:relative;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    transition:all .35s;
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list {
    display:flex;
    flex:1;
    width: 75%;
    list-style: none;
    padding: 0;
    margin-top:40px;
    margin-bottom:40px;
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box {
    width: 25%;
    padding:10px;
    box-sizing: border-box;
    display:flex;
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box .item_bg {
    flex:1;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box:nth-child(1) .item_bg {
    background-image:url(../images/part/fourth_page_layout.jpg);
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box:nth-child(2) .item_bg {
    background-image:url(../images/part/fourth_page_diagram.jpg);
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box:nth-child(3) .item_bg {
    background-image:url(../images/part/fourth_page_expectationChart.jpg);
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box:nth-child(4) .item_bg {
    background-image:url(../images/part/fourth_page_solar_loss.jpg);
  }

  .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box .item_bg h5.item_desc {
    font-size:2rem;
    color:#fff;
      text-shadow: 
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
    text-align:center;
    padding-top:10px;
  }

  .fifth_page {
    position:relative;
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .fifth_page .fifth_page_bg_box {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    overflow:hidden;
    width: 100%;
    height: 100%;
    display:flex;
  }

  .fifth_page .fifth_page_bg_box .fifth_page_bg_img {
    flex:1;
    background-image:url(../images/pages/fifth_page_bg.jpg);
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
    transition:transform 2.5s .3s;
    transform: scale(1.5);
    z-index:0;
  }

  .fifth_page.swiper-slide-active .fifth_page_bg_box .fifth_page_bg_img {
    transform: scale(1);
  }

  .fifth_page .fifth_page_content_box {
    z-index:1;
    transition:all 2.5s .3s ease-in-out;
    opacity: 0;
    transform: translateX(30%);
  }

  .fifth_page.swiper-slide-active .fifth_page_content_box {
    opacity: 1;
    transform: translateX(0);
    width: 100%;
    height: 60%;
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .fifth_page .fifth_page_content_box h2.fifth_page_title {
    color:#fff;
    font-size:5rem;
    font-weight:bold;
    text-align: center;
    transition:all .35s;
    margin-top:auto;
  }

  .fifth_page .fifth_page_content_box p.fifth_page_subtitle {
    width: 75%;
    font-size:2.2rem;
    color:#fff;
    margin-top:40px;
    text-align: center;
    transition:all .35s;
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list {
    list-style: none;
    width: 75%;
    flex:1;
    margin-top:40px;
    margin-bottom:40px;
    display:flex;
    box-sizing:border-box;
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box {
    width: 25%;
    padding:10px;
    display:flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box .item_bg {
    flex:1;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box:nth-child(1) .item_bg {
    background-image:url(../images/part/fifth_page_cracking.jpg);
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box:nth-child(2) .item_bg {
    background-image:url(../images/part/fifth_page_low_quality.jpg);
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box:nth-child(3) .item_bg {
    background-image:url(../images/part/fifth_page_soil.jpg);
  }

  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box:nth-child(4) .item_bg {
    background-image:url(../images/part/fifth_page_missing.jpg);
  }
 
  .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box h5.item_desc {
    font-size:2rem;
    color:#fff;
    text-align:center;
    padding:5px 0px 5px 0px;
    background:rgba(0, 0, 0, 0.6);
  }

  .sixth_page {
    display:flex;
    position: relative;
    justify-content: center;
  }

  .sixth_page .sixth_page_bg_box {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    overflow:hidden;
    display:block;
    z-index:0;
  }

  .sixth_page .sixth_page_bg_box  ul.bg_list {
    list-style: none;
    padding: 0;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .sixth_page .sixth_page_bg_box  ul.bg_list li.bg_item {
    width: 100%;
    background-position:center;
    filter: grayscale(40%);
  }

  .sixth_page .sixth_page_bg_box  ul.bg_list li.bg_item:nth-child(1) {
    background-image:url(../images/pages/sixth_page_bg1.jpg);
  }

  .sixth_page .sixth_page_bg_box  ul.bg_list li.bg_item:nth-child(2) {
    background-image:url(../images/pages/sixth_page_bg2.jpg);
  }

  .sixth_page .sixth_page_bg_box  ul.bg_list li.bg_item:nth-child(3) {
    background-image:url(../images/pages/sixth_page_bg3.jpg);
  }

  .sixth_page .sixth_page_content_box {
    z-index:10;
    flex:1;
    display:flex;
    flex-direction: column;
    color:#fff;
    justify-content: center;
    align-items: center;
    opacity: 0;
    filter:blur(12px);
    transition:all 3s;
    letter-spacing: 1em;
    text-align: center;
  }

  .sixth_page.swiper-slide-active .sixth_page_content_box {
    opacity: 1;
    filter:blur(0);
    letter-spacing: normal;
  }

  .sixth_page .sixth_page_content_box h3.sixth_page_title {
    font-size:5rem;
    font-weight: bold;
  }

  .sixth_page .sixth_page_content_box p.sixth_page_subtitle {
    font-size:2.5rem;
    margin-top:40px;
  }

  .seventh_page {
    position:relative;
    display:flex;
    justify-content: center;
    overflow:hidden;
  }

  .seventh_page .seventh_page_bg {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-image:url(../images/pages/seventh_page_bg.jpg);
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
    z-index:0;
    filter: brightness(85%) grayscale(20%);
    transition:all 10s;
  }

  .seventh_page.swiper-slide-active .seventh_page_bg {
    transform: scale(1.2);
  }

  .seventh_page .seventh_page_content_box {
    display:flex;
    flex-direction: column;
    justify-content: center;
    flex:1;
    z-index:30;
    text-align: center;
    opacity: 0;
    transition:all 3s ease-in-out;
    transform: scale(0);
  }

  .seventh_page.swiper-slide-active .seventh_page_content_box {
    opacity: 1;
    transform:scale(1);
    text-align: center;
  }

  .seventh_page .seventh_page_content_box h3.seventh_page_title {
    font-size:5rem;
    font-weight:bold;
    color:#fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  }

  .seventh_page .seventh_page_content_box p.seventh_page_subtitle {
    font-size:2.5rem;
    color:#fff;
    margin-top:40px;
    line-height: 3rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  }


  .footer_page {
    background-color:#f0f9fa;
    display:flex;
    flex-direction: row;
  }

  .footer_page .footer_page_bg_box {
    width: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
  }

  .footer_page .footer_page_bg_box .footer_icon {
    width: 400px;
    height: 400px;
    opacity: 1;
  }

  .footer_page .footer_page_content_container {
    width: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer_page .footer_page_content_container .footer_page_content_box {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
  }

  .footer_page .footer_page_content_container h2.footer_page_title {
    font-size:4rem;
    line-height:5rem;
    font-weight:bold;
  }

  .footer_page .footer_page_content_container h2.footer_page_title span.text_red {
    color:#c00301;
  }

  .footer_page .footer_page_content_container h2.footer_page_title span.text_gray {
    color:#88898a;
  }

  .footer_page .footer_page_content_container .footer_content_box {
    margin-top:100px;
  }

  .footer_page .footer_page_content_container .footer_content_box p {
    color:#000000;
    font-size:1.6rem;
    line-height: 2rem;
  }


  @media all and (max-width:1024px){
    .first_page  .first_page_content_box {
      width: 100%;
      margin: 0;
      text-align: center;
      padding:0px 30px 0px 30px;
    }

    .first_page  .first_page_content_box h2.first_page_title {
      font-size:5rem;
    }

    .first_page  .first_page_content_box p.first_page_subtitle {
      font-size:2rem;
    }

    .second_page .second_page_content_box h3.second_page_title {
    font-size:3.5rem;
    }

    .second_page .second_page_content_box p.second_page_subtitle {
      font-size:2rem;
      line-height:2.5rem;
      padding-left:50px;
      padding-right:50px;
    }

    .second_page .second_page_content_box p.second_page_subtitle svg {
      width: 2rem;
      height: 2rem;
      line-height:2.5rem;
    }

    .second_page .second_page_content_box ul.second_page_item_list {
      width: 100%;
    }

    .third_page .third_page_content_box h3.third_page_title {
      font-size:3.5rem;
    }

    .third_page .thrid_page_content_box p.third_page_subtitle {
      font-size:2rem;
      padding-left:50px;
      padding-right:50px;
    }

    .third_page .third_page_content_box ul.third_page_item_list {
      width: 100%;
    }

    .fourth_page .fourth_page_content_box h2.fourth_page_title {
      font-size:3.5rem;
    }
  
    .fourth_page .fourth_page_content_box p.fourth_page_subtitle {
      font-size:2rem;
    }

    .fourth_page .fourth_page_content_box ul.fourth_page_item_list {
      width: 100%;
    }

    .fifth_page .fifth_page_content_box h2.fifth_page_title {
      font-size:3.5rem;
    }

    .fifth_page .fifth_page_content_box p.fifth_page_subtitle {
      padding-left:50px;
      padding-right:50px;
      font-size:2rem;
    }

    .fifth_page .fifth_page_content_box ul.fifth_page_case_list {
      width: 100%;
    }

    .sixth_page .sixth_page_content_box h3.sixth_page_title {
    font-size:3.5rem;
    }

    .sixth_page .sixth_page_content_box p.sixth_page_subtitle {
      font-size:2rem;
      padding-left:50px;
      padding-right:50px;
    }

    .seventh_page .seventh_page_content_box h3.seventh_page_title {
    font-size:3.5rem;
    }

    .seventh_page .seventh_page_content_box p.seventh_page_subtitle {
      font-size:2rem;
      padding-left:50px;
      padding-right:50px;
    }

    .footer_page .footer_page_content_container h2.footer_page_title {
      font-size:3rem;
      line-height: 4rem;
    }
  }

  @media all and (max-width:768px){
    .first_page  .first_page_content_box h2.first_page_title {
      font-size:3rem;
    }

    .first_page  .first_page_content_box p.first_page_subtitle {
      font-size:1.6rem;
    }

    .second_page .second_page_content_box {
      height: 70%;
    }

    .second_page .second_page_content_box h3.second_page_title {
    font-size:2.5rem;
    }

    .second_page .second_page_content_box p.second_page_subtitle {
      font-size:1.4rem;
      line-height: 1.6rem;
      padding-left:20px;
      padding-right:20px;
    }

    .second_page .second_page_content_box p.second_page_subtitle svg {
      width: 1.4rem;
      height: 1.4rem;
      line-height:1.6rem;
    }

    .second_page .second_page_content_box ul.second_page_item_list {
      flex-wrap: wrap;
    }

    .second_page .second_page_content_box ul.second_page_item_list li.second_page_item_box {
      width: 50%;
    }

    
    .third_page .third_page_content_box h3.third_page_title {
      font-size:2.5rem;
    }

    .third_page .third_page_content_box p.third_page_subtitle {
      font-size:1.4rem;
      padding-left:20px;
      padding-right:20px;
    }

    .third_page .third_page_content_box ul.third_page_item_list {
      width: 100%;
      flex-wrap: wrap;
    }

    .third_page .third_page_content_box ul.third_page_item_list li.third_page_item_box {
      width: 50%;
    }

    .fourth_page .fourth_page_content_container .fourth_page_content_box {
      padding: 0;
      height: 70%;
    }

    .fourth_page .fourth_page_content_box h2.fourth_page_title {
      width: 100%;
      font-size:2.5rem;
    }
  
    .fourth_page .fourth_page_content_box p.fourth_page_subtitle {
      font-size:1.4rem;
      padding-left:20px;
      padding-right:20px;
      margin-top:30px;
    }

    .fourth_page .fourth_page_content_box ul.fourth_page_item_list {
      flex-wrap: wrap;
      margin-top:20px;
      margin-bottom:20px;
    }

    .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box {
      width: 50%;
    }

    .fourth_page .fourth_page_content_box ul.fourth_page_item_list li.fourth_page_item_box .item_bg h5.item_desc {
      padding-top: 5px;
    }

    .fifth_page .fifth_page_content_box {
      height: 70%;
    }

    .fifth_page .fifth_page_content_box h2.fifth_page_title {
      font-size:2.5rem;
    }

    .fifth_page .fifth_page_content_box p.fifth_page_subtitle {
      font-size:1.4rem;
      padding-left:20px;
      padding-right:20px;
      margin-top:20px;
    }

    .fifth_page .fifth_page_content_box ul.fifth_page_case_list {
      width: 100%;
      padding:0px 20px 0px 20px;
      flex-wrap: wrap;
      margin-top:10px;
      margin-bottom:10px;
    }

    .fifth_page .fifth_page_content_box ul.fifth_page_case_list li.case_item_box {
      width: 50%;
    }

    .sixth_page .sixth_page_content_box h3.sixth_page_title {
    font-size:2.5rem;
    }

    .sixth_page .sixth_page_content_box p.sixth_page_subtitle {
      font-size:1.4rem;
      padding-left:20px;
      padding-right:20px;
    }

    .sixth_page .sixth_page_bg_box  ul.bg_list {
      flex-direction: column;
    }

    .sixth_page .sixth_page_bg_box  ul.bg_list li.bg_item {
      height: 100%;
    }

    .seventh_page .seventh_page_content_box h3.seventh_page_title {
    font-size:2.5rem;
    }

    .seventh_page .seventh_page_content_box p.seventh_page_subtitle {
      font-size:1.4rem;
      padding-left:20px;
      padding-right:20px;
    }

    .footer_page .footer_page_content_container .footer_page_content_box {
      height: 250px;
    }

    .footer_page .footer_page_content_container .footer_content_box {
      margin-top:30px;
    }

    .footer_page .footer_page_content_container h2.footer_page_title {
      font-size:2rem;
      line-height: 3rem;
    }

    .footer_page .footer_page_content_container .footer_content_box p {
      font-size:1rem;
    }

    .swiper-pagination {
      display:flex;
      flex-direction: row;
      top:20px;
      left:0;
      width: 100%;
      height: 50px;
      justify-content: center;
      z-index:1000;
      position:fixed;
      align-items: center;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
      top:20px;
      left:0;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
      margin:3px;
      cursor:pointer;
    }
    
  }