@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-7-description ul,
.detail-7-description ol {
    padding-left: 0;
    margin: 0;
    list-style-position: inside;
    text-align: left;
}

.detail-layout-7 {
    width: 100%;
}

.detail-7-container {
    width: 100%;
    padding: 80px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-7-header {
    max-width: 900px;
    text-align: center;
    padding-top:48px;
    padding-bottom: 48px;
}

.detail-7-highlight {
    margin-bottom: 12px;
    text-align: center;
}

.detail-7-subtitle {
    margin-bottom: 16px;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.detail-7-description {
    margin-bottom: 48px;
    animation: fadeInUp 1.5s ease-out;
    text-align: left;
}

.detail-7-image-title {
    text-align: center;
    margin: 0px !important;
    
}

.detail-7-grid-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    animation: fadeInUp 1.5s ease-out;
}

.detail-7-side-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
    align-items: center;
    text-align: center;
}

.detail-7-content-block {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.detail-7-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.detail-7-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.detail-7-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.detail-7-block-title {
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
}

.detail-7-block-desc {
    width: 100%;
    text-align: left;
}

.detail-7-main-image {
    width: 555px;
    height: 628px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.detail-7-main-image img,
.detail-7-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-7-main-image .video-custom-container {
    width: 100%;
    height: 100%;
}

.detail-7-main-image .video-custom-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-7-main-image .video-full-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.detail-7-main-image .video-full-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

@media (min-width: 768px) and (max-width: 1024.98px) {
    .detail-7-container {
        padding: 80px 24px !important;
    }

    .detail-7-header {
        max-width: 720px !important;
    }

    .detail-7-grid-content {
        flex-direction: column !important;
        gap: 48px !important;
    }

    .detail-7-main-image {
        width: 100% !important;
        max-width: 720px !important;
        height: 446px !important;
        order: -1 !important;
        margin: 0 auto !important;
    }

    .detail-7-side-column {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 48px 24px !important;
        width: 100% !important;
        max-width: 720px !important;
        justify-content: center !important;
    }

    .detail-7-content-block {
        flex: 0 0 calc(50% - 24px) !important;
        max-width: 348px !important;
    }
}

@media (max-width: 767.98px) {
    .detail-7-container {
        padding: 16px !important;
    }

    .detail-7-header {
        max-width: 100% !important;
    }

    .detail-7-grid-content {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }


    .detail-7-main-image {
        width: 100% !important;
        height: 446px !important;
        order: -1 !important;
        margin: 0 !important;
    }

    .detail-7-side-column {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .detail-7-side-column:first-of-type {
        padding: 80px 0 24px 0 !important;
    }

    .detail-7-side-column:last-of-type {
        padding: 0 0 80px 0 !important;
    }

    .detail-7-content-block {
        flex: 0 0 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .detail-7-block-desc {
        text-align: left !important;
    }
}