﻿
a.link-subject,
a.link-subject:hover,
a.link-subject:focus,
a.link-subject:active {
    text-decoration: none;
    display: block;
}

.subject {
    padding-left: 105px;
    position: relative;
    height: 120px;
    margin-bottom: 30px;
    font-size: 14pt;
    text-transform: uppercase;
    border-radius: 7px;
    background-color: #fff;
    padding-top: 35px;
    color: #7a7a7a;
    box-shadow: 3px 3px 3px 0px #e0e0e08f;
    border: 1px solid #f1f1f1;
}

.subject:hover {
    background-color: #40a2c9;
    color: #fff;
    cursor: pointer;
}

.subject img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 35px;
    left: 30px;
}
/*.subject:hover img{
        -webkit-animation: fa-spin 2s infinite linear;
        animation: fa-spin 2s infinite linear;
    }*/
.s-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
}
@media only screen and (max-width: 319px) {
    .subject{
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .subject{
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .subject{
        height: 100px;
        padding-top: 24px;
    }

    .subject img{
        top: 26px;
    }
}