.item {
    flex: 1 1 calc(20% - 10px);
    box-sizing: border-box;
    min-width: 500px;
    padding: 0;
    margin: 0.5%;
    /* text-align: center; */
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
@media (max-width: 600px) {
    .item {
        min-width: 250px;
        width: 80vw;
    }
}
.item-header {
    background-color: #142164;
    color: #ffffff;
    padding: 15px;
    font-weight: bold;
}
.item-body {
    background-color: #ffffff;
    color: #142164;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
    height: 100%;
}
.item:hover {
    transform: translateY(-0.5rem) scale(1.025);
    transition: all 0.5s 0s ease;
    box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.5);
}
.item:hover .item-header {
    transition: all 0.5s 0s ease;
    background-color: #384899;
}
