﻿.card-inquiry {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    background: #e9eeec
}

.card-inquiry {
    border-radius: 20px;
    background: #eef2f1;
}

.video-box {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
}
.video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}
.play-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}