@import "../plugin/css/swiper-bundle.min.css" layer(plugin);

/* ========================= ========================= ========================= ========================= ========================= =========================
***
* please make sure all components css inside @layer components 
***
* please make sure all components css inside @layer components 
* please make sure all components css inside @layer components 
* Use CSS @layer
* Use CSS @layer
* Use CSS @layer
***
 ========================= ========================= ========================= ========================= ========================= =========================*/

@layer components {

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR document icon 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .icon1 {
    height: 1.75rem;
  }

  .pdfonlyicon {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
  }

  .pdfa {
    /*display: inline-block;*/
    /*vertical-align: bottom;*/
  }

  .document_icon,
  .iconExtlink {
    width: 1.5rem;
    height: 1.75rem;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: text-bottom;
    position: relative;
    display: inline-block;
  }

  .iconExtlink {
    width: 1.75rem;
  }

  .document_icon:before,
  .document_icon:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .document_icon:after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .iconPdf:before {
    background-image: url("../images/icon/icon_pdf.svg");
  }

  .iconDoc:before {
    background-image: url("../images/icon/icon_doc.svg");
  }

  .iconXls:before {
    background-image: url("../images/icon/icon_xls.svg");
  }

  .iconPpt:before {
    background-image: url("../images/icon/icon_ppt.svg");
  }

  .iconCsv:before {
    background-image: url("../images/icon/icon_csv.svg");
  }


  .iconExtlink:before {
    background-image: url("../images/icon/icon_extlink.svg");
    filter: var(--greygreen_400_filter);
  }

  .pdfa:hover .iconPdf::after,
  .pdfa:focus .iconPdf::after,
  .doca:hover .iconDoc::after,
  .doca:focus .iconDoc::after,
  .xlsa:hover .iconXls::after,
  .xlsa:focus .iconXls::after,
  .ppta:hover .iconPpt::after,
  .ppta:focus .iconPpt::after,
  .csva:hover .iconCsv::after,
  .csva:focus .iconCsv::after,
  .extlink_withtext:hover .iconExtlink::after,
  .extlink_withtext:focus .iconExtlink::after {
    opacity: 1;
  }

}

