.wallpaper {
    width: 100%;
    height: calc(100% - 200px);
    min-height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.navbar {
    display: flex;
    gap: 10px;
    padding: 20px var(--padding);
    width: 100%;
    background-color: var(--black);
    min-height: max-content;
}

.wallpaper > .navbar {
    background-color: transparent;
}

.navbar > .void {
    width: 100%;
}

.navbar > a {
    background-color: transparent;
    border-radius: 50px;
    padding: 15px 35px;
    display: flex;
    text-decoration: none;
    width: max-content;
    min-width: max-content;
    justify-content: center;
    align-items: center;
}
.navbar > a > span {
    color: var(--white);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}
.navbar > a > svg {
    fill: var(--white);
    height: 22px;
    height: 22px;
}
.navbar > a.minimize > svg {
    display: none;
}

.navbar > a[selected] {
    background-color: var(--white);
}
.navbar > a[selected] > span {
    color: var(--grey);
    font-weight: 500;
}
.navbar > a[selected] > svg {
    fill: var(--grey);
}
.navbar > a.primary {
    background-color: var(--primary);
}
.navbar > a.primary > span {
    color: var(--grey);
    font-weight: 500;
}
.navbar > a.primary > svg {
    fill: var(--grey);
}


.wallpaper > .contents {
    width: 100%;
    height: 100%;
    padding: 0 var(--padding);
    display: flex;
    align-items: center;
}
.wallpaper > .contents > .content {
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 50%;
    min-width: 50%;
    gap: 20px;
}
.wallpaper > .contents > svg {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    fill: color-mix(in srgb, color-mix(in srgb, var(--white) 5%, transparent), blue 1%);
}

.wallpaper > .contents > .content > .title {
    font-family: 'Poppins';
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    text-align: left;
}
.wallpaper > .contents > .content > .title.primary {
    color: var(--white);
    font-size: 115px;
    line-height: 75px;
}
.wallpaper > .contents > .content > .title.secondary {
    color: transparent;
    -webkit-text-stroke: 3px var(--white);
    text-stroke: 3px var(--white);
    font-size: 100px;
    line-height: 75px;
}

.wallpaper > .contents > .content > .description {
    font-size: 20px;
}

.wallpaper > .contents > .content > .buttons {
    display: flex;
    gap: 10px;
}
.wallpaper > .contents > .content > .buttons > a {
    border-radius: 50px;
    padding: 15px 50px;
    display: flex;
    text-decoration: none;
    width: max-content;
    min-width: max-content;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.wallpaper > .contents > .content > .buttons > a > span {
    min-width: max-content;
    font-size: 16px;
    line-height: 16px;
}
.wallpaper > .contents > .content > .buttons > a > svg {
    height: 12px;
    width: 12px;
    min-width: 12px;
}

.wallpaper > .contents > .content > .buttons > a.primary {
    background-color: var(--primary);
}
.wallpaper > .contents > .content > .buttons > a.primary > span {
    color: var(--grey);
    font-weight: 500;
}
.wallpaper > .contents > .content > .buttons > a.primary > svg {
    fill: var(--grey);
}

.wallpaper > .contents > .content > .buttons > a.secondary {
    background-color: transparent;
    padding: calc(10px - 4px) calc(35px - 4px);
    border: solid 2px var(--white);
}
.wallpaper > .contents > .content > .buttons > a.secondary > span {
    color: var(--white);
    font-weight: 500;
}
.wallpaper > .contents > .content > .buttons > a.secondary > svg {
    fill: var(--white);
}

.container {
    padding: 100px var(--padding);
    display: flex;
    flex-direction: column;
    background-color: var(--grey);
    gap: 15px;
    min-height: max-content;
}

.container.bigger {
    height: 77.5%;
    min-height: 77.5%;
}

.container .center {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.container:nth-child(2n) {
    background-color: var(--black);
}

.container .title {
    font-family: 'Poppins';
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    text-align: left;
    font-size: 35px;
    line-height: 35px;
    color: var(--white);
}

.container .title.bigger {
    font-size: 60px;
    line-height: 60px;
    width: 80%;
    text-align: center;
}

.container .title .primary {
    color: var(--primary);
}

.container .name {
    font-size: 20px;
    font-weight: 600;
}
.container .subname {
    font-size: 16px;
    font-weight: 500;
}


.container .description {
    width: 65%;
    max-width: 65%;
    font-size: 16px;
    font-weight: 300;
    color: #e5e5ee;
}
.container .description.pre {
    white-space: pre-wrap;
}
.container .description.pre > .element {
    padding-left: 30px;
}

.container .description .bold {
    font-weight: 500;
}

.container .row {
    display: flex;
    gap: 25px;
}
.container .input {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.container input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition-duration: 0.3s;
}
.container textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 4px;
    resize: none;
    transition-duration: 0.3s;
}

.container .inputchecks {
    display: flex;
    gap: 25px;
}
.container .inputchecks > .inputcheck {
    width: 100%;
    display: flex;
    background-color: color-mix(in srgb, color-mix(in srgb, var(--white) 5%, transparent), blue 1%);
    padding: 15px;
    gap: 15px;
    cursor: pointer;
    border-radius: 4px;
    transition-duration: 0.3s;
    user-select: none;
}
.container .inputchecks > .inputcheck > .box {
    height: 100%;
    aspect-ratio: 1 / 1;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 2px;
}
.container .inputchecks > .inputcheck > .box > svg {
    height: 100%;
    fill: var(--white);
    transition-duration: 0.3s;
}
.container .inputchecks > .inputcheck > .description {
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    transition-duration: 0.3s;
}
.container .inputchecks > .inputcheck[selected] {
    background-color: var(--primary);
}
.container .inputchecks > .inputcheck[selected] > .box > svg {
    fill: var(--grey);
}
.container .inputchecks > .inputcheck[selected] > .description {
    color: var(--grey);
}

.container > button {
    padding: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: var(--primary);
    cursor: pointer;
}
.container > button > span {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
}

.container .checkbox {
    width: 100%;
    gap: 10px;
    padding: 10px 0;
    display: flex;
    cursor: pointer;
    align-items: center;
    user-select: none;
}
.container .checkbox > .box {
    background-color: var(--black);
    height: 30px;
    width: 30px;
    min-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition-duration: 0.3s;
}
.container .checkbox > .box > svg {
    opacity: 0;
    height: 50%;
    fill: var(--grey);
    transition-duration: 0.3s;
}

.container .checkbox[selected] > .box {
    background-color: var(--primary);
}

.container .checkbox[selected] > .box > svg {
    opacity: 1;
}

.container input[danger], .container textarea[danger], .container .inputchecks[danger] > .inputcheck, .container .checkbox[danger] > .box, .container .formations > .selectmenu[danger] {
    outline: solid 2px var(--danger) !important;
}

.container .jobs {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 15px;
}

.container .jobs > .job {
    background-color: var(--primary);
    color: var(--black);
    display: flex;
    border-radius: 4px;
    gap: 25px;
    padding: 35px;
    transition-duration: 0.3s;
    text-decoration: none;
}

.container .jobs > .job .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.container .jobs > .job .description {
    width: 100%;
    max-width: 100%;
    font-weight: 400;
    color: inherit;
}

.container .formations {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 15px;
}

.container .formations > .selectmenu {
    user-select: none;
    background-color: color-mix(in srgb, var(--white) 1%, transparent);
    display: flex;
    border-radius: 4px;
    transition-duration: 0.3s;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.container .formations > .selectmenu > .input {
    padding: 35px;
    padding-right: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    opacity: 0.5;
    display: flex;
    justify-content: center;
}
.container .formations > .selectmenu > .input > span {
    text-align: left;
    height: max-content;
    width: 100%;
}
.container .formations > .selectmenu > button {
    height: 100%;
    width: max-content;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 35px;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.container .formations > .selectmenu > button > svg {
    height: 20px;
    width: 20px;
    fill: var(--white);
}

.container .formations > .selectmenu > .list {
    position: absolute;
    top: calc(100% + 5px);
    height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #030811;
    padding: 35px 0;
    display: none;
    flex-direction: column;
    gap: 20px;
    border-radius: 4px;
    cursor: default;
    width: 100%;
}
.container .formations > .selectmenu[selected] > .list {
    display: flex;
}

.container .formations > .selectmenu > .list::-webkit-scrollbar {
    width: 10px;
}
.container .formations > .selectmenu > .list::-webkit-scrollbar-thumb {
    background-color: #e5e5ee;
    border: solid 3px #030811;
    border-radius: 10px;
}

.container .formations > .selectmenu > .list > .separator {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background-color: var(--black);
}
.container .formations > .selectmenu > .list > .object {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    padding: 0 35px;
}
.container .formations > .selectmenu > .list > .divisions {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.container .formations > .selectmenu > .list > .divisions > .class {
    font-size: 16px;
    color: #e5e5ee;
    font-weight: 600;
    padding: 0 35px;
}
.container .formations > .selectmenu > .list button {
    background-color: transparent;
    border: none;
    font-size: 14px;
    color: #e5e5ee;
    text-align: left;
    padding: 15px 35px;
    padding-left: 55px;
    cursor: pointer;
}
.container .formations > .selectmenu > .list button:hover {
    background-color: var(--black);
}


.container .formations > .formation {
    background-color: color-mix(in srgb, var(--white) 1%, transparent);
    color: var(--white);
    display: flex;
    border-radius: 4px;
    padding: 0;
    transition-duration: 0.3s;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    overflow: hidden;
}

.container .formations > .formation .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 35px;
    width: 100%;
}
.container .formations > .formation button {
    height: 100%;
    width: max-content;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 35px;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition-duration: 0.3s;
}

.container .formations > .formation button:hover {
    background-color: var(--danger);
}

.container .formations > .formation button > svg {
    height: 20px;
    width: 20px;
    fill: var(--white);
}

.container .formations > .formation .description {
    width: 100%;
    max-width: 100%;
}

.container .formations > .formation:hover {
    background-color: color-mix(in srgb, color-mix(in srgb, var(--white) 5%, transparent), blue 1%);
}
.container .formations > .formation:has(button:hover) {
    background-color: color-mix(in srgb, var(--white) 1%, transparent);
}

.container .possibilities {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.container .possibilities > .possibility {
    background-color: transparent;
    display: flex;
    border-radius: 4px;
    gap: 25px;
    padding: 35px;
    transition-duration: 0.3s;
    cursor: default;
}

.container .possibilities > .possibility .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.container .possibilities > .possibility .description {
    width: 70%;
    max-width: 70%;
}

.container .possibilities > .possibility .icon {
    height: 50px;
    width: 50px;
    min-width: 50px;
    display: flex;
}

.container .possibilities > .possibility .icon > svg {
    height: 100%;
    width: 100%;
    fill: var(--primary);
}

.container .proposals {
    display: grid;
    grid-auto-rows: 350px;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.container .proposals > .proposal {
    background-color: var(--white);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.container .proposals > .proposal > svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    fill: var(--primary);
    z-index: 0;
}

.container .proposals > .proposal > .content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 35px;
}
.container .proposals > .proposal > .content > .name {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.container .proposals > .proposal > .content > button {
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    background-color: var(--white);
    text-decoration: none;
    width: max-content;
    min-width: max-content;
    gap: 10px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.container .proposals > .proposal > .content > button > span {
    min-width: max-content;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--black);
}
.container .proposals > .proposal > .content > button > svg {
    height: 12px;
    width: 12px;
    min-width: 12px;
    fill: var(--black);
}

.container .proposals > .more {
    background-color: transparent;
    border: 5px dashed var(--white);
    border-radius: 4px;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.container .proposals > .more > span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
.container .proposals > .more > svg {
    fill: var(--white);
    height: 13px;
    width: 13px;
    min-width: 13px;
}

.container > a, .container .center > a {
    border-radius: 50px;
    padding: 15px 50px;
    display: flex;
    text-decoration: none;
    width: max-content;
    outline: none;
    border: none;
    min-width: max-content;
    gap: 15px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.container > a > span, .container .center > a > span {
    min-width: max-content;
    font-size: 16px;
    line-height: 16px;
}
.container > a > svg, .container .center > a > svg {
    height: 12px;
    width: 12px;
    min-width: 12px;
}

.container > a.primary, .container .center > a.primary {
    background-color: var(--primary);
}
.container > a.primary > span, .container .center > a.primary > span {
    color: var(--grey);
    font-weight: 500;
}
.container > a.primary > svg, .container .center > a.primary > svg {
    fill: var(--grey);
}

.container > a.secondary, .container .center > a.secondary {
    background-color: transparent;
    padding: calc(10px - 4px) calc(35px - 4px);
    border: solid 2px var(--white);
}
.container > a.secondary > span, .container .center > a.secondary > span {
    color: var(--white);
    font-weight: 500;
}
.container > a.secondary > svg, .container .center > a.secondary > svg {
    fill: var(--white);
}

.choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--grey);
    gap: 15px;
    min-height: max-content;
}

.choices > .choice {
    background-color: var(--black);
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
}

.checks {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.checks > .check {
    padding-left: 30px;
    width: 80%;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
    color: #e5e5ee;
}
.checks > .check .bold {
    font-weight: 500;
}
.checks > .check > svg {
    height: 16px;
    min-width: 16px;
    fill: var(--primary);
}
.checks > .check > svg[disadvantage] {
    height: 16px;
    min-width: 16px;
    padding: 1px;
    fill: var(--danger);
}

.choices > .choice > a {
    margin-top: auto;
    background-color: var(--primary);
    border-radius: 50px;
    padding: 15px 50px;
    display: flex;
    text-decoration: none;
    gap: 15px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.choices > .choice > a > span {
    color: var(--grey);
    font-weight: 500;
    min-width: max-content;
    font-size: 16px;
    line-height: 16px;
}
.choices > .choice > a > svg {
    fill: var(--grey);
    height: 12px;
    width: 12px;
    min-width: 12px;
}

.choices .title {
    font-size: 30px;
    line-height: 30px;
    padding: 50px 0;
    text-align: center;
}

.choices .description {
    width: 100% !important;
    max-width: none;
}

.footer {
    background-color: var(--black);
    padding: 100px var(--padding);
    gap: 100px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    min-height: max-content;
    margin-top: auto;
}

.footer > svg {
    width: 150px;
    min-width: 150px;
    height: auto;
}
.footer > .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer > .column > .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.footer > .column > a {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}

.footer > .column > .socials {
    display: flex;
    gap: 20px;
}
.footer > .column > .socials > a {
    display: flex;
    height: 35px;
    width: 35px;
    align-items: center;
    justify-content: center;
}
.footer > .column > .socials > a > svg {
    height: 100%;
    width: 100%;
    fill: var(--primary);
}

.container .proposals::-webkit-scrollbar {
    height: 55px;
}
.container .proposals::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border: solid 25px var(--black);
    border-radius: 50px;
}

.container .description a {
    color: var(--primary);
}

/* TABLETTE */
@media screen and (max-width: 1500px) {
    .footer > svg {
        display: none;
    }
    .container .proposals {
        grid-auto-rows: 350px;
        grid-template-columns: repeat(4, 275px);
        overflow-x: scroll;
        gap: 25px;
    }
}

/* TABLETTE */
@media screen and (max-width: 1300px) {
    .choices {
        grid-template-columns: repeat(1, 1fr);
    }
    .container .formations.petit {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLETTE */
@media screen and (max-width: 1100px) {
    .navbar {
        justify-content: center;
    }
    .navbar > .void {
        display: none;
    }
    .wallpaper {
        min-height: 100%;
        height: 100%;
    }
    .footer {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, 1fr);
    }
    .container.bigger {
        height: 90%;
        min-height: 90%;
    }
}

/* TABLETTE */
@media screen and (max-width: 800px) {
    .container .formations.petit {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* MOBILE */
@media screen and (max-width: 1350px) and (min-height: 1450px) {
    .wallpaper {
        height: calc(100% - 200px);
        min-height: calc(100% - 200px);
    }

    .navbar {
        gap: 20px;
        padding: 40px;
        justify-content: center;
    }

    .navbar > .void {
        display: none;
    }

    .navbar > a {
        padding: 20px 35px;
    }
    .navbar > a.minimize {
        padding: 20px;
    }
    .navbar > a > span {
        font-size: 32px;
        line-height: 32px;
    }
    .navbar > a > svg {
        fill: var(--white);
        height: 45px;
        height: 45px;
    }
    .navbar > a.minimize > svg {
        display: block;
    }
    .navbar > a.minimize > span {
        display: none;
    }

    .wallpaper > .contents {
        padding: 0 100px;
    }

    .wallpaper > .contents > .content {
        gap: 30px;
        max-width: 100%;
        min-width: 100%;
    }
    .wallpaper > .contents > svg {
        height: 100%;
        width: max-content;
        right: -30%;
    }
    .wallpaper > .contents > .content > .title.primary {
        color: var(--white);
        font-size: 165px;
        line-height: 100px;
    }
    .wallpaper > .contents > .content > .title.secondary {
        -webkit-text-stroke: 4px var(--white);
        text-stroke: 4px var(--white);
        font-size: 125px;
        line-height: 100px;
    }

    .wallpaper > .contents > .content > .description {
        font-size: 40px;
        width: 90%;
    }

    .wallpaper > .contents > .content > .buttons {
        display: flex;
        gap: 20px;
    }

    .wallpaper > .contents > .content > .buttons > a {
        padding: 35px 0;
        width: 100%;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .wallpaper > .contents > .content > .buttons > a > span {
        min-width: max-content;
        font-size: 32px;
        line-height: 32px;
    }
    .wallpaper > .contents > .content > .buttons > a > svg {
        height: 22px;
        width: 22px;
        min-width: 22px;
    }

    .container {
        padding: 100px;
        gap: 25px;
        min-height: max-content;
        position: relative;
    }

    .container.bigger {
        height: 77.5%;
        min-height: 77.5%;
        padding: 0;
    }

    .container .center {
        gap: 25px;
    }

    .container .title {
        font-family: 'Poppins';
        text-transform: uppercase;
        font-style: italic;
        font-weight: 900;
        text-align: left;
        font-size: 70px;
        line-height: 80px;
        color: var(--white);
    }

    .container .title.bigger {
        font-size: 100px;
        line-height: 110px;
    }

    .container .name {
        font-size: 40px;
    }
    .container .subname {
        font-size: 32px;
    }

    .container .description {
        width: 100%;
        max-width: 100%;
        font-size: 32px;
    }

    .container .description.pre > .element {
        padding-left: 60px;
    }

    .container > button {
        padding: 30px;
        border-radius: 8px;
    }
    .container > button > span {
        font-size: 32px;
    }

    .container .row {
        gap: 50px;
    }
    .container .input {
        gap: 10px;
    }
    .container input {
        padding: 30px;
        font-size: 32px;
        border-radius: 8px;
    }
    .container textarea {
        padding: 30px;
        font-size: 32px;
        border-radius: 8px;
    }

    .container .inputchecks {
        gap: 50px;
    }
    .container .inputchecks > .inputcheck {
        padding: 30px;
        gap: 30px;
        border-radius: 8px;
    }
    .container .inputchecks > .inputcheck > .box {
        border-radius: 4px;
    }


    .container .checkbox {
        gap: 20px;
        padding: 20px 0;
    }
    .container .checkbox > .box {
        height: 60px;
        width: 60px;
        min-width: 60px;
        border-radius: 8px;
    }

    .container input[danger], .container textarea[danger], .container .inputchecks[danger] > .inputcheck, .container .checkbox[danger] > .box, .container .formations > .selectmenu[danger] {
        outline: solid 4px var(--danger) !important;
    }


    .container .jobs {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding-top: 25px;
    }

    .container .jobs > .job {
        border-radius: 8px;
        gap: 35px;
        padding: 50px;
    }

    .container .jobs > .job .content {
        gap: 10px;
    }

    .container .formations {
        display: grid;
        grid-auto-rows: max-content;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding-top: 25px;
    }
    .container .formations.petit {
        grid-template-columns: repeat(1, 1fr);
    }

    .container .formations > .selectmenu {
        border-radius: 8px;
    }
    .container .formations > .selectmenu > .input {
        padding: 50px;
        padding-right: 0;
        font-size: 40px;
    }
    .container .formations > .selectmenu > button {
        padding: 50px;
    }

    .container .formations > .selectmenu > button > svg {
        height: 35px;
        width: 35px;
    }

    .container .formations > .selectmenu > .list {
        top: calc(100% + 10px);
        height: 500px;
        padding: 50px 0;
        gap: 40px;
        border-radius: 8px;
    }
    .container .formations > .selectmenu > .list::-webkit-scrollbar {
        width: 0px;
    }
    .container .formations > .selectmenu > .list::-webkit-scrollbar-thumb {
        border: solid 0px #030811;
    }

    .container .formations > .selectmenu > .list > .separator {
        height: 2px;
        min-height: 2px;
    }
    .container .formations > .selectmenu > .list > .object {
        font-size: 40px;
        padding: 0 50px;
    }
    .container .formations > .selectmenu > .list > .divisions > .class {
        font-size: 32px;
        padding: 0 50px;
    }
    .container .formations > .selectmenu > .list button {
        font-size: 30px;
        padding: 25px 50px;
        padding-left: 80px;
    }

    .container .formations > .formation {
        border-radius: 8px;
    }

    .container .formations > .formation .content {
        gap: 10px;
        padding: 50px;
    }

    .container .formations > .formation button {
        padding: 50px;
    }

    .container .formations > .formation button > svg {
        height: 35px;
        width: 35px;
        min-width: 35px;
    }

    .container .possibilities {
        display: grid;
        grid-auto-rows: max-content;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    .container .possibilities > .possibility {
        border-radius: 8px;
        gap: 35px;
        padding: 50px;
    }

    .container .possibilities > .possibility .content {
        gap: 10px;
    }

    .container .possibilities > .possibility .description {
        width: 100%;
        max-width: 100%;
    }

    .container .possibilities > .possibility .icon {
        height: 100%;
        width: 75px;
        min-width: 75px;
        justify-content: center;
        align-items: center;
    }

    .container .possibilities > .possibility .icon > svg {
        height: max-content;
        width: 100%;
    }

    .container .proposals {
        grid-auto-rows: 600px;
        grid-template-columns: repeat(4, 450px);
        overflow-x: scroll;
        gap: 25px;
    }
    .container .proposals > .proposal {
        border-radius: 8px;
    }

    .container .proposals > .proposal > .content {
        padding: 50px;
    }
    .container .proposals > .proposal > .content > .name {
        font-size: 60px;
    }
    .container .proposals > .proposal > .content > button {
        padding: 20px 35px;
        gap: 20px;
    }
    .container .proposals > .proposal > .content > button > span {
        font-size: 32px;
        line-height: 32px;
    }
    .container .proposals > .proposal > .content > button > svg {
        height: 22px;
        width: 22px;
        min-width: 22px;
    }

    .container .proposals > .more {
        border: 10px dashed var(--white);
        border-radius: 8px;
        gap: 20px;
        flex-direction: column;
    }
    .container .proposals > .more > span {
        color: var(--white);
        font-size: 60px;
        font-weight: 500;
        text-align: center;
    }
    .container .proposals > .more > svg {
        fill: var(--white);
        height: 50px;
        width: 50px;
        min-width: 50px;
    }
    .container .center > .title {
        text-align: center;
        width: 80%;
    }
    .container > a, .container .center > a {
        padding: 35px 0;
        width: 100%;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .container > a > span, .container .center > a > span {
        font-size: 32px;
        line-height: 32px;
    }
    .container > a > svg, .container .center > a > svg {
        height: 22px;
        width: 22px;
        min-width: 22px;
    }

    .container > a.primary, .container .center > a.primary {
        background-color: var(--primary);
    }
    .container > a.primary > span, .container .center > a.primary > span {
        color: var(--grey);
        font-weight: 500;
    }
    .container > a.primary > svg, .container .center > a.primary > svg {
        fill: var(--grey);
    }

    .container > a.secondary, .container .center > a.secondary {
        background-color: transparent;
        padding: calc(10px - 4px) calc(35px - 4px);
        border: solid 2px var(--white);
    }
    .container > a.secondary > span, .container .center > a.secondary > span {
        color: var(--white);
        font-weight: 500;
    }
    .container > a.secondary > svg, .container .center > a.secondary > svg {
        fill: var(--white);
    }

    .choices {
        grid-template-columns: repeat(1, 1fr);
        background-color: var(--grey);
        gap: 50px;
        min-height: max-content;
    }

    .choices > .choice {
        padding: 50px;
        gap: 20px;
        border-radius: 16px;
    }

    .checks {
        gap: 10px;
    }
    .checks > .check {
        padding-left: 60px;
        width: 80%;
        gap: 20px;
        font-size: 32px;
    }
    .checks > .check .bold {
        font-weight: 500;
    }
    .checks > .check > svg {
        height: 32px;
        min-width: 32px;
        fill: var(--primary);
    }
    .checks > .check > svg[disadvantage] {
        height: 32px;
        min-width: 32px;
        padding: 2px;
    }

    .choices > .choice > a {
        border-radius: 50px;
        padding: 35px 0;
        width: 100%;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .choices > .choice > a > span {
        font-size: 32px;
        line-height: 32px;
    }
    .choices > .choice > a > svg {
        height: 22px;
        width: 22px;
        min-width: 22px;
    }

    .choices .title {
        font-size: 60px;
        line-height: 60px;
        padding: 50px 100px;
        text-align: center;
    }

    .footer {
        padding: 100px;
        gap: 100px;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer > svg {
        display: none;
    }
    .footer > .column {
        gap: 35px;
    }
    .footer > .column > .title {
        font-size: 40px;
    }
    .footer > .column > a {
        font-size: 32px;
        line-height: 40px;
    }

    .footer > .column > .socials {
        gap: 35px;
    }
    .footer > .column > .socials > a {
        height: 65px;
        width: 65px;
    }
}