
.card {
    position: relative;
    box-shadow: 7px 7px 0px 0px rgb(255, 0, 0);
    width: 350px;
    border: 1px solid;
}
.taglist {
    padding: 5px 0px;
    min-height: 28px;
    width: 100%;
    border-top: 1px solid;
}
.card .description{
    padding: 1px 0;
}
/* .card:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
} */
.card .text {
    width: min(50% - 1px);
    float: left;
}
.card .icon {
    width: 50%;
    position: relative;
    float: left;
    border-left: 1px solid;
    overflow: hidden;
    height: 175px;
}
.card .title{
    /* float: left; */
    /* display: inline-block; */
    text-align: center;
    padding: 1px 0;
    font-size: 17px;
    /* background-color: rgb(25, 25, 25); */
    /* margin-top: -4px; */
}
.card img{
    /* display: inline-block; */
    /* filter: invert(10%); */
    /* vertical-align: top; */
    width: 100%;
    margin-bottom: -4px;
}
.icon:hover img {
    -ms-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    transform: scale(1.03); 
}
.top {
    width: 100%;
    clear: both;
    display: table;
}

.tag {
    /* border-radius: 0px; */
    font-size: 16px;
    margin: 3px 7px;
    padding: 0 5px 1px;
    display: inline-block;
    border: 1px solid;
}
.tag.selected {
    /* display: none; */
    box-shadow: 0px 0px 0px 2px;
}

.tag:hover {
    /* box-shadow: inset 0px 0px 0px 1px; */
    box-shadow: 0px 0px 0px 1px;
}

.tag.tag.selected:hover {
    box-shadow: 0px 0px 0px 3px;
}

.row {
    clear: both;
    display: table;
}
.column {
    float: left;
    margin-right: 50px;
    margin-bottom: 50px;
}
.column.hidden {
    display: none;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 100%;
    width: 100%;
    opacity:0;
    transition: .1s ease;
    background-color: #e40000;
}
.icon:hover .overlay {
    opacity: 0.5;
}
a:focus .icon .overlay {
    opacity: 0.5;
}
a:focus .icon img{
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
}

.overlaytext {
    text-align: center;
    opacity: 0;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.icon:hover .overlaytext {
    opacity: 1;
}