/* PC */
@media screen and (min-width:992px){
    .mobile-header{
        display: none;
    }
    .show-on-mobile{
        display: none;
    }
}

/* Tablet and Mobile */
@media screen and (max-width:991.98px){
    .navbar ul{
        display: none;  
    }
    .navbar{
        position: relative;
    }
    .navbar .logo{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .toggle-menu{
        width: 24px;
        color:#666;
    }
    .menu-overlay{
        position: fixed;
        inset:0;
        background: rgba(0,0,0,0.3);
        z-index: 1;
        opacity:0;
        visibility:hidden;
        transition:0.5s ease;
    }
    .menu-drawer{
        position: fixed;
        padding: 60px;
        inset:0 40% 0 0;
        z-index: 2;
        background: #fff;
        transform:translateX(-100%);
        transition:0.5s ease;
        font-weight: 500;

    }
    .menu-drawer ul{
        margin-top: 32px;
    }
    .menu-drawer ul a{
        display: block;
        padding: 14px 0;
        color:#333;
    }
    .menu-checkbox:checked ~ .menu-overlay{
        opacity: 1;
        visibility: visible;
    }
    .menu-checkbox:checked ~ .menu-drawer{
        transform:translateX(0)
    }
    .saparate{
        border-top: 1.5px solid #ebebeb;
    }
    .hero-img{
        display: none;  
    }
    .hero-wrap .info {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .hero-wrap .desc {
        width: 80%;
        margin: 30px auto auto;
    }
    .clients .images {
        flex-wrap: wrap;
        justify-content: center;
    }
    .item-guide{
        flex:1;
        margin: 0;
    }
    .featured .list {
        grid-template-columns: 1fr 1fr;
    }
    .stats .row{
        flex-direction: column;
    }
    .stats .img-block,
    .stats .info{
        width: 100%;
    }
    .stats .img-block{
        order: 2;
        margin-top: 80px;
    }
    .stats .info{
        order: 1;
        padding: 0;
    }
    .stats .row .sub-title {
        width: 70%;
    }
    .stats .info .desc{
        width: 100%;
    }
    .stats .row-qty{
        flex-direction: row;
    }
    .stats .row .qty{
        font-size: 5rem;
    }
    .stats .row .qty-desc{
        font-size: 1.5rem;
    }
    .subscription .anh{
        display:none;
    }
    .footer .row-top{
        display: grid;
        grid-template-columns: 1fr 2fr;
        row-gap: 8rem;
    }
    
}

/* Tablet */
@media screen and (min-width:768px) and (max-width:991.98px){
    .show-on-mobile{
        display: none;
    }
}

/* Mobile */
@media screen and (max-width:767.98px){
    .hide-on-mobile{
        display: none;
    }
    .menu-drawer{
        inset:0 25% 0 0;
        padding: 40px;
    }
    .navbar .action{
        display: none;
    }
    .hero-wrap {
        height: calc(100vh - 80px);
    }
    .hero-wrap .title {
        font-size: 5.2rem;
        margin-top: 20px;
    }
    .hero-wrap .desc{
        width: 100%;
    }
    .clients .images {
        row-gap: 2rem;
    }
    .list-guide{
        flex-direction: column;
        row-gap:6rem;
    }
    .featured .link{
        display: none;
    }
    .featured .list{
        grid-template-columns: 1fr ;
    }
    .featured .view-all{
        margin-top: 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .stats .row .sub-title,
    .stats .img-block .image{
        width: 100%;
    }
    .stats .row-qty{
        flex-direction: column;
        align-items: center;
        padding: 0; 
    }
    .subscription .group{
        padding: 3.2rem;
    }
    .subscription .row{
        height: auto;
    }
    .footer .row-top{
        grid-template-columns: 1fr;

    }
    .footer .row-bottom {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 2rem;
    }
}