.Media .media::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%;
}

.CaseInTxt .title{
    padding-bottom: 1%;
}

.CaseInTxt .title .pic{
    display: inline-block;
    width: calc(100% - 94%);
    font-size: 0;
    vertical-align: middle;
}

.CaseInTxt .title .txt{
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    margin-left: 3%;
}
.CaseInTxt .title .txt h4{
    font-size: 1.2rem;
    color: #231815;
    padding-bottom: 2%;
    font-weight: bold;
}

.CaseInTxt .title .txt .subtitle{
    font-size: 1.1rem;
    color: #B8983D;
    border-top: 1px solid #4A4747;
    padding-top: 2%;
}

.CaseInTxt .content .txt{
    font-size: 1rem;
    color: #4A4747;
    text-align: justify;
    padding-bottom: 3%;
}

.CaseInTxt .content .txt .txtpic{
    padding-bottom: 1%;
}

.CaseInTxt .content .txt .txtpic .pic{
    display: inline-block;
    width: calc(100% - 97%);
    vertical-align: bottom;
}

.CaseInTxt .content .txt .txtpic h4{
    display: inline-block;
    font-size: 1.2rem;
    color: #231815;
    font-weight: bold;
    vertical-align: bottom;
    margin: 0;
}

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