header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
}
header > .wrap {
    justify-content: space-between;
    padding: 30px;
    align-items: center;

}
body:not(.fp-viewing-intro) header > .wrap{
    background-color: rgba(30,30,30, .5);
    backdrop-filter: blur(5px);

}


header .logo {
    height: 32px;
    width: 220px;
    background-position: center left;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-image: url(../resources/img-logo.png?update=240911);
}
header .category {
    display: flex;
    flex-direction: row;
    gap: 20px;
}


header .sideBox {
    gap: 30px;
}

body.headerON header{
    bottom: 0;
    background-color: rgba(10,10,10, .5);
    backdrop-filter: blur(5px);
}
body.headerON header .logo{
    position: absolute;
    left: 20px;
    top: 20px;
}
body.headerON header > .wrap {
    height: 100%;
    flex-direction: column !important;
    justify-content: center
}
body.headerON header .category {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
    
}
body.headerON header .category .cateItem h5{
    font-size: 3rem;
}



body[data-location="about"] header .category .cateItem:nth-child(1) ,
body[data-location="dpg"] header .category .cateItem:nth-child(2) ,
body[data-location="infra"] header .category .cateItem:nth-child(3) ,
body[data-location="service"] header .category .cateItem:nth-child(4) ,
body[data-location="news"] header .category .cateItem:nth-child(5) 
{
  color: var(--color-primary);
  font-weight: 800;
}



footer {
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgb(0, 39, 105) 100%, rgba(174,206,255,1) 100%);
}

footer,footer .fp-tableCell {
    height: fit-content !important;
  }
  footer .fp-tableCell > .wrap,
footer > .wrap {
    padding-bottom: 60px !important;
  }
  footer > .wrap{
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .sitemap {
    display: flex;
    padding-top: 100px !important;
    gap: 40px;
  }
  footer .logo {
    display: block;
    height: 50px;
    width: 100%;
    background-position: center left;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-image: url(../resources/img-logo.png?update=240911);
  }
  footer .sitemap li  h2 {
    margin-bottom: 14px;
  }
  footer .sitemap li .btnBox{
    margin-top: 20px;
    gap: 6px;
    display: flex;
    flex-direction: row;
  }
  footer .sitemap li .btnBox a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    }
  footer .sitemap li .btnBox a .icon {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(100);
  }
    .ic-telegram {background-image: url(../resources/icon/icon-telegram.png);}
    .ic-X {background-image: url(../resources/icon/icon-x.png);}
    .ic-github {background-image: url(../resources/icon/icon-github.png);}
    .ic-midium {background-image: url(../resources/icon/icon-medium.png);}
    .ic-youtube {background-image: url(../resources/icon/icon-youtube.png);}

  footer .sitemap li h5 {
    color: #aaa;
  }
  footer .sitemap li h5 b{
    color: #fff;
}
footer .sitemap li:nth-child(1){
    flex: 1;
}
  footer .sitemap li:nth-child(2),
  footer .sitemap li:nth-child(3){
    width: 20%;
  }
footer .sitemap [class*="foot_"] {
    padding-left: 32px;
    position: relative;
    display: block;
}
footer .sitemap [class*="foot_"]::after {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    background-image: url();
    background-size: contain;
    background-position: center;
}
footer .sitemap [class*="foot_"].foot_location::after {background-image: url(../resources/icon/icon-location.png);}
footer .sitemap [class*="foot_"].foot_mail::after {background-image: url(../resources/icon/icon-mail.png);}

footer .copyright {
    color: #aaa;
    margin-top: 20px;
}






.loadArea.hide{
  opacity: 0;
}
.loadArea{
  position: fixed;
  background-color: rgba(00,0,0,.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;    

  transition: all 1s ;
}

#load {
  position:absolute;
  width:600px;
  height:36px;
  left:50%;
  top:40%;
  margin-left:-300px;
  overflow:visible;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  cursor:default;
  padding-top: 80px;
  ;
}
#load::before{
  content: '';
  background-image: url(../resources/img-logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  height: 100px;
  width: 300px;
  left: 50%;
  transform: translate(-50%,-100%)
  ;
}

