.hover-box-switcher {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    color: white;
    text-align: left;
    height: 195px;
    width: 273px;
    border: 1px solid #707070;
    /* background-color can be handled in Elementor */
}

.hover-box-icon {
    position: relative;
    width: 48px;
    height: 48px;
    /* border-radius: 50%; */
    overflow: hidden;
    margin-bottom: 20px;
}

.hover-box-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0px !important;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.hover-box-icon .icon-default {
    opacity: 1;
    z-index: 1;
}

.hover-box-icon .icon-hover {
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, -30%);
}

.hover-box-switcher:hover .icon-default {
    opacity: 0;
    transform: translate(-50%, -70%);
}

.hover-box-switcher:hover .icon-hover {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hover-box-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}
