.hero-service {
    background-image: unset;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--max-width-unit);

}

.main-content-title {
    height: var(--info-l);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #004a8024;
    width: 100%;
}

@media(max-width:1000px) {
    .main-content-title {
        gap: var(--main-unit);
    }
}

.service-body {
    width: 96%;
}

.service-body>div:nth-child(odd) {
    flex-direction: row-reverse;

}

@media(max-width:1000px) {
    .service-body>div:nth-child(odd) {
        flex-direction: column;
    }
}

.service-title {
    color: var(--color-primary-green);
}

.service-subtitle {
    width: 50%;
    text-align: center;
    font-size: var(--font-m);
    font-weight: 700;
    color: var(--color-primary-blue);
}

@media(max-width:1000px) {
    .service-subtitle {
        width: 80%;
        font-size: var(--font-s);
    }
}

.service-card {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: calc(4 * var(--spacing-unit));
}

@media(max-width:1000px) {
    .service-card {
        flex-direction: column;
        height: auto;
        margin-top: calc(2 * var(--spacing-unit));
    }
}

.card-picture-box {
    height: 480px;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1000px) {
    .card-picture-box {
        width: 100%;
        height: auto;
    }
}

@media(max-width:500px) {
    .card-picture-box {
        width: 396px;
        height: 372px;

    }
}

.card-picture-box img {
    width: 80%;
    border: 24px solid var(--color-bg-grey);
    box-shadow: 0 5px 10px var(--color-primary-green);
    height: 80%;
}

@media(max-width:1000px) {
    .card-picture-box img {
        width: 84%;
        height: 80%;
    }
}

@media(max-width:400px){
    .card-picture-box img{
        width: 63%;
        height: 65%;
    }
}
