.animated_banner {
    display: block;
    width: 741px;
    height: 225px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.animated_banner .main_bg img {
    width: 100%;
    position: relative;
}

.animated_banner:hover .main_bg {transform: scale(1.05);}

.animated_banner .button {
    position: absolute;
    right: -45px;
    bottom: 15px;
    transition: .5s right linear .3s;
}

.text_image {}

.animated_banner .text_image {
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.5s left ease-in-out;
}

.animated_banner:hover .button {}

.animated_banner .main_bg {
    transition: .5s transform ease-out;
}

.animated_banner:hover .text_image {
    left: 20px;
}

.animated_banner:hover .button {
    right: 0;
}