/*

Custom Slider CSS

*/

.custom-slider {
    overflow: hidden !important;
    background: var(--awb-custom_color_2);
    z-index: 1 !important;
}

.custom-slider .fusion-builder-row {
    position: static !important;
}

.custom-slider .custom-slide {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.custom-slider .custom-slide .fusion-column-wrapper > div,
.custom-slider .custom-slide .fusion-column-wrapper > div > span,
.custom-slider .custom-slide .fusion-column-wrapper div > span > img {
    width: 100% !important;
    height: 100% !important;
}

.custom-slider .custom-slide .fusion-column-wrapper div > span > img {
    object-fit: cover !important;
}

.custom-slider .custom-slide.active {
    z-index: 10;
    opacity: 1;
}

.custom-slider .custom-slider-content {
    z-index: 99;
}

.custom-slider .custom-slide .fusion-column-wrapper {
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

.custom-slider .custom-slide .fusion-column-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(
        50deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.08) 100%
    );
    mix-blend-mode: overlay;
    z-index: 1;
}

.custom-slider .custom-slide .fusion-column-wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, var(--awb-custom_color_2) 15%, rgba(0,0,0,0.3));
    z-index: 2;
}

.slider-nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 15px;
    position: absolute;
    bottom: -60px;
}
.slider-nav-btn {
    transform: scale(0.7);
    width: 10px;
    height: 10px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    transition: 0.15s ease-out;
    cursor: pointer;
}
.slider-nav-btn:not(:last-of-type) {
    margin-right: 10px;
}
.slider-nav-btn.active {
    transform: scale(1);
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.5) !important;
}

.slider-nav-btn.active:before {
    background: var(--awb-custom_color_1) !important;
}

.slider-nav-btn:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.15s ease-in-out;
}

.slider-nav-btn.active:before {
    transform: scale(1);
}

.slider-nav-btn:not(.active):hover:before {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1);
}

.custom-slider {
    position: relative;
}

.custom-slider:before {
    pointer-events: none;
    width: 550px;
    height: 550px;
    position: absolute;
    right: 200px;
    bottom: -100px;
    content: "";
    background: url("/wp-content/uploads/2022/03/logo_embled-3.png") center center no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 11;
}

/*.custom-slider .fusion-button {
    outline: 3px solid rgba(255,255,255,0.5) !important;
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}*/

.custom-slider .fusion-button:hover {
    outline-color: rgba(255, 255, 255, 0) !important;
    outline-offset: 15px;
}