.card{
    margin: 20px 0px;
    box-shadow: 0px 0px 3vw gainsboro;
    border-radius: 1.5vw;
}

.card-header{
    background-color: white;
    border-radius: 1.5vw !important;
    border: none;
}

.card-link{
    color: #0055ca;
    background-image: url(../../image/arrow_up.png);
    background-size: 20px 20px;
    background-position: right;
    background-repeat: no-repeat;
    width: 100%;
    cursor: pointer;
    padding-right: 40px;
    margin-bottom: 0px;
    transition: .5s;
}

.card-link[aria-expanded="true"]{
    color:#0055ca;
    background-image: url(../../image/arrow_down.png);
    background-size: 20px 20px;
    background-position: right;
    background-repeat: no-repeat;
    width:100%;
    cursor: pointer;
    padding-right: 40px;
    margin-bottom: 0px;
    transition: .5s;
}

.card-body{
    padding-left:60px;
    padding-right:60px;
}

.image_indetail{
    max-width:50%;
    margin-bottom:15px;
}


@media (max-width: 720px) {

    .card-body{
        padding-left:15px;
        padding-right:15px;
    }

    .image_indetail{
        max-width:100%;
        margin-bottom:15px;
    }

}