/* CSS file for service pages like index.html */

/* Images */

.image-box {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    width: 100%;
    padding: 1em;
    float: none;
}
 
.image-box > a {
    display: block;
    flex: 0 1 40%;
    min-width: 0;
}

.image-box img {
    display: block;
    
    max-width: 100%;
    height: auto;
}

.image-box > div {
    flex: 1 1 60%;
    min-width: 0;
}

@media (max-width: 600px) {
    .image-box {
        flex-direction: column;
    }

    .image-box > a,
    .image-box > div {
        width: 100%;
        flex-basis: auto;
    }
}

