.Media .media::after{
    width: 100%;
}

.wrapper{
    margin-top: 100px;
}

.CaseInArea {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}

.Back{
    width: 100%;
    padding: 3% 0%;
    text-align: center;
}

.Back a{
    color: #4A4747;
    font-size: 1rem;
}

.Back a::before{
    content: '<';
    display: inline-block;
    vertical-align: middle;
    margin-top: -6px;
    transform: translateX(0px);
    animation-name: move;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes move{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(-5px);
    }
}