﻿.theme-cards {
    display: flex;
    flex-flow: column;
    width: 325px;
    align-items: center;
    justify-content: center;
}

.theme-cards-image {
    width: 325px;
    height: 325px;
    background: var(--color-white);
    box-shadow: 0px 6px 15px -4px rgb(24 39 75 / 12%), 0px 10px 45px -3px rgb(24 39 75 / 12%);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.theme-cards-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 3s cubic-bezier(0.4, 0, 1, 1);
}

.theme-cards:hover img {
    transform: scale(1.2); 
}


.theme-cards-title {
    margin-top: 50px;
    font-weight: 500;
    font-size: clamp(1.063rem, 5vw - 0.5rem, 1.25rem);
    line-height: 1.2;
    color: var(--color-blue3);
    text-align: center;
}

/* responsive */

.phone .theme-cards-title {
    margin-top: 28px;
}