@layer components {

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR swiper slider 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .swiperhugecontainer {
    --swiper_btn_size: 3rem;
    --swiper_btn_gap: 1rem;
  }

  .swiperbigcontainer {
    position: relative;
  }

  .swiper_nav {
    position: relative;
    display: flex;
    align-items: center;
  }

  .swiper_nav:has(.swiper-pagination-lock) {
    display: none;
  }

  .nownopagin .swiper_nav {
    display: none;
  }

  .swiperpaginwrapper {
    display: inline-block;
  }

  .swiper_nav .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }


  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;

  }

  .swiper-button-prev,
  .swiper-button-next {
    --swiper_btn_hover_bg_color: var(--dark_grey_700);
    background: none;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: var(--swiper_btn_size);
    height: var(--swiper_btn_size);
    border-radius: 50%;
    background-color: var(--dark_grey_600);
    transform: translateY(-50%);
  }

  .swiper-button-prev:before,
  .swiper-button-next:before {
    content: "";
    background-image: url("../images/icon/icon_prev.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 45%;
    height: 45%;
    display: block;
    filter: var(--white_filter);
  }

  .swiper-button-next:before {
    transform: rotate(180deg);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    content: "";
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover,
  .swiper-button-prev:focus,
  .swiper-button-next:focus {
    background-color: var(--swiper_btn_hover_bg_color);
  }

  .swiper_nav .swiper-button-prev,
  .swiper_nav .swiper-button-next {
    position: static;
  }

  .swiper-button-pause {
    display: flex;
    align-items: center;
    column-gap: 1px;
    position: relative;
    font-size: 0;
    width: var(--dpo_minimum_require_btn_size);
    height: var(--dpo_minimum_require_btn_size);
  }

  .swiper-button-pause:hover,
  .swiper-button-pause:focus {
    cursor: pointer;
  }

  .swiper-button-pause:before,
  .swiper-button-pause:after {
    content: "";
    width: 0.25rem;
    height: 67%;
    display: block;
    background-color: var(--dark_grey_600);
  }

  .swiper-button-pause:hover::before,
  .swiper-button-pause:focus::before,
  .swiper-button-pause:hover::after,
  .swiper-button-pause:focus::after {
    background-color: var(--green_500);

  }

  .paused .swiper-button-pause:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5rem 0 0.5rem 1rem;
    /*border-color: transparent transparent transparent #00335b;*/
    border-color: transparent transparent transparent #000;
    background-color: transparent;
    margin-top: 1px;
  }

  .paused .swiper-button-pause:after {
    display: none;
  }

  .paused .swiper-button-pause:hover:before,
  .paused .swiper-button-pause:focus::after {
    border-left-color: var(--green_500);
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet {
    --bullet_visible_size: max(0.5rem, 8px);
    box-shadow: none;
    /*dpo w3c requirement at least 24px * 24px*/
    width: var(--dpo_minimum_require_btn_size);
    height: var(--dpo_minimum_require_btn_size);
    border-radius: 0;
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet::before {
    content: '';
    display: block;
    width: var(--bullet_visible_size);
    height: var(--bullet_visible_size);
    /*background-color: var(--green_200);*/
    background-color: var(--green_400);
    border-radius: 50%;
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet::after {
    content: '';
    display: block;
    width: calc(var(--bullet_visible_size) * 2);
    height: calc(var(--bullet_visible_size) * 2);
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    transition: border-color 0.3s ease-in-out;
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet:hover::before,
  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet:focus::before {
    background-color: var(--green_600);
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet:hover::after,
  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet:focus::after {
    border-color: var(--green_600);
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
  }

  .swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border-color: #000;
  }


  .swiper-slide:has(.card) {
    height: auto;
  }

  .swiper-slide .card {
    /*inner_spacing for show whole box shadow*/
    --inner_spacing: 4px;
    display: grid;
    grid-template-rows: max-content 1fr;
    width: calc(100% - var(--inner_spacing) * 2);
    height: calc(100% - var(--inner_spacing) * 2);
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--inner_spacing);
  }

  .swiper-slide .card .card_content {
    align-content: flex-start;
  }

  .swiper-fade .swiper-slide {
    opacity: 0 !important;
    /*transition: opacity 0.4s ease-in-out;*/
  }

  .swiper-fade .swiper-slide-active {
    opacity: 1 !important;
  }

  .swiper_style1 .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }

  .swiper_style1 .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
  }

  .swiper_style1 .swiper_nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
  }


  .swiper_style2 .swiper {
    max-width: calc(100% - calc(var(--swiper_btn_size) * 2) - calc(var(--swiper_btn_gap) * 2));
  }


  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR accordion 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .big_accordion {
    list-style-type: none;
    padding-left: 0;
  }

  .big_accordion .expand_all_btn {
    font-size: 1rem;
    display: block;
    text-align: right;
    margin-bottom: 0.5rem;
  }

  .big_accordion .accordion_item:not(:last-child) {
    border-bottom: 1px solid var(--light_grey_400);
  }

  .big_accordion .under_r {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .big_accordion .under_r:has(.item_highlight) {
    overflow: visible;
  }

  .big_accordion :where(.top_r, .under_r) {
    display: flex;
  }

  .big_accordion .top_r {
    position: relative;
  }

  .big_accordion .top_r a:not(.icon) {
    color: var(--green_400);
    font-size: 1.2rem;
    display: block;
    position: relative;
    text-decoration: none;
  }

  .big_accordion .top_r a:not(.icon) {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 3rem;
  }


  .big_accordion .top_r .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
  }

  .big_accordion .accordion_item .icon::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 0.75rem;
    background-image: url("../images/icon/icon_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
  }

  .big_accordion .top_r :is(a:hover, a:focus) {
    text-decoration: none;
    background-color: var(--green_100);
    color: var(--green_600);
  }

  .big_accordion .accordion_item .top_r:has(a:hover, a:focus) .icon::after {}

  .big_accordion .cont {
    padding-top: 1rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-bottom: 1.2rem;
    width: 100%;
  }

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


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


  .big_accordion .accordion_item.active {}

  .big_accordion .accordion_item.active .top_r a {
    background-color: var(--green_400);
    color: #fff;
  }

  .big_accordion .accordion_item .top_r .icon::after {
    filter: var(--green_400_filter)
  }

  .big_accordion .accordion_item.active .top_r .icon::after {
    transform: translateY(-50%) rotate(180deg);
    filter: var(--white_filter);
    top: 45%;
  }

  .big_accordion .accordion_item.active .under_r {
    max-height: 10000px;
    opacity: 1;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR alert 
***
* 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 FOR badge 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .badge {
    padding: 0.312rem 0.5rem;
    border-radius: var(--borderradius1);

    font-size: 0.95rem;
    display: inline-block;

  }

  .badge:hover,
  .badge:focus {
    background-color: var(--badge_hover_bg_color);
    color: var(--badge_hover_text_color);
  }

  .badge1 {
    --badge_hover_bg_color: var(--blue_300);
    --badge_hover_text_color: #000;
    background-color: var(--blue_200);
    color: #000;
  }

  .badge_row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    padding-left: 0;
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .badge_row>* {
    margin-bottom: 0;
  }

  .badge .document_icon {
    display: none;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .btn {
    text-align: center;
    display: inline-block;
    align-content: center;
    padding: 1rem 1.8rem;
    text-decoration: none;
    font-size: 1rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: var(--btn_bg_color);
    border: 1px solid var(--btn_bg_color);
    color: var(--btn_text_color);
  }

  .btn:hover,
  .btn:focus {
    cursor: pointer;
    color: var(--btn_hover_text_color);
    background-color: var(--btn_hover_bg_color);
    border-color: var(--btn_hover_bg_color);
  }

  .btn .document_icon {
    display: none;
  }

  .btn1 {
    --btn_text_color: #fff;
    --btn_bg_color: var(--green_400);
    --btn_hover_text_color: #fff;
    --btn_hover_bg_color: var(--green_500);
  }

  .btn2 {
    --btn_text_color: var(--green_400);
    --btn_bg_color: transparent;
    --btn_hover_text_color: var(--green_600);
    --btn_hover_bg_color: transparent;
  }

  .btn3 {
    --btn_text_color: #fff;
    --btn_bg_color: var(--green_600);
    --btn_hover_text_color: #fff;
    --btn_hover_bg_color: var(--green_400);
  }

  .btn3.active_state {
    --btn_bg_color: var(--green_400);
    --btn_hover_bg_color: var(--green_400);
  }

  .btn4 {
    --btn_bg_color: transparent;
    --btn_hover_bg_color: var(--light_grey_200);
  }

  .btn_outline {
    border: 1px solid var(--btn_outline_color);
  }

  .btn1_outline {
    --btn_outline_color: var(--green_400);
    --btn_text_color: var(--green_400);
    --btn_bg_color: transparent;
    --btn_hover_text_color: #fff;
    --btn_hover_bg_color: var(--green_600);
  }

  a[download] {
    padding-left: 1rem;
    padding-right: 1rem;
    display: inline-flex;
    column-gap: 0.75rem;
  }

  a[download]::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/icon/icon_download.svg');
  }

  :where(.btn1, .btn3)[download]::after {
    filter: var(--white_filter);
  }

  .icon_btn {
    display: inline-flex;
    column-gap: 0.75rem;
  }

  .icon_btn::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .icon_btn:where(.btn1, .btn3)::after {
    filter: var(--white_filter);
  }


  .know_more_btn {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
  }

  .know_more_btn::before {
    content: '';
    display: block;
    background-image: url('../images/icon/icon_prev.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.3rem;
    aspect-ratio: 36 / 31;
    filter: var(--green_400_filter);
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
  }

  .know_more_btn .document_icon {
    display: none;
  }

  .know_more_btn2::after {
    aspect-ratio: 1.2 / 0.75;
    background-image: url(../images/icon/icon_arrow.svg);
    height: auto;
    transition: all .3s ease-in-out;
  }

  .know_more_btn2.active::after {
    transform: rotate(180deg);
  }


  .cross_btn {
    margin-left: auto;
  }

  .cross_btn a {
    color: #000;
    font-size: 1.125rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }

  .cross_btn a>span:first-child {
    display: inline-block;
    padding-right: 0.75rem;
  }

  .cross_btn a>span:last-child {
    position: relative;
    min-width: 16px;
    min-height: 16px;
    display: inline-block;
    font-size: 0;
  }

  .cross_btn a>span:last-child:before,
  .cross_btn a>span:last-child:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 26px;
    height: 2px;
    background-color: #000;
  }

  .cross_btn a>span:last-child:before {
    transform: translate(0, -50%) rotate(45deg);
    margin-left: -2px;
  }

  .cross_btn a>span:last-child:after {
    transform: translate(0, -50%) rotate(-45deg);
    margin-left: -2px;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR card 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .card {
    background-color: #fff;
    border-radius: var(--borderradius2);
    overflow: hidden;
    display: block;
    width: 100%;
    box-shadow: var(--shadow2);
  }

  .card .title {
    font-size: 1.5rem;
    font-weight: bold;

    color: var(--green_400);
    line-height: 1.5;
  }

  .chineseVersion .card .title {
    -webkit-text-stroke: clamp(0.35px, 0.04vw, 0.7px) var(--green_400);
  }

  .card .title:has(+*:not(.icon)) {
    margin-bottom: 1rem;
  }

  .card .img_wrap {
    position: relative;
  }

  .card .img_wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: max(6px, .375rem);
    background-color: var(--green_300);
    position: absolute;
    bottom: -1px;
  }

  .card .card_content {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 3.5rem;
    padding-bottom: 1.5rem;
    min-height: min(138px, 9vw);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
  }

  .card .icon {
    width: 5rem;
    height: 5rem;
    background: #C5C5C5;
    background: linear-gradient(120deg, rgba(197, 197, 197, 1) 0%, rgba(255, 255, 255, 1) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .card .icon::after {
    content: '';
    width: 37%;
    height: 37%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/icon/icon_prev.svg');
    filter: var(--green_400_filter);
    transform: rotate(180deg);
    transform-origin: center;
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .card .img_wrap img {
    width: 100%;
  }

  .card_row {
    display: grid;
    column-gap: clamp(1rem, 1.7vw, 2.5rem);
    row-gap: 1rem;
  }

  .card_row>* {
    display: grid;
    grid-template-rows: subgrid;
  }

  .card_row>*:has(>:nth-child(2):last-child) {
    grid-row: span 2;
  }

  .card_row>*:has(>:nth-child(3):last-child) {
    grid-row: span 3;
  }

  .card_row>*:has(>:nth-child(4):last-child) {
    grid-row: span 4;
  }

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

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

  }

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

  }


  .card_row4 .card .card_content {
    padding-top: 0.5rem;
  }

  .card2 {
    /*display: grid;
    grid-template-areas: 'stack';*/
  }

  .card2 .card_inner {
    grid-area: stack;
  }

  .card2 .collapse_content {
    width: calc(100% * var(--item_in_each_row) + var(--total_gap));
    grid-area: stack;
    display: grid;
    grid-template-rows: max-content 1fr;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
  }

  .card2 .collapse_content .arrow {
    display: flex;
    justify-content: center;
  }

  .card2 .collapse_content .arrow:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 1.25rem solid transparent;
    border-right: 1.25rem solid transparent;
    border-bottom: 1.25rem solid var(--green_100);
  }

  .card2 .collapse_content.active {
    margin-top: 1.5rem;
    max-height: 9999999px;
  }

  .card2:has(.collapse_content.active) .know_more_btn2::after {
    transform: rotate(180deg);
  }

  .card2 .collapse_inner {
    padding: 2rem;
    background-color: var(--green_100);
  }

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

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

  .card2 .card_img {

    margin-bottom: 2rem;
  }

  .card2 .title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--green_400);
    margin-bottom: 2rem;

  }

  .card2 .card_inner>* {
    text-align: center;
  }

  .card2_row {
    --column_gap_size: clamp(1rem, 1.7vw, 2.5rem);

    --number_of_gap_in_each_row: calc(var(--item_in_each_row) - 1);
    --total_gap: calc(var(--column_gap_size) * var(--number_of_gap_in_each_row));
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--column_gap_size);
    justify-content: center;
  }

  .card2_row>* {
    --each_item_width: calc(calc(100% - var(--total_gap)) / var(--item_in_each_row));
    width: var(--each_item_width);
    margin-bottom: 4rem;
  }


  .card2_row4 {
    --item_in_each_row: 4;
  }

  .card3 {
    font-size: 1.25rem;
  }

  .card3 .title {
    font-weight: bold;
  }

  .card3>* {
    text-align: center;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR popup modal 
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .modal {
    position: fixed;
    z-index: 9000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  .modal_box {
    transition: all 0.4s ease-in-out;
    transform: translateY(110vh);
    opacity: 0;
    /*transform: none;*/
    width: min(calc(100% - 40px), 800px);
    max-height: 70vh;
    border-radius: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.3rem;
    padding-bottom: 1.5rem;
    background-color: var(--white);
    z-index: 5000;
    pointer-events: none;
    position: absolute;
  }

  .modal_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .modal_box .modal_big_content {
    max-height: calc(80vh - 3rem);
    overflow-y: auto;
    font-size: 1.3rem;
  }

  .modal_box .modal_content:focus {
    outline: none;
  }

  .modal_box .close_wrapper {
    /* width: 100%; */
    position: absolute;
    right: 0;
    top: -2.25rem;
    /* background-color: var(--white); */
    /* border-radius: 50%; */
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal_box .close_wrapper a {
    display: inline-block;
    position: relative;
    font-size: 0;
    /* border-radius: 50%; */
    /* border: 2px solid #000; */
    width: 100%;
    height: 100%;
  }

  .modal_box .close_wrapper a:hover,
  .modal_box .close_wrapper a:focus {
    color: #a1fba3;
  }

  .modal_box .close_wrapper a:before,
  .modal_box .close_wrapper a:after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background-color: var(--white);
    top: 45%;
    position: absolute;
    left: 10%;
  }

  .modal_box .close_wrapper a:before {
    transform: rotate(45deg);
  }

  .modal_box .close_wrapper a:after {
    transform: rotate(-45deg);
  }

  .modelopen {
    overflow: hidden;
  }

  .show_modal_box .modal_box {
    display: block;
  }

  .modal.modalopen {}

  .modal.modalopen .modal_box {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .modalopen .modal_bg {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
    z-index: 100;
    position: absolute;
  }

  .modal_img a:has(img) {
    display: block;
  }

  .modal_img p:has(img) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .exceed_height .modal_img * {
    height: 100%;
  }

  .photoslider_modal .modal_box {
    background-color: transparent;
    width: 100%;
    pointer-events: none;
  }

  .photoslider_modal.modalopen .modal_box {
    display: grid;
    grid-template-rows: max-content 1fr;
    pointer-events: auto;
  }

  .photoslider_modal.modalopen .modal_box:has(.img_caption_in_modal) {
    grid-template-rows: max-content 1fr max-content;
  }

  .photoslider_modal .swiper-slide {
    text-align: center;
  }

  .photoslider_modal .swiper {
    max-width: 90vw;
  }

  .photoslider_modal .img_caption_in_modal {
    text-align: center;
    margin-top: 1.3rem;
    color: #fff;
    font-size: 1.125rem;
  }

  .photoslider_modal .swiper-button-lock {
    display: none;
  }

  /* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR pagination 
***
* 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 FOR tab 
***
* 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 FOR component table
***
* 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.
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
  .scroll_table .scroll_table_inside_wrapper {
    overflow-x: auto;
  }

  .table_wrapper1 {}

  .table_wrapper1 th {
    font-size: 1.125rem;
    font-weight: 600;
  }

  .table_wrapper1 thead th {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    background-color: var(--green_150);
  }

  .table_wrapper1 tbody :where(th, td) {
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    padding-top: var(--main_table_td_pad_top);
    padding-bottom: var(--main_table_td_pad_bottom);
    font-size: 1.125rem;
  }

  .table_wrapper1 tbody>*:nth-child(even) {
    background-color: var(--light_grey_100);
  }

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

  .table_wrapper1 td:has(.mobiletd)>*:nth-child(2) {
    margin-top: 0;
  }

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

  .table_wrapper1 td *:only-child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .table_wrapper2 {}

  .table_wrapper2 table {}

  .table_wrapper2 th {
    font-size: 1.125rem;
    font-weight: 600;
  }

  .table_wrapper2 thead th {
    padding: 1.75rem;
  }

  .table_wrapper2 th:nth-child(2) {
    background-color: var(--green_400);
    color: #fff;
    text-align: center;
  }

  .table_wrapper2 th:nth-child(3) {

    background-color: var(--greygreen_400);
    color: #fff;
    text-align: center;
  }

  .table_wrapper2 th a {
    color: #fff;
  }

  .table_wrapper2 tbody :where(th, td) {
    /*padding-left: 1.5rem;
  padding-right: 1.5rem;*/
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    padding-top: var(--main_table_td_pad_top);
    padding-bottom: var(--main_table_td_pad_bottom);
  }

  .table_wrapper2 td {
    font-size: 1.125rem;
  }

  .table_wrapper2 :where(th, td) {
    /*text-align: center;*/
  }

  .table_wrapper2 :where(th, td) {}

  .table_wrapper2 tbody tr:nth-child(odd) td {
    background-color: var(--light_grey_100);
  }

  .table_wrapper2 .document_icon {
    width: 2.75rem;
    height: 2.75rem;
    vertical-align: middle;
  }




  .table_wrapper3 thead th {
    border-top: 2px solid var(--green_300);
    border-bottom: 2px solid var(--green_300);
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-weight: 400;
  }

  .table_wrapper3 tbody :where(th, td) {
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 400;
  }

  .table_wrapper3 tbody tr:nth-child(even) td {
    background-color: var(--light_grey_100);
  }

  .table_wrapper3 .title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .table_wrapper3 .sub_content {
    font-size: 0.95rem;
  }

  .table_wrapper3 .sub_title {
    margin-bottom: 0.5rem;
  }
}



@layer components {
  .icon_title {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1.5rem;
    align-items: center;
  }

  .icon_title:before {
    content: '';
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .icon_title.icon_news_before:before {
    background-image: url('../images/icon/icon_news.svg');
  }

  .icon_title.icon_calendar_before:before {
    background-image: url('../images/icon/icon_calendar.svg');
  }
}

@layer components {
  .link_list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: grid;
    grid-template-columns: max-content 1fr;
  }

  .link_list>li {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    column-gap: 2rem;
    border-bottom: 1px solid #000;
    padding-bottom: 1.7rem;
    padding-top: 1.7rem;
    margin-bottom: 0;
  }

  .link_list a {
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: 1rem;
    align-items: center;
  }

  .link_list a::after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/icon/icon_prev.svg);
    transform: rotate(180deg);
    transform-origin: center;
  }
}

