.section_inner {
    background-image: url('../images/back2.png');
    background-repeat: no-repeat;
    height: auto;
    padding-top: 5em;
}

.card {
    background-color: transparent;
    width: 52%;
    border: none;
    box-shadow: -6px -19px 39px 6px rgba(81, 79, 79, 0.3);
}

.card-inner-title {
    padding-left: 0.8em;
    position: relative;
    display: inline;
}

.card-inner-title::after {
    content: '';
    width: 3px;
    height: 1em;
    display: block;
    background-color: #1E3B94;
    position: absolute;
    left: 8px;
    top: 4px;
}

.panel-title {
    padding-left: 0.7em;
    position: relative;
    display: inline;
}

.panel-title::after {
    content: '';
    width: 3px;
    height: 1em;
    display: block;
    background-color: #1E3B94;
    position: absolute;
    left: 3px;
    top: 4px;
}

.inner_column {
    margin-top: 3em;
}

.image {
    position: relative;
    animation: fade-up 1s;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.panel-body,
.card-text {
    font-size: 15px;
    line-height: 2;

}

.panel-body {
    width: 90%;
    text-align: justify;
}

@media screen and (min-width: 200px) and (max-width: 1260px) {
    .card{
        width: 100%;
    }
    .image{
        display: block;
        margin: 0px auto;
        width: 280px;
        height: 200px;
    }
    .img_sheild{
        width: 290px !important;
    }
}