html.lb-disable-scrolling {
    overflow: hidden;  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
    position: fixed;
    height: 100vh;
    width: 100vw;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;  /* Image border */
    border: 4px solid white;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;  /* Background color behind image.
                               This is visible during transitions. */
    background-color: white;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(https://nhasang.net/libraries/jquery/lightbox2/dist/images/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container > .nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(https://nhasang.net/libraries/jquery/lightbox2/dist/images/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(https://nhasang.net/libraries/jquery/lightbox2/dist/images/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 0 4px;
    color: #ccc;
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-caption a {
    color: #4ae;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(https://nhasang.net/libraries/jquery/lightbox2/dist/images/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.projectlist_simple .list_cat {
    width: 90%;
    margin: 20px auto 0px;
    display: flex
}

.projectlist_simple .list_cat .list_cat_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

@media all and (max-width:700px) {
    .projectlist_simple .list_cat {
        overflow-x: scroll;
        overflow-y: hidden;
        margin: 10px 0px 0px;
        width: auto;
        display: block
    }

    .projectlist_simple .list_cat::-webkit-scrollbar {
        display: none
    }

    .projectlist_simple .list_cat .list_cat_inner {
        width: 700px !important
    }

}

.projectlist_simple .list_cat .cat_item {
    width: 20%;
    float: left;
    text-align: center;
    flex: 1
}

.projectlist_simple .list_cat .cat_item .cat_item_name {
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
    font-size: 14px;
    color: #777777;
}

.projectlist_simple .list_cat .cat_item .cat_item_name:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    top: 0;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%)
}

@media all and (max-width:500px) {
    .projectlist_simple .list_cat .cat_item .cat_item_name {
        padding-top: 5px;
        margin-top: 5px
    }

}

.projectlist_simple .list_cat .cat_item .cat_item_icon {
    position: relative;
    min-height: 50px;
    text-align: center
}

.projectlist_simple .list_cat .cat_item .cat_item_icon svg {
    width: 50px;
    height: 50px
}

@media all and (max-width:500px) {
    .projectlist_simple .list_cat .cat_item .cat_item_icon svg {
        width: 40px;
        height: 40px
    }

}

@media all and (max-width:500px) {
    .projectlist_simple .list_cat .cat_item .cat_item_icon {
        min-height: 40px
    }

}

.projectlist_simple .list_cat .cat_item .cat_item_icon img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

@media all and (max-width:500px) {
    .projectlist_simple .list_cat .cat_item .cat_item_icon img {
        width: 70%
    }

}

.projectlist_simple .list_item {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap
}

@media all and (max-width:500px) {
    .projectlist_simple .list_item {
        margin-top: 15px
    }

}

.projectlist_simple .list_item .item {
    width: calc(100%/3 - 20px);
    float: left;
    margin-bottom: 30px
}

.projectlist_simple .list_item .item:not(:nth-child(3n)) {
    margin-right: 30px
}

@media all and (max-width:800px) {
    .projectlist_simple .list_item .item {
        width: calc(100%/3 - 20px/3);
        margin-bottom: 10px
    }

    .projectlist_simple .list_item .item:not(:nth-child(3n)) {
        margin-right: 10px
    }

}

@media all and (max-width:500px) {
    .projectlist_simple .list_item .item {
        width: 100%;
        margin: 0px;
        padding: 0px;
        border: 0px;
        box-sizing: border-box
    }

    .projectlist_simple .list_item .item:not(:nth-child(3n)) {
        margin-right: 0px
    }

    .projectlist_simple .list_item .item:nth-child(2n) {
        border-right: none
    }

}

.projectlist_simple .list_item .item .link_item {
    display: grid
}

@media all and (max-width:500px) {
    .projectlist_simple .list_item .item .link_item {
        padding: 0px
    }

}

.projectlist_simple .list_item .item figure {
    display: grid;
    margin-bottom: 0px
}

.projectlist_simple .list_item .item figure figcaption, .projectlist_simple .list_item .projects_des {
    border: 1px solid #eaeaea;
    border-width: 0px 1px 1px;
    box-sizing: border-box
}

