
.image-boxes {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.image-box {
    display: flex;
    flex-direction: column;
    background: #52BFB212;
}

.box-image {
    background-size: cover;
    background-position: center;
}

.box-content {
    padding: 10px;
}

.box-content h3 {
    font-family: Alike;
    font-size: 25px !important;
    font-weight: 400;
    line-height: 31.35px;
    text-align: center;
    padding: 5px 10px;
    color: #006C7B;
    margin: 0 !important;
}


@media screen and (max-width:700px) {
    .image-boxes {
        flex-wrap: wrap;
        padding: 10px;
        gap: 20px;
    }
}