.content-wrap {
    position: relative;
    .btn-video-pop {
        font-size: 14px;
        font-family: var(--SemiBold);
        color: var(--color1);
        background: #F4832329;
        border: 2px solid #F4832333;
        padding: 10px 9px 10px 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        width: fit-content;
        border-radius: 55px;
        margin-bottom: clamp(24px, 2vw, 32px);
        margin-inline: auto;
        text-align: center;
        cursor: pointer;
        transition: 0.4s;
        i {
            width: 32px;
            height: 32px;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        &:hover {
            border-color: var(--color1);
            background: var(--color1);
            color: white;
        }
    }
    .s-title {
        margin-bottom: 32px;
        text-align: center;
    }
}
.content-img {
    position: relative;
    margin-bottom: 16px;
    img {
        border-radius: clamp(32px, 3vw, 48px);
        border: 1px solid #DFE6F0;
    }
}
.iso-row {
    align-items: center;
    text-align: center;
    border-radius: 40px;
    background: #FDC301;
    margin-top: 24px;
    padding: clamp(24px, 2vw, 32px) clamp(28px, 4vw, 56px);
    gap: clamp(30px, 10vw, 150px);
    width: calc(100% - 48px);
    margin-inline: auto !important;
    .iso-body {
        flex: auto;
        .iso-title {
            font-family: var(--SemiBold);
            margin-bottom: 16px;
            font-size: 24px;
        }
        .iso-desc {
            font-size: 16px;
            color: #3C3D3E;
            line-height: 28px;
            font-family: var(--Medium);
        }
    }
    .iso-item {
        display: flex;
        justify-content: center;
        gap: clamp(9px, 1vw, 14px);
        img {
            width: clamp(72px, 7vw, 108px);
        }
    }
}
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    justify-content: center;
    align-items: center;
    .video-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
    }
    .video-modal-content {
        position: relative;
        width: 80%;
        max-width: 800px;
        z-index: 2;
    }
    video {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}
.video-close {
    position: absolute;
    bottom: calc(100% + 20px);
    right: 50%;
    transform: translateX(50%);
    font-size: 41px;
    color: #fff;
    cursor: pointer;
}
@media only screen and (min-width: 768px) {
    .section-content .container {
        padding-inline: 52px;
    }
    .content-wrap {
        .c-btn {
            justify-content: flex-start;
        }
        .btn-video-pop {
            margin-right: 0;
        }
        .s-title {
            margin-bottom: 12px;
            text-align: right;
        }
    }
    .content-img {
        margin: 0;
    }
    .iso-row {
        text-align: right;
        width: auto;
        .iso-body {
            flex: 0 0 clamp(300px, 27vw, 440px);
        }
        .iso-item {
            justify-content: flex-end;
        }
    }
}