.coltnCrd{
    background-color: #1F1C2E;
    border-radius: 18px;
    padding: 23px;
    width: 100%;
    display: block;
}
.coltnCrd__hdr{
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.coltnCrd__hdr img{
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.coltnCrd__hdr .coltnCrd__hdr-img2{
    display: none;
}
.coltnCrd__hdr:hover .coltnCrd__hdr-img2{
    display: block;
}
.coltnCrd__hdr:hover .coltnCrd__hdr-img1{
    display: none;
}
.coltnCrd__bdy{
    background-color: rgba(44, 42, 57, 0.29);
    padding: 15px 15px;
    color: var(--main);
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
.coltnCrd:hover .coltnCrd__bdy{
    color: #fff;
}