.home-container {
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
    .home-container .logo-container {
        width: 100%;
    }
        .home-container .logo-container img {
            height: 50px;
        }
        @media(max-width: 576px) {
            .home-container .logo-container img {
                height: 40px;
            }
        }
    .home-container .banner-container {
        padding: 0 20px;
        width: 100%;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 6px;
    }
    @media(max-width: 576px) {
        .home-container .banner-container {
            height: 150px;
            font-size: 20px;
        }
    }
        .home-container .banner-container .title {
            margin: 0;
            font-size: 40px;
            text-align: center;
            font-weight: bold;
            color: #484848;
        }
        @media(max-width: 576px) {
            .home-container .banner-container .title {
                font-size: 24px;
            }
        }
    .home-container .boxes {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
        .home-container .box {
            width: calc(33.33% - 10px);
            aspect-ratio: 3/2;
            background-color: rgb(248,249,250);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            text-decoration: none;
            border-radius: 6px;
        }
        @media(max-width: 768px) {
            .home-container .box {
                width: calc(50% - 8px);
            }
        }
        @media(max-width: 576px) {
            .home-container .box {
                width: 100%;
            }
        }
            .home-container .box .title {
                padding: 0 15px;
                width: 100%;
                font-size: 22px;
                font-weight: bold;
                text-align: center;
                background: rgba(0, 0, 0, 0.5);
                color: #fff;
            }