/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* 
-- inter --
Thin 100 
ExtraLight 200 
Light 300 
Regular 400
Medium 500 
SemiBold 600 
Bold 700
ExtraBold 800 
Black 900 

font-family: 'Inter', sans-serif; 
*/



/* html5doctor.com/html-5-reset-stylesheet/ */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,time,mark,audio,video { margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; } 
body { line-height:1; }
ol,ul { list-style:none; }
blockquote,q { quotes:none; }
blockquote:before,blockquote:after,q:before,q:after { content:'';content:none; }
ins { text-decoration:none; }
del { text-decoration:line-through; }
table { border-collapse:collapse;border-spacing:0; }



html {
  /* box-sizing: border-box; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden;  */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}




/* root */
:root{
  --white: #fff;
  --black: #000;
  --default:#363636; 
  --primary: #10675D;
  --secondary: #11CC67;
  --blue: #056CF2;
  --green: #094A43;
  --bluelight: #DBEEFF;
  --red: #AF0C0C;
  --gary: #C8C8C8;
  --c-menu: #095E54;

  --filter-white: invert(100%) sepia(0%) saturate(7479%) hue-rotate(70deg) brightness(99%) contrast(107%);
  --filter-primary: invert(25%) sepia(68%) saturate(484%) hue-rotate(124deg) brightness(104%) contrast(100%);
  --filter-secondary: invert(56%) sepia(55%) saturate(1478%) hue-rotate(103deg) brightness(100%) contrast(87%);
  --filter-blue: invert(32%) sepia(53%) saturate(7150%) hue-rotate(207deg) brightness(99%) contrast(96%);

  --txt-menu: 15px;
  --txt-bartitle: 32px;
  --txt-default: 18px;
  --txt-titleHome: 24px;

  --txt-hearder: 36px;
  --txt-subhearder: 22px;
  --txt-detail: 17px;
}
@media (max-width: 1920px) {
  :root {
    --txt-bartitle: 30px;
    --txt-default: 16px;
    --txt-titleHome: 24px;
  
    --txt-hearder: 32px;
    --txt-subhearder: 22px;
    --txt-detail: 16px;
  }
}
@media (max-width: 1599px) {
  :root {
    --txt-menu: 13px;
    --txt-default: 15px;
    --txt-bartitle: 28px;
    --txt-titleHome: 22px;

    --txt-hearder: 26px;
    --txt-subhearder: 18px;
    --txt-detail: 14px;
  }
}
@media (max-width: 1339px) {
  :root {
    --txt-bartitle: 26px;
    --txt-default: 14px;
    --txt-titleHome: 20px;

    --txt-hearder: 24px;
    --txt-subhearder: 17px;
    --txt-detail: 13px;
  }
}
@media (max-width: 1199px) {
  :root {
    --txt-default: 15px;

    --txt-hearder: 26px;
    --txt-subhearder: 20px;
    --txt-detail: 14px;
  }
}
@media (max-width: 767px) {
  :root {
    /* --txt-default: 16px; */
    --txt-bartitle: 18px;

    --txt-hearder: 22px;
    --txt-subhearder: 18px;
    /* --txt-detail: 15px; */
  }
}







/* -- CUSTOM CSS -- */
html, body {width:100%; height:100%; padding:0px; margin:0px}

body{ 
	background-color:#FBFBFB; 
}
body{ font-family: 'Inter', sans-serif; font-size:100%; font-weight: 400; color:var(--default); text-decoration:none; }
img {
	border:0px;
}
.img-responsive { display: block; height: auto; max-width: 100%; }

a,
a:hover{
  text-decoration:none;
  color: inherit;
  outline:0; transition: all 0.3s ease;
}
a:focus {
  text-decoration:none;
  outline:0;
}