@media all and (max-width:500px) {
    .projectlist_simple .list_item .item figure figcaption {
        border-width: 0px
    }

}

.projectlist_simple .list_item .item figure figcaption .des_inner, .projectlist_simple .list_item .des_inner{
    padding: 10px 15px;
    text-align: center
}

@media all and (max-width:500px) {
    .projectlist_simple .list_item .item figure figcaption .des_inner {
        padding: 5px 10px
    }

}

.projectlist_simple .list_item .item figure figcaption .des_inner .des_location {
    padding-left: 20px;
    position: relative;
    color: #848484
}

.projectlist_simple .list_item .item figure figcaption .des_inner .des_location:before {
    content: '';
    position: absolute;
    width: 11px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("https://nhasang.net/blocks/projects/assets/images/location.svg");
    background-size: contain;
    background-repeat: no-repeat
}

.projectlist_simple .list_item .item figure figcaption .des_inner .des_name, .projectlist_simple .list_item .des_inner .des_name{
    font-size: 16px;
    transition: all 0.3s
}

.projectlist_simple #title_project_2 {
    margin-top: 50px
}

.products_blocks_wrapper .list_products {
    margin-top: 30px
}

@media all and (max-width:800px) {
    .products_blocks_wrapper .list_products {
        margin-top: 20px
    }

}

.products_blocks_wrapper .list_products .products_top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px
}

@media all and (max-width:800px) {
    .products_blocks_wrapper .list_products .products_top {
        margin-bottom: 10px
    }

}

@media all and (max-width:500px) {
    .products_blocks_wrapper .list_products .products_top {
        display: none
    }

}

.products_blocks_wrapper .list_products .products_top .item {
    width: calc(100%/3 - 20px);
    float: left;
    box-sizing: border-box
}

.products_blocks_wrapper .list_products .products_top .item:not(:nth-child(3)) {
    margin-right: 30px
}

.products_blocks_wrapper .list_products .products_top .item:nth-child(n+4) {
    display: none
}

@media all and (max-width:800px) {
    .products_blocks_wrapper .list_products .products_top .item {
        width: calc(100%/3 - 20px/3)
    }

    .products_blocks_wrapper .list_products .products_top .item:not(:nth-child(3)) {
        margin-right: 10px
    }

}

@media all and (max-width:500px) {
    .products_blocks_wrapper .list_products .products_top .item {
        width: 50%;
        border: 1px solid #eaeaea;
        border-width: 0px 1px 1px 0px
    }

    .products_blocks_wrapper .list_products .products_top .item:nth-child(2) {
        border-right: 0px
    }

    .products_blocks_wrapper .list_products .products_top .item:not(:nth-child(3)) {
        margin-right: 0px
    }

    .products_blocks_wrapper .list_products .products_top .item:nth-child(3) {
        display: none
    }

}

.products_blocks_wrapper .list_products .products_below {
    display: flex;
    flex-wrap: wrap
}

.products_blocks_wrapper .list_products .products_below .item {
    width: calc(100%/5 - 12px);
    float: left;
    box-sizing: border-box
}

.products_blocks_wrapper .list_products .products_below .item:nth-child(-n+3), .products_blocks_wrapper .list_products .products_below .item:nth-child(n+9) {
    display: none
}

.products_blocks_wrapper .list_products .products_below .item:not(:last-child) {
    margin-right: 15px
}

@media all and (max-width:800px) {
    .products_blocks_wrapper .list_products .products_below .item {
        width: calc(100%/5 - 8px)
    }

    .products_blocks_wrapper .list_products .products_below .item:not(:last-child) {
        margin-right: 10px
    }

}

@media all and (max-width:500px) {
    .products_blocks_wrapper .list_products .products_below .item {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 0px;
        border: 0px;
        display: block !important
    }

    .products_blocks_wrapper .list_products .products_below .item:not(:last-child) {
        margin-right: 0px
    }

    .products_blocks_wrapper .list_products .products_below .item:nth-child(3) {
        display: block
    }

}

.products_blocks_wrapper .list_products .item figure {
    margin-bottom: 0;
    display: grid
}

.products_blocks_wrapper .list_products .item .link-item {
    display: grid
}

