.join-our-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.team-image {
    width: 35%;
}

.join-our-team-header h1 {
    font-size: 3rem;
}

.team-image img {
    width: 80%;
    height: auto;
    object-fit: cover;
    float: left;
}

.join-our-team-content {
    width: 65%;
}

.join-our-team-content p {
    text-align: justify;
    font-size: 1.25rem;
}

.no-positions {
    font-size: 1.6rem;
    color: white;
}

.join-our-team-header {
    text-align: left;
    color: #fff;
    margin-right: 10%;
}

.position {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-right: 10%;
    position: relative;
}

.position-checkbox {
    display: none;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow.down {
    transform: rotate(0);
}

.arrow.up {
    transform: rotate(180deg);
}

.position-description {
    display: none;
    text-align: justify;
}

.position-checkbox:checked~.position-description {
    display: block;
    position: relative;
    z-index: 3;
}

.position-checkbox:checked~.position-header img {
    rotate: 180deg;
}

.position-checkbox-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.ContactUsLink {
    text-decoration: none;
    color: #039be5;
}

.ContactUsButton {
    border-color: #039be5;
    background-color: #fff;
    color: #039be5;
    border-width: 2px;
    padding: 20px;
    font-size: 1.25rem;
    cursor: pointer;
}

.water-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .join-our-team-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 425px) {
    .team-content-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .join-our-team-header {
        text-align: center;
        margin-right: 0;
    }

    .join-our-team-header h1 {
        justify-self: center;
    }

    .join-our-team-content {
        width: 85%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .position {
        margin-right: 0;
        width: 85%;
    }

    .team-image {
        align-self: flex-start;
        width: 60%;
    }

    .join-our-team {
        margin-top: 1.25rem;
    }
}

@media (max-width: 400px) {
    .join-our-team-header h1 {
        font-size: 2rem;
    }
}