.WHYPENGUINCARD {
    padding: 2px;
    background-image: linear-gradient(#4877CF 0%, #09214E 100%);
    border-radius: 20px;
    .WHYPENGUINCARDBody {
        width: 100%;
        min-height: 222px;
        border-radius: 20px;
        background-color: #09214E;
        position: relative;
        z-index: 1;
        &::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(55, 114, 227, 0.04) 0%, rgba(55, 114, 227, 0.4) 100%),
                linear-gradient(180deg, #09214E 10%, rgba(31, 76, 161, 0) 100%);
            border-radius: 20px;
            z-index: -1;
            opacity: 1;
        }
        .iconImage {
            position: relative;
            top: -40px;
        }
    }
}