<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.image-group-wrap {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.image-group-wrap .image-group-item {
    width: 300px;
    height: 380px;
    position: absolute;
    left: 0;
    top: 0;
}

.image-group-wrap .image-frame {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.image-group-wrap .image-group-item:nth-child(2) {
    width: 200px;
    height: calc(100% + 70px);
    transform: skew(-20deg, 0deg);
    left: auto;
    right: 200px;
    top: -20px;
    z-index: -1;
}

.image-group-wrap .image-group-item:nth-child(2) .image-frame {
    background-color: var(--ridek-primary-color, #ff9900);
}

.image-group-wrap .image-group-item:nth-child(3) {
    width: 200px;
    height: 225px;
    left: auto;
    right: 80px;
    top: 160px;
}

.image-group-wrap .image-group-item:nth-child(4) {
    width: 187px;
    height: 187px;
    left: 56%;
    top: 12%;
    z-index: 1;
}

.image-group-wrap .image-group-item:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 27%;
    left: 65%;
    z-index: 1;
}

/* Content Box */
.image-group-item.type-content {
    --ridek-icon-box-size: 60px;
    background-color: #fff;
    padding: 20px;
    width: auto;
    height: auto;
    border-radius: 3px;
}

.image-group-item .content-wrap {
    display: grid;
    grid-template-columns: var(--ridek-icon-box-size) 1fr;
    grid-gap: 15px;
}

.content-wrap .icon-wrap {
    width: var(--ridek-icon-box-size);
    height: var(--ridek-icon-box-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid #eee;
}

.content-wrap.align-right .icon-wrap {
    margin-left: auto;
}

.content-wrap.align-center .icon-wrap {
    margin: 0 auto;
}

.content-wrap .heading {
    font-family: var(--ridek-primary-font, "DM Sans");
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: var(--ridek-primary-color, #ff9900);
}

/* Infinite Animation */
.dl-infinite-anim {
    --dl-infimite-duration: 2000s;
    animation-duration: var(--dl-infimite-duration);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: var(--dl-infimite-duration);
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

/* Pulse Heartbeat */
.dl-pulse-heartbeat {
    animation-name: dl-pulse-hearbeat;
    -webkit-animation-name: dl-pulse-hearbeat;
}

@-webkit-keyframes dl-pulse-hearbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        transform-origin: center center;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dl-pulse-hearbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        transform-origin: center center;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Up Down */
.dl-up-down {
    animation-name: dl-up-down;
    -webkit-animation-name: dl-up-down;
}

@-webkit-keyframes dl-up-down {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

@keyframes dl-up-down {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* Left Right */
.dl-left-right {
    animation-name: dl-left-right;
    -webkit-animation-name: dl-left-right;
}

@-webkit-keyframes dl-left-right {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}

@keyframes dl-left-right {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

/* Scale */
.dl-scale {
    animation-name: dl-scale-up;
    -webkit-animation-name: dl-scale-up;
}

@-webkit-keyframes dl-scale-up {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dl-scale-up {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Rotate */
.dl-rotate {
    animation-name: dl-rotate-center;
    -webkit-animation-name: dl-rotate-center;
}

@-webkit-keyframes dl-rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dl-rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Bounce */
.dl-bounce {
    animation-name: dl-bounce;
    -webkit-animation-name: dl-bounce;
}

@-webkit-keyframes dl-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes dl-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}</pre></body></html>