@media (max-width: 1440px) {

}
@media (max-width: 992px) {
    .menu-section {
        width: 100%;
        height: 100vh;
        background: rgb(0 0 0 / 80%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        transition: all .2s ease-in-out;
        transform: translateX(-100%);
    }
    .menu-section.active {
        transform: translateX(0);
    }
    ul#menu-main-menu {
        width: 85%;
        height: 100vh;
        background: #fff;
        flex-direction: column !important;
        justify-content: start !important;
        align-items: start !important;
    }
    .menu-section .col-12 {
        padding: 0px;
    }
    .menu-section .logo {
        width: 85%;
        background: #fff;
        display: block;
    }
    .menu-section .logo img{
        max-width: 60%;
    }
    .btn-menu {
        border: none;
        background: none;
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 9999;
        font-size: 24px;
    }
    .btn-menu .fa-times {
        display: none;
    }
    .btn-menu.active .fa-times {
        display: block;
    }
    .btn-menu.active .fa-bars{
        display: none;
    }
    .list-clients {
        gap: 20px;
        width: 100%;
    }
    .client-item img {
        height: 24px;
        margin: 0px auto;
    }
    .quote-wrapper {
        gap: 20px;
        z-index: 2;
        position: relative;
    }
    .quote-img {
        width: 50px;
        height: 50px;
    }
    .quote-text {
        width: calc(100% - 50px - 20px);
        font-size: 14px;
    }
    .quote-wrapper::before {
        left: 0px;
        z-index: -1;
    }
    .quote-wrapper::after {
        right:  0px;
        z-index: -1;
    }
}
@media (max-width: 768px) {
	.feature-item:nth-child(even) .feature-wrapper, .feature-wrapper {
        flex-direction: column;
    }
    .list-package, .list-tools, .list-blog-post {
        grid-template-columns: 1fr;
    }
    .list-footer-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-section-9 .section-content table{
        max-width: 100%;
        width: 100%;
    }
    .home-section-9 .section-content {
        overflow-x: scroll;
    }
    .post-thumb {
        aspect-ratio: 1.7;
    }
}