/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+Thai:wght@100..900&display=swap');



/* 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; }



*,
*::before,
*::after {
  box-sizing: border-box;
}

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{
  --white: #fff;
  --black: #000;
  --default:#000; 
  --primary: #0168b5;
  --secondary: #06548E;
  --gray: #999;

  --filter-white: invert(100%) sepia(98%) saturate(6%) hue-rotate(63deg) brightness(103%) contrast(100%);
  --filter-primary: invert(23%) sepia(88%) saturate(2445%) hue-rotate(190deg) brightness(89%) contrast(99%);
  --filter-secondary: invert(20%) sepia(98%) saturate(1460%) hue-rotate(186deg) brightness(93%) contrast(95%);

  --txt-menu: 20px;
  --txt-20: 20px;
  --txt-h2: 50px;

  --mp100:100px;

}
@media (max-width: 1600px) {
  :root {
    --txt-menu: 18px;
    --txt-20: 18px;
  }
}
@media (max-width: 1300px) {
  :root {
    --txt-menu: 17px;
  }
}
@media (max-width: 1199px) {
  :root {
    --txt-menu: 16px;
    --txt-h2: 44px;
    --mp100:80px;
  }
}
@media (max-width: 991px) {
  :root {
    --txt-menu: 18px;
    --txt-h2: 34px;
    --mp100:50px;
  }
}
@media (max-width: 767px) {
  :root {
    --txt-h2: 26px;
    --txt-20: 16px;
  }
}



/* -- CUSTOM CSS -- */
html, body {width:100%; height:100%; padding:0px; margin:0px}

body{ 
	background-color:#fff; 
}
body{ font-family: "Noto Sans Thai", 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%; }
.img-fluid { max-width: 100%; height: auto; }
figure{ margin: 0 0 1rem; }

a,
a:hover{
  text-decoration:none;
  color: inherit;
  outline:0; transition: all 0.3s ease;
}
a:focus {
  text-decoration:none;
  outline:0;
}
button{ border: 0; cursor: pointer; background: transparent; padding: 0; margin: 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;
}
address{ font-style: normal; }




