/* Pc */
@media screen and (min-width: 992px) {
    .menu {
        display: none;
    }

    .menu-checkbox {
        display: none;
    }

    .show-on-mobile {
        display: none;
    }

    .menu-drawer {
        display: none;
    }
}

/* Tablet & Mobile */
@media screen and (max-width: 991.98px) {
    .navbar {
        position: relative;
    }
    .navbar ul {
        display: none;
    }

    .toggle-menu svg {
        width: 24px;
        color: #666;
    }

    .overlay {
        position: fixed;
        inset: 0;
        z-index: 2;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
    }

    .menu-drawer {
        position: fixed;
        z-index: 2;
        inset: 0 40% 0 0;
        background: #fff;
        transform: translateX(-100%);
        transition: 0.5s ease;
        padding: 60px;
    }

    .menu-drawer ul {
        margin-top: 40px;
    }

    .menu-drawer ul a {
        display: block;
        padding: 14px 0;
        color: #333;
    }

    .separate {
        border-top: 2px solid #ebebeb;
    }

    .menu-checkbox:checked ~ .overlay {
        visibility: visible;
        opacity: 1;
    }

    .menu-checkbox:not(:checked) ~ .overlay {
        opacity: 0;
        visibility: hidden;
    }

    .menu-checkbox:checked ~ .menu-drawer {
        transform: translateX(0);
    }

    .navbar .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        right: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-img {
        display: none;
    }

    .hero-wrap .info {
        text-align: center;
        margin: 0 auto;
        width: 80%;
    }

    .hero-wrap .title {
        margin-top: 20px;
    }

    .clients .images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .guide-item {
        margin: 26px 40px auto;
    }

    .featured .list {
        grid-template-columns: 1fr 1fr;
    }

    .stats .row {
        flex-direction: column;
    }

    .stats .info {
        order: 1;
        width: 100%;
        align-items: start;
    }

    .stats .img-block {
        width: 100%;
        order: 2;
        margin: 0 auto;
    }

    .stats .info {
        padding: 20px 30px;
    }

    .stats .info .desc,
    .stats .info .title {
        width: 100%;
    }

    .stats .img-block .images {
        margin-top: 80px;
    }

    .stats .row-qty {
        flex-direction: row;
    }

    .stats .qty-item .qty-title {
        font-size: 4.8rem;
    }

    .stats .qty-item .qty-desc {
        font-size: 1.4rem;
    }

    .subscription .image {
        display: none;
    }

    .footer .row-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .show-on-mobile {
        display: none !important;
    }
}
/* Mobile  */
@media screen and (max-width: 767.98px) {
    .hide-on-mobile {
        display: none;
    }

    .hero-wrap {
        --height: 80px;
    }

    .hero-wrap .title {
        font-size: 4.6rem;
    }

    .hero-wrap .desc {
        font-size: 1.6rem;
    }

    .navbar .actions {
        display: none;
    }

    .menu-drawer {
        inset: 0 30% 0 0;
        padding: 30px;
    }

    .clients .images {
        row-gap: 30px;
    }

    .list-guide {
        row-gap: 30px;
        flex-direction: column;
    }

    .featured .list {
        grid-template-columns: 1fr;
    }

    .view-all {
        margin-top: 40px;
        column-gap: 10px;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .featured .link {
        display: none;
    }

    .featured .info .icon {
        margin-left: 10px;
    }

    .featured .info .lable {
        margin-left: 4px;
    }

    .stats .row-qty {
        row-gap: 30px;
        flex-direction: column;
    }

    .stats .img-block .images {
        width: 100%;
    }

    .subscription .body {
        height: 100%;
    }

    .subscription .info {
        padding: 30px;
    }

    .subscription .title {
        font-size: 3rem;
    }

    .footer .row-top {
        grid-template-columns: 1fr;
    }

    .footer .row-bottom {
        row-gap: 30px;
        flex-direction: column;
    }
}
