.ihs-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}
.ihs-link {
    display: block;
    width: 100%;
    height: 100%;
}
.ihs-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.ihs-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}
.ihs-base-image {
    position: relative;
    z-index: 2;
}
.ihs-container:hover .ihs-hover-image {
    opacity: 1;
}
.ihs-container:hover .ihs-base-image {
    opacity: 0;
}