#home {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#home button {
    font-size: 20px;
}

#home-images {
    width: 40%;
}

.home-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 80%;
    gap: 20px;
}

.home-header h2 {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
    gap: 8px;
    flex-wrap: nowrap;
}

.mobile-images {
    display: none;
}

.mobile-image-item {
    width: calc(50% - 6px);
    height: auto;
    border-color: #fff;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
}

.home-container h1 {
    font-size: 28px;
    margin: 0 0 40px 0;
}

.home-overview p {
    margin: 0;
    font-size: 15px;
}

#home-block-overview {
    margin-bottom: 40px;
}

.home-block-overview-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
}

.home-block-overview-item p {
    font-size: 20px;
}

.home-buttons {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    #home {
        flex-direction: column;
    }

    .home-container {
        width: 100%;
    }

    .home-header h2 {
        flex-direction: row;
        align-items: center;
        font-size: 16px;
        gap: 5px;
    }

    .home-header h2 img {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
    }

    .home-header h2 span {
        display: inline;
    }

    .home-images {
        display: none;
    }

    .home-images {
        display: none;
    }

    .mobile-images {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 20px;
    }

    .home-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}


@media (max-width: 600px) {
    #home h1 {
        font-size: 8vw;
        margin: 0;
    }

    #home-block {
        gap: None
    }

    .home-block-overview-item p {
        font-size: 4vw;
    }

    #home-buttons button {
        font-size: 4vw;
    }

    .home-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .home-header {
        position: relative;
    }

    #home .mobile-images {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        right: 0;
        transform: translateY(160px);
        z-index: -1;
    }
}