.mission {
    display: flex;
    justify-content: space-around;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.resume {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-info {
    text-align: left;
}

.title-info {
    text-align: left;
    font-weight: 500;
    margin-bottom: 5px;
}

.mission:nth-of-type(odd) .info {
   margin-left: 20px;
}

.thumbnail {
    display: inline-block;
    border-radius: 11px;
    width: 100%;
    max-width: 240px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
    text-align: left;
    vertical-align: top;
    margin: 10px;
    background: black;
}

.thumbnail-cover {
    width: 100%;
    height: 75px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    opacity: 0.75;
}

.thumbnail .thumbnail-content {
    position: relative;
    padding: 20px;
    background: white;
    min-height: 120px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.thumbnail-icon {
    height: 40px;
    position: absolute;
    top:-60px;
    right: 0;
    left:0;
    margin: auto;
}

.thumbnail-footer {
    position: absolute;
    text-align: right;
    bottom: 10px;
    right: 10px;
}

.thumbnail .btn {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 20px;
    min-width: 50px;
    text-align: center;
}

.thumbnail-title {
    margin:0;
    margin-bottom:5px;
    font-weight: bold;
    font-size: 16px;
}

.thumbnail-description {
    margin:0;
    margin-bottom: 3px;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
}

.thumbnail .badge {
    position: absolute;
    background: #f39c12;
    border-radius: 20px;
    color: white;
    top:-10px;
    left: 20px;
    font-size: 12px;
    height: 20px;
    padding: 0px 20px;
    line-height: 20px;
}

.thumbnail-footer a{
    display: inline-block;
    background: #3498db;
    color: white;
    font-size: 12px;
    border-radius: 20px;
    text-decoration: none;
    padding: 5px 10px;
    font-weight: 500;
}

@media screen and (max-width: 500px){
    .mission {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mission:nth-of-type(even) .info {
        order: 2;
    }
    
    .mission:nth-of-type(odd) .info {
        margin-left: 0px;
     }
    .thumbnail {
        margin-bottom: 20px;
    }
    
    .text-info {
        margin-bottom: 10px;
    }
}