@layer components {
  .back_btn_wrap {
    margin-top: 4rem;
  }

  .back_btn_wrap a {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    column-gap: 1rem;
    font-weight: bold;
    width: fit-content;
  }

  .back_btn_wrap .icon_wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid var(--green_400);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .back_btn_wrap .icon_wrap::before {
    content: '';
    display: block;
    width: 65%;
    height: 65%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/icon/icon_prev.svg);
    transform-origin: center;
    filter: var(--green_400_filter);
  }

  .back_btn_wrap a:hover,
  .back_btn_wrap a:focus {
    color: var(--green_600);
  }

  .back_btn_wrap a:hover .icon_wrap,
  .back_btn_wrap a:focus .icon_wrap {
    background-color: var(--green_600);
    border-color: var(--green_600);
  }

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

@layer components {
  .img_title {
    color: #000;
    font-size: 1.3rem;
    display: grid;
    grid-template-columns: 4rem 1fr;
    column-gap: 0.5rem;
    align-items: center;
  }

  .img_title img {
    filter: var(--icon_filter);
    order: 1;
  }

  .img_title .img_title_inner{
    order: 2;
  }
}

@layer components {
  .list_grid1 {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 2.5rem;
  }

  .list_grid1>* {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 2rem;
    padding-right: 2rem;

  }

  .list_grid1>*:nth-child(odd) {
    background-color: var(--light_grey_100);
  }

  .list_grid1 .title {
    font-weight: bold;
    font-size: 1.75rem;
    color: var(--green_600);
    text-align: center;
  }
}