@media all and (max-width:500px) {
    .products_blocks_wrapper .list_products .item .link-item {
        padding: 10px 10px 0px
    }

}

.products_blocks_wrapper .list_products .item .products_name {
    border: 1px solid  #eaeaea;
    border-width: 0px 1px 1px
}

.products_blocks_wrapper .list_products .item .products_name .name_inner {
    padding: 5px;
    text-align: center;
    font-size: 16px
}

@media all and (max-width:500px) {
    .products_blocks_wrapper .list_products .item .products_name {
        border-width: 0px
    }

    .block_newslist {
        padding-top: 40px;
        border-top: 1px solid #eaeaea
    }

    .block_newslist .block_title {
        text-align: left;
        position: relative
    }

    .block_newslist .block_title .block_summary {
        display: none
    }

    .block_newslist .block_title .text_inner {
        padding-bottom: 15px
    }

    .block_newslist .block_title .text_inner:after {
        display: none
    }

    .block_newslist .block_title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20px;
        height: 2px;
        background-color: #e1e1e1
    }

}

@media all and (max-width:500px) {
    .block_newslist .block_title {
        text-align: center
    }

    .block_newslist .block_title:after {
        left: 50%;
        transform: translateX(-50%)
    }

}

@media all and (max-width:500px) {
    .block_newslist {
        padding-top: 10px
    }

}

.block-news-list-column3 {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -7.5px 0 -7.5px;
}

.block-news-list-column3 .item {
    width: 33.3333%;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 0 7.5px;
}

/*.block-news-list-column3 .item:not(:first-child) {
    margin-left: 30px
}*/

@media all and (max-width:990px) {
    .block-news-list-column3 .item:not(:first-child) {
        margin-left: 10px
    }

}

@media all and (max-width:500px) {
    .block-news-list-column3 .item:not(:first-child) {
        margin-left: 0px
    }

}

.block-news-list-column3 .item .img {
    overflow: hidden;
    display: block
}

.block-news-list-column3 .item .img a {
    display: grid
}

@media all and (max-width:500px) {
    .block-news-list-column3 .item .img {
        width: 150px;
        float: left
    }

}

.block-news-list-column3 .item img {
    max-height: 240px;
    width: 100%;
    transition: all 0.5s ease 0s !important;
    -webkit-transition: all 0.5s ease 0s
}

.block-news-list-column3 .item:hover img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03)
}

@media all and (max-width:990px) {
    .block-news-list-column3 .item {
        width: calc(100%/3 - 20px/3)
    }

}

@media all and (max-width:500px) {
    .block-news-list-column3 .item {
        width: 100%
    }

    .block-news-list-column3 .item:not(:last-child) {
        margin-bottom: 15px
    }

}

.block-news-list-column3 .title {
    line-height: 22px;
    margin: 20px 0px;
    font-weight: bold;
    font-size: 16px
}

@media all and (max-width:500px) {
    .block-news-list-column3 .title {
        margin: 0px 0px 10px;
        width: calc(100% - 160px);
        float: right;
        font-size: 16px;
        font-weight: normal;
        text-align: justify
    }

}

.block-news-list-column3 .summary_new {
    font-size: 14px
}

@media all and (max-width:600px) {
    .block-news-list-column3 .summary_new {
        display: none
    }

}

.block-news-list-column3 .date {
    position: relative;
    color: #8e8e8e
}

.block-news-list-column3 .date svg {
    width: 15px;
    height: 15px;
    fill: #3c3c3c;
    position: absolute;
    left: 13px
}

@media all and (max-width:500px) {
    .block-news-list-column3 .date {
        width: calc(100% - 160px);
        float: right
    }

}
/*
     FILE ARCHIVED ON 19:56:19 Jul 21, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:47:47 May 25, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.487
  exclusion.robots: 0.054
  exclusion.robots.policy: 0.044
  esindex: 0.008
  cdx.remote: 15.135
  LoadShardBlock: 386.34 (3)
  PetaboxLoader3.resolve: 112.832 (4)
  PetaboxLoader3.datanode: 342.875 (5)
  load_resource: 97.32
  loaddict: 24.44
*/