:root{
    --top-hat-height: 0;
    --primary-nav-height: 73px;
    --sub-nav-height: 0;
    --content-spacing: 64px;
    --scroll-padding-top: calc(calc(var(--top-hat-height)* 1px) + var(--primary-nav-height) + calc(var(--sub-nav-height)* 1px) + var(--content-spacing));
}
h1{ color: var(--theme-color); }

.wrapper-padding{
    padding: 10px 24px 0 24px;
}

/*Breadcrumb*/
.breadcrumb-group{
    font-size: 0.8rem;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--solid-gray);
    border-radius: var(--border-radius);
}
.breadcrumb {
    display: flex; list-style: none; padding: 0; background: none; margin: 0;
}
.breadcrumb-item {
    margin: 0 0.5em;
    white-space: nowrap;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin-right: 0.5em;
    color: var(--gray);
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .active { color: var(--gray); }
/*Breadcrumb*/

/*News List*/
section.news-block .news-items{
    flex-wrap: wrap;
}
section.news-block .news-items .news-item{
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
}
/*News List*/

/*Procurement List*/
section.procurement-block{
    text-align: center;
    margin-bottom: 40px;
}
section.procurement-block .procurement-items{

}
section.procurement-block .procurement-items .procurement-item{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid var(--solid-gray);
    cursor: pointer;
    transition: all 1s ease;
}

section.procurement-block .procurement-items .procurement-item.disable{
    opacity: 0.4;
}
section.procurement-block .procurement-items .procurement-item.disable .content a div{
    color: var(--gray);
}

section.procurement-block .procurement-items .procurement-item:nth-child(odd):hover, section.procurement-block .procurement-items .procurement-item:nth-child(even):hover{
    border: 2px solid var(--solid-gray);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
section.procurement-block .procurement-items .procurement-item .content{
    width: 100%;
}
section.procurement-block .procurement-items .procurement-item .content a{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 1.2rem;
    align-items: center;
}
section.procurement-block .procurement-items .procurement-item .content div:first-child{
    width: 60%;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 1rem;
}
section.procurement-block .procurement-items .procurement-item .content a p{
    margin-bottom: 0;
    margin-right: 20px;
}
section.procurement-block .procurement-items .procurement-item .content a .info{
    font-size: 0.8rem;
}
section.procurement-block .procurement-items .procurement-item .content a .info span{
    font-weight: bold;
}
section.procurement-block .procurement-items .procurement-item:nth-child(odd) {
    background-color: #F0F0F0;
}
section.procurement-block .procurement-items .procurement-item:nth-child(even) {
    background-color: #F8F8F8;
}
/*Procurement List*/

/*Detail Text*/
.article-wrapper{
    display: grid;
    gap: clamp(1rem, -10rem + 17vw, 5.5rem);
    grid-template-columns: 192px minmax(0px, 1fr) 192px;
    margin: 0 auto;
    padding: 10px 24px 0 24px;
}
.article-wrapper-container{
    isolation: isolate;
    position: sticky;
    top: 20px;
}
.article-wrapper .left{
    padding: 60px 0 0 0;
}
.article-wrapper .right{
    padding: 60px 0 0 0;
}
.article-wrapper nav{
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 500;
    gap: 24px;
    margin-bottom: 16px;
    max-height: 80vh;
    overflow-y: scroll;
    padding: 0px 32px 16px 0px;
    position: sticky;
    scrollbar-color: rgb(138, 150, 181) transparent;
    top: var(--scroll-padding-top);
}
.article-wrapper nav::-webkit-scrollbar {
    background: transparent;
    width: 3px;
    opacity: 0.3;
    border-radius: var(--border-radius);
    visibility: hidden;
}
.article-wrapper nav::-webkit-scrollbar-track {
    background: rgb(138, 150, 181);
    visibility: hidden;
}

.article-wrapper nav h2{
    color: rgb(0, 12, 43);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 22px;
    margin: 0px;
    text-transform: uppercase;
}
.article-wrapper nav ol{
    color: rgb(0, 12, 43);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
    list-style: none;
    opacity: 1;
    padding: 0;
}
.article-wrapper nav ol li{
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 12px 0px 0px;
    overflow-wrap: break-word;
}
.article-wrapper nav ol li a{
    color: var(--theme-font-color-light);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.article-wrapper nav ol li a.active h2{
    color: rgb(8, 27, 75);
    font-weight: bold;
}
.article-wrapper nav ol li a h2{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: unset;
}

.content-detail-block{
    margin-top: 20px;
    margin-bottom: 20px;
}
.content-detail-block .date{
    color: var(--theme-font-color-light);
    font-size: 16px;
    line-height: 24px;
    margin: 8px 0px;
}
.content-detail-block h4{
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 24px;
    margin: 20px 0px 8px;
    text-transform: uppercase;
    color: var(--theme-font-color-light);
}
.content-detail-block h1{
    font-size: 2rem;
    font-weight: bold;
}
.detail-text{
    color: var(--gray);
    padding: 0 20px 0 0;
}
.detail-text img{
    width: 96%;
    border-radius: 24px;
    display: block;
    height: auto;
    margin: 30px 0px;
}
.detail-text p{
    line-height: 1.5;
    margin: 1em 0px;
    color: rgb(77, 91, 124);
    font-size: 1.2rem;
}
.detail-text ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detail-text ul li{
    font-size: 1.4rem;
}
.detail-text .full-image{
    border-radius: 24px;
    height: auto;
    margin: 10px 0px;
    width: 100%;
}
/*Gallery Group*/
.detail-text .gallery-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin: 0 auto;
}
.detail-text .gallery-group img{
    width: 100%;
    margin: 0 auto;
}
/*Gallery Group*/

.article-wrapper .info{
    font-size: 0.9rem;
    color: var(--gray);
}
.detail-wrapper{
    display: flex;
    color: var(--gray);
    flex-direction: column;
}
.stick{
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 20px;
    padding: 10px;
    background: #fff6f6;
    border-radius: var(--border-radius);
    color: var(--theme-color);
    border: solid 0.9px #edd7d7;
}
.stick a{
    color: var(--theme-color);
}

.article-wrapper .wwdl-container{
    grid-template-columns: auto;
    height: 550px;
}
.article-wrapper .wwdl-block{
    height: 180px;
}
.article-wrapper .wwdl-block .wwdl-content{
    justify-content: center;
    top: 0;
    padding: 60px;
}
/*Detail Text*/

/*Mega Wrapper*/
.mega-wrapper {
    display: grid;
    grid-template-columns: 35% 15% 50%;
    margin: 0 auto;
    padding: 10px 24px 0 24px;
    gap: 15px;
}
.mega-wrapper .left .title{
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}
.mega-wrapper .left .counter{
    font-size: 10rem;
    letter-spacing: -1rem;
    line-height: 0.6;
    color: var(--theme-color);
}
.mega-wrapper .left .description{
    letter-spacing: -0.03em;
    color: var(--theme-color);
    font-weight: 900;
    font-size: 2rem;
}
.mega-wrapper .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
}
.mega-wrapper .right p:last-child{
    margin-bottom: 0;
}
/*Mega Wrapper*/

/*Project Map*/
.project-map-group{
    margin: 20px auto 20px auto;
}
.project-map-group h2{
    font-weight: 900;
}
.project-map-group p{
    font-size: 1.1rem;
    font-weight: 900;
}
.project-map-group .filter-group{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 20px auto 20px auto;
    font-size: 1rem;
}
.project-map-group .filter-by{
    font-weight: 700;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-map-group .tag{
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}
.project-map-group .tag.active{
    background-color: var(--theme-color);
    color: var(--white);
}
.project-map-group #tag-list{
    display: flex;
    flex-direction: row;
}
.project-map-group .project-map{
    width: 100%;
    height: 90vh
}
/*Project Map*/

/*JVM*/

/*JVM*/

/*Map Canvas*/
#map-canvas{
    width: 100%;
    height: 400px;
    border-radius: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
/*Map Canvas*/

/*Progress Bar*/
#progress-bar {
    position: fixed;
    top: 0;
    left: -5px;
    width: 0;
    height: 4px;
    border-radius: var(--border-radius);
    background-color: var(--theme-color);
    z-index: 100;
    transition: opacity 0.5s ease;
}
/*Progress Bar*/

