.img-solo-section {
    width: 80vw;
    margin: 10vh 10vw 5vh 10vw
}

.img-solo-section > img {
    border-radius: 5px;
    width: 100%;
}

.img-libre {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    width: 80vw;
    margin: 10vh 10vw 5vh 10vw
}

.img-libre > img {
    border-radius: 5px;
    width: 100%;
}

.call-to-action-secion > h1 {
    font-weight: normal;
    font-family: "AbhayaLibre-Regular";
    font-size: 2.5rem;
    margin-bottom: 3vh;
}

.call-to-action-secion > form {
    font-size: 1.3rem;
    font-family: "JosefinSans-Regular";
    text-align: right;
}

.call-to-action-secion > form > p {
    margin-bottom: 1vh;
}

.call-to-action-secion > form > p > input {
    width: 30vw;
    border: solid 2px black;
    border-radius: 0px;
    margin-left: 10px;
    height: 25px;
}

.call-to-action-secion > form > p > textarea {
    width: 30vw;
    border: solid 2px black;
    border-radius: 0px;
    margin-left: 10px;
    height: auto;
}

.call-to-action-secion > form > p > label {
    font-family:"JosefinSans-Light";
}

.call-to-action-secion > form > input {
    font-family:"JosefinSans-Regular";
    padding: 1vw 2vw 1vw 2vw;
    background-color: var(--color1);
    color: var(--color2);
    text-align: center;
    font-size: 1.3rem;
}

.call-to-action-secion > form > input:hover {
    cursor: pointer;
    background-color: var(--color3);
    border: none;
}

/* TRES GRAND MOBILE 1050x1370 */
@media screen and (max-width: 1050px ) and (max-height: 1370px ) {
    .liste-img-section {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 40px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
    .img-libre {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 40px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
    .img-libre > img {
        border-radius: 5px;
        width: 100%;
        margin-bottom: 40px;
    }
    .call-to-action-secion > form {
        text-align: center;
    }
    .call-to-action-secion > form > p > input {
        width: 60vw;
        border: solid 2px black;
        border-radius: 0px;
        margin-left: 10px;
        height: 25px;
    }
    
    .call-to-action-secion > form > p > textarea {
        width: 60vw;
        border: solid 2px black;
        border-radius: 0px;
        margin-left: 10px;
        height: auto;
    }

}