@layer components {
  .normal_list>li:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .normal_list>li p {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .list1 {
    display: grid;

  }

  .list1>li {
    display: grid;
    grid-template-columns: subgrid;
    align-items: center;
  }

  .list1>li:not(:last-child) {
    margin-bottom: clamp(1rem, 3vw, 3rem);
  }

  .list1>li::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #000;
    border-radius: 50%;

    margin-right: 1rem;
    grid-area: bullet;
  }

  .list1>li *:first-child {
    margin-top: 0;
  }

  .list1 .update_date_wrap {
    text-align: right;
  }

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


  .list1_3>li {
    grid-column: span 3;
    grid-template-areas: 'bullet content1 content2';
  }

  .list1_3>li>*:first-child {
    margin-right: 1.5rem;
    grid-area: content1;
  }

  .list1_3>li>*:last-child {
    grid-area: content2;
    text-align: right;
  }

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

  .list1_4>li {
    grid-column: span 4;
    grid-template-areas: 'bullet content1 content2 content3';
  }

  .list1_4>li>*:first-child {
    margin-right: 1.5rem;
    grid-area: content1;
  }

  .list1_4>li>*:nth-child(2) {
    grid-area: content2;
    margin-right: 1.5rem;
  }

  .list1_4>li>*:nth-child(3) {
    grid-area: content3;
  }
}

