.info-box{
    --softgen-info-box-gap: 70px;
    background-color: #fff;
    background: linear-gradient(45deg, #501E9C 0%, #8069F1 40%, #A45CEE 75%, #FF857F 100%);
    border-radius: 3px;
    display: grid;
    grid-template-columns: var(--softgen-info-box-gap) 1fr;
    cursor: pointer;
    padding: 30px;
    box-shadow: 0px 5px 40px 0px rgba(0, 9, 40, 0.1);
    overflow: hidden;
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
    position: relative;
}
.info-box a{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.info-box .icon-wrap {
    font-family: var(--softgen-secondary-font, "DM Sans");
    color: transparent;
    font-size: 80px;
    line-height: 1;
    font-weight: 600;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
}

.info-box .icon-wrap svg{
    width: 60px;
    fill: currentColor;
}
.info-box:hover .icon-wrap{
    color: #fff;
}

.info-box-content .info-box-title {
    font-family: var(--softgen-primary-font, "Syne");
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.info-box-content .info-box-desc{
    font-family: var(--softgen-secondary-font, "DM Sans");
    color: #ddd;
    margin: 0;
}