:root{
    --Netzero:#54C5D0;
}
*,::after,::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.mobile {
    display: none;
}

a{
    text-decoration: none;
    color: inherit;
}
.asp-1-1-contain, .asp-16-9-contain {
    width: 100%;
    background-color: #fff0
}

.asp-1-1, .asp-16-9 {
    left: 0;
    top: 0
}
.asp-16-9-contain {
    height: 0;
    position: relative;
    overflow: hidden;
    padding: 0 0 56.25%
}

.asp-16-9 {
    position: absolute;
    width: 100%;
    height: 100%
}
.asp-16-9 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.asp-1-1-contain {
    height: 0;
    overflow: hidden;
    padding: 0 0 100%
}

.story-wrap .story-thumb {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: .5rem
}
.story-wrap .story-info .story-title {
    font-size: 16px;
    margin-bottom: .25rem
}
.story-wrap .story-info .story-title a {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--txt-black)
}
.asp-1-1, .banner-area img, footer .footer-wrap .controll .qr img {
    width: 100%;
    height: 100%
}
.text-limit-2, .text-limit-3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.text-limit-3 {
    -webkit-line-clamp: 3
}

.text-limit-2 {
    -webkit-line-clamp: 2
}
.full-bg-section {
    position: relative;
}

.full-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 99vw;
    height: 100%;
    background: inherit;
    z-index: -1;
}
.archon {
    cursor: pointer;
    position: fixed;
    bottom: 109px;
    right: 45px;
    --size: 60px;
    width: var(--size);
    height: var(--size);
    background-color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    .archon.active {
        display: flex;
    }
/* INTER FONT */
@font-face {
    font-family: 'Inter';
    src: url('../css/netzero/inter/inter-variablefont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../css/netzero/inter/inter-italic-variablefont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}
/* HEADER START */
.zero-header {
    padding-top: 16px;
    padding-bottom:16px;
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.zero-header .logo{
    max-width:230px;
    margin-bottom: 0;
}
.zero-header .logo img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.zero-header .combo-box {
    display: flex;
    align-items: center;
}
.zero-header .combo-box .social-box{
    margin-right:24px;
}
.zero-header .combo-box .social-box .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}
.zero-header .combo-box .social-box .social-icon:nth-last-child(n+2) {
    margin-right: 8px;
}
.zero-header .search-box {
    background-color: #F6F6F6;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.zero-header .search-box .search-input {
    flex: 1;
    height: 56px;
    padding-left: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: transparent;
}
.zero-header .search-box .search-btn{
    margin: 0 19px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
}
.zero-header .search-box .search-btn svg{
    vertical-align: text-bottom;
}
.zero-navbar-wrapper{
    padding: 16px 0px;
    border-bottom: 5px solid #54C5D0;
}
.zero-navbar-wrapper>*{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.zero-navbar-wrapper .zero-navbar{
    display: flex;
    padding: 0;
    margin: 0;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item{
    list-style: none;
    position: relative;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item .icon{
    transition: all 300ms ease;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item:hover .icon{
    transform: rotate(180deg);
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item:nth-last-child(n+2){
    margin-right: 24px;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item .text{
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item .text .icon{
    margin-left: 8px;
}
.zero-navbar-wrapper .zero-navbar .zero-navbar-item:hover .sub-navbar{
    display: block;
}
.zero-navbar-wrapper .zero-navbar .sub-navbar{
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    margin: 0px;
    padding: 16px;
    border-radius: 0 0 8px 8px;
    background-color: #ffffff;
    box-shadow: 0px 1px 4px 0px #0C0C0D0D;
    box-shadow: 0px 1px 4px 0px #0C0C0D1A;
    display: none;
}
.zero-navbar-wrapper .zero-navbar .sub-navbar .sub-item{
    list-style: none;
    white-space: nowrap;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}
.zero-navbar-wrapper .zero-navbar .sub-navbar .sub-item:nth-last-child(n+2){
    margin-bottom: 16px;
}
.zero-navbar-wrapper .country{
    display: flex;
    align-items: center;
    gap: 8px;
}
.zero-navbar-wrapper .country .country-name{
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.zero-header .mobile-menu{
    display: none;
    position: fixed;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
}
.zero-header .mobile-menu .header{
    padding: 16px;
    border-bottom: 3px solid var(--Netzero, #54C5D0);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zero-header .mobile-menu .header .title{
    display: flex;
    align-items: center;
}
.zero-header .mobile-menu .header .bar{
    background-color: #54C5D0;
    height: 26px;
    width: 8px;
    margin-right: 8px;
}
.zero-header .mobile-menu .header .name{
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}
.zero-header .mobile-menu .header .close-btn{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.zero-header .mobile-menu .content{
    flex: 1;
    padding: 24px 16px;
    overflow-y: auto;
}
.zero-header .mobile-menu .content>*:nth-last-child(n+2){
    margin-bottom: 24px;
}
.zero-header .mobile-menu .menu-area{
    padding-bottom: 24px;
    border-bottom: 1px solid #EDEDED;
}
.zero-header .mobile-menu .accordion-button{
    padding: 16px 0px;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
}
.zero-header .mobile-menu .accordion-button[data-child="0"]::after {
    display:none;
}
.zero-header .mobile-menu .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.zero-header .mobile-menu .accordion-button::after{
    margin-left: 8px;
}
.zero-header .mobile-menu .accordion-item{
    border: none;
}
.zero-header .mobile-menu .accordion-body{
    padding: 16px;
    background-color: #F6F6F6;
}
.zero-header .mobile-menu .accordion-body .category-list{
    margin: 0;
    padding: 0;
}
.zero-header .mobile-menu .accordion-body .category-list .item{
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    list-style: none;
}
.zero-header .mobile-menu .accordion-body .category-list .item:nth-last-child(n+2){
    margin-bottom: 16px;
}
.zero-header .mobile-menu .country-wrapper,
.zero-header .mobile-menu .social-box{
    margin: 0 auto;
    width: fit-content;
}
.zero-header .mobile-menu .country-wrapper .country,
.zero-header .mobile-menu .social-box{
    display: flex;
    align-items: center;
    gap: 8px;
}
/* HEADER END */


/* NETZERO STORY START */
.net-zero .story-wrap .story-thumb{
    border-radius: 0px;
}
.net-zero .story-wrap .story-title{
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
}
.net-zero .story-wrap .story-info .story-title a{
    line-height: inherit;
    font-size: inherit;
}
.net-zero .story-wrap .story-description{
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #5A5A5A;
    margin-bottom: 8px;
}
.net-zero .story-wrap .story-meta{
    display: flex;
    align-items: center;
    gap: 8px;
}
.net-zero .story-wrap .keyword-box .tag {
    border: 1px solid #B2B2B2;
    border-radius: 1px;
    padding: 4px 8px;
    font-family: Inter;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #303030;
}
.net-zero .story-wrap .keyword-box .tag:nth-last-child(n+2){
    margin-right: 8px;
}
.net-zero .story-wrap .story-meta .dot{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #303030;
}
.net-zero .story-wrap .story-meta .post-time{
    margin-bottom: 0px;
    color: #5A5A5A;
    font-family: Inter;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
}
.net-zero .story-wrap .story-meta .icon{
    max-width: 24px;
    max-height: 24px;
}
.net-zero .story-wrap .story-meta .icon svg{
    vertical-align: text-bottom;
}
/* NETZERO STORY END */


/* FOOTER START */
.footer-bg{
    background-color: #EEEEEE;
    border-top: 5px solid var(--Netzero, #54C5D0);
}
.footer-contain{
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
}
.footer-contain .category-wrapper,
.footer-contain .info-wrap{
    width: calc((100% / 2) - 32px);
}
.footer-contain .category-wrapper{
    margin-right: 64px;
    position: relative;
    display: flex;
}
.footer-contain .category-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    right: -31px;
    height: 100%;
    width: 1px;
    background-color: #303030;
}
.footer-contain .category-wrapper .logo{
    max-width: 230px;
}
.footer-contain .category-wrapper .logo >*{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-contain .category-wrapper .list{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contain .category-wrapper .category-list{
    display: flex;
    flex-direction: column;
    margin-left: 32px;
}
.footer-contain .category-wrapper .category-list .item{
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}
.footer-contain .category-wrapper .category-list .item:nth-last-child(n+2){
    margin-bottom: 8px;
}
.footer-contain .info-wrap .info{
    display: flex;
    margin-bottom: 8px;
}
.footer-contain .info-wrap .info .icon{
    margin-right: 8px;
    line-height: 22px;
}
.footer-contain .info-wrap .info .text{
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}
.footer-contain .rule{
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    margin:  0 auto;
    margin-top: 16px;
}
/* FOOTER END */
@media screen and (max-width: 992px){

    .mobile {
        display: block;
    }

    .full-bg-section::before{
        width: 100vw;
    }
    .zero-header{
        border-bottom: none;
    }
    .zero-header .logo{
        max-width: 179px;
    }
    .zero-header .combo-box,
    .zero-navbar-wrapper>*{
        display: none;
    }
    .zero-navbar-wrapper{
        padding: 0;
        border-width: 3px;
    }
    .header-btn{
        cursor: pointer;
    }

    
    .footer-contain{
        flex-direction: column;
        align-items: center;
        padding: 24px 16px;
    }
    .footer-contain .category-wrapper{
        width: 100%;
        justify-content: center;
        margin-right: 0px;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #E4E4E4;
    }
    .footer-contain .category-wrapper::after,
    .footer-contain .category-wrapper .category-list{
        display: none;
    }
    .footer-contain .info-wrap{
        width: fit-content;
        padding-bottom: 16px;
        border-bottom: 1px solid #E4E4E4;
    }
}