.Caselink .project::after{
    width: 100%;
}

.wrapper{
    margin-top: 100px;
}

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

.CaseTitle{
    padding-bottom: 1%;
}

.CaseTitle p{
    font-size: 1rem;
    color: #4A4747;
    line-height: 150%;
    font-weight: bold;
}

.InnerImg{
    width: 100%;
    padding-top: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #333333;
}
.CaseInTxt{
    padding: 3% 0%;
    font-size: 1rem;
    text-align: justify;
    color: #4A4747;
    margin: 0;
    line-height: 150%;
}

.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);
    }
}

@media screen and (max-width:991px){
    .CaseInArea {
        max-width: 80%;
    }
}