/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition-duration: .3s;
    padding: 0 80px;
}

.scroll-hd {
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 0;
}

.scroll-hd:hover {
    opacity: 1;
    transition-duration: 0s;
}

.hd-content {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd-logo {
    display: inline-block;
    max-width: 184px;
}

.top-logo {
    display: block;
}

.scroll-logo {
    display: none;
}

.hd-nav {
    display: flex;
    align-items: center;
}

.hd-nav li {
    margin: 0 16px;
}

.hd-nav li a {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    letter-spacing: 1px;
}

.hd-nav.hd-nav-open li a {
    color: #ffffff;
}

.menu-btn {
    position: relative;
    display: none;
    width: 34px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 30px;
    background-color: #121212;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
    bottom: 0;
}

.menu-open {}

.menu-open span {
    background-color: #fff;
}

.menu-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
}

.menu-open span:nth-child(2) {
    opacity: 0;
}

.menu-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
}

.scroll-hd .hd-nav li a {
    color: #ffffff;
}

.hd-nav li a.current {
    color: var(--signature);
}

.scroll-hd .hd-nav li a.current {
    color: var(--green1);
}

.scroll-hd .menu-btn span {
    background-color: #fff;
}
.side-bg{
    top:0;
    left:0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.5);
    z-index: 999;
    display: none;
}
@media screen and (max-width:1200px) {
    .header {
        padding: 0 5%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .scroll-hd{
        border-bottom: 0;
    }
    .hd-nav {
        position: fixed;
        right: 0;
        top: 0;
        min-width: 300px;
        width: 30%;
        height: 100vh;
        flex-direction: column;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.85);
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 70px;
        transform: translateX(100%);
        opacity: 0;
    }

    .hd-nav-open {
        transform: translateX(0);
        opacity: 1;
        transition-duration: 0.3s;
    }

    .hd-nav li {
        margin: 20px 0;
        padding-left: 20px;
    }

    .hd-nav li a {
        font-size: 16px;
    }
    .menu-btn {
        display: block;
    }
}

@media screen and (max-width:991px) {
    .header {
        padding: 0 4%;
    }
    .hd-content{
        height: 70px;
    }
    .hd-logo{
        max-width: 148px;
    }
    .hd-nav li a{
        font-size: 18px;
    }
}

@media screen and (max-width:768px){
    .header {
        padding: 0 3%;
    }
    .menu-btn{
        width: 30px;
        height: 20px;
    }
}


/* sub banner */
.sub-banner{
    background-image: url(../images/sub/sub3/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
@media screen and (max-width:991px){
    .sub-banner {
        background-attachment: inherit;
    }
}

.sec1{
    padding:100px 0;
    background-color: #ffffff;
}
.sec1 .section-title{
    margin-bottom: 40px;
}
.sec1 .section-text{
    color: #121212;
}
.table-wrap{
    margin: 30px 0;
}
.table-box{
    display: flex;
}
.table-box:first-of-type{
    margin-bottom: 20px;
}
.price-caption{
    width: auto;
    padding:0 30px;
    background-color: var(--blue3);
    font-size: 18px;
    font-weight:700;
    color: #ffffff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-table{
    width: 100%;
    border-collapse: collapse;  
    margin-left: 1px; 
}

.price-table th{
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
    background-color: var(--blue1);
    text-align: center;
    border-right:1px solid #ffffff;
}
.price-table th:last-child{
    border-right: 0;
}
.price-table td{
    padding:20px;
    font-size: 16px;
    font-weight: 400;
    word-break: keep-all;
    line-height: 22px;
}
.price-table td.data-logo{
    text-align: center;
}
.sec1 .soruce-wrap{
    margin-top: 20px;

}
.sec1 .source-text{
    font-size: 14px;
    font-weight: 400;
    color: #959595;
    line-height: 20px;
}
@media screen and (max-width:991px) {
    .sec1{
        padding:80px 0;
    }
    .sec1 .section-title{
        margin-bottom: 30px;
    }
    .price-table td{
        padding:14px;
    }
}

@media screen and (max-width:768px){
    .sec1{
        padding:70px 0;
    }
    .table-box{
        flex-direction: column;   
    }
    .price-caption{
        padding:16px 0;
        margin-bottom: 1px;
    }
    .price-table tr{
        border-bottom: 1px solid #959595;
    }
    .price-table tr:last-of-type{
        border-bottom: 0;
    }
    .price-table td{
        padding:10px;
        font-size: 14px;
        line-height: 18px;
    }
    .sec1 .source-text{
        font-size: 12px;
    }
}


.sec2{
    padding:100px 0;
    background-color:var(--blue1);
}
.sec2 .section-title{
    margin-bottom: 30px;
}

.sec2 .highlight-text span{
    color: var(--blue2);
}
.price-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 50px;
}
.price-box{
    border-radius: 30px;
    width: 100%;
    height: 190px;
    background-color: #2F446D;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.price-top{
}
.item-data{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    font-family: 'Rubik', sans-serif;
}
.item-name{
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-right: 6px;
    letter-spacing: -0.5px;

}
.item-icon{
    width: 32px;
    user-select: none;
}
.price-badge.up{
    background-color: #fce8e6;
    color: #a50e0e;
}
.price-badge.down{
    background-color: #e8f0fe;
    color: #185abc;
}
.item-date{
    font-size: 14px;
    font-weight: 500;
    color: #bdbdbd;
}
.price-bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.price-print{
    font-size: 30px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    line-height: 1;
    color: #ffffff;
}
.price-badge{
    display: inline-block;
    padding:5px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}
@media screen and (max-width:991px){
    .sec2{
        padding:80px 0;
    }
    .price-wrap{
        gap: 12px;
    }
    .price-box{
        padding:15px;
    }
    .price-print{
        font-size: 28px;
    }
}
@media screen and (max-width:768px){
    .sec2{
        padding:70px 0;
    }
    .price-wrap{
        grid-template-columns:1fr 1fr;
    }
    .item-name{
        font-size: 18px;
    }
    .price-box{
        height: 160px;
    }
    .price-print{
        font-size: 24px;
    }
    .price-badge{
        font-size: 12px;
        padding:4px 6px;
    }
}

@media screen and (max-width:600px){
    .price-wrap{
        grid-template-columns: 1fr;
    }
    .price-box{
        margin-bottom: 0;
    }
}