/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

a, button{
    cursor: pointer;
}

.hero-image-slider-container{
    overflow-x: hidden;
}

.hero-image-slider{
    display: -webkit-box;
    position: relative;
}

.hero-container{
    width: 100%;
}

.hero-image {
    height: 635px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.hero-image img.attachment-hero-image,
.hero-image img[class*="attachment-"]{
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.hero-image-overlay{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.hero-inner{
    position: absolute;
    top:50%;
    left: 50%;
    width: 100%;
    padding: 40px 20px;
    z-index: 1;
    font-size: 18px;
    transform: translate(-50%, -50%);
}
.flex-col-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-inner-content{
    width: 100%;
}
.flex-col{
    flex: 1 0 200px;
}

.hero-btns,
.hero-inner-img{
    text-align:center;
}

.pad-10{
    padding:10px;
}

.hero-btns{
    flex: 0 0 250px;
}

.hero-inner p,
.hero-inner a,
.hero-inner span,
.hero-inner label,
.hero-inner button,
.hero-inner h1,
.hero-inner h2,
.hero-inner h3,
.hero-inner h4{
    color: white;
}

.hero-text h1{
    font-size: 45px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-controls {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
}



@media only screen and (min-width: 600px) {

    .hero-inner{
        max-width: 900px;
    }

    .hero-controls {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        display: block;
    }

    .hero-controls .slide-control{
        position: inherit;
        width: 20%;
        max-width: 100px;
    }

    .hero-controls span{
        font-size: 50px;
    }

    .hero-controls span.dashicons{
        width: unset;
        height: unset;
    }

    .hero-controls .slide-control{
        position: inherit;
        cursor: pointer;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .hero-controls .previous-slide{
        left: 0;
    }

    .hero-controls .next-slide{
        right: 0;
    }

}


