/* ========================= ========================= ========================= ========================= ========================= =========================
***
* please make sure all layout css inside @layer layout {}
***
* please make sure all layout css inside @layer layout {}
* please make sure all layout css inside @layer layout {}
* Use CSS @layer
* Use CSS @layer
* Use CSS @layer
***
 ========================= ========================= ========================= ========================= ========================= =========================*/

@layer layout {

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR grid system 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .wrap {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--white);
    /*visibility: hidden;*/
    position: relative;
    z-index: 2000;
  }

  .main_content>h2:first-child {
    margin-top: 0;
  }


  .subMenuVersion .content_area_big {
    margin-left: auto;
    margin-right: auto;
  }

  .subMenuVersion .content_area_big .container {
    display: flex;
    align-items: flex-start;
    /*padding-left: 8%;
  padding-right: 8%;*/
  }

  .content_area {
    font-size: 1.125rem;
  }

  .content_area .anchor:first-child+h2:nth-child(2),
  .content_area h2:first-child {
    margin-top: 0;
  }

  .subMenuVersion .content_area {
    padding-left: 8.2%;
    /*padding-right: 12%;*/
    /* margin-left: 20.9375vw; */
    width: 83%;
  }

  body:not(.indexVersion) .content_area {
    min-height: 31.25rem;
  }

  .body_area {
    background-color: var(--white);
    z-index: 3000;
    position: relative;
    padding-top: 3rem;
  }


  body:not(.indexVersion):not(.subMenuVersion) .body_area .container {
    max-width: 1750px;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR breadcrumb 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .breadcrumb_bigwrap {
    padding-top: 2.25rem;
    padding-bottom: 3.25rem;
  }

  .breadcrumb {
    font-size: 0.97rem;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: none;
    font-weight: 400;
    margin-bottom: 0;
    display: block;
  }

  .breadcrumb ul,
  .breadcrumb li {
    list-style: none;
  }

  .breadcrumb ul {
    padding: 0;
    margin: 0;
  }

  .breadcrumb li {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
  }

  .breadcrumb ul>li:last-child {}

  .breadcrumb a {
    text-decoration: none;
    color: var(--green_400);
  }

  .breadcrumb a:hover,
  .breadcrumb a:focus {
    color: #003e6f;
    text-decoration: underline;
  }

  .breadcrumb li>* {
    margin-right: 0.75rem;
  }

  .breadcrumb .sign {
    aspect-ratio: 0.75 / 1.2;
    background-image: url(../images/icon/icon_arrow2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: .6rem;
    display: inline-block;
    font-size: 0;
    filter: var(--green_700_filter);
    
  }

  .chineseVersion .breadcrumb .sign {
    margin-top: .1rem;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR header 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .header_inner {
    width: 100%;
    /*height: 110px;*/
    display: grid;
    grid-template-areas: "logo logo2" "nav client";
    justify-content: space-between;
    position: relative;
  }

  .myLogo {
    height: auto;
    padding-top: 0.7rem;
    padding-bottom: 1.7rem;
    display: flex;
    align-items: center;
    grid-area: logo;
    width: 40%;
  }


  .myLogo .full_logo {

    /*height: 3.5vw;*/
    /*height: 5rem;*/
  }

  .myLogo2 {
    padding-top: 0.7rem;
    padding-bottom: 1.7rem;
    grid-area: logo2;
    width: 80%;
    margin-left: auto;
  }

  :where(.myLogo, .myLogo2) .logo_only {
    display: none;
  }

  .big_clientTool {
    display: inline-block;
    grid-area: client;
  }

  .clientTool {
    display: flex;
    justify-content: flex-end;
    column-gap: 2rem;
  }

  .clientTool .langtitlestyle {
    display: none;
  }

  .tool_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tool_item::after {
    content: "";
    /* 	width: 1px;
  height: 1.5rem;
  background-color: #b7b7b7; */
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  .tool_item_last:after {
    width: 0;
    height: 0;
  }

  .tool_item a{
    font-size: max(0.95rem, 15px);
  }


  .tool_item_btn,
  .tool_item:not(.language)>a,
  .mobSearch a {
    margin-bottom: 0.5rem;
    display: block;
    color: var(--dark_grey_600);
  }

  .tool_item_btn:hover,
  .tool_item:not(.language)>a:hover,
  .mobSearch a:hover,
  .shareTool.active .share_btn {
    color: var(--dark_grey_700);
  }

  .tool_item img {
    width: 1.5rem;
  }

  .tool_item_btn:hover img,
  .tool_item:not(.language)>a:hover img,
  .mobSearch a:hover img,
  .shareTool.active .share_btn img {
    filter: var(--green_400_filter);
  }

  .tool_item .moblang {
    display: none;
  }

  .langTool {
    /*display: none;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);*/
  }

  .langTool::before {
    /*content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #000;
  top: -0.5rem;
  display: block;
  left: 50%;
  transform: translateX(-50%);*/
  }

  .langTool ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    column-gap: 2rem;
  }

  .langTool li {
    margin-bottom: 0;
    display: block;
    font-size: 1rem;
  }

  .langTool ul>li:not(:last-child) {}

  .langTool li a {
    color: var(--dark_grey_600);
    font-size: max(0.95rem, 15px);
    margin-bottom: 0.5rem;
    display: block;
  }

  .langTool li a:hover {}

  .language_btn img {
    display: inline-block;
  }

  .langtitlestyle {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .menu_plus>span:before,
  .menu_plus>span:after {
    content: "";
    display: block;
    background-color: var(--menu1_text_color);
  }

  .menu_plus>span:before {
    width: 100%;
    height: 2px;
  }

  .menu_plus>span:after {
    width: 2px;
    height: 100%;
    position: absolute;
  }

  .header_area ul {
    margin: 0;
    padding-left: 0;
  }

  .header_area {
    --header_border_height: .4375rem;
    background-color: var(--white);
    width: 100%;
    position: fixed;
    z-index: 7000;
    /*box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);*/
    transition: all 0.3s ease-in-out;
  }


  .header_area.nav_sticky {
    /*-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);*/
  }


  .header_area.hide_header {
    transform: translateY(-200%);
  }


  .header_area::after {
    content: '';
    display: block;
    width: 100%;
    height: var(--header_border_height);
    background-color: var(--green_300);
    /*must be absolute otherwise the after element will cause nav_menu_item mouseover doesnt work*/
    position: absolute;
    bottom: 0;
    z-index: 100;
  }


  .headerTop {
    grid-area: nav;
  }

  .header_area .headerTool {
    position: relative;
    z-index: 2000;
  }

  .headerTop .nav_menu .menu_plus_lv1 {
    display: none;
  }

  .headerTop .nav_menu .extmenu_lv1 {
    display: none;
  }

  .headerTop .nav_item_lv0 {
    padding-right: clamp(1rem, 3vw, 4rem);
  }

  .nav_menu {}



  .nav_menu .nav_link_wrap {
    position: relative;
    height: 100%;
  }

  .nav_menu .nav_item_lv0.firstLi {}


  .nav_menu .nav_item_lv0 {
    position: relative;

    width: auto;
    text-align: left;
    background-repeat: no-repeat;
    margin-bottom: 0;
  }


  .nav_menu .nav_item_lv0.not_show_top_menu {
    display: none;
  }

  .nav_menu .menu_lv0 {
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    height: 100%;
    display: flex;

  }

  .nav_menu .extmenu_lv0 {
    max-height: 70vh;
    opacity: 1;
    display: none;
    /*overflow: hidden;*/
    position: fixed;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    /* box-shadow: 0 0 0.75rem -2px #000; */
    box-shadow: 0 4px 10px -6px rgba(0, 0, 0, 0.55);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .nav_menu .nav_item_lv0.open .extmenu_lv0 {
    /*opacity: 1;
  max-height: 300px;*/
    display: block;
  }

  .nav_menu .nav_item_lv0.active_section .nav_link_lv0 {
    color: var(--menu0_active_text_color);
  }

  .nav_menu .nav_item_lv0.active_section>.nav_link_wrap::after,
  .nav_menu .nav_item_lv0.open>.nav_link_wrap::after {
    content: '';
    width: 0;
    height: 0;
    border-left: .625rem solid transparent;
    border-right: .625rem solid transparent;
    border-bottom: .625rem solid var(--green_300);
    position: absolute;
    bottom: var(--header_border_height);
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
  }

  .menu_lv0>li.use_right_position>.extmenu {
    right: 0;
    left: auto;
  }

  .nav_menu .nav_link_lv0.firstLi {
    display: none;
  }

  .nav_menu .nav_link_lv0 {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 1.3rem;
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    line-height: 1.1428;
    color: var(--menu0_text_color);
    /*-webkit-text-stroke: clamp(0.2px, 0.02vw, 0.7px) var(--menu0_text_color);*/
  }

  .nav_menu .menu_plus {
    display: none;
  }

  .nav_menu .arrow {
    display: none;
  }

  .nav_menu .menu_lv1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
    padding-left: var(--container_pad_left);
    padding-right: var(--container_pad_right);
  }

  .nav_menu .nav_item_lv1 {
    margin-bottom: 0;
    list-style: none;
  }

  .nav_menu .nav_link_lv1:has(img) {
    display: grid;
    grid-template-columns: 2rem 1fr;
    column-gap: 1.3rem;
  }

  .nav_menu .nav_link_lv1 img{
    filter: var(--icon_filter);
  }

  .nav_menu .nav_link_lv1 {
    display: block;
    text-align: left;
    /*padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    padding-left: 1.75rem;
    padding-right: 3rem;*/
    font-size: 1.125rem;
    background-color: var(--menu1_bg_color);
    color: var(--menu1_text_color);
    position: relative;
  }

  .nav_menu .nav_link_lv1 .myText {
    /*padding-top: 0.25rem;*/
  }

  .nav_menu .nav_link_wrap:hover .nav_link_lv1,
  .nav_menu .nav_link_wrap:has(.nav_link_lv1:focus),
  .nav_menu .nav_link_wrap:has(.menu_plus_lv1:focus),
  .nav_menu .nav_item_lv1.open .nav_link_lv1 {
    background-color: var(--menu1_active_bg_color);
    color: var(--menu1_active_text_color);
  }

  .nav_menu .nav_link_lv1 .myText {
    display: inline-block;
  }

  .nav_menu .nav_link_lv1:hover .myText:after,
  .nav_menu .nav_link_lv1:focus .myText:after {
    /*width: 100%;*/
  }

  .nav_menu .extmenu_lv1 {
    position: relative;
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
  }

  .nav_menu .nav_item_lv1.open .extmenu_lv1 {
    max-height: 10000px;
  }

  .nav_menu .nav_link_lv1 {
    position: relative;
    width: 100%;
    /*margin-bottom: 2.3rem;*/
    /*width: 33.33333%;*/
  }

  .nav_menu .menu_plus_lv1 {
    width: 0.75rem;
    height: 100%;
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 50;
  }

  .nav_menu .menu_plus_lv1>span {
    width: 0.75rem;
    height: 0.75rem;
    position: relative;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav_item_lv1.open .menu_plus_lv1>span:after {
    width: 0;
    height: 0;
  }

  .hidden_sub_menu>a>.menu_plus {
    display: none;
  }

  .nav_menu .extmenu_lv2 {
    display: none;
  }

  .nav_menu .menu_lv2 .nav_item {
    margin-bottom: 0;
  }

  .nav_menu .nav_link_lv2 {
    font-size: 1rem;
    display: block;
    background-color: var(--menu2_bg_color);
    color: var(--menu2_text_color);
    padding-left: 3.5rem;
    padding-right: 3rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
    line-height: 1.4em;
  }

  .nav_menu .nav_link_lv2::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--menu2_text_color);
    border-radius: 50%;
    position: absolute;
    left: 2.3rem;
    top: 1.3rem;
  }

  .nav_menu .nav_link_lv2:hover,
  .nav_menu .nav_link_lv2:focus {
    background-color: var(--menu2_hover_bg_color);
    color: var(--menu2_hover_text_color);
  }

  .nav_menu .nav_link_lv2:hover::before,
  .nav_menu .nav_link_lv2:focus::before {
    background-color: var(--menu2_hover_text_color);
  }

  .nav_menu .share_btn {
    display: none;
  }


  /*header section end*/
  /*share section start*/
  .shareList {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: left;
    z-index: 9000;
    min-width: 3.2rem;
    box-shadow: 0 3px 0.25rem rgba(29, 29, 29, 0.2);
    padding-bottom: 8px;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .shareList.active {
    border-top: 0;
  }

  .shareTool.active .shareList {
    display: block;
  }

  .shareTool.active .shareList:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--main-color);
    top: -7px;
  }

  .social_media_btn {
    position: relative;
    margin-top: 0.9375rem;
  }

  .social_media_btn {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .social_media_btn>li {
    display: block;
  }

  .social_media_btn a {
    font-size: 0;
  }

  .social_media_btn__btn {
    display: block;
    vertical-align: top;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: relative;
  }

  .social_media_btn__btn:before {
    content: "";
    width: 1.625rem;
    height: 1.625rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-size: 100% auto;
    transition: 0.2s;
  }


  .social_media_btn__btn:hover::before,
  .social_media_btn__btn:focus::before {}


  .social_media_btn__btn--email:before {
    background-image: url(../images/share/icon-social-email-white.png);
  }

  .social_media_btn__btn--fb:before {
    background-image: url(../images/share/icon-social-facebook-white.png);
  }

  .social_media_btn__btn--wa:before {
    background-image: url(../images/share/icon-social-whatsapp-white.png);
  }

  .social_media_btn__btn--wb:before {
    background-image: url(../images/share/icon-social-weibo-white.png);
  }

  .social_media_btn__btn--wc:before {
    background-image: url(../images/share/icon-social-wechat-white.png);
  }

  .social_media_btn__btn--tw:before {
    background-image: url(../images/share/icon-social-twitter-white.png);
  }

  .social_media_btn__btn--qr:before {
    background-image: url(../images/share/icon-qr-code.png);
  }

  .shareTool {
    position: relative;
  }

  /*share section end*/
  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR footer 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .footer_area {
    position: relative;
    z-index: 5000;
  }

  .footer_area .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  body:not(.indexVersion) .footer_area {
    padding-top: 7rem;
  }

  .footer_slider_area .swiper:not(.swiper-initialized) {
    opacity: 0;
    visibility: hidden;
  }

  .footer_slider_area .swiper {
    max-width: 90%;
  }


  .footer_area .swiper-button-prev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer_area .swiper-button-next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer_slider_area {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--footer_slider_area_bg_color);
  }

  .footer_area .swiper-slide a {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
  }

  .footer_area .swiper-slide a img {
    width: 100%;
    display: block;
  }

  .footer_area .swiper-slide a:hover,
  .footer_area .swiper-slide a:focus {
    transform: scale(1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

  .footer_area .swiper_nav {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .footer_area .swiperpaginwrapper {
    display: flex;
    align-items: center;
  }

  .footer_area1 {
    position: relative;
    border-top: 7px solid var(--green_300);
  }

  .footer_area1 .footer_area_inner {

    background-color: var(--footerarea1_bg_color);

    max-height: 0;
    overflow-y: hidden;
    padding-top: 0;
    transition: all 0.3s ease-in-out;
  }

  .footer_area2 {
    background-color: var(--footerarea2_bg_color);
    color: #fff;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    font-size: 0.95rem;
  }

  .footerRow .logo {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .footer_area1_5 {
    background-color: var(--footer_area1_5_bg_color);
  }



  .footer_menu_area {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*justify-content: space-evenly;*/
    justify-content: space-between;
    font-size: 1rem;
    padding-bottom: 3rem;
    column-gap: 2rem;
    position: relative;
  }


  .footer_area .info>* {
    display: inline-block;
  }

  .footer_area .fTool {
    list-style-type: none;
    padding: 0;
    margin-right: 1.125rem;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }

  .footer_area .fTool span {
    color: #BBBBBB;
  }

  .footer_area .fTool {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.625rem;
  }

  .footer_area .fTool>li {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
  }

  .footer_area :where(.fTool>li, .copyright):after {
    content: "";
    display: block;
    width: 1px;
    height: 1rem;
    background-color: #BBBBBB;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer_area .fTool>li:last-child:after {
    width: 0;
    height: 0;
  }

  .footer_area .info .fTool li a {
    padding: 0 1.125rem;
    color: #fff;
  }

  .footer_area .fTool>li:first-child>div,
  .footer_area .fTool>li:first-child>a {
    padding-left: 0;
  }

  .footer_area .copyright {
    position: relative;
    padding-right: .5rem;
  }

  .footer_area .footerRow {
    display: grid;
    grid-auto-flow: column;
    column-gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }

  .footer_area .footer_icon {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 0.5rem;
  }

  .footer_area .footer_icon .w3c {
    display: none;
  }


  .footer_area .updateDate {
    display: inline-block;
  }

  .footer_menu {
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer_menu .menu_plus {
    display: none;
  }

  .footer_menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
  }

  .footer_menu a:hover {
    text-decoration: underline;
    color: #000;
  }

  .footer_menu a .menu_plus {
    display: none;
  }


  .footer_menu_area .menu_lv0 {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .footer_menu .nav_item_lv0 {
    list-style-type: none;
    margin-bottom: 0;
    display: block;
  }

  .footer_menu .nav_item_lv0:not(:first-child) {
    margin-top: 2.75rem;
  }

  .footer_menu .extmenu a {
    display: block;
    margin: 0;
  }

  .footer_menu .nav_link_lv0 {
    position: relative;
    color: var(--green_600);
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;

  }

  .chineseVersion .footer_menu .nav_link_lv0 {
    -webkit-text-stroke: clamp(0.2px, 0.01vw, 0.7px) var(--green_600);
  }

  .footer_menu .nav_link_lv0:hover,
  .footer_menu .nav_link_lv0:focus {
    color: var(--green_700);
    cursor: pointer;
  }

  .footer_menu .extmenu {
    font-size: var(--footer_menu1_fontsize);
  }

  .footer_menu img {
    display: none;
  }

  .footer_area .menu_lv1 {
    padding-left: 1.8rem;
    list-style: disc;
  }

  .footer_area .nav_item_lv1 {

  }

  .footer_area .extmenu_lv1 {
    display: none;
  }

  .footer_menu_area .fm3 {
    width: 20%;
  }

  .footer_left {
    display: flex;
    align-items: center;
  }

  .footer_left .footer_info {
    display: none;
  }

  .footer_right {
    display: flex;
    column-gap: 1rem;
    align-items: center;
  }

  .footer_info {
    display: flex;
    column-gap: 0.5rem;
  }

  .sitemap_btn_wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 7px);
  }

  .sitemap_btn_wrap a {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background-color: var(--green_600);
    color: #fff;
    border-top-left-radius: var(--borderradius1);
    border-top-right-radius: var(--borderradius1);
    width: fit-content;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .sitemap_btn_wrap a::after {
    width: 1rem;
    filter: var(--white_filter);
  }

  :where(.sitemap_btn_wrap, .sitemap_btn_wrap2) a::after {
    content: '';
    display: block;
    aspect-ratio: 1.2 / 0.75;
    background-image: url(../images/icon/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .sitemap_btn_wrap a:hover,
  .sitemap_btn_wrap a:focus{
    background-color: var(--green_500);
  }

  .sitemap_btn_wrap2 {
    margin-bottom: 2rem;
    text-align: center;
  }

  .sitemap_btn_wrap2 a {
    display: flex;
    width: 6rem;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    height: 2rem;
    align-items: center;
  }

  .sitemap_btn_wrap2 a>span {
    font-size: 0;
    max-height: 0;
    display: block;
    overflow: hidden;
  }

  .sitemap_btn_wrap2 a::after {
    width: 1.5rem;
    filter: var(--green_600_filter);
    transform: rotate(180deg);
  }

  .sitemap_btn_wrap2 a:hover::after,
  .sitemap_btn_wrap2 a:focus::after{
    filter: var(--green_400_filter);
  }

  .footer_area1 .footer_area_inner.active {
    padding-top: 2rem;
    max-height: 33333333333333333px;
  }

  .footer_area1:has(.footer_area_inner.active) .sitemap_btn_wrap {
    display: none;
  }

  /*
***
* SECTION FOR top button 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***/
  .bottom_nav {
    position: relative;
    z-index: 6000;
    text-align: right;
  }

  .top_btn {
    --top_btn_size: 3.25rem;
    display: block;
    position: fixed;
    right: 1.5rem;
    bottom: 1rem;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
  }

  .top_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: var(--top_btn_size);
    height: var(--top_btn_size);
    background-color: #bad27d;
    border-radius: 50%;
  }

  .top_btn a:before {
    content: "";
    display: block;
    width: 45%;
    height: 45%;
    background-image: url(../images/icon/icon_top.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    filter: var(--green_600_filter);
  }

  .top_btn a:hover,
  .top_btn a:focus {
    background-color: var(--green_600);

  }

  .top_btn a:hover,
  .top_btn a:focus {
    text-decoration: none;
  }

  .top_btn a:hover:before,
  .top_btn a:focus:before {
    filter: var(--white_filter);
  }

  .footer_area1.show_topBtn .top_btn {
    opacity: 1;
  }

  .footer_area1.in_view .top_btn {
    position: absolute;
    bottom: calc(var(--top_btn_size) / 2 * -1);
  }


  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR mobile menu
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .menu_section {
    overflow-y: auto;
  }

  .menu_section.row {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
    justify-content: space-between;
    align-items: flex-end;
  }

  .toggle_menu {
    color: #000;
    transition: transform 0.5s;
    background: var(--green_100);
    width: 100%;
    height: 100vh;
    transform: translateX(105%);
    position: fixed;
    z-index: 8000;
    top: 0;
    right: 0;
    max-width: 34rem;
    display: grid;
    grid-template-rows: max-content 1fr;
  }

  .ieVersion .toggle_menu {
    transition: none;
  }

  .toggle_menu .search_btn {
    max-width: 2rem;
  }

  .mobile_menu_active .mobile_menu,
  .search_menu_active .search_menu,
  .lang_menu_active .lang_menu {
    transform: translateX(0);
    -ms-box-shadow: 0 0 4px 2px rgba(40, 40, 40, 0.2);
    box-shadow: 0 0 4px 2px rgba(40, 40, 40, 0.2);
  }

  .mobile_menu .share_btn {
    display: none;
  }

  .mobile_menu .shareList {
    margin-top: 1rem;
  }

  .mobile_menu .social_media_btn {
    display: flex;
    flex-wrap: wrap;
  }

  .mobile_menu .social_media_btn>li {
    margin-right: 1rem;
  }

  .mobile_menu .langTool {
    display: none;
  }

  .mobile_menu .langTool a {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .mobile_menu .menuwrapper {
    overflow-y: auto;
    height: calc(100% - 5.75rem);
  }

  .mobile_menu .nav_item {
    margin-bottom: 0;
  }

  .mobile_menu .nav_link_wrap {
    position: relative;
  }

  .mobile_menu .hidden_sub_menu .menu_plus {
    display: none;
  }

  .mobile_menu .menu_plus_lv0 {
    display: none;
  }

  .mobile_menu .menu_lv0 {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }

  .mobile_menu .nav_item_lv0 {

  }

  .mobile_menu .nav_link_lv0 {
    font-size: 1.125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.3rem;
    padding-right: 2.8rem;
    text-align: left;
    text-decoration: none;
    position: relative;
    color: var(--green_500);
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--light_grey_300);
  }

  .mobile_menu .arrow_lv0 {
    width: 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    filter: var(--green_600_filter);
  }

  .mobile_menu .arrow_lv0:after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.25rem;
    background-image: url(../images/icon/icon_prev.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
  }

  .mobile_menu .nav_item_lv0.open .arrow_lv0:after {
    transform: rotate(-270deg);
  }

  .mobile_menu .nav_item_lv0.open .extmenu_lv0 {
    border-top: 6px solid var(--green_300);
  }

  .mobile_menu .nav_link_lv0:hover,
  .mobile_menu .nav_link_lv0:focus,
  .mobile_menu .nav_link_wrap:has(.arrow:hover) .nav_link_lv0,
  .mobile_menu .nav_link_wrap:has(.arrow:focus) .nav_link_lv0 {
    background-color: var(--green_150);
  }

  .mobile_menu .nav_link_lv0.excLi .menu_plus {
    display: none;
  }


  .mobile_menu .extmenu {
    position: static;
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
    display: block;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
  }

  .mobile_menu .open>.extmenu {
    max-height: 3000px;
  }

  .mobile_menu .menu_lv1 {
    padding-left: 0;
  }

  .mobile_menu .nav_link_lv1 {
    font-size: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 2.2rem;
    padding-right: 3rem;
    text-align: left;
    text-decoration: none;
    color: #000;
    position: relative;
    background-color: #fff;
    display: grid;
    grid-template-columns: 2rem 1fr;
    column-gap: 1rem;
    border-bottom: 1px solid var(--light_grey_300);
  }

  .mobile_menu .nav_link_lv1 .myText {
    padding-top: 0.24rem;
  }

  .mobile_menu .nav_link_lv1:hover,
  .mobile_menu .nav_link_lv1:focus {
    background-color: var(--blue_100);
  }

    .mobile_menu .nav_link_lv1 img{
    filter: var(--icon_filter);
  }


  .mobile_menu .menu_plus_lv1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* top: 1.3rem; */
  }

  .mobile_menu .menu_plus_lv1>span {
    position: relative;
    left: auto;
    width: 0.75rem;
    height: 0.75rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile_menu .extmenu_lv1 {
    background-color: var(--green_150);
  }

  .mobile_menu .menu_lv2 {
    padding-left: 0;
  }

  .mobile_menu .menu_lv2>li {
    list-style-type: none;
  }


  .mobile_menu .nav_link_lv2 {
    font-size: 1rem;
    display: block;
    background-color: var(--menu2_bg_color);
    color: var(--menu2_text_color);
    padding-left: 3.5rem;
    padding-right: 3rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
    line-height: 1.4em;
  }

  .mobile_menu .nav_link_lv2:hover,
  .mobile_menu .nav_link_lv2:focus {
    color: var(--menu2_hover_text_color);
    background-color: var(--blue_200);
  }

  .mobile_menu .menu_plus:before,
  .mobile_menu .menu_plus:after {
    background-color: #fff;
  }

  .search_menu .mobSearch {
    display: none;
  }

  .search_menu .search_btnwrap {
    display: none;
  }

  .search_menu .searchTool {
    height: 100%;
    padding: 1.8181rem;
  }

  .search_menu .search_label {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: block;
    width: 100%;
    height: auto;
  }

  .search_menu form {
    display: block;
  }

  .search_area {
    width: 100%;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
  }

  .search_area input {
    background-color: transparent;
    border: 0;
    font-size: 1.125rem;
    padding: 1rem 0.75rem;
    width: calc(100% - 1.25rem);
    display: flex;
    align-items: center;
    color: #000;
  }

  .search_area input::-webkit-input-placeholder,
  .search_area input::placeholder,
  .search_area input::placeholder {
    color: #000;
  }

  .mobile_menu_active,
  .search_menu_active,
  .lang_menu_active {
    overflow: hidden;
  }

  .lang_menu .langTool {
    position: static;
    transform: none;
    display: block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lang_menu .langTool li a {
    background-color: transparent;
    color: #000;
    min-width: inherit;
    border: 0;
  }

  .js_scroll_blanket {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7500;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 0;
  }

  .mobile_menu_active .js_scroll_blanket {
    display: block;
  }

  .search_menu_active .js_scroll_blanket {
    display: block;
  }

  .lang_menu_active .js_scroll_blanket {
    display: block;
  }

  /*
***
* SECTION FOR menu button
***
***
*/
  .menu_btn {
    padding-right: 0;
    padding-left: 0;
    z-index: 4000;
    display: none;
  }

  .menu_btn a {
    display: block;
    width: 2.5rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu_btn img {
    width: 2.25rem;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .menu_btn a:focus img,
  .menu_btn a:hover img {
    transform: scale(1.4, 1);
  }

  .menu_btn .border_box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu_btn .border_box>span {
    width: 100%;
    height: 4px;
    display: block;
    background-color: #000;
  }

  .menu_btn .border_box>span:not(:first-child) {
    margin-top: 0.4rem;
  }


  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR section banner 
***
* A paragraph with information
* that would be useful for someone
* who didn't write the code.
* The asterisks around the paragraph 
* help make it more readable.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/

  .section_header_banner {
    /*height: 11.5rem;
    position: relative;*/
  }

  .section_header_banner div:has(>h1) {
    font-size: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .section_header_banner img {
    width: 100%;
  }

  .section_header_banner>.container {}

  .section_header_banner>.container>div:first-child {}

  .section_header_banner .bg {}

  .section_header_banner img {}

  .section_header_banner h1 {
    margin-top: 0;
    margin-bottom: 0;
  }

}

@layer greyscale {
    :root:has(.greyscale) {
        --grayscale_filter: grayscale(100%) grayscale(100%);
        --grayscale_filter2: grayscale(100%);
    }

    html:has(.greyscale){
       
    }

    .greyscale :where(.header_area, .footer_area) {
       -webkit-filter: var(--grayscale_filter);
        -moz-filter: var(--grayscale_filter);

        -ms-filter: var(--grayscale_filter2);
        -o-filter: var(--grayscale_filter2);
        filter: var(--grayscale_filter2);
        filter: gray;
    }

    .greyscale :where(.main_area1,
        .main_area2,
        .main_area3,
        .main_area4) {
       -webkit-filter: var(--grayscale_filter);
        -moz-filter: var(--grayscale_filter);

        -ms-filter: var(--grayscale_filter2);
        -o-filter: var(--grayscale_filter2);
        filter: var(--grayscale_filter2);
        filter: gray;
    }

    .greyscale .toggle_menu {
        -webkit-filter: var(--grayscale_filter);
        -moz-filter: var(--grayscale_filter);

        -ms-filter: var(--grayscale_filter2);
        -o-filter: var(--grayscale_filter2);
        filter: var(--grayscale_filter2);
        filter: gray;
    }

    .greyscale .main_popup{
      -webkit-filter: var(--grayscale_filter);
        -moz-filter: var(--grayscale_filter);

        -ms-filter: var(--grayscale_filter2);
        -o-filter: var(--grayscale_filter2);
        filter: var(--grayscale_filter2);
        filter: gray;
    }
}

@layer layout {
  .img_grid {
    margin-top: 1rem;
    display: grid;
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .img_grid_center {
    justify-content: center;
  }

  .img_grid img {}

  .img_grid1 {
    display: grid;

    column-gap: 4rem;
  }

  .img_grid1 *:first-child {
    margin-top: 0;
  }

  .img_grid1 *:last-child {
    margin-bottom: 0;
  }

  .img_grid1_1 {
    grid-template-columns: 1fr 35%;
  }

  .img_grid1_2 {
    grid-template-columns: 35% 1fr;
  }

  .img_grid1_1_max {
    grid-template-columns: 1fr max-content;
  }

  .img_grid1_2>*:first-child {
    order: 2;
  }

  .img_grid1_2>*:last-child {
    order: 1;
  }



  .img_grid2 {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .img_grid2_2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .img_grid2_2_3 {
    column-gap: 3rem;
  }

  .img_grid3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .img_grid4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .special_img_grid {
    margin-top: 1rem;
    display: grid;
    column-gap: 1rem;
    row-gap: 2rem;
  }

  .special_img_grid figure {

    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 0;
  }

  .special_img_grid figcaption {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  .special_img_grid figure img {
    height: 100%;

  }

  .special_img_center img {
    margin-left: auto;
    margin-right: auto;
  }

  .special_img_center figcaption {
    text-align: center;
  }

}

@layer layout {
  .section_wrapper:not(:last-child, :has(+.back_btn_wrap)) {
    border-bottom: 1px solid #000;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section_wrapper *:last-child {
    margin-bottom: 0;
  }

  .section_inner {
    display: grid;
    row-gap: 3rem;
  }
}

@layer layout{
  .inner_menu_section .menu_lv0{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 1.5rem;
    row-gap: 2.5rem;
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  .inner_menu_section .nav_item_lv0 {
    margin-bottom: 0;
  }
  .inner_menu_section .extmenu_lv0{
    display: none;
  }

  .inner_menu_section .nav_link_lv0 {
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1rem;
    align-items: center;
  }

  .inner_menu_section .nav_link_lv0 img{
    filter: var(--icon_filter);
  }
}

/* ========================= ========================= ========================= ========================= ========================= =========================
***
* please make sure all layout css inside @layer layout {}
***
* please make sure all layout css inside @layer layout {}
* please make sure all layout css inside @layer layout {}
* Use CSS @layer
* Use CSS @layer
* Use CSS @layer
***
 ========================= ========================= ========================= ========================= ========================= =========================*/