@layer components {
  .fake_list {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    column-gap: 1.5rem;
    row-gap: 1rem;
  }

  .fake_list>* {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 3;
  }

  .fake_list>*>*:last-child {
    text-align: right;
  }

  .fake_list>*:has(>:nth-child(2):last-child)>*:last-child {
    grid-column: 2 / -1;
  }
}

@layer components {
  .title_row {
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    column-gap: 1.5rem;
    align-items: center;
  }

  .title_row>*:last-child {
    text-align: right;
  }

  .title_row2 {
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: 1.5rem;
    align-items: center;
  }

  .title_row2>*:last-child {
    text-align: right;
  }
}

@layer components {
  .banner_wrap {
    text-align: center;
  }
}

@layer components {
  .fake_table_with_list .title {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    background-color: var(--green_150);
    font-weight: bold;
  }

  .fake_table_with_list>ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .fake_table_with_list>ul>li {
    padding-left: var(--main_table_td_pad_left);
    padding-right: var(--main_table_td_pad_right);
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
    margin-bottom: 0;
  }

  .fake_table_with_list_center .title {
    text-align: center;
  }

  .fake_table_with_list_center>ul>li {
    text-align: center;
  }
}

@layer components {
  .img_border_group_row {
    display: grid;
    column-gap: 1.5rem;
    row-gap: 3.5rem;
  }

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

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

  .img_border_group:only-child {
    grid-template-columns: 17.25rem 1fr;
  }

  .img_border_group {
    display: grid;

    /*grid-template-columns: 17.25rem 1fr;*/
    grid-template-columns: 11.25rem 1fr;
  }

  .img_border_group figure {
    margin: 0;
    z-index: 800;
    padding-bottom: 1.5rem;
  }

  .img_border_group figure img {
    width: 100%;
    box-shadow: .3125rem .3125rem .3125rem 0 rgba(0, 0, 0, 0.3);
  }

  .img_border_group .content_group {
    --overlap_space: 3rem;
    border: 1px solid var(--green_200);
    padding-top: 2rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    padding-left: calc(var(--overlap_space) + 1.5rem);
    margin-left: calc(var(--overlap_space) * -1);
    margin-top: 4rem;
    z-index: 70;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

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

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

  .img_border_group *:has(>.know_more_btn) {
    text-align: right;
  }

  .img_border_group .content_group>* {}
}

@layer components {
  .img_container {
    overflow: hidden;
  }

  .img_container .img_wrap {
    overflow: hidden;
  }

  .img_container:has(.img_caption) {
    display: grid;
    grid-template-areas: 'stack';
    align-items: flex-end;

    height: 100%;
  }

  .img_container:has(.img_caption) .img_wrap {
    grid-area: stack;
  }

  .img_container img {
    transition: all .3s ease-in-out;
  }

  .img_container .img_caption {
    grid-area: stack;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: .5rem;
    height: fit-content;
    z-index: 1000;
  }

  .img_container:hover {
    text-decoration: none;
  }

  .img_container:hover img,
  .img_container:focus img {
    transform: scale(1.1);
  }
}

@layer components {
  .superscript_container {
    display: grid;
    grid-template-columns: max-content 1fr;
    font-size: 1rem;
    column-gap: 0.5rem;
    margin-top: 1.5rem;
  }
}

@layer components {
  .notification {
    margin-top: 4rem;
  }

  .notification1 {
    font-size: 1rem;
    line-height: 1.78;
  }
}

@layer components {
  blockquote {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1.3rem;
    margin-left: 0;
    font-size: 1.5rem;
  }

  blockquote::before {
    content: '';
    display: block;
    width: .25rem;
    height: 100%;
    background-color: var(--green_300);
  }
}

@layer components {
  .hr1 {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hr1::before,
  .hr1::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--green_300);
  }

  .hr1>span {
    width: 2rem;
    height: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }

  .hr1>span::before,
  .hr1>span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--green_300);
  }

  .hr1>span::before {
    margin-bottom: 0.35rem;
  }
}

