.toolsline {
    display: flex;
    background-color: #e7f0f8;
    padding: 10px;
    justify-content: space-evenly;
}
.toolcontainer {
    flex: 1 1 0;
    margin-right: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.toolcontainer:last-child {
    margin-right: 0px;
}
.sombrebackground {
    background-color: #3a7bac;
}
.clairbackground {
    background-color: #87b3da;
}
.toolicon {
    height: 75px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
}
.toolcontent {
    padding: 15px;
    flex: 1 1 0;
    position: relative;
}
.toolcontent .tooltitle {
    font-family: proxima-nova, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    height: 90px;
    margin-bottom: 10px;
}
.toolcontent .tooltitle.moreheight {
    height: 90px;
}
.toolcontent .tooltitle span {
    color: #3a7bac;
}
.toolcontent .tooldescription {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 9px;
    margin-bottom: 45px;
    color: #000;
}
.toolcontent .toollink {
    text-transform: uppercase;
    color: #585858;
    font-size: 11px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.divider {
    width: 1px;
    background-color: #000;
    margin-right: 10px;
}
.divider:last-of-type {
    width: 0px;
    margin-right: 0px;
}
@media screen and (max-width: 768px) {
    .toolsline {
        flex-wrap: wrap;
    }
    .toolcontainer {
        margin-bottom: 10px;
    }
    .toolcontent .tooltitle {
        height: auto;
    }
    .divider {
        width: 0px;;
    }
}