body.widget-snippet .growth-content-area {
    top: unset;
    left: unset;
    transform: unset;
    z-index: unset;
}


.growth-success .title-content {
    max-width:1300px;
    margin:0 auto;
}
.growth-success h2.title-content {
    font-size: 37.4px;
    font-family: "aller", sans-serif;
    font-weight: 300;
    margin-bottom: 0;
}
.growth-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 50px 0;
    display: flex;
}

.growth-content-area {
    max-width: 50%;
    padding: 65px 70px;
    position: relative;
}

.growth-img {
    width: 50%;
    position:relative;
}

.growth-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.growth-content-area h3 {
    margin: 0 0 15px;
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 0.75em;
    font-family: "aller", sans-serif;
}

.growth-content-area p {
    font-weight: 300;
    line-height: 27px;
    font-family: "Assistant", sans-serif;
    font-size: 1.6rem;
}
.growth-content-area p a{
    text-decoration:underline;
    color:#2785e7;
}
.growth-content-area p a:hover{
    color:#000;
}

.inleft.growth-img {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-name: inleft;
    -webkit-animation-name: inleft;
}
@keyframes inleft {
    from {
        transform: translate3d(-50px,0,0);
      opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.inright.growth-img{
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-name: inright;
    -webkit-animation-name: inright;
}
@keyframes inright {
    from {
        transform: translate3d(50px,0,0);
      opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