@layer components {
  .btn_row2 {
    display: flex;
    column-gap: 1rem;
    justify-content: center;
  }
}

@layer components {
  @-webkit-keyframes passing {
    0% {
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      opacity: 0
    }

    50% {
      -webkit-transform: translateX(-25%);
      transform: translateX(-25%);
      opacity: 1
    }

    100% {
      -webkit-transform: translateX(10%);
      transform: translateX(10%);
      opacity: 0
    }
  }

  @keyframes passing {
    0% {
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      opacity: 0
    }

    50% {
      -webkit-transform: translateX(-25%);
      transform: translateX(-25%);
      opacity: 1
    }

    100% {
      -webkit-transform: translateX(10%);
      transform: translateX(10%);
      opacity: 0
    }
  }
}

/* ========================= ========================= ========================= ========================= ========================= =========================
***
* SECTION FOR preloader 
***
***
 ========================= ========================= ========================= ========================= ========================= =========================*/
.preloader3 {

    opacity: 1;
    -webkit-transition: opacity 1s ease 0s;
    -ms-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
    background-color: #FFF;
    /*background-image: linear-gradient(#FFF 0%, #fff 70%, #fff 100%);*/
}

.preloader3.removing {
    opacity: 0;
}

.preloader3.preloader3notshow {
    display: none;
}

.preloader3 .loaderWrap {
    max-width: 100%;
    max-height: 100%;
}

.preloader3 .loader {
    margin-top: 3rem;
    position: relative;
    width: 4rem;
    height: 4rem;
    display: inline-block;
}

.preloader3 .loader:before {
    content: '';
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid rgba(128, 16, 85, 0.4);
    border-top-color: var(--green_400);
}

.preloader3 .loader:before {
    -webkit-animation: spin3 1s infinite linear;
    animation: spin3 1s infinite linear;
}

.preloader3 .txt {
    color: var(--main_text_color);
    text-align: center;
    margin: 10px 0;
}

@-webkit-keyframes spin3 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin3 {
    100% {
        transform: rotate(360deg);
    }
}


/* ========================= ========================= ========================= ========================= ========================= =========================
***
* please make sure all components css inside @layer components 
***
* please make sure all components css inside @layer components 
* please make sure all components css inside @layer components 
* Use CSS @layer
* Use CSS @layer
* Use CSS @layer
***
 ========================= ========================= ========================= ========================= ========================= =========================*/