@keyframes wcFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.builder_hero_wrapper svg {
    width: 1em;
    height: 1em;
}

.builder_hero_wrapper .controls-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    padding: 20px;
    z-index: 1;
}

.builder_hero_wrapper .hero-navigation {
    display: flex;
    justify-content: space-between;
    z-index: 12;
    position: relative;
}

.builder_hero_wrapper .swiper-pagination {
    bottom: 50%;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.builder_hero_wrapper .swiper-pagination-current {
    font-size: 50px;
}

.builder_hero_wrapper .swiper-pagination-total,
.builder_hero_wrapper .dash {
    margin-bottom: auto;
}

.builder_hero_wrapper .sub-title,
.builder_hero_wrapper .title,
.builder_hero_wrapper .desc,
.builder_hero_wrapper .wc-btn-wrapper {
    opacity: 0;
}

.builder_hero_wrapper .swiper-slide-active .sub-title {
    animation: wcFadeUp 1s 0.25s forwards;
}

.builder_hero_wrapper .swiper-slide-active .title {
    animation: wcFadeUp 1s 0.5s forwards;
}

.builder_hero_wrapper .swiper-slide-active .desc {
    animation: wcFadeUp 1s 0.75s forwards;
}

.builder_hero_wrapper .swiper-slide-active .wc-btn-wrapper {
    animation: wcFadeUp 1s 1s forwards;
}


/* Style One */
.builder_hero_slider-1 .slide {
    display: flex;
    align-items: center;
}

.builder_hero_slider-1 .content {
    flex: 1;
}


/* Style Two */
.builder_hero_slider-2 .content {
    padding: 100px;
}

.builder_hero_slider-2 .slide {
    background-repeat: no-repeat;
    background-size: cover;
}


/* Style Three */
.builder_hero_slider-3 .slide {
    background-repeat: no-repeat;
    background-size: cover;
}

.builder_hero_slider-3 .content {
    padding: 100px;
}

.builder_hero_slider-3 .controls-wrap {
    bottom: 93%;
}

.builder_hero_slider-3 .sub-title {
    position: relative;
    padding-left: 50px;
}

.builder_hero_slider-3 .sub-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #121212;
}

.hero_thumb_slider {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #fff;
    width: 50%;
    padding: 30px;
    display: flex;
    gap: 30px;
}

.hero_thumb_slider .thumb-item.active::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    left: -15px;
    top: -15px;
    background-color: #FC5A11;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.hero_thumb_slider .thumb-item {
    opacity: 0.5;
}

.hero_thumb_slider .thumb-item.active {
    opacity: 1;
    position: relative;
}

@media (max-width: 767px) {
    .hero_thumb_slider .thumb-item {
        display: none;
    }

    .hero_thumb_slider .thumb-item.active {
        display: block;
    }

}