body {
    background-image:
        linear-gradient(to bottom, #FAFAFA 180px, transparent 180px),
        linear-gradient(to top, #F0F0F0 120px, transparent 370px);
}

/*--------------------------------------------------------------------------------------------------*/

#missions { margin: 75px 0; }
#missions > header { text-align: center; }
#missions > header:not(:last-child) { margin-bottom: 50px; }
@media (min-width : 1125px) {
    #missions > * {
        width: 1024px;
        margin: 0 auto;
    }
    #missions > header {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width : 1124px) {
    #missions > * {
        padding-left: 50px;
        padding-right: 50px;
    }
}
#missions > header > .title {
    margin: 0;
    line-height: 34px;
    font-size: 28px;
}
#missions > header > .title:not(:last-child) { margin-bottom: 20px; }
#missions > header > .description {
    margin: 0;
    font-size: 16px;
}
#missions > .missions { display: flex; }
#missions > .missions > .mission {
    padding: 20px;
    
    background-color: #1A9A8B;
    border-radius: 10px;
}
@media (min-width : 451px) {
    #missions > .missions {
        flex-direction: row;
        justify-content: space-between;
    }
    #missions > .missions > .mission {
        flex: 0 0 calc((100% - 40px) / 3);
        box-shadow: 0 0 10px rgba(0,0,0,.1);
    }
}
@media (max-width : 450px) {
    #missions > .missions {
        flex-direction: column;
        align-items: stretch;
    }
    #missions > .missions > .mission + .mission { margin-top: 20px; }
}
#missions > .missions > .mission > .thumbnail {
    display: inline-block;
    height: 40px; width: 40px;
    margin-bottom: 10px;
    
    background-color: #FAFAFA;
    background-position: center;
    background-size: 26px auto;
    background-repeat: no-repeat;
    border-radius: 5px;
}
#missions > .missions > .mission > .description {
    margin-bottom: -5px;
    font-size: 115%;
    color: #FFF;
}

/*--------------------------------------------------------------------------------------------------*/

#container > section.info-block {
    margin: 50px 0;
    font-size: 16px;
}
#container > section.info-block > div > div.content > h2 {
    margin: 0;
    
    text-shadow: 0 0 10px rgba(0,0,0,.1);
    line-height: 34px;
    font-size: 28px;
}
#container > section.info-block > div > div.content > h2:not(:last-child) { margin-bottom: 20px; }
#container > section.info-block > div > .image {
    height: 250px;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}
@media (min-width : 1101px) {
    #container > section.info-block > div {
        display: flex; width: 1024px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
    #container > section.info-block > div > div:only-child { flex: 0 0 100%; }
    #container > section.info-block > div > .content:not(:only-child) {
        flex: 0 0 calc(40% + 40px);
        padding: 0 20px;
    }
    #container > section.info-block > div > .image:not(:only-child) { flex: 0 0 50%; }
}
@media (max-width : 1100px) {
    #container > section.info-block > div {
        padding: 0 50px;
    }
}
@media (min-width : 451px) {
    #container > section.info-block > div > .image {
        box-shadow: 0 0 10px rgba(0,0,0,.1);
    }
}

/*--------------------------------------------------------------------------------------------------*/

@media (max-width : 1100px) {
    #info-1 > div,
    #info-3 > div {
        display: flex;
        flex-direction: column-reverse;
    }
    #container > section.info-block > div > .image { margin-bottom: 30px; }
    #container > section.info-block > div > .content { text-align: center; }
}

/*--------------------------------------------------------------------------------------------------*/

#goals { margin: 75px 0; }
@media (min-width : 1125px) {
    #goals > div {
        width: 1024px;
        margin: 0 auto;
        padding-left: 150px;
        padding-right: 150px;
    }
    #goals > div:first-child {
        border-radius: 20px;
    }
}
@media (max-width : 1124px) {
    #goals > div {
        padding-left: 50px;
        padding-right: 50px;
    }
}

#goals > div:first-child {
    margin-bottom: 75px;
    padding-top: 60px;
    padding-bottom: 60px;
    
    background-color: #1A9A8B;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    
    color: #FFF;
}
#goals > div:first-child > .title {
    margin: 0 0 40px;
    line-height: 34px;
    text-align: center;
    font-size: 28px;
}
#goals > div:first-child > .goals {
    display: flex;
    margin: -10px;
}
#goals > div:first-child > .goals > .goal {
    display: flex;
    align-items: center;
    margin: 10px;
}
#goals > div:first-child > .goals > .goal:not(.rtl) { flex-direction: row; }
#goals > div:first-child > .goals > .goal.rtl { flex-direction: row-reverse; }
@media (min-width : 451px) {
    #goals > div:first-child > .goals {
        flex-direction: row;
        flex-wrap: wrap;
    }
    #goals > div:first-child > .goals > .goal { flex: 0 0 calc((100% - 60px) / 3); }
}
@media (max-width : 450px) {
    #goals > div:first-child > .goals {
        flex-direction: column;
        align-items: stretch;
    }
}
#goals > div:first-child > .goals > .goal > .thumbnail {
    height: 40px; flex: 0 0 40px;
    
    background-color: #FAFAFA;
    background-position: center;
    background-size: 26px auto;
    background-repeat: no-repeat;
    border-radius: 5px;
}
#goals > div:first-child > .goals > .goal:not(.rtl) > .thumbnail { margin-right: 20px; }
#goals > div:first-child > .goals > .goal.rtl > .thumbnail { margin-left: 20px; }
#goals > div:first-child > .goals > .goal > .title {
    flex: 1;
    line-height: 20px;
    font-size: 115%;
    color: #FFF;
}

#goals > div:last-child {
    text-align: center;
    font-size: 16px;
}