.dw_hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.dw_hero_inner {
    max-width: 1290px;
    margin: 20px auto;
    min-height: 850px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dw_hero_content {
    margin: 230px auto 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.dw_hero_scroll {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
}
.hero_title {
    background: linear-gradient(90deg, #000000 0%, #2F81F7 100%);
    color: transparent;
    background-clip: text;
    margin: 0;
}
.dw_hero_btn_holder a {
    background-color: var(--e-global-color-primary);
    color: #fff;
    padding: 16px 24px;
    display: inline-block;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}
.dw_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.dw_hero_ellipse {
    position: absolute;
    bottom: -40px;
    width: 100%;
}
.dw_hero_ellipse img {
    width: 100%;
}
.hero_scroll_arrow {
    animation: up-and-down 2s infinite linear;
}

@media(max-width: 767px) {
    .dw_hero_content {
        padding-inline: 10px;
    }
    .dw_hero_ellipse {
        width: 350%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(min-width: 768px) and (max-width: 1024px) {
    .dw_hero_ellipse {
        width: 200%;
        left: 50%;
        transform: translateX(-50%);
    }

}
@keyframes up-and-down {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0%);
    }
}