/* RESPONSIVE */
@media screen and (max-width: 768px) {
    #home.section {
        min-height: auto;
    }

    #home.section>.container {
        flex-direction: column;
        gap: 24px;
    }

    #home.section>.container>.text-content .title {
        font-size: 24px;
    }

    #home.section>.container>.text-content .subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    #feature.section>.container>.title {
        font-size: 24px;
    }

    #feature.section>.container>.subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    #feature.section>.container .feature-item>.card .title {
        font-size: 18px;
    }
    
    #feature.section>.container .feature-item>.card .subtitle {
        font-size: 14px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-right p {
        max-width: 100%;
    }

    .chat-text {
        display: none;
    }

    .scroll-arrow {
        display: none;
    }

    .navbar-menu {
        background-color: white;
        box-shadow: 0 8px 16px rgba(10, 10, 10, .1);
        padding: 0.5rem 0;
    }

    .navbar-menu.is-active {
        display: block;
        position: absolute;
        width: 100%;
    }

    .card-container {
        display: flex;
        flex-direction: column;

    }

    .card-wrapper {
        width: 100%;
    }


    .bg-inherit {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-menu {
        display: none;
    }
}