.image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
    margin: auto;
}

.image-wrapper .image {
    object-fit: contain;
    width: 100%;
}

.image-hover {
    object-fit: contain;
    width: 100%;

    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s ease-out;
}
.image-hover:hover {
    opacity: 1;
}

.about-us-item {
    padding-left: 30px;
    padding-right: 30px;
    /*transition: all 0.2s ease-in-out;*/
}

.about-us-item:hover {
    /*-ms-transform: scale(1.25); /* IE 9 */
    /*-webkit-transform: scale(1.25); /* Safari 3-8 */
    /*transform: scale(1.25);*/
}
