.wa-slider .owl-dots{
    bottom: 20px;
    @include mq('md') {
        bottom: 30px;
    }
    @include mq('lg') {
    bottom: 50px;
    }
}

.wa-slider{
    .owl-nav{
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: 0;
        transition: opacity .2s ease-in-out;


        >div{
            font-size: 3.4rem;
            flex: 0 0 60px;
            height: 60px;
            width: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            @include mq('xl') {
                flex: 0 0 30%;
            }
        }
    }

    &:hover .owl-nav{
        opacity: 1;
    }
    
}
.featured-area-2{
    .toucan-welcome-slider{
        padding-bottom: 50px;
    }
    .owl-dots{
        bottom: 35px;
        @include mq('md') {
            bottom: 60px;
        }
    }
}


//Blog Layouts
.toucan-post{
    .toucan-button-text{
        position: relative;
        z-index: 40;
    }
}
.toucan-post-layout-a{
    .entry-media a{
        height: 100%;
        display: 100%;
        img{
            object-fit: cover;
            height: 100%;
        }
    }
}
.toucan-post-layout-a,
.entry-category-large{
    .entry-category a{
        font-size: 1.2rem;
        @include mq('md') {
            font-size: 1.4rem;
        }
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 2px;
    }
}
.toucan-post-layout-b{
    .entry-category a{
        font-size: 1.2rem;
        @include mq('md') {
            font-size: 1.3rem;
        }
        letter-spacing: 1px;
    }   
}
.toucan-post-layout-c,
.toucan-post-layout-d{
    .entry-meta,
    .entry-meta a{
        font-size: 1.2rem;
    }
}

//Welcome
.wa-set-padding{
    padding-top: 40px;
    padding-bottom: 20px;
    @include mq('md') {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    @include mq('lg') {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    @include mq('xl') {
        padding-top: 120px;
        padding-bottom: 90px;
    }
}

//Featured

.featured-area-3 .onsale-large .onsale,
.featured-area-4 .onsale-large .onsale{
    transform: translate(-50%,-50%);
    left: 0;
    position: absolute;
    top: 50%;
}
.featured-area-3 .entry-image img,
.featured-area-4 .entry-image img{
    width: 100%;
}
.featured-area-3,
.featured-area-4{
    .entry-image{
        display: flex;
    }
    .entry-image:after{
        opacity: 0;
        transition: opacity .15s ease-in-out;
    }
    &:hover .entry-image:after{
        opacity: 1;
    }
}