#load div {
  position:absolute;
  width:20px;
  font-size: 2.4rem;
  font-weight: lighter;
  height:36px;
  opacity:0;
  font-family:Helvetica, Arial, sans-serif;
  animation:move 2.6s linear infinite;
  -o-animation:move 2.6s linear infinite;
  -moz-animation:move 2.6s linear infinite;
  -webkit-animation:move 2.6s linear infinite;
  transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  color:var(--color-primary);
}

#load div:nth-child(2) {
  animation-delay:0.2s;
  -o-animation-delay:0.2s;
  -moz-animation-delay:0.2s;
  -webkit-animation-delay:0.2s;
}
#load div:nth-child(3) {
  animation-delay:0.4s;
  -o-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
}
#load div:nth-child(4) {
  animation-delay:0.6s;
  -o-animation-delay:0.6s;
  -moz-animation-delay:0.6s;
  -webkit-animation-delay:0.6s;
}
#load div:nth-child(5) {
  animation-delay:0.8s;
  -o-animation-delay:0.8s;
  -moz-animation-delay:0.8s;
  -webkit-animation-delay:0.8s;
}
#load div:nth-child(6) {
  animation-delay:1s;
  -o-animation-delay:1s;
  -moz-animation-delay:1s;
  -webkit-animation-delay:1s;
}
#load div:nth-child(7) {
  animation-delay:1.2s;
  -o-animation-delay:1.2s;
  -moz-animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}
#load div:nth-child(8) {
  animation-delay:1.4s;
  -o-animation-delay:1.4s;
  -moz-animation-delay:1.4s;
  -webkit-animation-delay:1.4s;
}
#load div:nth-child(9) {
  animation-delay:1.6s;
  -o-animation-delay:1.6s;
  -moz-animation-delay:1.6s;
  -webkit-animation-delay:1.6s;
}
#load div:nth-child(10) {
  animation-delay:1.8s;
  -o-animation-delay:1.8s;
  -moz-animation-delay:1.8s;
  -webkit-animation-delay:1.8s;
}

@keyframes move {
  0% {
    left:0;
    opacity:0;
  }
    35% {
        left: 41%; 
        -moz-transform:rotate(0deg);
        -webkit-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
        opacity:1;
    }
    65% {
        left:59%; 
        -moz-transform:rotate(0deg); 
        -webkit-transform:rotate(0deg); 
        -o-transform:rotate(0deg);
        transform:rotate(0deg); 
        opacity:1;
    }
    100% {
        left:100%; 
        -moz-transform:rotate(-180deg); 
        -webkit-transform:rotate(-180deg); 
        -o-transform:rotate(-180deg); 
        transform:rotate(-180deg);
        opacity:0;
    }
}

@-moz-keyframes move {
    0% {
        left:0; 
        opacity:0;
    }
    35% {
        left:41%; 
        -moz-transform:rotate(0deg); 
        transform:rotate(0deg);
        opacity:1;
    }
    65% {
        left:59%; 
        -moz-transform:rotate(0deg); 
        transform:rotate(0deg);
        opacity:1;
    }
    100% {
        left:100%; 
        -moz-transform:rotate(-180deg); 
        transform:rotate(-180deg);
        opacity:0;
    }
}

@-webkit-keyframes move {
    0% {
        left:0; 
        opacity:0;
    }
    35% {
        left:41%; 
        -webkit-transform:rotate(0deg); 
        transform:rotate(0deg); 
        opacity:1;
    }
    65% {
        left:59%; 
        -webkit-transform:rotate(0deg); 
        transform:rotate(0deg); 
        opacity:1;
    }
    100% {
        left:100%;
        -webkit-transform:rotate(-180deg); 
        transform:rotate(-180deg); 
        opacity:0;
    }
}

@-o-keyframes move {
    0% {
        left:0; 
        opacity:0;
    }
    35% {
        left:41%; 
        -o-transform:rotate(0deg); 
        transform:rotate(0deg); 
        opacity:1;
    }
    65% {
        left:59%; 
        -o-transform:rotate(0deg); 
        transform:rotate(0deg); 
        opacity:1;
    }
    100% {
        left:100%; 
        -o-transform:rotate(-180deg); 
        transform:rotate(-180deg); 
        opacity:0;
    }
}