.full-banner_epower {
    position: relative;
    background-color: #F4F9F0;
}

.full-banner_epower .full-banner_epower__item {
    padding-block: var(--space-24);
}

.full-banner_epower .full-banner_epower__item.full-banner_epower--video{
    padding-block: 0;
        height: calc(100dvh - 190px);
}

.full-banner_epower .full-banner_epower__item.full-banner_epower--video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}


.full-banner_epower .full-banner_epower__item.full-banner_epower--video video{
    width: 100% !important;
    height: auto;
    position: absolute;
    left: 0;
    height: 100dvh !important;
    top: 0;
    object-fit: cover;
}

.full-banner_epower .full-banner_epower__item.full-banner_epower--video .item-left{
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    max-width: 560px;
    margin-inline: auto;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.inner-content_full_banner {
    display: flex;
    gap: var(--space-8);
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 100px);
    margin: 0 auto;
}

.inner-content_full_banner>div {
    flex: 0 0 calc(50% - 40px);
}

.inner-content_full_banner h2,
.inner-content_full_banner h1 {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: var(--space-7);
}

.inner-content_full_banner p {
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: 127.4%;
    margin-bottom: var(--space-7);
    padding-right: 50px;
}

.inner-content_full_banner img {
    height: 390px;
    max-height: 390px;
    min-height: 390px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .full-banner_epower {
        padding-block: 0;
    }

    .full-banner_epower .full-banner_epower__item {
        padding-block: var(--space-12);
    }

    .full-banner_epower .full-banner_epower__item.full-banner_epower--video .item-left{
        padding-inline: 35px;
    }

    .inner-content_full_banner h2 {
        font-size: var(--fs-26);
        text-align: center;
    }

    .inner-content_full_banner p {
        font-size: var(--fs-16);
        text-align: center;
        padding-right: 0;
    }

    .inner-content_full_banner {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .inner-content_full_banner .btn-epower {
        width: 100%;
        width: -webkit-fill-available;
    }

    .inner-content_full_banner h2,
    .inner-content_full_banner h1 {
        font-size: var(--fs-35);
    }
}