@keyframes wcFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.helo_hero_wrapper svg {
    width: 1em;
    height: 1em;
}

.helo_hero_wrapper .thumb img {
    object-fit: cover;
}

.helo_hero_wrapper .hero-navigation {
    display: flex;
    justify-content: space-between;
    z-index: 12;
    position: relative;
}

.helo_hero_wrapper .wcf-arrow {
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.helo_hero_wrapper .swiper-pagination {
    bottom: unset;
    left: unset;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
}

.helo_hero_wrapper .swiper-pagination-total {
    margin-top: auto;
}

.helo_hero_wrapper .title,
.helo-btn-wrapper {
    opacity: 0;
}

.helo_hero_wrapper .swiper-slide-active .title {
    animation: wcFadeUp 1s 0.4s forwards;
}

.helo_hero_wrapper .swiper-slide-active .helo-btn-wrapper {
    animation: wcFadeUp 1s 0.7s forwards;
}

.helo-hero-slider-hrp-right  .hero-navigation {
    right: var(--hr-offset, 0);
}

.helo-hero-slider-hrp-left  .hero-navigation {
    left: var(--hr-offset, 0);
}

.helo-hero-slider-vrp-top  .hero-navigation {
    top: var(--vr-offset, 0);
}

.helo-hero-slider-vrp-bottom  .hero-navigation {
    bottom: var(--vr-offset, 0);
}

.helo-hero-slider-pg-hr-right  .swiper-pagination {
    right: var(--pg-hr-offset, 0);
}

.helo-hero-slider-pg-hr-left  .swiper-pagination {
    left: var(--pg-hr-offset, 0);
}

.helo-hero-slider-pg-vr-top  .swiper-pagination {
    top: var(--pg-vr-offset, 0);
}

.helo-hero-slider-pg-vr-bottom  .swiper-pagination {
    bottom: var(--pg-vr-offset, 0);
}


/* Style One */
.helo_hero_slider-1 .slide {
position: relative;
    background-size: cover;
}

.helo_hero_slider-1 .content {
    position: relative;
    z-index: 1;
    padding: 700px 80px 100px;
}

.helo_hero_slider-1 .shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.helo_hero_slider-1 .shape-1 img {
    mix-blend-mode: hard-light;
}

.helo_hero_slider-1 .shape-2 {
    position: absolute;
    right: 0;
    top: 0;
}

.helo_hero_slider-1 .shape-2 img {
    mix-blend-mode: multiply;
}


/* Style Two */
.helo_hero_slider-2 .slide {
    display: flex;
}

.helo_hero_slider-2 .content {
    flex: 1;
}

.helo_hero_slider-2 .thumb {
    flex-basis: 50%;
}

/* Button Style */
.helo--btn {
    gap: 5px;
    display: inline-flex;
}

/* Button Two */
.btn-border-divide {
    align-items: flex-end;
    overflow: hidden;
}

.btn-border-divide .text,
.btn-border-divide .icon {
    border-bottom: 1px solid;
}

.btn-border-divide .icon {
    display: inline-flex;
    padding-bottom: 3px;
    position: relative;
}

.btn-border-divide .icon i:first-child,
.btn-border-divide .icon svg:first-child {
    position: absolute;
    transform: translate(-10px, 10px);
    transition: all .3s;
    opacity: 0;
}

.btn-border-divide .icon i:last-child,
.btn-border-divide .icon svg:last-child {
    transition: all .3s;
    opacity: 1;
}

/* Hover */
.btn-border-divide:hover .icon i:first-child,
.btn-border-divide:hover .icon svg:first-child {
    transform: translate(0, 0);
    opacity: 1;
}

.btn-border-divide:hover .icon i:last-child,
.btn-border-divide:hover .icon svg:last-child {
    transform: translate(10px, -10px);
    opacity: 0;
}




/* Responsive */
@media (max-width: 767px) {


}