.sub0801-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 3;
    margin-top: 0;
    overflow: visible;
}

.sub0801-row::after {
    content: '';
    position: absolute;
    bottom: -95%;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('/assets/images/sub0801/pc/saeron_full_sign.png?v=20260428-100') repeat-x bottom left;
    z-index: -1;
    animation: scrollLeft 20s linear infinite;
    min-height: 58px;
}

.sub0801-section#section2,
.sub0801-row {
    position: relative;    
    background-color:#fbf5f1;
}

.sub0801-section#section2 .overlay-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -120%);
    display: flex;
    gap: 20px;
    z-index: 2;
    width: auto;
    width: 73%;
    max-width: 90%;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.sub0801-section#section2 .overlay-wrap img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.hvr-shutter-in-horizontal {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    transition: color 0.3s ease-out;
    z-index: 1;
}

.hvr-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hover-image, linear-gradient(rgba(32, 152, 209, 0.35), rgba(32, 152, 209, 0.35)));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.35s ease-out, opacity 0.35s ease-out;
    z-index: 2;
    pointer-events: none;
}

.hvr-shutter-in-horizontal.up:before {
    transform: translateY(100%);
}

.hvr-shutter-in-horizontal.down:before {
    transform: translateY(-100%);
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before,
.hvr-shutter-in-horizontal.hvr-hover.up:before,
.hvr-shutter-in-horizontal.hvr-hover.down:before {
    transform: translateY(0);
    opacity: 1;
}

.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active,
.hvr-shutter-in-horizontal.hvr-hover {
    color: #fff;
}

@keyframes scrollLeft {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -100% bottom;
    }
}

.flip-container {
    flex: 0 1 calc(10% - 8px);
    width: 100%;
    height: auto;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: auto;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    height: auto;
    display: block;
    backface-visibility: hidden;
}

.flip-card-front {
    position: relative;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
}

.flip-container.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

@media (max-width: 1024px) {
    .flip-container {
        flex: 0 1 calc(33.333% - 10px);
    }
}

@media (max-width: 640px) {
    .flip-container {
        flex: 0 1 calc(50% - 8px);
    }
}