.div-container--fluid{ width: 100%; position: relative; 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{
    max-width: 540px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .div-container{
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .div-container{
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .div-container {
    max-width: 1130px;
  }
}
@media (min-width: 1300px) {
  .div-container {
    max-width: 1230px;
  }
}
@media (min-width: 1600px) {
  .div-container {
    max-width: 1430px;
  }
}



.build-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-left: -10px; margin-right: -10px;
}
.build-col{
  position: relative;
  width: 100%;
  padding-left: 10px; padding-right: 10px;
}

.box-card-col2 .build-col{
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.box-card-col3 .build-col{
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.box-card-col4 .build-col{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}


.flex-row-reverse{ flex-direction: row-reverse; }

@media (max-width: 991px){

  .box-card-col2 .build-col{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .box-card-col3 .build-col,
  .box-card-col4 .build-col{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

}
@media (max-width: 576px){

  .build-row{ margin-left: -8px; margin-right: -8px; }
  .build-col{ padding-left: 8px; padding-right: 8px; }

  .box-card-col3 .build-col{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .box-card-col4 .build-col{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }


}


label{ margin-bottom: 5px; display: block; }
.form-control {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 1rem; font-family: "Noto Sans Thai", sans-serif; 
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,0.1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::placeholder {
  color: var(--white);
  opacity: 1;
}
select.select {
  width: 100%; 
  background: transparent;
  padding: 10px;
  font-size: 1rem; font-family: "Noto Sans Thai", sans-serif; 
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  outline: none;
  display: inline-block;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  cursor:pointer;
  background-image: url(../images//icon/arrow-down.svg); filter: var(--filter-white); 
  background-repeat: no-repeat;
  background-position: 93% center; border: 1px solid rgba(0, 0, 0, 0.5);
}
select.select:valid{
  color: #333; 
}


/**********************************************************/
/**********************************************************/


.text-center{ text-align: center; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb50{ margin-bottom: 50px; }

.mt50{ margin-top: 50px; }

.c-white{ color: var(--white); }
.c-primary{ color: var(--primary); }

.bg-F6F7F9{ background-color: #F6F7F9; }
.bg-00528c{ background-color: #00528c; }
.bg-EFF0F2{ background-color: #EFF0F2; }


/**********************************************************/
/************************** nav ***************************/
/**********************************************************/

.div-nav{ position: absolute; width: 100%; top: 0; left: 0; z-index: 9999; }
.nav-container--bg{ background-color: transparent; padding: 0; width: 90%; margin: 0 auto; }
.nav-container{ display: flex; justify-content: space-between; align-items: center; position: relative; }
.nav-logo{ width: 200px; margin: 20px 0; line-height: 0; }


.nav-menu{ display: flex; justify-content: flex-end; padding-top: 34px; }
.nav-menu ul{ display: flex; justify-content: center; align-items: center; gap: 30px; }
.nav-menu ul li{ display: inline-block; cursor: pointer; position: relative; padding-bottom: 25px; }
.nav-menu ul li:first-child{ padding-left: 0; }
.nav-menu ul li:last-child{ padding-right: 0; }
.nav-menu ul li a{ display: block; font-size: var(--txt-menu); color: var(--black); font-weight: 500; position: relative;  }
.nav-menu ul li a::before{ content: ''; position: absolute; bottom: -33px; right: 0; left: 0; height: 4px; background-color: var(--primary); transform: scaleX(0) translateZ(0); transform-origin: 100% 50%; transition: transform .6s cubic-bezier(.37,.31,0,1); }
.nav-menu ul li:hover a::before,
.nav-menu ul li a.active::before{ transform: scaleX(1) translateZ(0); transform-origin: 0 50%; }
/* .nav-menu ul li a:hover, .nav-menu ul li a.active{ color: var(--primary); } */


/* .nav-menu ul li.current-menu-parent a,
.nav-menu ul li.current-menu-item a{ color: var(--primary); } */
.nav-menu ul li.current-menu-ancestor a::before,
.nav-menu ul li.current-menu-parent a::before,
.nav-menu ul li.current-menu-item a::before,
.nav-menu ul li.menu-item-has-children:hover > a::before{ transform: scaleX(1) translateZ(0); transform-origin: 0 50%; }

.nav-menu ul li.menu-item-has-children{ padding-right: 20px; }
.nav-menu ul li.menu-item-has-children::after{ content: ''; position: absolute; top: 5px; right: 0; background-image: url('../images/icon/arrow-down.svg'); width: 11px; height: 7px; background-repeat: no-repeat; background-size: cover; }

.nav-menu ul li.menu-item-has-children > ul{ display: none; position: absolute; background-color: var(--white); width: max-content; top: 47px; border-radius: 3px; border: 1px solid rgba(0,0,0,0.07); }
.nav-menu ul li.menu-item-has-children:hover > ul{ display: block; z-index: 9; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); }

.nav-menu ul li.menu-item-has-children > ul li{ display: block; padding: 0; margin-top: 0; }
.nav-menu ul li.menu-item-has-children > ul li a{ display: block; padding: 14px 10px; border-bottom: 1px solid #dcdcdc; color: var(--black); font-weight: 400; line-height: 1.3; }
.nav-menu ul li.menu-item-has-children > ul li a::before{ display: none; }
.nav-menu ul li.menu-item-has-children > ul li:last-of-type a{ border-bottom: 0; }
.nav-menu ul li.menu-item-has-children > ul > li.current-menu-parent > a,
.nav-menu ul li.menu-item-has-children > ul > li.current-menu-item > a,
.nav-menu ul li.menu-item-has-children > ul li a:active,
.nav-menu ul li.menu-item-has-children > ul li a:hover{ background-color: var(--primary); color: var(--white); }

.subbhead{ display: flex; align-items: center; gap: 5px; }
.arrow-down img{ width: 13px; filter: var(--filter-white); }


.nav-menu ul.submenu2{ display: none; position: absolute; top: -1px; left: 100%; min-width: 220px; background-color: #f7f7f7; border-radius: 3px; border: 1px solid rgba(0,0,0,0.07); }
.nav-menu ul.submenu2 > li a{ display: block; padding: 16px 10px; border-bottom: 1px solid #dcdcdc; color: var(--black); font-weight: 400; }
li.has-submenu:hover .submenu2{ display: block; }


.nav-menu ul li.menu-item-has-children:hover > ul > li.menu-item-has-children > ul,
.nav-menu ul li.menu-item-has-children:hover > ul.sub-menu > li.menu-item-has-children > ul.sub-menu,
.nav-menu ul li.menu-item-has-children:hover > ul.submenu > li.menu-item-has-children > ul.submenu{
  display: none;
  position: absolute;
  top: -1px;
  left: 100%;
  min-width: 230px;
  background-color: #f7f7f7;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.07);
  z-index: 10;
}
.nav-menu ul li.menu-item-has-children:hover > ul > li.menu-item-has-children:hover > ul,
.nav-menu ul li.menu-item-has-children:hover > ul.sub-menu > li.menu-item-has-children:hover > ul.sub-menu,
.nav-menu ul li.menu-item-has-children:hover > ul.submenu > li.menu-item-has-children:hover > ul.submenu{
  display: block;
}

.nav-menu ul li.menu-item-has-children:hover > ul > li.menu-item-has-children::after,
.nav-menu ul li.menu-item-has-children:hover > ul.sub-menu > li.menu-item-has-children::after,
.nav-menu ul li.menu-item-has-children:hover > ul.submenu > li.menu-item-has-children::after{
  top: 20px;
  right: 10px;
  filter: none;
  transform: rotate(270deg);
}


.nav-right{ position: absolute; top: 36px; right: 0; display: flex; align-items: center; gap: 20px; }
.nav-search img{ filter: var(--filter-white); width: 16px; }

.nav-lang{ position: relative; cursor: pointer; }
.nav-lang span{ font-size: var(--txt-menu); color: var(--white); font-weight: 600; }
.nav-lang span img{ filter: var(--filter-white); width: 13px; }
.choose-lang{ display: none; position: absolute; top: 20px; right: 0; background-color: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 3px; }
.choose-lang a{ display: block; padding: 8px 16px; color: var(--black); font-weight: 400; }
.choose-lang a:hover{ background-color: #f3f3f3; color: var(--primary); }
.nav-lang:hover .choose-lang{ display: block; }

.navmenu-lang{ display: none; }

.scrolDisabled{
  overflow: hidden;
  /* position: fixed; */
  padding-right: var(--removed-body-scrollbar-width, 0px); 
}

.div-nav.fixHeader{ background-color: #f3f3f3; position: fixed; z-index: 90; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
.div-nav.fixHeader .nav-menu ul li a,
.div-nav.fixHeader .nav-lang span{ color: #000; }
.div-nav.fixHeader .nav-logo img,
.div-nav.fixHeader .arrow-down img,
.div-nav.fixHeader .nav-search img,
.div-nav.fixHeader .nav-lang span img{ filter: none; }

.div-nav.fixHeader .nav-menu ul li.menu-item-has-children::after{ filter: none; }

.body-pagedetail .div-nav.fixHeader{ position: absolute; }

/* Offset nav under WP admin bar (logged-in only) */
body.admin-bar .div-nav.fixHeader{ top: 32px; }
body.admin-bar.home .div-nav:not(.fixHeader),
body.admin-bar.front-page .div-nav:not(.fixHeader){ top: 32px; }
@media screen and (max-width: 782px){
  body.admin-bar .div-nav.fixHeader{ top: 46px; }
  body.admin-bar.home .div-nav:not(.fixHeader),
  body.admin-bar.front-page .div-nav:not(.fixHeader){ top: 46px; }
}

.content-pd{ padding-top: 94px; }

.navbtn{ position: relative; top: -13px; margin-left: 30px; }


@media (max-width: 1599px){

  .nav-logo{ width: 150px; }
  .nav-menu ul li a::before{ bottom: -29px; }
  .nav-menu ul li.menu-item-has-children > ul{ top: 43px; }
  .nav-right{ top: 34px; }

  .content-pd{ padding-top: 82px; }

}
@media (max-width: 1199px){

  .nav-menu{ padding-top: 30px; }
  .nav-menu ul{ gap: 20px; }
  .nav-menu ul li a::before{ bottom: -30px; }
  .nav-menu ul li.menu-item-has-children > ul{ top: 38px; }
  .nav-right{ top: 27px; }
  .navbtn{ margin-left: 20px; }

  .content-pd{ padding-top: 81px; }

}
@media (max-width: 991px){

  .nav-logo{ width: 100px; margin: 0; }
  .nav-container--bg{ padding: 10px 20px; width: 100%; height: 100%; }

  .navbtn{ top: 0; margin-left: 0; margin-top: 30px; }

  .nav-container{ display: block; padding: 0; height: 100%; }
  .div-nav{
    position: fixed; width: 100%; display: block;
    padding: 0; transform: translate3d(0px, 0px, 0px);
  }
  .div-nav.navOpen{ height: 100%; background-color: #f3f3f3; 
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    box-shadow: 0 2px 4px rgba(0,0,0,0.07); }

  .nav-menu{ display: none; }
  .nav-menu.navOpen{ display: block; width: 100%; height: 100%; padding-top: 30px; padding-bottom: 50px; margin-top: 10px; z-index: 999; overflow-x: hidden; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .nav-menu.navOpen::-webkit-scrollbar{ display: none; width: 0; height: 0; }
  .nav-menu.navOpen ul{ display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
  .nav-menu.navOpen ul li{ display: block; padding: 0; width: 100%; }
  .nav-menu.navOpen ul li a{ display: inline-block; color: #000; }
  .nav-menu ul li a::before{ bottom: -15px; display: none; }

  .nav-menu ul li.current-menu-parent a,
  .nav-menu ul li.current-menu-item a{ color: var(--primary); }

  .nav-menu ul li.menu-item-has-children:hover > ul{ box-shadow: none; }

  .nav-menu.navOpen > ul > li.menu-item-has-children > ul{ position: relative; width: 100%; margin: 0 auto; top: auto; margin-top: 16px; background-color: transparent; border: 0; padding-left: 16px; display: none; gap: 14px; }
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul{ display: flex; }
  .nav-menu.navOpen > ul > li.menu-item-has-children:hover > ul{ display: none; }
  .nav-menu.navOpen > ul > li.menu-item-has-children.active:hover > ul{ display: flex; }
  .nav-menu.navOpen ul li.menu-item-has-children > ul li a{ border-bottom: 0; padding: 0; line-height: 1.5; font-weight: 400; }
  .nav-menu.navOpen ul li.menu-item-has-children > ul li a:hover,
  .nav-menu.navOpen ul li.menu-item-has-children > ul li a:active,
  .nav-menu.navOpen ul li.menu-item-has-children > ul > li.current-menu-item > a,
  .nav-menu.navOpen ul li.menu-item-has-children > ul > li.current-menu-parent > a{
    background-color: transparent;
    color: var(--black);
  }
  .nav-menu.navOpen ul li.menu-item-has-children > ul > li.current-menu-item > a{
    color: var(--primary);
  }
  .nav-menu.navOpen > ul > li.menu-item-has-children{ padding-right: 28px; }
  .nav-menu.navOpen > ul > li.menu-item-has-children::after{ right: 4px; top: 8px; filter: none; width: 14px; height: 9px; margin-right: 0; background-size: contain; background-position: center; transition: transform .25s ease; }
  .nav-menu.navOpen > ul > li.menu-item-has-children.active::after{ transform: rotate(180deg); }

  .nav-menu.navOpen ul li.menu-item-has-children > ul li > ul li a{ font-size: 16px; }

  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul > li.menu-item-has-children > ul,
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul > li.menu-item-has-children > ul.sub-menu,
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul > li.menu-item-has-children > ul.submenu,
  .nav-menu ul.submenu2{
    display: block;
    position: relative;
    left: 0;
    top: auto;
    min-width: 100%;
    gap: 0;
    padding: 6px 16px;
    margin: 0;
    background-color: transparent;
    border: 0;
  }
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul .menu-item-has-children::after,
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul > li.menu-item-has-children::after,
  .nav-menu.navOpen > ul > li.menu-item-has-children.active > ul > li.menu-item-has-children > ul .menu-item-has-children::after{ display: none; }
  .nav-menu ul.submenu2 li a{ line-height: 1.3;}

  .nav-right{ right: 40px; top: 6px; }
  .nav-right .nav-lang{ display: none; }
  .nav-menu.navOpen .navmenu-lang{ font-size: var(--txt-menu); font-weight: 600; display: flex; gap: 20px; margin-top: 30px; }

  .div-nav.navOpen .nav-logo img{filter: none;}
  .div-nav.navOpen .nav-search img{ filter: var(--black); }

  .subbhead{ justify-content: space-between; }
  .content-pd{ padding-top: 47px; }

  .div-nav.fixHeader{ padding: 0; }


#nav-icon1 {
  width: 25px;
  height: 20px;
  position: fixed;
  margin: 0;
  top: 16px;
  right: 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: 25px;
  background: var(--primary);
  border-radius: 0px;
  opacity: 1;
  right: 0;
  -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;
}
.div-nav.navOpen #nav-icon1 span,
.div-nav.fixHeader #nav-icon1 span{ background-color: var(--black); }

#nav-icon1 span:nth-child(1) {
  top: 0;
}

#nav-icon1 span:nth-child(2) {
  top: 8px;
}

#nav-icon1 span:nth-child(3) {
  top: 16px;
}

#nav-icon1.open span:nth-child(1) {
  top: 8px;
  -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: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


}
@media (max-width: 576px){

  .nav-search img{ width: 16px; }
  .nav-right{ top: 3px; }
  #nav-icon1{ top: 12px; }

  .nav-menu.navOpen ul li.menu-item-has-children > ul li > ul li a{ font-size: 14px; }

}


/**********************************************************/
/************************* footer *************************/
/**********************************************************/

.footer{ background-color: var(--primary); color: var(--white); }
.footer a{ font-size: 16px; line-height: 1.5; color: var(--white); }
.footer a:hover{ text-decoration: underline; text-underline-offset: 7px; }

.footer-content{ display: flex; justify-content: space-between; flex-flow: row wrap; gap: 20px; padding: 70px 0; }
.footer-content .ft-detail{ width: 350px; }
.ft-detail .ft-logo{ width: 215px; margin-bottom: 20px; background-color: #fff; padding: 15px; border-radius: 10px; }
.ft-detail .ft-logo a{ display: block; line-height: 0; }
.ft-detail p{ font-size: 16px; line-height: 1.5; margin-bottom: 30px; }
.ft-detail p:last-child{ margin-bottom: 0; }
.ft-detail .ft-social{ display: flex; align-items: center; gap: 20px; }
.ft-detail .ft-social a img{ width: 44px; filter: var(--filter-white); }
.ft-detail .ft-social a:hover img{ opacity: 0.8; }
.ft-detail .contact-qr img{ width: 85px; height: 85px; margin-bottom: 0; }

.ft-head{ font-size: 30px; line-height: 1.2; font-weight: 600; margin-bottom: 10px; }
.ft-title{ font-size: 20px; line-height: 1.2; font-weight: 600; margin-bottom: 20px; }
.ft-menu{ padding-top: 17px; }
.ft-menu ul li{ margin-bottom: 15px; }

.ft-contact{ padding-top: 17px; }
.ft-contact ul li{ display: flex; gap: 10px; margin-bottom: 20px; font-size: 16px; line-height: 1.5; }
.ft-contact ul li:last-of-type{ margin-bottom: 0; }
.ft-contact ul li img{ width: 20px; filter: var(--filter-white); }

.footer-bottom{ display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.2); }

.copyright{ font-size: 16px; line-height: 1.5; color: var(--white); }

.link-policy ul{ display: flex; align-items: center; flex-flow: row wrap; list-style: none; margin: 0; padding: 0; }
.link-policy li::after{ content: '|'; margin: 0 10px; color: var(--white); }
.link-policy li:last-child::after{ display: none; }


@media (max-width: 1599px){

  .ft-detail .ft-logo{ width: 180px; padding: 10px; border-radius: 6px; }
  .ft-detail .ft-social a img{ width: 40px; }
  .ft-menu, .ft-contact{ padding-top: 12px; }
  .ft-head{ font-size: 26px; }

}
@media (max-width: 1199px){

  .footer-content .ft-detail, .ft-contact{ width: 230px; }
  .ft-detail .ft-logo{ width: 160px; }
  .ft-menu, .ft-contact{ padding-top: 8px; }
  .footer a, .ft-detail p, 
  .ft-contact ul li,
  .copyright{ font-size: 15px; }
  .ft-head{ font-size: 20px; }

}
@media (max-width: 991px){

  .ft-contact{ width: 100%; }

}
@media (max-width: 767px){

  .footer-content{ justify-content: flex-start; gap: 30px 50px; padding: 50px 0; }
  .footer-content .ft-detail, .ft-contact{ width: 100%; }
  .footer-bottom{ flex-direction: column; gap: 10px; text-align: center; }
  .link-policy ul{ justify-content: center; }
  .ft-menu, .ft-contact{ padding-top: 0; }
  .ft-menu ul li{ margin-bottom: 10px; }
  .ft-contact ul li{ margin-bottom: 15px; }

  .ft-title{ font-size: 17px; margin-bottom: 15px; }
  .footer a, .ft-detail p, 
  .ft-contact ul li,
  .copyright{ font-size: 14px; }

}


/**********************************************************/
/**********************************************************/

.container-slide{ position: relative; }

.line-float {
  position:fixed; right:0; bottom: 10%; z-index:95;
  display:flex; align-items:center; gap:8px;
  background:#fff; color:#000; padding:16px;
  border-radius:10px 0 0 10px; box-shadow:0 0px 14px rgba(0,0,0,0.1);
  font-weight:500; font-size:20px; text-decoration: none; 
  transition: background-color 0.3s ease; 
}
.line-tx{ max-width: 0; opacity: 0; white-space: nowrap; overflow: hidden; transition: max-width 0.5s ease, opacity 0.3s ease;  }
.line-float:hover { background-color: #eee; }
.line-float:hover .line-tx{ max-width: 200px; opacity: 1; }
.line-float .line-ic { line-height: 0; }


@media (max-width:1599px){
  .line-ic img{ width: 40px; }
  .line-float{ padding: 10px; font-size: 16px; }
}
@media (max-width:767px){
  /* .line-ic img{ width: 30px; } */
  .line-float{ padding: 10px; font-size: 14px; }
}
@media (max-width:576px){
  .line-tx{ display: none; }
  .line-float{ padding: 6px; border-radius:8px 0 0 8px; }
}


.btn{ display: inline-block; padding: 16px 26px; background-color: var(--primary); color: var(--white); font-weight: 500; transition: background-color 0.3s ease; cursor: pointer; font-family: inherit; }
.btn:hover{ background-color: var(--secondary); color: var(--white); }

.btn-arrow{ display: inline-flex; align-items: center; gap: 10px; }
.btn-arrow img{ width: 9px; filter: var(--filter-white); }

.btn-icon{ display: inline-flex; align-items: center; gap: 10px; }
.btn-icon img{ width: 24px; filter: var(--filter-white); }

.vaskoccc-btn{ padding: 0 20px 80px; }

.about--ref.page-section{ padding-bottom: 40px; }

.about--ref:has(+ .vaskoccc-btn),
.page-ourwork:has(+ .vaskoccc-btn),
.wp-block-acf-about-references:has(+ .wp-block-acf-vaskoccc-button) .about--ref,
.wp-block-acf-work-gallery:has(+ .wp-block-acf-vaskoccc-button) .page-ourwork{
  padding-bottom: 30px;
}

.btn-line{ display: inline-flex; align-items: center; gap: 10px; background-color: #03C302; }
.btn-line img{ width: 25px; filter: var(--filter-white); }
.btn-line:hover{ background-color: #008b00;}

/**********************************************************/
/**********************************************************/

section{ position: relative; }
.page-section{ padding: var(--mp100) 0; }
.page-section2{ padding-bottom: var(--mp100); }
.page-section3{ padding-top: var(--mp100); overflow: hidden; }

.div-title .title{ font-size: var(--txt-h2); line-height: 1.2; font-weight: 600; }
.div-title .subtitle,
.div-subtitle{ font-size: var(--txt-20); line-height: 1.5; }

.div-title .subtitle.hw800{ max-width: 800px; margin: 0 auto; }

.div-cata{ font-size: 30px; line-height: 1.2; font-weight: 600; margin-bottom: 20px; }

@media (max-width: 767px){

  .div-cata{ font-size: 22px; }

}


.hrline{ border:0; border-top: 1px solid #EBEBEB; margin: 50px 0; }
.hrline2{ border:0; border-top: 1px solid #EBEBEB; margin: 100px 0; }

/* Divider block between sections should not add extra vertical spacing. */
.page-section + hr.hrline2{
  margin: 0;
}

@media (max-width: 991px){

  .hrline2{ margin: 70px 0; }

}
@media (max-width: 567px){

  .hrline2{ margin: 50px 0; }

}

/**********************************************************/
/************************** home **************************/

.bg-home{ background-image: url('../images/home/bg-top.jpg'); background-repeat: no-repeat; background-position: center top; background-size: cover; background-attachment: fixed; }
/* .bg-home::after{ content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; background-image: url('../images/home/bg-road.jpg'); background-repeat: no-repeat; background-position: bottom center; background-size: cover; height: 300px; z-index: 2; } */

.hero-content{ text-align: center; padding-top: 150px; }
.hero-content .title{ font-size: 85px; line-height: 1.2; font-weight: 600; color: var(--primary);}
.hero-content p{ font-size: 30px; line-height: 1.4; margin-bottom: 30px; }

.hero-text{ z-index: 1; text-align: center; }
.hero-img{ line-height: 0; margin-bottom: -1px; position: relative; z-index: 3; margin-top: 30px; }
.hero-img img{ width: 100%; }


@media (max-width: 1699px){

  .bg-home::after{ height: 260px;}
  .hero-text{ top: 66vh; }
  .hero-content .title{ font-size: 75px; }
  .hero-content p{ font-size: 26px; }

}
@media (max-width: 1199px){

  .bg-home::after{ height: 215px;}
  .hero-text{ top: 31vh; }
  .hero-content .title{ font-size: 65px; }
  .hero-content p{ font-size: 24px; }

}
@media (max-width: 991px){

  .bg-home{ padding-top: 80px; }
  .hero-text{ top: 23vh; }
  .hero-content{ padding-top: 0; }
  .hero-content .title{ font-size: 55px; }
  .hero-content p{ font-size: 20px; }

}
@media (max-width: 767px){

  .hero-content{ padding: 0 20px; }
  .hero-content .title{ font-size: 45px; }
  .hero-content p{ font-size: 20px; }

  /* .hero-img{ margin-top: -80px;} */
  .bg-home::after{ height: 140px; }
  .hero-text{ position: relative; top: 0; }

}
@media (max-width: 576px){

  .hero-text{ margin-top: 70px;}
  /* .hero-img{ margin-top: -70px;} */
  .hero-img{ margin-top: 30px;}

  .hero-content{ padding: 0 20px; margin-bottom: 40px; }
  .hero-content .title{ font-size: 28px; }
  .hero-content p{ font-size: 18px; }

  .bg-home::after{ height: 120px; }

}


.stats-row { display:flex; align-items:center; justify-content:space-between; position: absolute; bottom: 0; left: 0; width: 100%; z-index: 4; }
.stats-row .stats { padding:42px 0; position: absolute; bottom: 0; left: 0; width: 100%; }
.stats-row .stat { flex:1; text-align:center; padding:0 20px; }
.stats-row .stat-num { font-family: "Bebas Neue", sans-serif; font-size:60px; font-weight:700; color:#fff; line-height:1; margin-bottom:8px;letter-spacing: 3px; }
.stats-row .stat-label { font-size:15px; color:#fff; }
.stats-row .stat-sep { width:1px; align-self:stretch; background:#fff; }

@media (max-width:991px){
  .stats-row .stat-num { font-size:40px; }
  .stats-row .stat-label { font-size: 13px;}
}
@media (max-width:767px){
  .stats-row .stat-num { font-size:34px; }
  .stats-row .stat-label { font-size: 12px;}
}
@media (max-width:576px){
  .stats-row{ bottom: -20px; }
  .stats-row .stat{ padding: 0 10px; }
  .stats-row .stats-row{ background-color: #0168b5; position: relative; width: 100%;}
  .stats-row .stat-num { font-size:26px; margin-bottom: 5px; letter-spacing: 1px;}
  .stats-row .stat-label { font-size: 8px;}
}


/* services */

.h-services { background:linear-gradient(180deg, #0168B5 0%, #002D4F 100%); }
.service-list { display: flex; flex-flow: row wrap; gap: 30px; }
.service-card { width: calc(30% + 20px); }
.service-img { margin-bottom: 20px; overflow: hidden; }
.service-img img{ display:block; max-width:100%; transform: scale(1); transition: all 0.3s ease; }
.service-cap { font-size:20px; line-height: 1.5; font-weight: 600; text-align: center; }
.h-services .service-cap{ color: var(--white); }
.service-card:hover .service-img img{ transform: scale(1.1); transition: all 0.3s ease; }


@media (max-width: 1299px){

  .service-card { width: calc(30% + 16px); }

}
@media (max-width: 1199px){

  .service-card { width: calc(30% + 11px); }

}
@media (max-width: 991px){

  .service-card { width: calc(30% + 10px); }
  .service-list{ gap: 30px 20px; }
  .service-cap { font-size: 17px; }

}
@media (max-width: 767px){

  .h-services{ padding-top: 70px; }
  .service-card { width: calc(50% - 10px); }
  .service-cap { font-size: 16px; }

}
@media (max-width: 576px){

  .service-card { width: 100%; }
  .service-cap { font-size: 20px; }

}



/* why */
.home--why{ padding-bottom: 200px; }
.why-row{ display: flex; flex-flow: row wrap; }
.why-col{ width: 50%; }
.why-content{ padding-right: 100px; }

.why-img{ position: sticky; top: 94px; }
.why-img img{ width: 100%; }


.why-container{ position: relative; background-color: #fff; }
.why-container::before{ content: ''; position: absolute; background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%); width: 100%; height: 100px; top: -100px; left: 0; }

.why-list{ display: flex; flex-flow: row wrap; gap: 30px; }
.why-card{ width: calc(50% - 15px); padding: 50px 30px; background-color: #F6F7F9; color: #000; display: flex; flex-flow: row wrap; gap: 50px; }
.why-card .icon img{ filter: var(--filter-primary); width: 64px; }
.why-card .detail{ width: 100%; }
.why-card .title{ font-size: 30px; line-height: 1.2; font-weight: 600; margin-bottom: 10px; }
.why-card .text{ font-size: 16px; line-height: 1.4; }

.why-card:hover{ background-color: var(--primary); color: #fff; }
.why-card:hover .icon{ filter: var(--filter-white); }

.why-list .why-card:nth-child(odd) { transform: translateY(100px); }


@media (max-width: 1599px){
  .why-img{ top: 82px; }
}
@media (max-width: 1199px){

  .why-card{ padding: 30px 20px; gap: 30px; }
  .why-card .title{ font-size: 24px; }
  .why-img{ top: 81px; }

}
@media (max-width: 991px){

  .why-col{ width: 100%; }
  .imgcar{ max-width: 500px; margin: 0 auto 30px; }

  .why-img{ top: 47px; }

  .home--why{ padding-bottom: 50px; }
  .why-content{ padding-right: 0; }
  .why-list .why-card:nth-child(odd) { transform: translateY(0px); }

}
@media (max-width: 767px){

  .why-card{ width: 100%; }
  .why-card .title{ font-size: 22px; }
  .why-img img{ height: 300px; object-fit: cover; }

}
@media (max-width: 576px){

  .why-card{ gap: 15px; }
  .why-card .icon{ width: 65px; }
  .why-card .detail{ width: calc(100% - 80px); }

}


/* work */
.home--work{ background-color: #DFE0E2; }
.home--work::after{ content: ''; position: absolute; top: 0; right: 25%; background: linear-gradient(to bottom, #78A3BA 0%,  #E6F3FB 100%); backface-visibility: hidden; transform: skewX(-15deg);  width: 500px; height: 100%; }
.home--work .div-container{ z-index: 9; }

.work-row{ display: flex; flex-flow: row wrap; }
.work-col{ width: 50%; }

.imgman{ position: relative; margin-top: -110px; }


.work-slide .swiper-wrapper {
  -webkit-transition-timing-function:linear !important;
  -o-transition-timing-function:linear !important;
  transition-timing-function:linear !important;
}
.work-slide .swiper-slide { width:320px; }
.work-img{ width:100%; height:200px; }
.work-img a{ display: block; width: 100%; height: 100%; cursor: pointer; }
.work-img img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 1600px){

  .home--work::after{ right: 22%; width: 420px; }

}
@media (max-width: 1199px){

  .imgman{ margin-top: 0; }

}
@media (max-width: 991px){

  .work-col{ width: 100%; }
  .imgman{ max-width: 400px; margin: 0 auto; }
  .work-slide .swiper-slide { width:220px; }
  .work-img{ height: 150px; }

}
@media (max-width: 767px){

  .home--work{ overflow: hidden; }

}
@media (max-width: 576px){

  .home--work::after{ right: 32%; width: 320px; }

}

/* blog */

.blog-card { background:#fff; overflow:hidden; height:100%; padding: 30px; }
.blog-img{ margin-bottom: 20px; }
.blog-date { font-size:15px; color:#999; margin-bottom:20px; }
.blog-title { 
  font-size: 20px; line-height: 1.2; font-weight:bold; margin-bottom:15px;  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-body p { 
  font-size:16px; line-height:1.4; margin-bottom:30px; 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.blog-slide .swiper-wrapper { align-items: stretch; }
.blog-slide .swiper-slide { height: auto !important; display: flex; }

@media (max-width:1199px){
  .blog-card{ padding: 20px; }
}



/* contact */
.contact-wrapper{ display: flex; }
.map-canvas{ width: 50%; }
.contact-zone{ background-image: url('../images/contact/bg-zone.jpg'); background-repeat: no-repeat; background-position: center; background-size: cover; padding: 50px 0; width: 50%; }
.contact-zone .title{ font-size: 40px; line-height: 1.2; font-weight: 600; color: var(--white); text-align: center; margin-bottom: 30px; }
.imgzone{ max-width: 640px; width: 80%; margin: 0 auto; }



.contact-header{ font-size: 40px; line-height: 1.2; font-weight: 600; margin-bottom: 20px; }

.contact-social{ margin: 20px 0; display: flex; gap: 15px; }
.contact-social a img{ width: 40px; }
.contact-social a:hover img{ filter: var(--filter-primary); }
.contact-qr img{ width: 100px; height: 100px; margin-bottom: 20px; }


.contact-info .title{ font-size: 30px; line-height: 1.2; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; }
.contact-info ul li{ display: flex; gap: 10px; margin-bottom: 20px; font-size: 16px; line-height: 1.5; }
.contact-info ul li:last-of-type{ margin-bottom: 0; }
.contact-info ul li img{ width: 20px; }
.contact-info ul li a:hover{ text-decoration: underline; }

.contact-qrcode{ margin-top: 30px; }
.contact-qrcode p{ margin-bottom: 0 !important; }
.contact-qrcode img{ width: 200px; margin-bottom: 10px; }


@media (max-width: 1599px){

  .contact-zone .title,
  .contact-header{ font-size: 34px; }

}
@media (max-width: 1199px){

  .contact-zone .title,
  .contact-header{ font-size: 30px; }

}
@media (max-width: 991px){

  .contact-wrapper{ flex-direction: column; }
  .map-canvas{ margin: 0; width: 100%; height: 400px; }
  .contact-zone{ width: 100%; }
  .contact-zone .title{ font-size: 30px; }
  .imgzone{ max-width: 500px; }

  .contact-zone .title,
  .contact-header{ font-size: 30px; }
  .contact-info .title{ font-size: 28px; }

  .contact-detail{ padding-left: 0; }

  .contact-qrcode{ margin-bottom: 30px; }

}


.home-contact{ background-image: url('../images/contact/bg-contact.jpg'); background-repeat: no-repeat; background-position: left bottom; background-size: cover; }
.home-contact .home-header{ margin-bottom: 16px; }
.home-contact p{ font-size: 20px; line-height: 1.4; margin-bottom: 30px; }

.home-contact-row{ display: flex; flex-flow: row wrap; }
.home-contact-col1{ width: 60%; }
.home-contact-col2{ width: 40%; display: flex; align-items: center; justify-content: center; }
.img-contact{ height: 100%; }
.img-contact img{ width: 100%; height: 100%; object-fit: cover; object-position: right; }
.home-contact-detail{ padding: 100px 0; }

.contact-form{ display: flex; flex-flow: row wrap; gap: 20px; }
.form-group{ width: 100%; }
.form-group.col50{ width: calc(50% - 10px); }

/* Contact Form 7 — match HTML contact-form layout */
.contact-form .wpcf7,
.contact-form .wpcf7-form{ width: 100%; }
.contact-form .wpcf7-form{
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.contact-form .wpcf7-form > p{
  width: 100%;
  margin: 0;
}
.contact-form .form-group > p{
  margin: 0;
}
.contact-form .form-group br{ display: none; }
.contact-form .wpcf7-form-control-wrap{
  display: block;
  width: 100%;
}
.contact-form .wpcf7-form-control-wrap input,
.contact-form .wpcf7-form-control-wrap textarea{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form input.wpcf7-submit.btn{
  border: none;
  -webkit-appearance: none;
  appearance: none;
  align-self: center;
  vertical-align: middle;
}
.contact-form .wpcf7-spinner{
  margin: 0 0 0 10px;
  align-self: center;
  vertical-align: middle;
}
.contact-form .wpcf7-not-valid-tip{
  font-size: 12px;
  padding: 7px;
}
.contact-form .wpcf7-response-output{
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output{
  border: none;
  padding: 0;
}

@media (max-width: 1199px){

  .home-contact p{ font-size: 18px; }

  .home-contact-col1,
  .home-contact-col2{ width: 100%; }
  .home-contact-detail{ padding: 80px 0; }
  .home-contact-detail .contact-qrcode{ margin-bottom: 0px; }

}
@media (max-width: 991px){

  .contact-form{ margin-top: 20px; }

}
@media (max-width: 767px){

  .contact-header{ font-size: 24px; }
  .home-contact p{ font-size: 16px; }
  .contact-info .title{ font-size: 22px; }

  .home-contact-detail{ padding: 50px 0; }

}
@media (max-width: 576px){

  .form-group.col50{ width: 100%; }

}


/**********************************************************/
/**********************************************************/

.section-bar{ position: relative; }
.bar-container{ position: absolute; width: 100%; top: 50%; transform: translateY(-50%); }
.bar-imgcover{ line-height: 0; }
.bar-imgcover img{ width: 100%; }
.bar-imgcover.coverbg img{ object-fit: cover; height: 100%; object-position: right; }


.barcontent{ max-width: 560px; }
.barcontent .title{ font-size: var(--txt-h2); line-height: 1.2; font-weight: 600; }
.bardetail{ margin-top: 50px; }
.bardetail .text{ font-size: 20px; line-height: 1.4; }
.bardetail.svdetail .text,
.bardetail.aboutus .text{ font-size: 30px; }

.roundabout{ display: flex; align-items: center; gap: 20px; margin-top: 50px; }
.roundabout .text{ font-size: 30px; line-height: 1.2; font-weight: 600; }

.bardetail.svdetail .roundabout .icn img{ filter: var(--filter-primary); }
.bardetail.svdetail .roundabout .text{ color: var(--primary); }

.mobi{ display: none; }

@media (max-width: 1599px){

  .bar-imgcover.coverbg{ height: 160px; }

  .bardetail.svdetail .text,
  .bardetail.aboutus .text{ font-size: 24px; }
  .bardetail,
  .roundabout{ margin-top: 30px; }

}
@media (max-width: 1199px){

  .barcontent{ max-width: 450px; }
  .bardetail .text{ font-size: 16px; }
  .bardetail.svdetail .text,
  .bardetail.aboutus .text{ font-size: 20px; }
  .roundabout .icn img{ width: 70px; }

}
@media (max-width: 991px){

  .bar-imgcover.coverbg{ height: 120px; }

  .barcontent{ max-width: 350px; width: 55%; }
  .bardetail { margin-top: 10px; }
  .bardetail.svdetail .text,
  .bardetail.aboutus .text{ font-size: 15px; }
  .roundabout .icn img{ width: 50px; }

}
@media (max-width: 767px){

  .desktop{ display: none; }
  .mobi{ display: block; }
  .bardetail.mobi{ margin-top: 0; padding: 50px; padding-bottom: 0; }
  .bardetail .text,
  .bardetail.svdetail .text,
  .bardetail.aboutus .text{ font-size: 16px; }
  .bardetail.aboutus.mobi{ padding-bottom: 50px; }

}
@media (max-width: 576px){

  .bardetail.mobi{ padding: 30px 30px 0 30px; }
  .bardetail.aboutus.mobi{ padding: 30px; }

}

.nav-breadcrumb{ margin-bottom: 50px; }
.nav-breadcrumb ul{ display: flex; align-items: center; flex-flow: row wrap; gap: 5px 0; }
.nav-breadcrumb ul li{ position: relative; font-size: 20px; line-height: 1.2; }
.nav-breadcrumb ul li::after{ content: '/'; position: relative; margin: 0 10px; }
.nav-breadcrumb ul li:last-child:after{ display: none; }
.nav-breadcrumb ul li a:hover{ text-decoration: underline; }

@media (max-width: 1199px){

  .nav-breadcrumb{ margin-bottom: 30px; }

}
@media (max-width: 991px){

  .nav-breadcrumb ul li{ font-size: 16px; }

}


.popup-detail{ text-align: center; }
.popup-title{ font-size: 28px; font-weight: 600; color: var(--secondary, var(--primary)); margin-bottom: 20px; }
.popup--txt{ max-width: 570px; margin: 0 auto 30px; font-size: var(--txt-20); line-height: 1.4; font-weight: 300; color: var(--default); }
.popup-detail .btn{ border: none; cursor: pointer; font-family: 'Poppins', 'Prompt', sans-serif; font-size: 100%; }
.popup-detail .btn:hover{ background-color: #004bb5; color: var(--white); }

/* MODAL STYLES (contact form success) */
.jw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, .75);
  padding: 40px;
  overflow: auto;
}
.jw-modal.open {
  display: block;
}
.jw-modal-body {
  background: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: 620px; width: 90%; padding: 50px 20px; border-radius: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
html.jw-modal-open,
body.jw-modal-open {
  overflow: hidden;
}

@media (max-width: 991px){
  .popup-title{ font-size: 24px; }
}
@media (max-width: 576px){
  .popup-title{ font-size: 20px; }
  .jw-modal-body{ padding: 40px 20px; }
}


/**********************************************************/
/**********************************************************/

.popup-detail{ text-align: center; }
.popup-title{ font-size: 28px; font-weight: 600; color: var(--secondary, var(--primary)); margin-bottom: 20px; }
.popup--txt{ max-width: 570px; margin: 0 auto 30px; font-size: var(--txt-20); line-height: 1.4; font-weight: 300; color: var(--default); }
.popup-detail .btn{ border: none; cursor: pointer; font-family: 'Poppins', 'Prompt', sans-serif; font-size: 100%; }
.popup-detail .btn:hover{ background-color: #004bb5; color: var(--white); }

/* MODAL STYLES (contact form success) */
.jw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, .75);
  padding: 40px;
  overflow: auto;
}
.jw-modal.open {
  display: block;
}
.jw-modal-body {
  background: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: 620px; width: 90%; padding: 50px 20px; border-radius: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
html.jw-modal-open,
body.jw-modal-open {
  overflow: hidden;
}

@media (max-width: 991px){
  .popup-title{ font-size: 24px; }
}
@media (max-width: 576px){
  .popup-title{ font-size: 20px; }
  .jw-modal-body{ padding: 40px 20px; }
}



/**********************************************************/
/*********************** about ****************************/


.about-row{ display: flex; align-items: center; }
.about-col1{ flex: 1; }
.about-col2{ flex: 1; margin-right: calc((100cqw - 100%) / -2); }

@media (max-width: 1199px){

  .about-row{ align-items: flex-end; }
  
}
@media (max-width: 991px){

  .about-row{ flex-direction: column; margin-left: -15px; margin-right: -15px; }
  .about-col1{ width: 100%; padding-right: 0; }
  .about-col2{ width: 100%; margin-right: 0; }
  .about-col1, .about-col2{ padding-left: 15px; padding-right: 15px; }
  
}

.about-detail.ab-left{ padding-left: 120px; margin-bottom: 100px; }
.about-detail.ab-right{ padding-right: 120px; margin-bottom: 100px; }
.about-detail.ab-right:last-child{ margin-bottom: 0; }

.about-detail .title{ font-size: var(--txt-h2); line-height: 1.2; font-weight: 600; }
.about-detail p, .about-detail li{ font-size: 20px; line-height: 1.4; font-weight: 400; }
.about-detail ul{ list-style: disc; margin-left: 20px; }

.about-detail.ab-left .title{ margin-bottom: 50px; }

.aboutimg{ line-height: 0; }
.aboutimg img{ width: 100%; }

@media (max-width: 1599px){

  .about-detail .title{ font-size: 42px; }
  .about-detail.ab-right{ padding-right: 100px; margin-bottom: 50px; }

}
@media (max-width: 1299px){

  .about-detail .title{ font-size: 34px; }
  .about-detail.ab-left{ padding-left: 80px; margin-bottom: 80px;}
  .about-detail.ab-left .title{ margin-bottom: 30px; }
  .about-detail.ab-right{ padding-right: 0; margin-bottom: 50px; }
  .about-detail p, .about-detail li{ font-size: 16px; }
  .about-detail.ab-right:last-child{ margin-bottom: 50px; }

}
@media (max-width: 991px){

  .about-detail.ab-left{ padding-left: 0; margin-bottom: 50px;}
  .aboutimg{ max-width: 500px; width: 90%; margin: 0 auto 30px; }
  .about-col2 .aboutimg{ margin-bottom: 0; }

}
@media (max-width: 767px){

  .about-detail .title{ font-size: 24px; }
  .about-detail.ab-left .title{ margin-bottom: 20px; }
  .about-detail.ab-right,
  .about-detail.ab-right:last-child,
  .about-detail.ab-left{ margin-bottom: 30px; }

}


/*  */
.about--value{ padding-top: 80px; position: relative; }
.about--value::before{ content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 60%; background-image: url('../images/about/bar-title.jpg'); background-repeat: no-repeat; background-size: cover; }
.value--list{ display: flex; flex-flow: row wrap; gap: 30px; margin-top: 40px; }
.value--list .why-card{ width: calc(25% - 23px); }

@media (max-width: 1199px){

  .about--value{ padding-top: 50px;}
  .value--list{ margin-top: 30px;}

}
@media (max-width: 991px){

  .about--value::before{ height: 200px; }
  .value--list .why-card{ width: calc(50% - 15px); }

}
@media (max-width: 576px){

  .value--list .why-card{ width: 100%; }

}


/*  */
.about--history{ overflow: hidden; }
.div-timeline-bg{ background-image: url('../images/about/img-city.png'); background-repeat: no-repeat; background-position: bottom center; background-size: cover; padding: 100px 0; }

.card--timeline{ background-color: var(--white); border-radius: 20px; padding: 30px; text-align: center; height: 100%; position: relative; }
/* .card--timeline::after{ content: ''; position: absolute; left: 50%; bottom: -80px; width: 30px; height: 30px; border-radius: 50%; background-color: var(--primary); } */
.card--timeline .year{ font-size: 50px; line-height: 1.4; color: var(--primary); }
.card--timeline .title{ font-size: 20px; line-height: 1.4; font-weight: bold; }
.card--timeline .text{ font-size: 16px; line-height: 1.4; }


.timeline-slide .swiper { height: 100%; }
.timeline-slide .swiper-wrapper { display: flex; }
.timeline-slide .swiper-slide { height: auto !important; display: flex; flex-direction: column; }
.timeline-slide .swiper-slide .your-card-class { flex-grow: 1; width: 100%; }

@media (max-width: 576px){

  .div-timeline-bg{ padding: 50px 0; }
  .card--timeline{ margin: 0 20px; }

}


/*  */
.about--why{ padding-bottom: 100px; }
.whyus-stat{ display: flex; gap: 30px; text-align: center; margin: 100px 0; }
.whyus-stat .stat-num { font-family: "Bebas Neue", sans-serif; font-size:60px; color: var(--primary); line-height:1; margin-bottom:8px; }
.whyus-stat .stat-label { font-size: 20px; line-height: 1.4; font-weight: 600; color: var(--primary); }

@media (max-width: 1199px){

  .whyus-stat{ margin: 50px 0; }
  .whyus-stat .stat-label{ font-size: 16px; }

}
@media (max-width: 991px){

  .about--why{ padding-bottom: 50px; }
  .whyus-stat{ justify-content: center; }
  .whyus-stat .stat-num{ font-size: 50px; }

}
@media (max-width: 576px){

  .about--why{ padding-bottom: 0px; }
  .whyus-stat{ gap: 20px; }

}


/**********************************************************/
/************************ work ****************************/

.page-ourwork{ padding-top: var(--mp100); padding-bottom: 100px; }
.ourwork-nav{ padding: 20px 0; }
.ourwork-nav ul{ display: flex; align-items: center; justify-content: center; gap: 0 50px; }
.ourwork-nav ul li a{ display: block; font-size: 20px; font-weight: 500; color: var(--black); padding: 20px 0; position: relative; }
.ourwork-nav ul li a.active::before{ content: ''; position: absolute; width: 100%; height: 4px; bottom: 0; left: 0; background-color: transparent; }
.ourwork-nav ul li a:hover,
.ourwork-nav ul li a.active{ color: var(--primary); }
.ourwork-nav ul li a.active::before{ background-color: var(--primary); }


.ourwork-container { display: grid; grid-template-columns: repeat(4, minmax(200px, 1fr)); gap: 30px; width: 100%; margin-bottom: 50px; }
.ourwork-item { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.ourwork-item[hidden] { display: none !important; }
.ourwork-item.item-large { grid-column: span 2; aspect-ratio: auto; align-self: stretch; }
.ourwork-item a { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
.ourwork-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 12px 6px; font-size: 20px; line-height: 1.3; font-weight: 500; color: var(--white); text-align: center; background-color: rgba(0, 0, 0, 0.5); }
.ourwork-item a:hover .caption{ background-color: var(--primary); }

.boxmore{ margin-top: 20px; text-align: center; }
.boxmore[hidden]{ display: none !important; }

.pagination-nav { margin-top: 20px; text-align: center; }
.pagination-nav ul.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
}
.pagination-nav ul.page-numbers li {
  margin: 0;
  padding: 0;
  border: none;
  list-style: none;
}
.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--primary);
  background-color: #EFF0F2;
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.pagination-nav a.page-numbers:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.pagination-nav .page-numbers.current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  cursor: default;
}
.pagination-nav .page-numbers.dots {
  min-width: auto;
  padding: 0 4px;
  border: none;
  background-color: transparent;
  color: #999;
}


@media (max-width: 1599px) {

  .caption{ font-size: 18px; }

}
@media (max-width: 1199px) {

  .ourwork-container { gap: 20px; }

}
@media (max-width: 991px) {

  .ourwork-container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ourwork-item,
  .ourwork-item.item-large{
    grid-column: span 1;
    aspect-ratio: 1 / 1;
    align-self: auto;
  }

}
@media (max-width: 767px) {

  .ourwork-nav ul{ gap: 0 30px; }
  .ourwork-nav ul li a{ font-size: 16px; padding: 10px 0; }

  .page-ourwork{ padding-bottom: 50px; }
  .ourwork-container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .ourwork-item,
  .ourwork-item.item-large{
    grid-column: span 1;
    aspect-ratio: 1 / 1;
    align-self: auto;
  }

  .caption{
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

}



/*  */
.about--ref .card-refer .refer-img{ padding: 6px; }

@media (max-width: 767px) {

  .about--ref .sv-ref .title{ font-size: 20px; }

}



/**********************************************************/
/*********************** service **************************/

.sv-detail-container{ display: flex; flex-flow: row wrap; }
.sv-detial-bar{ background-color: var(--primary); display: flex; flex-direction: column; justify-content: space-between; width: 400px; }
.sv--header{ padding: 40px; }
.sv--header .svicon{ margin-bottom: 40px; }
.sv--header .svicon img{ filter: var(--filter-white); }
.sv--header .svheader .title{ font-size: 40px; line-height: 1.2; font-weight: 600; color: var(--white); }
.sv--header .svheader .text{ font-size: 20px; line-height: 1.4; color: var(--white); margin-top: 10px; }

.sv--img{ line-height: 0; text-align: right; }

.sv-detail-detail{ width: calc(100% - 400px); padding-left: 60px; }

.sv-table .sv-th{ border-bottom: 4px solid var(--primary); padding-bottom: 15px; font-size: 20px; line-height: 1.2; font-weight: 600; }
.sv-table .sv-tr{ border-bottom: 1px solid #EBEBEB; padding: 20px 0; font-size: 16px; line-height: 1.4; }
.sv-table .sv-th,
.sv-table .sv-tr{ display: flex; gap: 40px; }
.sv-left{ width: 320px; }
.sv-right{ width: calc(100% - 320px); }

.sv-td25{ width: 25%; }
.sv-td33{ width: 33.33333%; }
.sv-td50{ width: 50%; }
.sv-title{ font-size: 20px; line-height: 1.5; font-weight: 600; margin-bottom: 30px; }

.sv-table .sv-tr .sv-left{ font-weight: bold; }
.svps{ font-size: 14px; line-height: 1.2; font-weight: 500; color: #999; padding-top: 30px; }

.svpd{ padding: 50px 0; }

.divtable{ width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sv-table{ min-width: 500px; }

@media (max-width: 1599px) {

  .sv-detial-bar{ width: 350px; }
  .sv-detail-detail{ width: calc(100% - 350px); }

}
@media (max-width: 1199px) {

  .sv-detial-bar{ width: 300px; }
  .sv-detail-detail{ width: calc(100% - 300px); padding-left: 50px; }
  .sv-left{ width: 220px; }
  .sv-right{ width: calc(100% - 220px); }

  .sv--img img{ width: 240px; }
  .sv--header .svheader .text{ font-size: 18px; }

}
@media (max-width: 991px) {

  .sv-detial-bar{ width: 100%; flex-direction: row; margin-bottom: 30px; }
  .sv-detail-detail{ width: 100%; padding-left: 0px; }
  .sv-left{ width: 220px; }
  .sv-right{ width: calc(100% - 220px); }

  .sv--header{ display: flex; align-items: center; padding: 20px 0 20px 20px; }
  .sv--header .svheader .title{ font-size: 30px; }
  .sv--header .svicon{ margin-bottom: 0; margin-right: 20px; }
  .sv--header .svicon img{ width: 70px }
  .sv--img{ display: flex; align-items: flex-end; }
  .sv--img img{ width: 100px; }
  .sv--header .svheader .text{ font-size: 16px; margin-top: 5px; }

  .svpd{ padding: 20px 0; }

}
@media (max-width: 767px) {

  .sv-table .sv-th, .sv-table .sv-tr{ gap: 30px; }
  .sv-left{ width: 120px; }
  .sv-right{ width: calc(100% - 120px); }
  .sv-title,
  .sv-table .sv-th{ font-size: 18px; }
  .sv--header .svheader .title{ font-size: 24px; }
  .sv--header .svicon img{ width: 50px }
  .sv--img img{ width: 60px; }

}
@media (max-width: 576px) {

  .sv--header .svheader .title{ font-size: 20px; }
  .sv--header .svheader .text{ font-size: 14px; }

}


/*  */
.sv-ref{ margin-top: 50px; position: relative; }
.sv-ref .title{ font-size: 30px; font-weight: 600; margin-bottom: 20px;}
.refer-slider{ position: relative; }

.card-refer .refer-img{ border: 1px solid #EBEBEB; padding: 10px; margin-bottom: 10px; }
.card-refer .refer-img a{ display: block; }
.card-refer .refer-img img{ width: 100%; aspect-ratio: 251 / 188; object-fit: cover; }
.card-refer .refer-text{ font-size: 16px; line-height: 1.4; text-align: center; }

.refer-button{ position: absolute; top: 25px; right: 0; width: 40px; }
.refer-button .swiper-button-prev, 
.refer-button .swiper-button-next{ width: 20px; height: 20px; }
.refer-button .swiper-button-next{ right: 0; }


.sv-value{ display: flex; flex-direction: column; gap: 30px; }
.card-value{ background-color: #F9F9F9; display: flex; align-items: center; }

.value-icon{ background-color: var(--primary); border-radius: 50%; width: 83px; height: 83px; display: flex; align-items: center; justify-content: center; }
.value-icon img{ width: 50px; filter: var(--filter-white); }
.value-detail{ display: flex; align-items: center; padding-left: 30px; width: calc(100% - 412px); }
.value-content{ width: calc(100% - 83px); padding-left: 20px; padding-right: 50px; }
.value-content .title{ font-size: 30px; line-height: 1.2; font-weight: 600; }
.value-content .text{ font-size: 16px; line-height: 1.4; }
.value-img{ width: 412px; height: 180px; }
.value-img img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 103 / 45; clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%); }

@media (max-width: 1599px) {

  .value-img{ width: 300px; height: 150px; }
  .value-detail{ width: calc(100% - 300px); }
  .value-content{ padding-right: 30px; width: calc(100% - 70px); }
  .value-content .title{ font-size: 26px; }
  .value-icon{ width: 70px; height: 70px; }
  .value-icon img{ width: 40px; }

}
@media (max-width: 1199px) {

  .value-img{ width: 250px; height: 150px; }
  .value-detail{ width: calc(100% - 250px); padding-left: 20px; }
  .value-content{ padding-right: 0; width: calc(100% - 60px); }
  .value-content .title{ font-size: 20px; }
  .value-content .text{ font-size: 14px; }
  .value-icon{ width: 60px; height: 60px; }
  .value-icon img{ width: 35px; }

}
@media (max-width: 991px){

  .value-img{ width: 300px; height: 150px; }
  .value-detail{ width: calc(100% - 300px); }
  .sv-ref .title{ font-size: 24px; }

}
@media (max-width: 767px){

  .card-value{ flex-direction: column-reverse; }
  .value-img{ width: 100%; }
  .value-img img{ clip-path:none; }
  .value-detail{ width: 100%; padding: 20px; }

}


/**********************************************************/
/************************* detail *************************/

.scbar-detail{ background-image: url('../images/bar/cover-detail.jpg'); background-repeat: no-repeat; background-position: left bottom; background-size: cover; color: var(--white); overflow: hidden; }

.detail-row{ display: flex; align-items: center; }
.detail-col1{ flex: 1; }
.detail-col2{ flex: 1; margin-right: calc((100cqw - 100%) / -2); }

.detailimg{ line-height: 0; }
.detailimg img{ width: 100%; }


@media (max-width: 991px){

  .scbar-detail .div-container{ padding: 0; max-width: 100%; }
  .scbar-detail .detail-row{ margin: 0; }
  .scbar-detail .detail-col1, .scbar-detail .detail-col2{ padding: 0; }
  .scbar-detail .barcontent{ padding: 40px; max-width: 100%; width: 100%; }

  .detail-row{ flex-direction: column-reverse; margin-left: -15px; margin-right: -15px; }
  .detail-col1{ width: 100%; padding-right: 0; }
  .detail-col2{ width: 100%; margin-right: 0; }
  .detail-col1, .detail-col2{ padding-left: 15px; padding-right: 15px; }

  
}
@media (max-width: 576px){

  .scbar-detail .barcontent{ padding: 30px; }

}


/* post FAQ accordion */
.vaskoccc-faq-block{
  width: 100%;
  margin: 0 0 50px;
}
.vaskoccc-faq-block-item{
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  padding: 20px 0;
  cursor: pointer;
}
.vaskoccc-faq-block-item.is-first{
  border-top: 1px solid #EBEBEB;
}
.vaskoccc-faq-block-toggle{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.vaskoccc-faq-block-label{
  flex-shrink: 0;
  width: 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16px;
  text-align: center;
}
.vaskoccc-faq-block-toggle .vaskoccc-faq-block-label{
  color: #00528c;
}
.vaskoccc-faq-block-panel .vaskoccc-faq-block-label{
  color: var(--primary);
}
.vaskoccc-faq-block-question,
.div-article .vaskoccc-faq-block-question{
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: var(--default);
}
.vaskoccc-faq-block-chevron-wrap{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vaskoccc-faq-block-chevron{
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.vaskoccc-faq-block-chevron.is-collapsed{
  transform: rotate(180deg);
}
.vaskoccc-faq-block-panel{
  margin-top: 12px;
  overflow: hidden;
  cursor: default;
}
.vaskoccc-faq-block-panel.is-hidden{
  display: none;
}
.vaskoccc-faq-block-panel-inner{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-right: 40px;
}
.vaskoccc-faq-block-body{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vaskoccc-faq-answer,
.div-article .vaskoccc-faq-answer{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: #434549;
}
.vaskoccc-faq-answer p,
.vaskoccc-faq-answer ul,
.vaskoccc-faq-answer ol,
.div-article .vaskoccc-faq-answer p,
.div-article .vaskoccc-faq-answer ul,
.div-article .vaskoccc-faq-answer ol{
  margin: 0 0 12px;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
}
.vaskoccc-faq-answer > :last-child,
.div-article .vaskoccc-faq-answer > :last-child{
  margin-bottom: 0;
}
.vaskoccc-faq-answer ul,
.div-article .vaskoccc-faq-answer ul{
  list-style: disc outside;
  padding-left: 1.25em;
  margin-left: 0;
}
.vaskoccc-faq-answer ol,
.div-article .vaskoccc-faq-answer ol{
  list-style: decimal outside;
  padding-left: 1.5em;
  margin-left: 0;
  margin-bottom: 12px;
}
.vaskoccc-faq-answer li,
.div-article .vaskoccc-faq-answer li{
  display: list-item;
  margin: 0 0 8px;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
}
.vaskoccc-faq-answer li:last-child,
.div-article .vaskoccc-faq-answer li:last-child{
  margin-bottom: 0;
}
.div-article .vaskoccc-faq-answer a{
  text-decoration: underline;
}
.vaskoccc-faq-block-link{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--primary);
  text-decoration: none;
}
.vaskoccc-faq-block-link:hover{
  color: var(--secondary);
}
.div-article .vaskoccc-faq-block-link{
  text-decoration: none;
}
.vaskoccc-faq-block-link-icon{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 991px){
  .vaskoccc-faq-block{ margin-bottom: 30px; }
  .vaskoccc-faq-block-toggle{ gap: 12px; }
  .vaskoccc-faq-block-panel-inner{ gap: 12px; padding-right: 28px; }
}

/* article */
.div-article{ max-width: 800px; width: 100%; margin: 0 auto; }
.div-article h1{ font-size: var(--txt-h2); line-height: 1.3; font-weight: 600; padding-bottom: 40px; }
/* Gutenberg post title — same left edge as content, text-align left */
h1.wp-block-post-title{
  font-size: var(--txt-h2);
  line-height: 1.15;
  font-weight: 600;
  color: var(--default);
  text-align: left;
}
.div-article h2{ font-size: 34px; line-height: 1.3; font-weight: 600; margin-bottom: 10px; color: #00528c; }
.div-article h3{ font-size: 24px; line-height: 1.3; font-weight: 600; margin-bottom: 10px; color: var(--primary); }
.div-article h4{ font-size: 17px; line-height: 1.3; font-weight: 600; margin-bottom: 10px; }
.div-article ul{ list-style: disc; margin-left: 23px; margin-bottom: 50px; }
.div-article ol{ list-style: decimal; margin-left: 20px; margin-bottom: 50px; }
.div-article p, .div-article li{ font-size: 20px; line-height: 1.5; }
.div-article p{ margin-bottom: 50px; }
.div-article li{ margin-bottom: 10px; }
.div-article p:last-child,
.div-article ul:last-child,
.div-article ol:last-child,
.div-article li:last-of-type{ margin-bottom: 0; }
.div-article a{ text-decoration: underline; }
.div-article figure{ margin-bottom: 50px; text-align: center; }
.div-article p + ul,
.div-article p + ol{ margin-top: -20px; }
.div-article table thead{ background: #0168b5; color: #fff; border-bottom: 0; }
.div-article table thead th{ border-color: #000; }
.div-article table tbody{ background: #f7f7f7; }

.article-share{ display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: bold; margin-top: 50px; }

@media (max-width: 1199px){

  .div-article h2{ font-size: 30px; }
  .div-article h3{ font-size: 20px; }
  .div-article h4{ font-size: 17px; }
}
@media (max-width: 991px){

  .div-article h2{ font-size: 24px; }
  .div-article h3{ font-size: 20px; }
  .div-article h4{ font-size: 17px; }
  .div-article ul{ margin-left: 20px; }
  .div-article p, .div-article li{ font-size: 16px; }

  .div-article ul, .div-article ol, .div-article p,
  .div-article figure{ margin-bottom: 30px; }

  .article-share{ font-size: 16px; }

}

/* FAQ inside article — win over .div-article list rules */
.div-article .vaskoccc-faq-block-label,
.div-article .vaskoccc-faq-block-question,
.div-article .vaskoccc-faq-answer,
.div-article .vaskoccc-faq-answer p,
.div-article .vaskoccc-faq-answer li{
  font-size: 18px;
  line-height: 1.5;
}
.div-article .vaskoccc-faq-answer ul,
.div-article .vaskoccc-faq-answer ol{
  list-style-position: outside;
  margin: 0 0 12px;
  margin-left: 0;
  padding-left: 1.5em;
}
.div-article .vaskoccc-faq-answer ul{ list-style-type: disc; }
.div-article .vaskoccc-faq-answer ol{ list-style-type: decimal; }
.div-article .vaskoccc-faq-answer li{
  display: list-item;
  margin: 0 0 8px;
  padding: 0;
}
.div-article .vaskoccc-faq-answer li:last-child{ margin-bottom: 0; }
.div-article .vaskoccc-faq-answer p{ margin: 0 0 12px; }
.div-article .vaskoccc-faq-answer > :last-child{ margin-bottom: 0; }

.div-article-arrow{ display: flex; justify-content: space-between; border-top: 1px solid rgba(0, 0, 0, .2); border-bottom: 1px solid rgba(0, 0, 0, .2); padding: 25px 0; max-width: 800px; width: 100%; margin: 50px auto 0; }
.div-article-arrow .article--prev a,
.div-article-arrow .article--next a{ display: flex; align-items: center; gap: 5px; font-size: 16px; }
.div-article-arrow .article--prev img,
.div-article-arrow .article--next img{ width: 12px; }
.div-article-arrow .article--prev:hover,
.div-article-arrow .article--next:hover{ color: var(--primary); }
.div-article-arrow .article--prev:hover img,
.div-article-arrow .article--next:hover img{ filter: var(--filter-primary); }

/* CTA consult (mock) — reference layout + site tokens */
.cta-consult{
  margin: 50px 0;
  padding: 44px 40px;
  border-radius: 14px;
  background-image: url('../images/bar/cover-detail.jpg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.cta-consult__inner{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 40px;
}
.cta-consult__content{ flex: 1 1 auto; min-width: 0; }
.cta-consult__title{
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.cta-consult__text{
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 22px;
  max-width: 520px;
}
.cta-consult__actions{
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.cta-consult__btn-phone{
  background-color: #06548E;
}
.cta-consult__btn-phone:hover{
  background-color: #044270;
  color: #fff;
}
.cta-consult__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-consult__list li{
  position: relative;
  margin: 0;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
}
.cta-consult__list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(0, 45, 79, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.cta-consult__qr{
  flex: 0 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}
.cta-consult__qr:hover{ opacity: 0.9; color: #fff; }
.cta-consult__qr img{
  display: block;
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin: 0 auto 12px;
}
.cta-consult__qr span{
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Isolate from .div-article typography */
.div-article .cta-consult .cta-consult__title,
.div-article .cta-consult .cta-consult__text,
.div-article .cta-consult .cta-consult__list,
.div-article .cta-consult .cta-consult__list li{
  margin-bottom: 0;
}
.div-article .cta-consult .cta-consult__title{
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.div-article .cta-consult .cta-consult__text{
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 22px;
}
.div-article .cta-consult .cta-consult__list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.div-article .cta-consult .cta-consult__list li{
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
  padding-left: 34px;
}
.div-article .cta-consult a{ text-decoration: none; }

@media (max-width: 991px){
  .cta-consult{ padding: 36px 28px; }
  .cta-consult__title,
  .div-article .cta-consult .cta-consult__title{ font-size: 36px; }
  .cta-consult__qr img{ width: 140px; height: 140px; }
}
@media (max-width: 767px){
  .cta-consult{ margin: 36px 0; padding: 28px 22px; }
  .cta-consult__inner{ flex-direction: column; align-items: stretch; gap: 24px; }
  .cta-consult__title,
  .div-article .cta-consult .cta-consult__title{ font-size: 30px; }
  .cta-consult__text,
  .div-article .cta-consult .cta-consult__text{ font-size: 16px; max-width: none; }
  .cta-consult__qr{ display: flex; flex-direction: row; align-items: center; gap: 16px; text-align: left; }
  .cta-consult__qr img{ width: 100px; height: 100px; margin: 0; }
  .cta-consult__qr span{ text-align: left; }
}





/**********************************************************/
/************************* product ************************/

.product-row{ display: flex; flex-flow: row wrap; }
.product-row .product--left{ width: 350px; padding-right: 50px; }
.product-row .product--right{ width: calc(100% - 350px); }

.prod--header{ display: flex; flex-direction: column; gap: 50px; }
.prod--header.flex-column{ flex-direction: column; align-items: flex-start; }
.prod--icon img{ width: 80px; filter: var(--filter-primary); }
.prod--title{ font-size: 40px; line-height: 1.25; font-weight: 600; }
.prod--text{ font-size: 20px; line-height: 1.4; }

.prod--bg{ background-image: url('../images/product/section-bg.jpg'); background-repeat: no-repeat; background-position: left top; background-size: cover; }

.prod--list{ display: flex; flex-flow: row wrap; gap: 30px; }
.prod--list .why-card{ width: calc(33% - 18px); }

@media (max-width: 1599px){

  .prod--title{ font-size: 34px; }

}
@media (max-width: 1199px){

  .product-row .product--left{ width: 250px; padding-right: 50px; }
  .product-row .product--right{ width: calc(100% - 250px); }

  .prod--header{ gap: 28px; }
  .prod--icon img{ width: 70px; }
  .prod--title{ font-size: 30px; }
  .prod--text{ font-size: 18px; }

  .prod--list .why-card{ width: calc(50% - 15px); }

}
@media (max-width: 767px){

  .product-row .product--left{ width: 100%; padding-right: 0px; margin-bottom: 30px; }
  .product-row .product--right{ width: 100%; }

  .prod--header{ flex-direction: row; align-items: center; gap:20px; }
  .prod--icon img{ width: 60px; }
  .prod--title{ font-size: 22px; }

}
@media (max-width: 576px){

  .prod--list .why-card{ width: 100%; }

}


/**********************************************************/
/*************************** 404 **************************/

.error-404{ min-height: 520px; }
.error-404__inner{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.error-404__code{
  font-family: "Bebas Neue", sans-serif;
  font-size: 120px;
  line-height: 1;
  color: var(--primary);
}
.error-404__title{
  font-size: var(--txt-h2);
  line-height: 1.2;
  font-weight: 600;
  color: var(--secondary);
}
.error-404__text{
  font-size: 20px;
  line-height: 1.5;
  color: var(--default);
  max-width: 520px;
}
.error-404__actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  padding-top: 16px;
}
.error-404__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}
.error-404__link img{
  width: 12px;
  filter: var(--filter-primary);
  transition: transform 0.3s ease;
}
.error-404__link:hover{ color: var(--secondary); }
.error-404__link:hover img{
  filter: var(--filter-secondary);
  transform: translateX(4px);
}

@media (max-width: 767px){
  .error-404{ min-height: 0; }
  .error-404__code{ font-size: 80px; }
  .error-404__text{ font-size: 16px; }
}