/*Banner*/
.banner.banner-mini{
    background-image: url("../img/banner-bg-1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid rgba(17, 25, 46, 0.1);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    background-color: rgb(20, 51, 214);
    color: rgb(255, 255, 255);
    overflow: hidden;
    text-align: center;
}
.banner.banner-mini h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px 0px 8px;
}
.banner.banner-mini p{
    font-size: 1rem;
}
.banner .button{
    border-radius: 20px;
    color: var(--white);
    font-size: 0.8rem;
    padding: 9px 24px 9px 24px;
    text-align: center;
    border: solid 3px var(--white);
    font-weight: bold;
}
.banner .button:hover{
    background-color: var(--white);
    color: var(--theme-font-color-blue);
}

/*Banner*/


/*320px Mobile*/
@media only screen and (min-width : 0px) and (max-width : 320px) {
    section.news-block .news-items{
        flex-wrap: nowrap;
    }
    section.procurement-block .procurement-items .procurement-item .content a{
        flex-direction: column;
    }
    section.procurement-block .procurement-items .procurement-item .content div:first-child{
        margin-bottom: 10px;
    }
    section.procurement-block .procurement-items .procurement-item .content div:first-child, section.procurement-block .procurement-items .procurement-item .content a .info{
        width: 100%;
    }
    .article-wrapper{
        grid-template-columns: auto;
    }
    .article-wrapper .left, .article-wrapper .right{
        display: none;
    }
    .article-wrapper .wwdl-block .wwdl-content{
        width: 100%;
        text-align: center;
        padding: 20px;
        justify-content: flex-end;
    }
    .article-wrapper .wwdl-block .wwdl-bg{
        padding: 0;
    }
    .article-wrapper .what-we-do-list .wwdl-container{
        margin-bottom: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
    }
    .article-wrapper .what-we-do-list .wwdl-container .wwdl-block{
        height: 300px;
    }
    .article-wrapper .what-we-do-list {
        /*width: 295px;*/
        width: 316px;
        margin-left: -20px;
    }

    .jvm-zoom-btn{
        padding-top: 4px;
        font-size: 38px;
        height: 40px;
        width: 40px;
    }
    .project-map-group .filter-group{
        flex-wrap: wrap;
    }
    .project-map-group .filter-by{
        margin-right: 0;
        display: block;
    }
    .project-map-group #tag-list{
        flex-wrap: wrap;
    }
    .mega-wrapper{
        grid-template-columns: auto;
    }
    .mega-wrapper .left{
        text-align: center;
    }
    .mega-wrapper .left .title{
        line-height: 1;
        font-size: 4rem;
    }
    .mega-wrapper .left .counter{
        font-size: 9rem;
    }

}
/*425px Mobile*/
@media only screen and (min-width : 321px) and (max-width : 425px) {
    section.news-block .news-items{
        flex-wrap: nowrap;
    }
    section.procurement-block .procurement-items .procurement-item .content a{
        flex-direction: column;
    }
    section.procurement-block .procurement-items .procurement-item .content div:first-child{
        margin-bottom: 10px;
    }
    section.procurement-block .procurement-items .procurement-item .content div:first-child, section.procurement-block .procurement-items .procurement-item .content a .info{
        width: 100%;
    }
    .article-wrapper{
        grid-template-columns: auto;
        padding-right: 2px;
        padding-left: 8px;
    }
    .article-wrapper .left, .article-wrapper .right{
        display: none;
    }
    .article-wrapper .wwdl-block .wwdl-content{
        text-align: center;
        justify-content: flex-end;
        width: 100%;
        padding: 20px;
    }
    .article-wrapper .what-we-do-list .wwdl-container{
        width: 99%;
    }
    .article-wrapper .what-we-do-list {
        max-width: 97vw;
    }


    .jvm-zoom-btn{
        padding-top: 4px;
        font-size: 38px;
        height: 40px;
        width: 40px;
    }
    .project-map-group .filter-group{
        flex-wrap: wrap;
    }
    .project-map-group .filter-by{
        margin-right: 0;
        display: block;
    }
    .project-map-group #tag-list{
        flex-wrap: wrap;
    }
    .mega-wrapper{
        grid-template-columns: auto;
    }
    .mega-wrapper .left{
        text-align: center;
    }
    .mega-wrapper .left .title{
        line-height: 1;
        font-size: 4rem;
    }
    .mega-wrapper .left .counter{
        font-size: 9rem;
    }

}
/*768px Tablet*/
@media only screen and (min-width : 426px) and (max-width : 768px) {
    section.news-block .news-items{
        flex-wrap: wrap;
    }
    section.news-block .news-items .news-item{
        flex: 0 0 calc(33.333% - 14px);
    }
    .article-wrapper{
        grid-template-columns: auto;
    }
    .article-wrapper .left, .article-wrapper .right{
        display: none;
    }
    .article-wrapper .wwdl-container .wwdl-block {
        height: 160px;
    }
    .mega-wrapper .left{
        text-align: center;
    }
    .mega-wrapper .left .title{
        line-height: 1;
    }
}

@media only screen and (min-width : 0px) and (max-width : 768px) {
    .breadcrumb-group{
        width: 98%;
    }
    .breadcrumb {
        display: flex;
        list-style: none;
        padding: 0;
        background: none;
        margin: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: scroll;
    }
    .breadcrumb-item+.breadcrumb-item{
        margin-right: 30px;
    }
    section.news-block .news-items{
        margin-top: 0;
    }
    .detail-text img{
        width: 99%;
    }
}