@media screen and (min-width: 800px){
    #missionParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
    }

    #missionTextRight{
        position: relative;
        max-width: calc(50% - 70px);
        padding: 10px 20px 10px 20px;
        position: relative;
        display: inline-block;
        background-color: white;
        flex: 1;
        color: #595959;
    }

    #missionTextRight:before{
        content: " ";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: -1;
        background: white;
        transform-origin: top left;
        -ms-transform: skew(-30deg, 0deg);
        -webkit-transform: skew(-30deg, 0deg);
        transform: skew(-30deg, 0deg);
    }

    #missionPicture{
        height: auto;
        width: 50%;
        position: relative;
        display: inline-block;
        background-position: center;
        background-size: cover;
        flex: 1;
        z-index: -2;
    }
}

@media screen and (max-width: 800px){
    #missionParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
    }

    #missionTextRight{
        position: relative;
        width: auto;
        padding: 10px 20px 10px 20px;
        position: relative;
        display: inline-block;
        background-color: white;
        color: #595959;
    }

    #missionPicture{
        min-height: 250px;
        width: auto;
        position: relative;
        display: block;
        background-position: center;
        background-size: cover;
    }
}

#valuesContainer{
    width: auto;
    height: auto;
    position: relative;
    display: block;
    background-image: url('../pictures/values.jpg');
    background-size: cover;
    background-attachment: fixed;
}

#valuesContainerOverlay{
    width: auto;
    height: auto;
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 0.70);
}

#teamCards{
    text-align: center;
}

@media screen and (min-width: 570px){
    .aboutCard{
        width: 350px;
        height: auto;
        position: relative;
        display: inline-block;
        background-color: #cacaca;
        color: #595959;
        border-radius: 15px;
        margin: 20px;
        transition: 1s ease;
        text-decoration: none;
    }
}

@media screen and (max-width: 570px){
    .aboutCard{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        background-color: #cacaca;
        color: #595959;
        border-radius: 15px;
        margin: 20px;
        transition: 1s ease;
        text-decoration: none;
    }
}

.aboutCard:hover{
    cursor: pointer;
    transform: translateY(-10px);
}

.aboutCard a{
    text-decoration: none;
    color: inherit;
}

.aboutCardName{
    position: relative;
    display: block;
    background-color: #669C00;
    color: white;
    padding: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-weight: bold;
}

.aboutCardPicture{
    width: auto;
    height: 250px;
    display: block;
    position: relative;
    background-position: center;
    background-size: cover;
}

.aboutCardPosition{
    width: auto;
    height: auto;
    padding: 20px;
    display: block;
    position: relative;
}