.btn.focus, .btn:focus{
	outline:0;
	box-shadow: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
.form-control:focus {
  outline: none !important;
  box-shadow: none;
}
input,
select,
textarea{
  background-clip: padding-box;
}

i{ line-height: 0; }


.set-hand{
  cursor: pointer;
}
.div-container--fluid{ width: 100%; margin: 0 auto; }

.div-container{
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .div-container, .div-container--fluid{
    max-width: 540px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .div-container, .div-container--fluid{
    max-width: 750px;
  }
  .div-container--fluid{ max-width: 100%; padding: 0; }
}

@media (min-width: 992px) {
  .div-container{
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .div-container {
    max-width: 1060px;
  }
}
@media (min-width: 1340px) {
  .div-container {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .div-container {
    max-width: 1360px;
  }
}





section{ position: relative; }
.page-section{ margin: 80px 0; }
.page-section2{ padding: 50px 0; }


.bg-F2F2F2{ background-color: #F2F2F2; }


.txt-default{ color: var(--default); }
.txt-primary{ color: var(--primary); }
.txt-secondary{ color: var(--secondary); }
.txt-blue{ color: var(--blue); }
.txt-red{ color: var(--red); }


.link-primary{ color: var(--primary); }
.link-secondary{ color: var(--secondary); }




.b-400{ font-weight: 400; }
.b-500{ font-weight: 500; }
.b-600{ font-weight: 600; }
.b-700{ font-weight: 700; }

h2, h3, h4{ font-weight: 700; line-height: 1.4; }
p, li{ font-size: var(--txt-detail); line-height: 1.5; }

h2{ font-size: var(--txt-hearder); }
h3{ font-size: var(--txt-subhearder); }
h4{ font-size: 18px; }
h5{ font-size: 18px; }

/* 
  h2: 36  --txt-hearder
  h3: 22  --txt-subhearder
  p: 17 --txt-detail
*/


@media (max-width: 1440px) {

  h5{ font-size: 16px; }

}
@media (max-width: 1199px) {

  h5{ font-size: 18px; }

  .page-section{ margin: 50px 0; }

}
@media (max-width: 767px) {

  .page-section{ margin: 30px 0; }
  .page-section2{ padding: 30px 0; }

  h4{ font-size: 16px; }
  h5{ font-size: 17px; }

}




/**********************************************************/
/************************** nav ***************************/
/**********************************************************/

.div-nav{ position: fixed; top: 0; left: 0; width: 100%; z-index: 99; padding: 17px 0; background-color: #F9F9F9; box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.06); }

.div-navtop{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.div-logo a{ display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--c-menu);  }
.div-logo img{ width: 65px; }
.div-top-right{ display: flex; align-items: center; gap: 10px; }
.fontupdown li{ display: inline-block; padding-right: 10px; padding-left: 6px; }
.fontupdown li a{ font-size: 16px; font-weight: 600; color: var(--c-menu); }
.fontupdown li:first-of-type a{ font-size: 14px; font-weight: 400; }
.fontupdown li:last-of-type a{ font-size: 18px; font-weight: 700; }
.fontupdown li a:hover{ color: var(--secondary); }
.fontupdown li:nth-child(2){ border-left: 1px solid var(--c-menu); border-right: 1px solid var(--c-menu); padding-left: 10px; }


.box-btn-faq a{ display: inline-block; background-color: var(--c-menu); font-size: var(--txt-menu); font-weight: 600; color: var(--white); padding: 8px 16px; border-radius: 20px; border: 1px solid var(--c-menu); }
.box-btn-faq a:hover{ background-color: var(--white); color: var(--c-menu); }

.div-signin a{ display: flex; align-items: center; justify-content: center; gap: 5px; background-color: var(--blue); font-size: var(--txt-menu); font-weight: 600; color: var(--white); padding: 3px 4px 3px 12px; border: 1px solid var(--blue); border-radius: 20px; }
.div-signin a span{ display: inline-flex; align-items: center; justify-content: center; background-color: var(--white); border-radius: 50%; width: 26px; height: 26px; }
.div-signin a span img{ width: 13px; filter: var(--filter-blue); }
.div-signin a:hover{ background-color: var(--white); color: var(--blue); }
.div-signin a:hover span{ background-color: var(--blue); }
.div-signin a:hover span img{ filter: var(--filter-white) }

.div-signin.signout a{ flex-direction: row-reverse; padding: 3px 12px 3px 4px; }



.div-navmenu{ display: flex; justify-content: space-between; position: relative; }
.nav-menu{ padding-top: 10px; }
.nav-menu ul{ display: flex; gap: 50px; }
.nav-menu ul li a{ font-size: var(--txt-menu); font-weight: 500; color: var(--c-menu); display: flex; align-items: center; gap: 5px; }
.nav-menu ul li.hassub > a{ border-bottom: 2px solid transparent; }
.nav-menu ul li.hassub > a::after{ content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #339966; transition: all 0.3s ease; }

/* ul.submenu:not(.initial){ display: none; position: absolute; left: 0; } */
ul.submenu{ display: none; position: absolute; left: 0; width: 100%; }
ul.submenu{ padding-top: 20px; }
ul.submenu li{ display: inline-block; margin-right: 9px; margin-left: 9px; margin-bottom: 5px; }
ul.submenu li:last-of-type{ margin-right: 0; }
ul.submenu li a{ font-size: 14px; color: #339966; }
ul.submenu li a:hover{ color: var(--secondary);}

/* .nav-menu ul li.hassub:hover{ padding-bottom: 50px; }
.nav-menu ul li.hassub:hover:nth-child(3){ padding-bottom: 60px; }
.nav-menu ul li.hassub:hover > a{ border-bottom: 2px solid #339966; }
.nav-menu ul li.hassub:hover > a::after{ transform:rotate(180deg); transition: all 0.3s ease; }
.nav-menu ul li.hassub:hover a + ul.submenu{ display: block; } */
.nav-menu ul li.hassub.active{ padding-bottom: 50px; }
.nav-menu ul li.hassub.active > a{ border-bottom: 2px solid #339966; }
.nav-menu ul li.hassub.active > a::after{ transform:rotate(180deg); transition: all 0.3s ease; }
/* .nav-menu ul li.hassub.active a + ul.submenu{ display: block; } */
ul.submenu.active{ display: block; }


.navbar-search{ width: 170px; }
.navbar-search .form-control{ border-radius: 20px; border-left: 0; border-color: var(--c-menu); }
.navbar-search .input-group-text{ background-color: #fff; border-radius: 20px; border-right: 0; border-color: var(--c-menu); }

.navbar-search .form-control::-webkit-input-placeholder {
  color: #C7C7C7;
}
.navbar-search .form-control::-moz-placeholder {
  color: #C7C7C7;
}
.navbar-search .form-control:-ms-input-placeholder {
  color: #C7C7C7;
}
.navbar-search .form-control::-ms-input-placeholder {
  color: #C7C7C7;
}
.navbar-search .form-control::placeholder {
  color: #C7C7C7;
}



.content-pd{ padding-top: 142px; }

.scrolDisabled{
  overflow: hidden;
  /* position: fixed; */
}

.box-btn-faq.faqmobi{ display: none; }



@media (max-width: 1599px){
  
  ul.submenu li{ margin-left: 5px; margin-right: 5px; }
  ul.submenu li a{ font-size: 13px; }

}
@media (max-width: 1339px){
  
  .content-pd{ padding-top: 142px; }

  .nav-menu ul{ gap: 30px; }

  .nav-menu ul li.hassub:hover:nth-child(3){ padding-bottom: 80px; }
  ul.submenu li{ margin-left: 10px; margin-right: 10px; }

  .div-logo a{ font-size: 16px; }
  .div-logo img{ width: 60px; }

}
@media (max-width: 1199px){
  
  .nav-menu ul{ gap: 20px; }
  .navbar-search{ width: 150px; }
 
  ul.submenu{ padding-top: 15px; }
  ul.submenu li a{ font-size: 13px; }

}
@media (max-width: 991px){

  .div-nav .div-container{ max-width: 100%; padding: 0; height: 100%; }
  .div-nav{ position: fixed; top: 0; padding: 0; background-color: #F9F9F9; }

  .div-navtop{ margin-bottom: 0; padding: 15px; position: relative; z-index: 2; }
  .div-navmenu{ display: none; background-color: #FAFAFA; }

  .div-logo{ padding-left: 50px; }
  .div-logo span{ display: none; }
  .div-logo img{ width: 45px; }

  .div-nav.navOpen{ height: 100%; overflow: auto; }
  .div-nav.navOpen .div-navtop{ background-color: #F9F9F9; box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.06); }
  .div-nav.navOpen .div-navmenu{ display: flex; flex-wrap: wrap-reverse; padding: 20px; }

  .navbar-search{ width: 100%; }
  .nav-menu{ width: 100%; padding-top: 20px; }
  .nav-menu ul{ flex-direction: column; gap: 0; }
  .nav-menu ul li a{ justify-content: space-between; }
  ul.submenu{ position: relative; padding-top: 0; }
  ul.submenu li{ display: block; margin-bottom: 15px; }
  .nav-menu ul li.hassub:hover{ padding-bottom: 0; }
  .nav-menu ul li.hassub:hover:nth-child(3){ padding-bottom: 0; }
  .nav-menu ul li.hassub > a{ margin-bottom: 15px; padding-bottom: 10px; }
  
  .nav-menu ul li.hassub:hover > a{ border-bottom: 2px solid #339966; }
  .nav-menu ul li.hassub:hover > a::after{ transform:rotate(180deg); transition: all 0.3s ease; }
  .nav-menu ul li.hassub:hover a + ul.submenu{ display: block; }
  
  .content-pd{ padding-top: 70px; }


#nav-icon1 {
  width: 40px;
  height: 30px;
  position: fixed;
  margin: 0;
  top: 20px;
  left: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 1001;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  background: var(--c-menu);
  border-radius: 10px;
  opacity: 1;
  right: 5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 5px;
}

#nav-icon1 span:nth-child(2) {
  top: 15px;
}

#nav-icon1 span:nth-child(3) {
  top: 25px;
}

#nav-icon1.open span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  right: -30px;
}

#nav-icon1.open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


}
@media (max-width: 576px){

  /* .div-logo img{ width: 55px; } */
  .div-top-right{ gap: 0; }
  .box-btn-faq{ display: none; }

  .div-nav.navOpen .box-btn-faq.faqmobi{ display: block; text-align: center; padding-bottom: 30px; }

  /* #nav-icon1{ top: 25px; }
  .content-pd{ padding-top: 80px; } */

}
@media (max-width: 359px){

  /* .div-logo img{ width: 45px; } */
  .fontupdown li{ padding-right: 5px; padding-left: 5px; }

  /* #nav-icon1{ top: 20px; }
  .content-pd{ padding-top: 70px; } */
  
}


/***********************************************************/
/************************ footer ***************************/
/***********************************************************/

.div-footer{ background-color: #F9F9F9; box-shadow: 0px -12px 20px rgba(115, 127, 168, 0.06); padding: 30px 0 15px; }
.footer-container{ display: flex; justify-content: space-between; gap: 60px; }

.logo-footer{ width: 100px; }
.footer-content{ width: calc(100% - 150px); }

.footer-top{ display: flex; justify-content: space-between; margin-bottom: 30px; }
.footer-nav{ display: flex; gap: 80px; position: relative; }
.footer-nav h3{ font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--c-menu); }
.footer-nav--box li{ font-size: 13px; margin-bottom: 5px; }
.footer-nav--box a{ color: var(--c-menu); }
.footer-nav--box a:hover{ color: var(--secondary); }

.footer-contact{ display: flex; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--c-menu); margin-bottom: 10px; }
.footer-contact-tel{ display: flex; gap: 50px; }

.footer-social a{ display: inline-block; margin-right: 10px; }
/* .footer-social a img{ filter: var(--filter-primary); width: 35px; }
.footer-social a:hover img{ filter: var(--filter-secondary); } */

.footer-secretary{ position: absolute; top: 150px; background-color: #DBDBDB; width: 100%; padding: 15px; border-radius: 12px; display: flex; justify-content: space-between; }
.footer-secretary img{ border-radius: 12px; width: 100px; }


.copyright{ background-color: #DBDBDB; font-size: 12px; color: var(--c-menu); text-align: center; padding: 5px; }




.navarrow span{ display: none; }

.navmobi{ display: none; }




@media (max-width: 1599px){

  .footer-nav{ gap: 60px; }

  .footer-container{ gap: 40px; }
  .logo-footer{ width: 80px; }
  .footer-content{ width: calc(100% - 120px); }
  .footer-top{ gap: 40px; }

}
@media (max-width: 1399px){

  .footer-nav{ gap: 30px; }

}
@media (max-width: 1199px){

  .footer-nav{ gap: 25px; }
  .footer-contact-tel{ gap: 30px; }

}
@media (max-width: 991px){

  .footer-container{ gap: 30px; justify-content: center; flex-wrap: wrap; }
  .footer-content{ width: 100%; }
  .footer-top{ flex-direction: column; gap: 30px; }
  .footer-nav{ justify-content: space-between; }
  .footer-secretary{ position: relative; top: 0; width: 50%; }

  .footer-bottom .footer-nav{ justify-content: flex-start; gap: 50px; }

}
@media (max-width: 767px){

  .div-footer .div-container{ max-width: 100%; }
  
}
@media (max-width: 639px){

  /* .navarrow::after{ content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #339966; transition: all 0.3s ease; } */
  .navarrow{ display: flex; justify-content: center; width: 20px; }
  .navarrow span{ display: block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #095E54; transition: all 0.3s ease; }
  
  .footer-top{ gap: 20px; margin-bottom: 10px; }
  .footer-nav{ flex-direction: column; }
  .footer-nav.ft-left{ gap: 13px; }
  .footer-nav.ft-left .footer-nav--box{ border-bottom: 1px solid rgba(9, 94, 84, 0.3); padding: 2px 0; }
  .footer-nav.ft-left .footer-nav--box:first-of-type{ border-top: 1px solid rgba(9, 94, 84, 0.3); padding-top: 15px; }
  .footer-nav.ft-left h3{ display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
  .footer-nav.ft-left ul{ display: none; }
  .footer-nav--box li{ margin-bottom: 10px; }
  
  .footer-nav.ft-right{ gap: 0; }
  .footer-secretary{ width: 100%; margin-bottom: 20px; }

  .footer-bottom .footer-nav{ gap: 10px; }
  .footer-contact-tel{ flex-direction: column; gap: 0; }

}

.footer-nav.ft-left ul.show_Content{ display: block; }


/**********************************************************/
/**********************************************************/


/*
 *  Owl Carousel - nav arrow
 */
.owl-carousel .owl-stage-outer{ z-index: 9; }
.owl-carousel .owl-nav{ 
  position:absolute; width:100%; top: 50%; height:32px; margin-top: -16px;
}
.owl-carousel .owl-nav button.owl-prev{
  background: url('../images/icon/arrow-prev.svg') no-repeat 0 0; background-size: cover;
  text-indent:-9999px;
  width:32px;
  height:32px;
  left: 0;
  position:absolute;z-index:101;
  border-radius: 0;
  padding: 0;
  margin:0;
}
.owl-carousel .owl-nav button.owl-next{
  background: url('../images/icon/arrow-next.svg') no-repeat 0 0; background-size: cover;
  text-indent:-9999px;
  width:32px;
  height:32px;
  right:0;
  position:absolute;z-index:101;
  border-radius: 0;
  padding: 0;
  margin:0;
}
.owl-carousel .owl-nav button.owl-prev:hover{
  background: url('../images/icon/arrow-prev.svg') no-repeat 0 0; background-size: cover;
}

.owl-carousel .owl-nav button.owl-next:hover{
  background: url('../images/icon/arrow-next.svg') no-repeat 0 0; background-size: cover;
}

/* .owl-theme .owl-nav .disabled{ display: none; } */

.owl-carousel.off {
  display: block;
}

.owl-theme .owl-dots{ margin-top: 20px; }
.owl-theme .owl-nav.disabled + .owl-dots{ margin-top: 20px; }
.owl-theme .owl-dots .owl-dot span{ background: #C7C7C7; width: 12px; height: 12px; border-radius: 50%; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{ background: var(--secondary); }


.banner--slide .owl-theme .owl-dots{ text-align: left; }



@media (max-width: 991px){

  .banner--slide .owl-theme .owl-dots{ text-align: center; }

}




/*
*  form
*/

/* label{ margin-bottom: 10px; } */
.form-control{ border: 1px solid #E9E9E9; font-size: 14px; color: var(--default); }
/* .form-control:focus{ border-color: inherit; } */

.form-control::-webkit-input-placeholder {
  color: #A7A7A7;
}
.form-control::-moz-placeholder {
  color: #A7A7A7;
}
.form-control:-ms-input-placeholder {
  color: #A7A7A7;
}
.form-control::-ms-input-placeholder {
  color: #A7A7A7;
}
.form-control::placeholder {
  color: #A7A7A7;
}


select.select {
  outline: none;
  display: block;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  cursor:pointer;
  background: none;
  background-color: var(--white);
  background-image: url(../images/icon/icn-arrow-down.svg); 
  background-repeat: no-repeat;
  background-position: 98% center;
  padding: 6px 15px;
  border-radius: 8px;
  font-size: 14px; color: var(--default); border-color: #E9E9E9;
  box-shadow: 0px 2px 15px rgba(197, 197, 197, 0.2);
  height: 38px; width: 100%;
}
select.select:focus{ border-color: #80bdff; }


/* checkbox */
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0; font-size: 17px; line-height: 1.4;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px; margin-top: 3px;
  display: inline-block;
  vertical-align: text-top;
  width: 18px;
  height: 18px;
  background: var(--gray-lowlight);
}
.styled-checkbox:hover + label:before {
  background: var(--gray-lowlight);
}
.styled-checkbox:checked + label:before {
  background: var(--gray-lowlight);
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  background: var(--primary);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 var(--primary), 4px 0 0 var(--primary), 4px -2px 0 var(--primary), 4px -4px 0 var(--primary), 4px -6px 0 var(--primary), 4px -8px 0 var(--primary);
  transform: rotate(45deg);
}



/* radio */
input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--white);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  /* border: 0.15em solid currentColor; */
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.3);
}
input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: var(--secondary);
}
input[type=radio]:checked::before {
  transform: scale(1);
}


/**********************************************************/
/************************** home **************************/
/**********************************************************/

.title-barleft h2{ font-size: var(--txt-titleHome); color: var(--blue); padding: 5px 20px; position: relative; }
.title-barleft h2::before{ content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background-color: var(--secondary); }


/* home 1 */
.section-home--highlight{ margin: 60px 0; overflow: hidden; }
.homenews-highlight{ position: relative; width: 100%; }
.homenews--imgbig{ position: absolute; right: 0; bottom: 35px; width: 50%; }
.homenews--imgbig .owl-imgbig{ box-shadow: 0px 10px 50px rgba(74, 74, 74, 0.25); border-radius: 12px; }
.homenews--imgbig img{ border-radius: 12px; }

.homenews--content{ width: 45%; }
.homenews--title{ padding-left: 30px; padding-top: 10px; padding-bottom: 20px; width: 500px; }
.homenews--title h2{ font-size: 22px; line-height: 1.4; font-weight: 700; color: var(--green); margin-bottom: 20px; }
.homenews--title h3{ font-size: 17px; font-weight: 700; color: #151515; }
.homenews--detail{ padding: 30px; background: rgba(17, 204, 103, 0.07); border-radius: 12px; width: 300%; }
.homenews--detail p{ width: 500px; color: #2B2B2B; margin-bottom: 25px; font-size: 14px; }

.homenews--imgthumb{ max-width: 550px; margin-top: 25px; }
.homenews--imgthumb img{ border-radius: 12px; }
.homenews--imgthumb .owl-carousel .owl-nav button.owl-prev{ left: -16px; }
.homenews--imgthumb .owl-carousel .owl-nav button.owl-next{ right: -16px; }


@media (max-width: 1599px){
  
  .homenews--imgthumb{ max-width: 520px; }

}
@media (max-width: 1339px){
  
  .homenews--title h2{ font-size: 20px; margin-bottom: 10px; }
  .homenews--title h3{ font-size: 16px; }
  .homenews--detail p{ width: 460px; font-size: 13px; }
  .homenews--imgthumb{ max-width: 450px; }

}
@media (max-width: 1199px){
  
  .homenews--content, .homenews--title{ width: 100%; }
  .homenews--title{ padding-bottom: 35px; }
  .homenews--detail p{ width: 400px; }
  .homenews--imgthumb{ max-width: 400px; }
  .homenews--imgthumb img{ border-radius: 8px; }

}
@media (max-width: 991px){

  .section-home--highlight{ margin: 30px 0; }
  .homenews--title{ padding-bottom: 20px; padding-left: 25px; }
  .homenews--detail{ width: calc(100% + 15px); border-top-right-radius: 0; border-bottom-right-radius: 0; padding: 25px; }
  .homenews--imgbig{ position: relative; bottom: 0; width: 100%; margin-top: 30px; }
  .homenews--imgthumb{ max-width: 100%; }
  .homenews--detail p{ width: 100%; margin-bottom: 20px; }

}



/* home 2 */
.card--event{ background-color: var(--white); box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.2); border-radius: 12px; }

.card--event-content{ position: relative; }
.card--event-txt{ position: absolute; top: 30px; left: 20px; right: 20px; }
.card--event-txt img{ width: 54px !important; margin-bottom: 20px; }
.card--event-txt h5{ font-size: 13px; color: var(--white); }
.card--event-img img{ border-radius: 12px;}
.card--event-detail{ padding: 10px 12px 15px; min-height: 83px; }
.card--event-detail p{ font-size: 13px; }

.slide--event{ padding-left: 50px; overflow: hidden; }
/* .slide--event .owl-carousel.arrowleft::after{ content: ''; position: absolute; top: 0; left: -60px; width: 300px; height: 100%;  background: linear-gradient(90deg, #FBFBFB 27.7%, rgba(251, 251, 251, 0.7) 58.18%, rgba(251, 251, 251, 0) 100%); z-index: 9; } */
.slide--event .owl-carousel.arrowright::after{ content: ''; position: absolute; top: 0; right: -60px; width: 300px; height: 100%;  background: linear-gradient(270deg, #FBFBFB 27.7%, rgba(251, 251, 251, 0.7) 58.18%, rgba(251, 251, 251, 0) 100%); z-index: 9; }

.slide--event .owl-carousel .owl-nav button.owl-prev{ left: -40px; }
/* .slide--event .owl-carousel .owl-nav button.owl-next{ right: -15px; } */



@media (max-width: 1199px){

  .card--event-txt{ left: 15px; right: 15px; }

}
@media (max-width: 991px){

  .slide--event{ padding-left: 0px; }
  .slide--event .owl-carousel .owl-nav button.owl-prev{ left: 0; }
  
}
@media (max-width: 767px){

  .slide--event{ margin-bottom: 20px; }

}
@media (max-width: 576px){

  .slide--event{ width: 100%; margin: 0 auto 20px; padding: 0 20px; }
  .slide--event .owl-carousel.arrowleft::after,
  .slide--event .owl-carousel.arrowright::after{ display: none;}
  .slide--event .owl-carousel .owl-nav button.owl-prev{ left: -15px; }
  .slide--event .owl-carousel .owl-nav button.owl-next{ right: -15px; }

}




/* home 3 */
.home-boxnews{ margin-top: 70px; position: relative; }
.boxcard-news{ height: 100%; }
.boxcard-news a{ display: block; background-color: var(--white); border-radius: 18px; padding: 20px 25px 30px; box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.25); height: 100%; position: relative; }
.boxcard-news h4{ font-size: 16px; margin-bottom: 10px; }
.boxcard-news p{ font-size: 14px; color: var(--blue); font-weight: 500; }
.i-news{ width: 40px; height: 40px; border-radius: 50%; background-color: var(--secondary); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.i-news img{ filter: var(--filter-white); }
.i-arrowright{ position: absolute; right: 18px; bottom: 18px; }
.i-arrowright img{ filter: var(--filter-secondary); }

.boxcard-news a:hover{ background-color: var(--gary); color: #fff; }
.boxcard-news a:hover p{ color: #fff; }
.boxcard-news a:hover .i-arrowright img{ filter: var(--filter-white); }

.boxbtn--viewall.box-absolute{ position: absolute; top: -50px; right: 0; }
.boxbtn--viewall a{ font-size: 14px; font-weight: 600; color: var(--secondary); display: flex; align-items: center; gap: 5px; }
.boxbtn--viewall a img{ filter: var(--filter-secondary); width: 20px; }
.boxbtn--viewall a:hover{ color: var(--primary);}
.boxbtn--viewall a:hover img{ filter: var(--filter-primary); }


@media (max-width: 991px){

  .home-boxnews{ margin-top: 40px; }

}
@media (max-width: 767px){

  .boxcard-news a{ border-radius: 12px; padding: 16px 20px 14px; }
  .i-news{ width: 36px; height: 36px; }
  .i-arrowright{ position: relative; right: 0; bottom: 0; text-align: right; margin-top: 10px; }

  .boxbtn--viewall.box-absolute{ position: relative; top: 0; right: 0; }
  .boxbtn--viewall.box-absolute a{ justify-content: center; }

}



/* home 4 */
.title-txtcenter h2{ font-size: 40px; color: var(--primary); text-align: center; }
.title-txtcenter h2 span{ display: block; font-size: 30px; }
.home-work-intro{ max-width: 580px; width: 90%; margin: 20px auto 80px; text-align: center; }

.home-boxwork{ max-width: 1200px; width: 100%; margin: 0 auto; display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.boxcard-work{ background-color: var(--white); border-radius: 8px; box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.25); width: 380px; height: 300px; text-align: center; padding: 25px; }
.boxcard-work h4{ color: var(--blue); margin: 15px 0; }
.boxcard-work ul{ text-align: left; padding-left: 45px; }
.boxcard-work li a{ color: var(--secondary); display: inline-flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.boxcard-work li img{ width: 20px; filter: var(--filter-secondary); }
.boxcard-work a:hover{ color: var(--primary); }
.boxcard-work li a:hover img{ filter: var(--filter-primary); }


@media (max-width: 1599px){

  .boxcard-work{ width: 360px; }

}
@media (max-width: 1339px){

  .boxcard-work{ width: 320px; }

}
@media (max-width: 1199px){

  .boxcard-work{ width: 290px; }
  .boxcard-work ul{ padding-left: 20px; }

}
@media (max-width: 991px){

  .boxcard-work{ width: 340px; }

}
@media (max-width: 576px){

  .title-txtcenter h2{ font-size: 32px; }
  .title-txtcenter h2 span{ font-size: 20px; }

  .home-boxwork{ gap: 20px; }
  .boxcard-work{ width: 100%; }
  .boxcard-work ul{ padding-left: 10px; }

}


/* home 5 */
.home-public--head ul{ display: flex; gap: 20px; flex-wrap: wrap; }
.home-public--head ul li{ width: calc(25% - 15px); height: 75px; }
.home-public--head ul li a{ background-color: var(--white); font-size: 14px; line-height: 1.3; font-weight: 600; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; padding: 15px; height: 100%; }
.home-public--head ul li a i{ display: inline-flex; justify-content: center; align-items: center; width: 34px; height: 34px; background-color: var(--secondary); border-radius: 50%; }
.home-public--head ul li a span{ display: block; width: calc(100% - 44px); }
.home-public--head ul li a:hover{ background-color: var(--gary); color: #fff; }

/* .home-public--head ul{ overflow-x: scroll; -webkit-overflow-scrolling: touch; width: 100%; overflow-y: hidden; white-space: nowrap; position: relative; }
.home-public--head ul::-webkit-scrollbar {
  display: none;
}
.home-public--head ul{
  -ms-overflow-style: none;
  scrollbar-width: none;
}  */


.slide--public{ margin-top: 40px; margin-bottom: 40px; overflow: hidden; }
/* .slide--public .owl-carousel .owl-item img{ width: auto; } */
.slide--public .owl-carousel.arrowleft::after{ content: ''; position: absolute; top: 0; left: -50px; width: 200px; height: 100%; background: linear-gradient(90deg, #F2F2F2 30%, rgba(242, 242, 242, 0) 100%); z-index: 9; }
.slide--public .owl-carousel.arrowright::after{ content: ''; position: absolute; top: 0; right: -50px; width: 200px; height: 100%; background: linear-gradient(270deg, #F2F2F2 30%, rgba(242, 242, 242, 0) 100%); z-index: 9; }
.slide--public .owl-carousel .owl-stage.pos-right{ left: inherit!important; right: -100px!important; }
.slide--public .owl-carousel .owl-stage{ left: -100px; }
.item2{ right: 0!important;}
.slide--public .owl-theme .owl-nav .disabled{ display: none; }

.c-img-cover img{ border-radius: 12px; }
.card--doc-detail{ position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; background: rgba(17, 104, 217, 0.8); border-radius: 12px; backdrop-filter: blur(4px); padding: 20px; color: var(--white); visibility: none; opacity: 0; transition: opacity 0.3s; }
.card--doc:hover .card--doc-detail{ visibility: visible; opacity: 1; }

.c-no{ font-size: 15px; line-height: 1.2; margin-bottom: 15px; }
.c-hd{ font-size: 16px; line-height: 1.2; font-weight: 700; margin-bottom: 10px; padding-top: 5px; }
.c-txt{ font-size: 13px; line-height: 1.2; margin-bottom: 15px; }

.c-btn a{ display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--white); border-radius: 50px; border: 1px solid var(--white); padding: 6px 12px; }
.c-btn img{ width: 16px !important; filter: var(--filter-white); }
.c-btn a:hover{ background-color: var(--white); color: var(--blue); }
.c-btn a:hover img{ filter: var(--filter-blue); }




@media (max-width: 1599px){

  /* .home-public--head ul li{ min-width: 277px } */
  .home-public--head ul li a{ font-size: 13px; }

  .card--doc-detail{ padding: 20PX 15px; }
  .c-no{ font-size: 14px; margin-bottom: 10px; }
  .c-hd{ font-size: 15px; margin-bottom: 5px; padding-top: 3px; }
  .c-txt{ font-size: 12px; margin-bottom: 10px; }
  .c-btn a{ font-size: 13px; }

}
@media (max-width: 1339px){

  /* .home-public--head ul li{ min-width: 242px } */
  .home-public--head ul li a{ font-size: 12px; }

  .card--doc-detail{ padding: 25px; }
  .c-no{ font-size: 15px; margin-bottom: 15px; }
  .c-hd{ margin-bottom: 10px; padding-top: 5px; }
  .c-txt{ font-size: 13px; margin-bottom: 15px; }
  .c-btn a{ font-size: 14px; }

}
@media (max-width: 1199px){

  .card--doc-detail{ padding: 20px; }
  .c-no{ font-size: 14px; margin-bottom: 10px; }
  .c-hd{ font-size: 14px; margin-bottom: 5px; padding-top: 3px; }
  .c-txt{ font-size: 12px; margin-bottom: 10px; }
  .c-btn a{ font-size: 13px; }

}
@media (max-width: 991px){

  .home-public--head ul li{ width: calc(50% - 10px); }
  /* .home-public--head ul li{ width: 100%; } */

  .slide--public .owl-carousel .owl-stage.pos-right{ left: inherit!important; right: -60px!important; }
  .slide--public .owl-carousel .owl-stage{ left: -60px; }

  .card--doc-detail{ padding: 15px; }
  .c-no{ font-size: 13px; margin-bottom: 10px; }
  .c-hd{ font-size: 12px; margin-bottom: 3px; padding-top: 2px; }
  .c-txt{ font-size: 10px; }
  .c-btn a{ font-size: 12px; padding: 5px 10px; }
  .c-btn img{ width: 12px !important; }

}
@media (max-width: 576px){

  .home-public--head ul{ gap: 10px; }
  .home-public--head ul li{ width: 100%; }

  .slide--public{ padding: 0 20px; }
  .slide--public .owl-carousel.arrowleft::after,
  .slide--public .owl-carousel.arrowright::after{ display: none;}
  .slide--public .owl-carousel .owl-stage.pos-right{ left: inherit!important; right: 0!important; }
  .slide--public .owl-carousel .owl-stage{ left: 0; }
  .slide--public .owl-carousel .owl-nav button.owl-prev{ left: -15px; }
  .slide--public .owl-carousel .owl-nav button.owl-next{ right: -15px; }
  .slide--public .owl-theme .owl-nav .disabled{ display: block; }

  .card--doc-detail{ padding: 30px; }
  .c-no{ font-size: 15px; margin-bottom: 15px; }
  .c-hd{ font-size: 16px; margin-bottom: 10px; padding-top: 5px; }
  .c-txt{ font-size: 13px; margin-bottom: 15px; }
  .c-btn a{ font-size: 15px; padding: 6px 12px; }
  .c-btn img{ width: 16px !important; }

}



/**********************************************************/
/************************** page **************************/
/**********************************************************/

.bar--page{ background-color: var(--primary); width: 100%; overflow-x: hidden; }
.bar-detail{ display: flex; justify-content: space-between; align-items: center; min-height: 120px; position: relative; }
.bar--title{ position: relative; z-index: 3; }

.breadcrumbs-nav{ margin-bottom: 5px; }
.breadcrumbs-nav li{ display: inline; position: relative; font-size: 12px; line-height: 1; color: var(--white); padding-right: 20px; }
.breadcrumbs-nav li::after{ content: '>'; position: absolute; right: 5px; top: 2px; color: var(--secondary); }
.breadcrumbs-nav li:last-of-type{ padding-right: 0; }
.breadcrumbs-nav li:last-of-type::after{ display: none; }
.breadcrumbs-nav li a:hover{ color: var(--secondary); }

.bar--title h1{ font-size: var(--txt-bartitle); font-weight: 700; color: var(--white); }
.bar--title h1 span{ font-weight: 400; color: var(--secondary); }

.bar--icon{ line-height: 0; position: absolute; top: 50%; right: 0; transform: translateY(-50%); }

.title-arrow a{ display: inline-flex; gap: 10px; color: var(--blue); align-items: center; }
.title-arrow a span{ font-weight: 500; }
.title-arrow a:hover{ color: var(--primary); }
.title-arrow a:hover span{ color: inherit; }


.mobi{ display: none; }


@media (max-width: 1599px) {

  .bar-detail{ min-height: 100px; }
  .bar--page .bar--icon img{ height: 60px; }
  .bar--page.about .bar--icon img{ height: 100px; }

}

@media (max-width: 767px) {

  .desktop{ display: none; }
  .mobi{ display: block; }

  .bar-detail{ min-height: 75px; padding: 10px 0; }
  .breadcrumbs-nav li{ font-size: 10px; padding-right: 16px; }
  .breadcrumbs-nav li::after{ right: 2px; top: 1px; }

  .bar--page .bar--icon img{ height: 40px; }
  .bar--page.about .bar--icon{ right: -40px; }
  .bar--page.about .bar--icon img{ height: 75px; }

  .title-arrow a{ align-items: flex-start; }

}
@media (max-width: 576px){

  .breadcrumbs-nav li{ font-size: 10px; padding-right: 10px; }
  .breadcrumbs-nav li::after{ right: 0; }

}


/* article */
.article-section{ padding: 50px 0; }
.article-section article{ padding-left: 20px; padding-right: 20px; }
.article-section h2{ color: var(--primary); margin-bottom: 15px; }
.article-section h3{ margin-bottom: 20px; }
.article-section p{ margin-bottom: 20px; }
.article-section p:last-child{ margin-bottom: 0; }
.article-section p + h3{ margin-top: 30px; }
.article-section ul{ list-style: disc; margin-left: 20px; margin-bottom: 20px; }
.article-section ol{ list-style: decimal; margin-left: 20px; margin-bottom: 20px; }
.article-section ol.d {list-style-type: lower-alpha;}
.article-section p, .article-section li{ line-height: 1.8; }
.article-section p a:hover{ color: var(--blue); }


.b-blue{ color: var(--blue); font-weight: 700; }
.b-secondary{ color: var(--secondary); font-weight: 700; }


@media (max-width: 767px) {

  .article-section{ padding: 30px 0; }
  .article-section article{ padding-left: 10px; padding-right: 10px; }
  .article-section h2{ margin-bottom: 10px; }
  .article-section h3{ margin-bottom: 20px; }
  .article-section p{ margin-bottom: 20px; }

}



/* article card */
.article--card{ margin-top: 40px; margin-bottom: 20px; }
.article--card .card{ box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.25); border: 0; border-radius: 8px; min-height: 320px; }
.article--card .card-title{ margin-bottom: 20px; font-weight: 700; color: var(--primary); }
.article--card .card-title span{ display: block; font-size: 18px; font-weight: 400; color: var(--red); margin-top: 10px; }
.article--card .card-footer{ background-color: var(--white); border: 0; padding-top: 0; text-align: right; }


.boxbtn--viewmore a{ font-size: 15px; font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 5px; justify-content: flex-end; }
.boxbtn--viewmore a img{ filter: var(--filter-secondary); width: 20px; }
.boxbtn--viewmore a:hover{ color: var(--primary); }
.boxbtn--viewmore a:hover img{ filter: var(--filter-primary); }


.cardlist a{ display: block; font-size: 15px; line-height: 1.4; font-weight: 700; margin-bottom: 10px; }
.cardlist a:hover{ color: var(--blue); }
.cardlist a span{ display: block; font-size: 13px; font-weight: 400; }

.cardlist--timeline a{ display: flex; gap: 10px; }

.cardlist--link a{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cardlist--text p{ font-size: 15px; line-height: 1.4; font-weight: 700; }


.bearers-row{ display: flex; margin-bottom: 15px; }
.bearers-position{ width: 100px; font-size: 15px; line-height: 1.4; font-weight: 700; color: var(--secondary); }
.bearers-name{ width: calc(100% - 100px);}
.bearers-name p{ font-size: 15px; line-height: 1.4; margin-bottom: 5px; }
.bearers-name p:last-of-type{ margin-bottom: 0; }



.article--card .card:hover,
.article--card .card:hover .card-footer{ background-color: var(--gary); }
/* .article--card .card:hover .bearers-position{ color: var(--white); } */


@media (max-width: 1339px){

  .article--card .card{ min-height: 280px; }
  .cardlist a, .bearers-position, .bearers-name p, .cardlist--text p{ font-size: 13px; }
  .cardlist a span{ font-size: 10px; }

  .boxbtn--viewmore a{ font-size: 14px; }

}
@media (max-width: 1199px){

  .article--card .card-title span{ font-size: 15px; }


}
@media (max-width: 991px){

  .cardlist a, .bearers-position, .bearers-name p, .cardlist--text p{ font-size: 14px; }
  .cardlist a span{ font-size: 12px; }

}
@media (max-width: 767px){


  .bearers-position, .bearers-name p{ font-size: 13px; }
  .bearers-position{ width: 90px; }
  .bearers-name{ width: calc(100% - 90px);}

}


/* article chart */
.article--chart{ max-width: 1140px; width: 100%; margin: 0 auto 50px;  }
.text-chart{ max-width: 590px; width: 100%; margin: 0 auto; text-align: center; font-weight: 600; }
.img-chart{ margin: 30px auto; }
.img-chart img{ border-radius: 15px; box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.25); }




/**********************************************************/
/************************ about ***************************/

.section--brochure{ overflow-x: hidden; }
.about-brochure{ display: flex; flex-wrap: wrap; padding-top: 50px; padding-bottom: 30px; gap: 50px; }
.about-brochure-img{ position: relative; }
.brochure-img{ position: absolute; left: 40%; width: 350px; }
.brochure-img img{ border-radius: 12px; box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.2); }
.about-brochure-txt{ padding-top: 100px; }

.div-header{ position: relative; z-index: 3; margin-bottom: 40px; }
.div-header h2{ color: var(--primary); margin-bottom: 0; }
.div-header h2 span{ color: var(--secondary); }
.div-header h3{ font-weight: 600; }

.boxbtn--download{ position: relative; z-index: 3; }
.boxbtn--download a{ display: inline-flex; align-items: center;  gap: 10px; font-size: 16px; font-weight: 500; color: var(--white); background-color: var(--blue); padding: 15px 22px; border-radius: 50px; border: 1px solid var(--blue); }
.boxbtn--download a img{ filter: var(--filter-white); }
.boxbtn--download a:hover{ color: var(--blue); background-color: var(--white); }
.boxbtn--download a:hover img{ filter: var(--filter-blue); }

.div-vdo{ position: relative; }
.btn-play{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; }



.about-boxlink a{ display: flex; justify-content: space-between; align-items: center; font-size: var(--txt-default); line-height: 1.3; color: var(--blue); background-color: var(--bluelight); border: 1px solid var(--bluelight); border-radius: 8px; padding: 15px; margin-bottom: 10px; }
.about-boxlink a img{ filter: var(--filter-blue); }
.about-boxlink a:hover{ background-color: var(--white); border: 1px solid var(--blue); }


.about--secretariat{ display: flex; justify-content: center; gap: 100px; text-align: center; margin-top: 40px; }
.about--secretariat figure img{ width: 160px; margin-bottom: 20px; }
.about--secretariat figure figcaption{ font-size: 18px; line-height: 1.5; font-weight: 700; color: var(--primary); }
.about--secretariat figure figcaption span{ display: block; font-size: 16px; font-weight: 600; color: var(--secondary); }

.secretariat--table{ max-width: 1200px; width: 100%; margin: 40px auto; }
.secretariat--table .table thead th{ background-color: rgba(43, 43, 43, 0.2); font-size: 16px; line-height: 1.4; font-weight: 700; color: var(--primary); }
.secretariat--table .table th, .secretariat--table .table td{ border: 5px solid #fff; }
.secretariat--table .table td{ font-size: 14px; line-height: 1.4; font-weight: 500; }

.secretariat--table .table thead th:first-of-type{ border-top-left-radius: 15px; min-width: 220px; }
.secretariat--table .table thead th:last-of-type{ border-top-right-radius: 15px; min-width: 400px; }
.secretariat--table .table-striped tbody tr:nth-of-type(odd){ background-color: #EFEFEF; }
.secretariat--table .table-striped tbody tr:nth-of-type(even){ background-color: #F8F8F8; }
.secretariat--table .table tr:last-of-type td:first-of-type{ border-bottom-left-radius: 15px; }
.secretariat--table .table tr:last-of-type td:last-of-type{ border-bottom-right-radius: 15px; }


.about--documents{ background-color: var(--white); border-radius: 8px; box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03); padding: 25px; }
.t-documents{ font-size: 15px; color: #808080; border-bottom: 1px solid #E3E3E3; padding-bottom: 10px; margin-bottom: 10px; }
.about--documents-list ul{ list-style: none; margin: 0; }
.about--documents-list ul li{ display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; background-color: #FAFAFA; border-radius: 8px; margin-bottom: 5px; font-size: 14px; font-weight: 500; color: var(--primary); padding: 13px; }
.about--documents-list ul li i{ width: 20px; height: 26px; display: flex; align-items: center; justify-content: center; }
.about--documents-list ul li a{ width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background-color: var(--white); box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05); border-radius: 10px; border: 1px solid var(--white); }
.about--documents-list ul li a img.doc-download{ filter: var(--filter-secondary);}
.about--documents-list ul li a:hover{ border: 1px solid var(--blue); }

.about--documents-list ul li span{ 
  width: calc(100% - 88px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



@media (max-width: 1199px) {

  .about-brochure-img{ width: 60%; }
  .brochure-img{ width: 250px; }

  .div-header{ margin-bottom: 20px; }

}
@media (max-width: 991px) {

  .brochure-img{ width: 200px; }
  .about-brochure-txt{ padding-top: 40px; }

  .btn-play{ width: 80px; }

  .secretariat--table .table thead th{ font-size: 17px; }
  .secretariat--table .table td{ font-size: 15px;}

}
@media (max-width: 767px) {

  .about-brochure{ justify-content: center; gap: 20px; padding-top: 30px; padding-bottom: 25px; }
  .about-brochure-img{ width: 100%; }
  .div-header h2{ font-size: 28px; }
  .brochure-img{ left: 0; position: relative; margin: 0 auto; z-index: 3; }
  .brochure-bg{ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; }
  .about-brochure-txt{ padding-top: 20px; }

  .boxbtn--download a{ padding: 8px 20px; font-size: 16px; }
  .boxbtn--download a img{ width: 18px; }


  .about--secretariat{ gap: 30px; }
  .about--secretariat figure img{ width: 125px; }
  .about--secretariat figure figcaption{ font-size: 14px; }
  .about--secretariat figure figcaption span{ font-size: 14px; }


  .about--documents-list ul li{ font-size: 14px; gap: 5px; }
  .about--documents-list ul li i{ width: 15px; }
  .about--documents-list ul li i img{ width: 13px; }

}
@media (max-width: 576px){

  .brochure-bg{ width: 130%; }

  .btn-play{ width: 50px; }

  .about-boxlink a{ padding: 10px 12px; }
  .about-boxlink img{ width: 8px; }

}


/**********************************************************/
/************************* table ***************************/

.divtable{ margin-top: 30px; }
.divtable .table{ background-color: var(--white); border-collapse: separate; text-align: center; }
.divtable .table thead th{ background-color: var(--bluelight); }

.divtable .table th, 
.divtable .table td{ border: 1px solid var(--blue); border-top: 0; border-left: 0; vertical-align: middle; padding: 10px; }
.divtable .table thead th{ border-top: 1px solid var(--blue); border-bottom: 1px solid var(--blue); font-size: var(--txt-default); line-height: 1.5; color: var(--blue); }
.divtable .table th:first-of-type, 
.divtable .table td:first-of-type{ border-left: 1px solid var(--blue); }
.divtable .table td{ font-size: var(--txt-detail); line-height: 1.6; }

.divtable .table thead th:first-of-type{ border-top-left-radius: 8px; }
.divtable .table thead th:last-of-type{ border-top-right-radius: 8px; }
.divtable .table tr:last-of-type td:first-of-type{ border-bottom-left-radius: 8px; }
.divtable .table tr:last-of-type td:last-of-type{ border-bottom-right-radius: 8px; }

.divtable a{ color: var(--primary); font-weight: 600; }
.divtable a:hover{ color: var(--blue); }


/* work */
.work--table{ max-width: 1082px; margin: 40px auto; }
.work--table.divtable .table td{ height: 80px; }
.work--table.table3col .table thead th{ min-width: 360px; }
.work--table.table4col .table thead th{ min-width: 270px; }


/* member */
.member--table.divtable .table{ text-align: left; }
.member--table.divtable .table td{ vertical-align: baseline; }

.member--table.table3col .table thead th:nth-child(1){ min-width: 390px; }
.member--table.table3col .table thead th:nth-child(2){ min-width: 700px; }
.member--table.table3col .table thead th:nth-child(3){ min-width: 200px; }
.member--table.table3col .table tbody td:nth-child(2){ color: var(--primary); font-weight: 600; }

.divtable.member--table.table2col{ margin-bottom: 30px; }
.member--table.table2col .table thead th:nth-child(1){ width: calc(100% - 200px); }
.member--table.table2col .table thead th:nth-child(2){ width: 200px; }
.member--table.table2col .table tbody td:nth-child(1){ color: var(--primary); font-weight: 600; }


/* event */
.event--table.divtable .table{ text-align: left; }
.event--table.divtable .table td{ vertical-align: baseline; }

.event--table.table3col .table thead th:nth-child(1){ width: 190px; }
.event--table.table3col .table thead th:nth-child(2){ width: calc(100% - 410px); }
.event--table.table3col .table thead th:nth-child(3){ width: 220px; }
.event--table.table3col .table tbody td:nth-child(2){ color: var(--primary); font-weight: 600; }



/* news */
.news--table.divtable .table{ text-align: left; }
.news--table.divtable .table td{ vertical-align: baseline; }
.news--table.divtable .table td p{ margin-bottom: 0; }

.news--table.table4col .table thead th:nth-child(1){ width: 180px; }
.news--table.table4col .table thead th:nth-child(2){ width: 100px; }
.news--table.table4col .table thead th:nth-child(3){ width: calc(100% - 470px); }
.news--table.table4col .table thead th:nth-child(4){ width: 180px; }
.news--table.table4col .table tbody td:nth-child(3){ color: var(--primary); font-weight: 600; }



/* public */
.public--table.table3col .table{ text-align: left; }
.public--table.divtable .table td{ vertical-align: baseline; }

.public--table.table3col .table thead th:nth-child(1){ width: calc(100% - 400px); }
.public--table.table3col .table thead th:nth-child(2){ width: 200px; }
.public--table.table3col .table thead th:nth-child(3){ width: 200px; }




@media (max-width: 1599px){

  .member--table.table3col .table thead th:nth-child(1){ min-width: 330px; }
  .member--table.table3col .table thead th:nth-child(2){ min-width: 600px; }

}
@media (max-width: 1339px){

  .work--table.table3col .table thead th{ min-width: 330px; }
  .work--table.table4col .table thead th{ min-width: 245px; }

  .member--table.table3col .table thead th:nth-child(1){ min-width: 310px; }
  .member--table.table3col .table thead th:nth-child(2){ min-width: 500px; }
  .member--table.table3col .table thead th:nth-child(3){ min-width: 180px; }

  .news--table.table4col .table thead th:nth-child(1){ width: 160px; }
  .news--table.table4col .table thead th:nth-child(2){ width: 80px; }
  .news--table.table4col .table thead th:nth-child(3){ width: calc(100% - 400px); }
  .news--table.table4col .table thead th:nth-child(4){ width: 160px; }

  .public--table.table3col .table thead th:nth-child(1){ width: calc(100% - 340px); }
  .public--table.table3col .table thead th:nth-child(2){ width: 170px; }
  .public--table.table3col .table thead th:nth-child(3){ width: 170px; }

}
@media (max-width: 1199px){

  .event--table.table3col .table thead th:nth-child(1){ width: 180px; }
  .event--table.table3col .table thead th:nth-child(2){ width: calc(100% - 380px); }
  .event--table.table3col .table thead th:nth-child(3){ width: 200px; }

}
@media (max-width: 991px){

  .work--table.table3col .table thead th{ min-width: 300px; }

  .member--table.table3col .table thead th:nth-child(1){ min-width: 300px; }

  .member--table.table2col .table thead th:nth-child(1){ min-width: 480px; width: auto; }
  .member--table.table2col .table thead th:nth-child(2){ min-width: 180px; width: auto; }

  .event--table.table3col .table thead th:nth-child(1){ min-width: 200px; width: auto; }
  .event--table.table3col .table thead th:nth-child(2){ min-width: 500px; width: auto; }
  .event--table.table3col .table thead th:nth-child(3){ min-width: 200px; width: auto; }

  .news--table.table4col .table thead th:nth-child(1){ min-width: 160px; width: auto; }
  .news--table.table4col .table thead th:nth-child(2){ min-width: 90px; width: auto; }
  .news--table.table4col .table thead th:nth-child(3){ min-width: 500px; width: auto; }
  .news--table.table4col .table thead th:nth-child(4){ min-width: 160px; width: auto; }

  .public--table.table3col .table thead th:nth-child(1){ min-width: 500px; width: auto; }
  .public--table.table3col .table thead th:nth-child(2){ min-width: 170px; width: auto; }
  .public--table.table3col .table thead th:nth-child(3){ min-width: 170px; width: auto; }

}


/**********************************************************/
/************************* work ***************************/


.boxbtn-blue{ margin-top: 20px; }
.boxbtn-blue a{ display: block; width: 100%; background-color: var(--bluelight); border: 1px solid var(--bluelight); border-radius: 8px; font-size: 18px; font-weight: 700; color: var(--blue); padding: 15px; }
.boxbtn-blue a:hover{ background-color: var(--white); border-color: var(--blue); }

.boximg{ max-width: 700px; width: 90%; margin: 40px auto; }
.boximg img{ border-radius: 12px; box-shadow: 0px 10px 50px rgba(74, 74, 74, 0.25); }






/**********************************************************/
/************************* member *************************/

.div-member--download{ max-width: 480px; }




/**********************************************************/
/************************** event *************************/


.divbar-filter{ margin: 15px 0 40px; }

.filter-row{ display: flex; gap: 15px; justify-content: space-between; }
.filter-row .filter--search{ width: calc(100% - 100px); }
.filter-row .filter--btn{ width: 100px; }
.filter-row .filter--btn a{ display: inline-block; text-align: center; }

@media (max-width: 767px){

  .filter-row{ gap: 0; flex-direction: column; }
  .filter-row .filter--search,
  .filter-row .filter--btn{ width: 100%; }

}


.slidenews--detail{ max-width: 900px; margin: 0 auto; }
.slide--imgbig .owl-imgbig{ box-shadow: 0px 10px 50px rgba(74, 74, 74, 0.25); border-radius: 12px; }
.slide--imgbig img{ border-radius: 12px; }
.slide--imgthumb{ width: calc(100% - 80px); margin: 25px auto 0; }
.slide--imgthumb img{ border-radius: 8px; }
.slide--imgthumb .owl-carousel .owl-nav button.owl-prev{ left: -40px; }
.slide--imgthumb .owl-carousel .owl-nav button.owl-next{ right: -40px; }

@media (max-width: 767px){

  .slide--imgthumb{ width: 100%; }
  .slide--imgthumb .owl-carousel .owl-nav button.owl-prev{ left: -16px; }
  .slide--imgthumb .owl-carousel .owl-nav button.owl-next{ right: -16px; }

}



/* login */
.section-login article{ max-width: 780px; width: 100%; margin: 0 auto; }

.divform{ margin-top: 40px; }
.bgform{ background-color: var(--white); box-shadow: 0px 2px 20px rgba(197, 197, 197, 0.15); border-radius: 8px; padding: 30px 40px; margin-bottom: 20px; }

.divform .form-group{ margin-bottom: 20px; }
.divform h4{ font-size: 19px; line-height: 1.3; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.divform h4 span{ color: var(--red); }
.divform .form-control{ border-radius: 8px; padding: 6px 15px; height: 38px; box-shadow: inset 0px 0px 4px rgba(26, 26, 26, 0.1); }
.divform .form-control.select{ box-shadow: 0px 2px 15px rgba(197, 197, 197, 0.2); }
.divform textarea.form-control{ height: auto; }

.form--link{ margin-bottom: 30px; }
.form--link a{ font-size: 15px; font-weight: 500; color: var(--blue); text-decoration: underline; }
.form--link a:hover{ color: var(--secondary); text-decoration: none; }

.password-container{ position: relative; }
.password-container input[type="password"],
.password-container input[type="text"]{ position: relative; }
.fa-eye{ position: absolute; top: 45px; right: 2%; cursor: pointer; color: #A7A7A7; }


.boxbtn{ width: 100%; padding: 12px; font-size: var(--txt-default); font-weight: 700; color: var(--white); border-radius: 50px; display: flex; align-items: center; justify-content: center; gap: 10px; }

.btn-greenlight{ background-color: var(--secondary); border: 1px solid var(--secondary); }
.btn-green{ background-color: var(--primary); border: 1px solid var(--primary); }
.btn-blue{ background-color: var(--blue); border: 1px solid var(--blue); }
.btn-cancel{ background-color: #909090; border: 1px solid #909090; }
.btn-submit{ background-color: var(--secondary); border: 1px solid var(--secondary); }

.boxbtn img{ width: 20px; filter: var(--filter-white); }
.boxbtn:hover img{ filter: var(--filter-primary); }

.boxbtn:hover{ background-color: var(--white); color: var(--primary); }

.formbtn{ display: flex; justify-content: center; gap: 30px; margin-top: 40px; }
.formbtn .boxbtn{ width: 148px; }

.btn-left .boxbtn{ text-align: left; justify-content: flex-start; padding-left: 25px; font-weight: 500; }


.txt-regis{ padding: 25px 0; text-align: center; font-size: 16px; }


.form--regis .form-check{ padding-left: 0; margin-top: 20px; margin-bottom: 20px; }
.form--regis .form-check input[type=radio] + label{ margin-left: 30px; font-size: 17px; font-weight: 500; color: #151515; }




@media (max-width: 1599px){

  .section-login article{ max-width: 680px; }
  .divform h4{ font-size: 17px; }
  .form--regis .form-check input[type=radio] + label{ font-size: 15px; }

}
@media (max-width: 576px){

  .bgform{ padding: 25px; margin-top: 30px; }
  .divform label{ font-size: 15px; }
  .form--link a{ font-size: 14px; }
  .formbtn{ gap: 20px; }

}







/**********************************************************/
/**********************************************************/
/**********************************************************/

/* faq */
.div-faq dt{ background-color: #F0F0F0; padding: 10px 15px; border-radius: 8px; }
.div-faq dt h3{ margin-bottom: 0; }
.div-faq dd{ padding: 10px 25px; margin-bottom: 30px; }
.div-faq dd a{ font-weight: 700; }

@media (max-width: 576px){

  .div-faq dt h3{ font-size: 16px; }
  .div-faq dd{ padding: 10px 0; margin-bottom: 20px; }

}

/* contact */
.contact-social a{ display: inline-block; margin-right: 10px; }
.contact-social a img{ width: 50px; height: 50px; }
.icn-tw img{ filter: invert(79%) sepia(64%) saturate(7485%) hue-rotate(165deg) brightness(101%) contrast(107%); }
.icn-in img{ filter: invert(31%) sepia(93%) saturate(949%) hue-rotate(171deg) brightness(93%) contrast(104%); }
.icn-yt img{ filter: invert(28%) sepia(83%) saturate(6727%) hue-rotate(353deg) brightness(105%) contrast(133%); }

.contact-social a:hover img{ filter: var(--filter-secondary); }

.div--map{ margin-top: 40px; }
.map-canvas{ height: 380px; }
 

@media (max-width: 576px){

  .contact-social a img{ width: 42px; height: 42px; }

  .map-canvas{ height: 280px; }

}


/* insigh */
.div-insigh--list{ margin-top: 50px; }
.boxcard-insigh{ height: 100%; }
.boxcard-insigh a{ display: flex; gap: 20px; background-color: #F4F4F4; padding: 20px; position: relative; border-radius: 8px; height: 100%; }
.insigh--pic img{ width: 124px; border-radius: 12px; }
.boxcard-insigh p{ font-size: 16px; line-height: 1.5; font-weight: 700; }

.boxcard-insigh a:hover{ background-color: var(--gary); color: #fff; }
.boxcard-insigh a:hover p{ color: #fff; }
.boxcard-insigh a:hover .i-arrowright img{ filter: var(--filter-white); }


@media (max-width: 767px){

  .boxcard-insigh a .i-arrowright{ position: absolute; right: 10px; bottom: 10px; margin-top: 0; }

}
@media (max-width: 576px){

  .boxcard-insigh a{ padding: 10px; gap: 14px; padding-bottom: 40px; }
  .insigh--pic img{ width: 80px; }
  .boxcard-insigh p{ font-size: 14px; }

}




/**********************************************************/
/************************** news **************************/

.pageNumber{ display: flex; justify-content: space-between; margin: 40px 0; }
.pageNumber-current{ display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; }
.pageNumber-current .form-control{ background: #FAFAFA; border: 1px solid #E3E3E3; box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2); border-radius: 6px; width: 40px; text-align: center; }

.btn-page{ display: block; background-color: var(--white); box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07); border-radius: 6px; padding: 10px; width: 100px; text-align: center; font-size: 16px; font-weight: 500; color: var(--blue); border: 1px solid transparent; }
.btn-page:hover{ border-color: var(--blue); color: var(--blue); }
.btn-page.isDisable{ background-color: #E4E4E4; color: #9B9B9B; pointer-events: none; }
.btn-page > i{ display: none; }


.divNews-btn{ max-width: 450px; }


@media (max-width: 576px){

  .btn-page{ width: 45px; }
  .btn-page > i{ display: block; }
  .btn-page > span{ display: none; }

}




/**********************************************************/
/*********************** publication **********************/

.divPublic--card{ margin-top: 40px; }
.boxcard-public{ display: block; background-color: var(--white); border-radius: 8px; padding: 20px; box-shadow: 0px 4px 50px rgba(197, 197, 197, 0.25); height: 100%; position: relative; }
.boxcard-public .card--title{ display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.boxcard-public .card--title .i-news{ margin-bottom: 0; }
.boxcard-public h4{ font-size: 16px; color: var(--primary); }
.boxcard-public p, .boxcard-public li{ font-size: 14px; font-weight: 500; }
.boxcard-public ul{ list-style: none; margin-left: 0; margin-top: 15px; margin-bottom: 0; }
.boxcard-public li{ margin-bottom: 5px; }
.boxcard-public li a{ display: inline-flex; align-items: center; gap: 8px; color: var(--blue); }
.boxcard-public li a img{ filter: var(--filter-blue); }
.link--arrowright{ margin-top: 20px; }
.link--arrowright a{ font-size: 15px; font-weight: 600; color: var(--secondary); display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.link--arrowright img{ filter: var(--filter-secondary); }

.boxcard-public:hover{ background-color: var(--gary); }
.boxcard-public li a:hover,
.boxcard-public .link--arrowright a:hover{ color: var(--primary); }
.boxcard-public li a:hover img,
.boxcard-public .link--arrowright a:hover img{ filter: var(--filter-primary); }


.boxbtn--reports{ margin-bottom: 30px; margin-top: 40px; }
.boxbtn--reports a{ display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: var(--txt-detail); line-height: 1.3; font-weight: 500; color: var(--white); background-color: var(--blue); border: 1px solid var(--blue); border-radius: 50px; margin-bottom: 15px; }
.boxbtn--reports a img{ filter: var(--filter-white); }

.boxbtn--reports a:hover{ background-color: var(--white); color: var(--blue); }
.boxbtn--reports a:hover img{ filter: var(--filter-blue); }

.divPublic--list{ margin-bottom: 30px; }
.divPublic--list ul{ list-style: none; margin-left: 0; }
.divPublic--list ul li{ margin-bottom: 10px; }
.divPublic--list ul li a{ display: inline-flex; gap: 10px; font-size: var(--txt-default); font-weight: 700; color: var(--blue); }
.divPublic--list ul li a:hover{ color: var(--primary); }


.article--content{ margin-bottom: 40px; }

.divbar-title{ background-color: #F0F0F0; border-radius: 8px; padding: 10px 15px; margin-bottom: 20px; }
.divbar-title h3{ margin-bottom: 0; }
.article-section ul.list--status{ list-style: none; margin-left: 0; }
.list--status li{ margin-bottom: 5px; color: var(--secondary); font-size: var(--txt-default); display: flex; align-items: center; gap: 10px; }
.list--status li img{ filter: var(--filter-secondary); }

.article--content figure{ max-width: 800px; width: 90%; margin: 40px auto; }
.article--content figure img{ border-radius: 12px; box-shadow: 0px 4px 20px rgba(74, 74, 74, 0.1); }
.article--content figure figcaption{ font-size: 15px; line-height: 1.3; font-style: italic; margin-top: 20px; }

.row2figure figure{ margin-top: 0; width: 100%; }

.btn-regis{ width: 175px; margin-bottom: 20px; }
.btn-regis .boxbtn{ font-size: var(--txt-default); }
.btn-regis.online{ width: 220px; margin: 20px auto; }

.img-qrcode{ margin-bottom: 40px; }
.img-qrcode img{ border-radius: 8px; box-shadow: 0px 2px 20px rgba(197, 197, 197, 0.15); width: 175px; }


.divbtn-upcoming{ display: flex; gap: 20px; flex-wrap: wrap; margin: 40px 0; }
.divbtn-upcoming .boxbtn{ padding: 10px 20px; text-align: left; }


.quick_link-list{ display: flex; gap: 30px; flex-wrap: wrap; }
.quick_link-box a{ background-color: var(--white); box-shadow: 0px 2px 20px rgba(197, 197, 197, 0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-direction: column; width: 230px; height: 160px; }
.quick_link-box a img{ height: 56px;}
.quick_link-box a h3{ margin-bottom: 0; }
.quick_link-box a:hover{ background-color: var(--gary); color: var(--white); }


.divcontact-tw{ background-image: url('../images/bg-twitter.jpg'); background-repeat: no-repeat; background-position: center; background-size: cover; width: 100%; border-radius: 8px; padding: 30px; margin: 40px 0; box-shadow: 0px 2px 20px rgba(197, 197, 197, 0.15); display: flex; justify-content: space-between; gap: 20px; color: var(--white); }
.divcontact-tw--left{ width: calc(100% - 240px); }
.divcontact-tw--right{ width: 240px; }

.tw-title{ font-size: 21px; line-height: 1.4; margin-bottom: 15px; }
.tw-txt{ font-size: 18px; line-height: 1.4; font-weight: 600; }
.tw--header{ font-size: 42px; font-weight: 700; margin-bottom: 20px; }
.tw--contact{ display: flex; align-items: center; gap: 10px; }
.tw--contact img{ filter: var(--filter-white); width: 50px; }
.tw--contact a{ font-size: 20px; font-weight: 500; }
.divcontact-tw a:hover{ color: var(--primary);}




@media (max-width: 1599px){

  .article--content figure figcaption{ font-size: 13px; margin-top: 15px; }

  .quick_link-box a{ width: 200px; }
  .quick_link-box a img{ height: 50px;}

  .tw-title{ font-size: 19px; }
  .tw-txt{ font-size: 16px; }

}
@media (max-width: 1339px){

  .quick_link-list{ gap: 20px; }
  .quick_link-box a{ width: 180px; }
  .quick_link-box a img{ height: 40px;}

  .divcontact-tw{ padding: 20px; background-position: right; }
  .divcontact-tw--left{ width: calc(100% - 200px); }
  .divcontact-tw--right{ width: 200px; }
  .tw-title{ font-size: 15px; margin-bottom: 10px; }
  .tw-txt{ font-size: 14px; }
  .tw--header{ font-size: 38px; }
  .tw--contact a{ font-size: 16px; }
  .tw--contact img{ width: 40px; }

}
@media (max-width: 1199px){

  .quick_link-list{ gap: 30px; }
  .quick_link-box a{ width: 200px; }
  .quick_link-box a h3{ font-size: 17px; }

}
@media (max-width: 767px){

  .article--content figure figcaption{ font-size: 12px; margin-top: 10px; }
  .row2figure figure{ width: 90%; }

  .quick_link-list{ gap: 20px; }
  .quick_link-box{ width: calc(50% - 10px); }
  .quick_link-box a{ width: 100%; }

  .divcontact-tw{ flex-wrap: wrap; }
  .divcontact-tw--left{ width: 100%; }
  .divcontact-tw--right{ width: 100%; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
  .tw--header{ font-size: 24px; margin-bottom: 0; }

}
@media (max-width: 576px){

  .quick_link-box a{ height: 130px; gap: 10px; }
  .quick_link-box a h3{ font-size: 15px; }

}







.popper,
.tooltip {
  position: absolute;
  z-index: 9999;
  background: var(--secondary);
  color: var(--white);
  width: 200px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  padding: 10px;
  text-align: center;
  opacity: 1; font-weight: 700;
}
.tooltip-inner{ background-color: var(--secondary); padding: 0; }
.style5 .tooltip {
  background: var(--secondary);
  color: #FFFFFF;
  max-width: 200px;
  width: auto;
  font-size: .8rem;
  padding: .5em 1em;
}
.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}

.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: var(--secondary);
}
.style5 .tooltip .tooltip-arrow {
  border-color: var(--secondary);
}
.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 5px;
}
.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}


/**********************************************************/
/**********************************************************/

/* meetings */
.meetings--table.divtable .table{ text-align: left; }
.meetings--table.divtable .table td{ vertical-align: baseline; }
.meetings--table.divtable .table td p{ margin-bottom: 0; }

.meetings--table.table4col .table thead th:nth-child(1){ width: 180px; }
.meetings--table.table4col .table thead th:nth-child(2){ width: calc(100% - 540px); }
.meetings--table.table4col .table thead th:nth-child(3){ width: 180px; }
.meetings--table.table4col .table thead th:nth-child(4){ width: 180px; }
.meetings--table.table4col .table tbody td:nth-child(2){ font-weight: 600; }
.meetings--table.table4col .table tbody td:nth-child(4){ color: var(--primary); font-weight: 600; }


.link-em-blue{ color: var(--blue); text-decoration: underline; }
.link-em-blue:hover{ text-decoration: none; }

.boxbtn-nowrap{ width: 100%; padding: 12px; font-size: var(--txt-default); font-weight: 700; color: var(--white); border-radius: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.boxbtn-nowrap img{ vertical-align: middle; margin-right: 5px; }
.boxbtn-nowrap:hover{ background-color: var(--white); color: var(--default); }



@media (max-width: 1199px){

  .meetings--table.table4col .table thead th:nth-child(1){ min-width: 180px; width: auto; }
  .meetings--table.table4col .table thead th:nth-child(2){ min-width: 450px; width: auto; }
  .meetings--table.table4col .table thead th:nth-child(3){ min-width: 180px; width: auto; }
  .meetings--table.table4col .table thead th:nth-child(4){ min-width: 180px; width: auto; }

}



.memberFocal--table.divtable .table{ text-align: left; }
.memberFocal--table.divtable .table td{ vertical-align: baseline; }
.memberFocal--table.table2col .table thead th:nth-child(1){ width: 400px; }
.memberFocal--table.table2col .table thead th:nth-child(2){ width: calc(100% - 400px); }
.memberFocal--table.table2col .table tbody td:nth-child(2){ color: var(--primary); font-weight: 600; }

@media (max-width: 1600px){

  .memberFocal--table.table2col .table thead th:nth-child(1){ width: 350px; }
  .memberFocal--table.table2col .table thead th:nth-child(2){ width: calc(100% - 350px); }

}
@media (max-width: 991px){

  .memberFocal--table.table2col .table thead th:nth-child(1){ min-width: 320px; width: auto; }
  .memberFocal--table.table2col .table thead th:nth-child(2){ min-width: 600px; width: auto; }

}


.about--apt dd{ padding: 10px 0; }
.about--apt dd ul.nolist{ list-style: none; margin-left: 10px; }
.about--apt dd ul.nolist.mg-l0{ margin-left: 0; }
.about--apt dd li{ margin-bottom: 5px;}

.about--apt dd p:last-of-type,
.about--apt dd ul:last-child,
.about--apt dd ol:last-child,
.about--apt dd li:last-of-type{ margin-bottom: 0;}


/* sitemap */
.sitemap--nav{ background-color: var(--bluelight); padding: 10px 25px; border-radius: 8px; margin-bottom: 50px; position: relative; }
.sitemap--nav ul{ list-style: none; display: flex; justify-content: center; gap: 20px; margin: 0; }
.sitemap--nav ul li a{ font-size: var(--txt-subhearder); font-weight: 700; color: var(--blue); }

.sitemap--index-title h3{ border-bottom: 0.5px solid var(--black); padding-bottom: 8px; margin-bottom: 16px; color: var(--primary); }
.sitemap--index{ width: 95%; margin: 0 auto 25px; }
.sitemap--index a:hover{ color: var(--blue); text-decoration: underline; }

.back2top{ text-align: right; }
.back2top a{ font-size: 18px; font-weight: 700; color: var(--default); text-decoration: underline; }


@media (max-width: 991px){

  .back2top a{ font-size: 16px; }

  .sitemap--nav ul{ overflow-x: scroll; -webkit-overflow-scrolling: touch; width: 100%; overflow-y: hidden; white-space: nowrap;  
    -ms-overflow-style: none; scrollbar-width: none; position: relative; z-index: 1;
  }
  .sitemap--nav ul::-webkit-scrollbar {
    display: none;
  }
  /* .sitemap--nav::after{ content: ''; position: absolute; right: -50%; top: 0; width: 100%; height: 100%; background-color: var(--bluelight); }  */

  .sitemap--nav ul{ justify-content: flex-start; }

}


/**********************************************************/
/**********************************************************/




