.abouts {
    color: #767676;
    font-size: 62px;
    font-weight: 700;
    /*text-shadow: 2px 2px 2px #4b4b4b,*/
    /*            1px 1px 1px #858a8a,*/
    /*            0 0 55px #848484*/
}

.image a {
    display: inline-block;
    /*background: #ffffff;*/
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.image a img {
    display: block;
    transition: filter 0.5s linear;
    filter: brightness(1) opacity(0.17);
}
.image a:hover img {
    transition: 2s cubic-bezier(.2, .6, 0, 1);
    transform: scale(1.1);
    filter: none;
}

.shidden {
    background: rgba(130, 130, 130, 0.55);
    border-radius: 0 0 5px 5px;
    color: #f8f8f8;
    font-weight: 700;
}

.shidden:hover {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 0 0 5px 5px;
    color: #424242;
    font-weight: 700;
    transition: 2s cubic-bezier(.2, .6, 0, 1);
}