.Card {
    width: 385px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.Card .img {
    width: 385px;
    height: 310px;
    border-bottom: 5px solid #CBAE6F;
}

.Card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Card-btn {
    outline: none;
    border: 1px solid #03283C;
    color: #03283C;
    height: 45px;
    width: 365px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Card-btn:hover {
    outline: none;
    border: 1px solid transparent;
    color: #fff;
    background-color: #03283C;
}

.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 10px 18px;
    height: 190px;
}

@media (max-width: 768px) {
    .Card {

        width: 95%;
        margin: 20px auto;
    }

    .Card .img {
        width: 100%;
        height: 350px;
    }

    .Card-btn {
        width: 98%;
    }

    .detail {
        padding: 10px 5px;
    }

}