.c-capmov {
    display: flex;
    position: relative;
    min-height: 620px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.c-capmov picture {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.c-capmov picture>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.c-capmov__prin {
    grid-area: title;
    display: none;
}

.c-capmov__box {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "call"
        "info";
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 16px;
    z-index: 10;
}

.c-capmov__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.c-capmov__call {
    grid-area: call;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) {

    .c-capmov {
        justify-content: flex-end;
    }

    .c-capmov__box {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "info call"
            "title title";
        padding: 2rem 16px;
    }

    .c-capmov__info {
        justify-self: center;
        align-self: center;
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
        max-width: 780px;
    }

    .c-capmov__info>img {
        width: 430px;
    }
}

@media screen and (min-width: 1000px) {
    .c-capmov__prin {
        display: block;
    }

    .c-capmov__box {
        grid-template-columns: 300px 1fr 370px;
        grid-template-areas:
            "title info call";
    }
}