/* Desktop */
@media screen and (min-width : 1280px) {
    main {
        margin-top: 14vh;
        margin-left: 20vw;
        width: 75vw;
        display: flex;
        flex-wrap: wrap;
        gap: 1vw;
    }
    .item {
        width: 30vw;
        min-height: 20vw;
        padding-top: 1vh;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        border-radius: 2vh;
        border: 1px solid var(--main-color);
    }
    .item label, .item p {
        font-size: 1rem;
        font-weight: 500;
    }
    .item > form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6vh;
    }
    .deco-img {
        display: flex;
        justify-content: space-around;
        height: 9vw;
        width: 100%;
        padding: 0.5vh;
    }
    .deco-img > img {
        object-fit: contain;
        max-width: 50%;
        border-radius: 1vh;
    }
    .fb {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1vw;
    }
    .fc {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1vw;
    }
    #com-95 {
        width: 40vw;
        text-align: justify;
    }
    .link {
        width: 30%;
        height: 3vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .link > a {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* Tablette */
@media  screen and (min-width : 768px) and (max-width : 1279px) {
    main {
        margin-top: 10vh;
        width: 85%;
        margin-left: 7.5%;
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }
    .item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2vh;
        align-items: center;
        border-radius: 2vh;
        border: 1px solid var(--main-color);
        padding: 1vh;
    }
    .fb, .fc {
        height: 5vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
    }
    .fb > select {
        height: 4vh;
        font-size: 1.2rem;
    }
    .fc > .i5 {
        width: 20%;
    }
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .deco-img {
        width: 100%;
        height: 30vh;
        display: flex;
        justify-content: space-between;
    }
    .img {
        width: calc(50% - 1vh);
        height: 100%;
        object-fit: contain;
    }
    .link {
        height: 4vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

/* Mobile */
@media screen and (max-width : 767px) {
    main {
        margin-top: 10vh;
        width: 90%;
        margin-left: 5%;
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }
    .item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2vh;
        align-items: center;
        border-radius: 2vh;
        border: 1px solid var(--main-color);
        padding: 1vh;
    }
    .fb, .fc {
        width: 100%;
        height: 5vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
    }
    .fb > select {
        height: 4vh;
        font-size: 1.2rem;
    }
    .fc > .i5 {
        width: 20%;
    }
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    form > p:last-of-type {
        font-size: 1.3rem;
        font-weight: 600;
    }
    .deco-img {
        width: 100%;
        height: 30vh;
        display: flex;
        justify-content: space-between;
    }
    .img {
        width: calc(50% - 1vh);
        height: 100%;
        object-fit: contain;
    }
    .link {
        height: 4vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}