/* SECTION JOIN-US */
#join-us .row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

#join-us .row:first-child {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: start;

    margin-bottom: 30px;
}

#join-us .row:last-child {
    max-height: 500px;
}

.join-us-h1 {
    font-size: 80%;
    text-transform: none;
    text-align: left;
    margin-bottom: 20px;
}

#join-us ul {
    list-style: none;
    flex: 0 50%;
}

#join-us .row:last-child ul {
    list-style: disc;
}

#join-us ul li {
    font-size: 75%;
    margin-bottom: 8px;

    display: flex;
    justify-content: left;
}

#join-us .row:last-child ul li {
    display: list-item;
    margin-left: 20px;
    padding-left: 10px;
}

.big-mark{
    font-size: 150%;
    margin-right: 20px;
    display: block;
    color: var(--color-comp-blue);
}

.join-us-img {
    width: fit-content;
    height: auto;
}

#join-us img {
    width: 480px;
    height: fit-content;
}

@media only screen and (max-width: 1140px) {
    #join-us img {
        width: 350px;
    }
}

@media only screen and (max-width: 780px) {
    #join-us .row {
        flex-direction: column;
        align-content: center;
    }

    #join-us .row:last-child {
        flex-direction: column-reverse;
        max-height: unset;
    }

    #join-us .row:last-child ul {
        width: 90%;
        margin: 0 5%;
    }
    
    #join-us img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}