// Main Slider Height
.slider-height {
    height: 580px;
    background-repeat:no-repeat ;
    background-position: center center;
    background-size: cover;
    @media #{$lg}{
        height: 580px;
    }
    @media #{$md}{
        height: 580px;
    }
    @media #{$sm}{
        height: 580px;
    }
    @media #{$xs}{
        height:450px;
    }
}
// Another Page
.slider-height2{
    height: 350px;
    background-repeat:no-repeat ;
    background-position: center center;
    background-size: cover;
    @media #{$md}{
        height: 350px;
    }
    @media #{$sm}{
        height: 250px;
    }
    @media #{$xs}{
        height: 250px;
    }
}


// Slider Bg
    .slider-bg1{
        background-image: url(../img/hero/h1_hero1.jpg);
    }
    .slider-bg2{
        background-image: url(../img/hero/h1_hero2.jpg);
    }
    .slider-bg3{
        background-image: url(../img/hero/h1_hero3.jpg);
    }

// Another page bg
    .slider-bg4{
        background-image: url(../img/hero/h2_hero1.jpg);
    }
    .slider-bg5{
        background-image: url(../img/hero/h2_hero2.jpg);
    }


.slider-area{
    background-color: $section_bg1;
    .hero-caption{
        span{
            font-size: 14px;
            line-height: 1.2;
            font-weight: 300;
            color: $heading-color;
            margin-bottom: 20px;
            display: inline-block;
            background: #fff;
            padding: 6px 17px;
            border-radius: 17px;
            @media #{$xs}{
                margin-bottom: 30px;
            }
        }
        h1{
            font-size: 60px;
            font-weight: 400;
            margin-bottom: 34px;
            color: #fff;
            line-height: 1.2;
            @media #{$lg}{
                font-size: 60px;
            }
            @media #{$md}{
                font-size: 50px;
            }
            @media #{$sm}{
                font-size: 35px;
            }
            @media #{$xs}{
                font-size: 35px;
            }
        }

        p{
            color: #fff;
            margin-bottom: 50px;
            font-size: 20px;
            font-weight: 300;
            line-height: 1.5;
            br{
                @media #{$sm}{
                    display: none;
                }
                @media #{$xs}{
                    display: none;
                }
            }
            @media #{$md}{
                margin-bottom: 43px;
                font-size: 21px;
            }
            @media #{$sm}{
                margin-bottom: 43px;
                font-size: 21px;
            }
            @media #{$xs}{
                margin-bottom: 43px;
                font-size: 21px;
            }
        }
        // Another Page
        &.hero-caption2{
            h2{
                
                color:#fff;
                font-size: 50px;
                display: block;
                font-weight: 400;
                line-height: 1.4;
                @media #{$md}{
                    font-size: 43px;
                }
                @media #{$sm}{
                    margin-bottom: 20px;
                }
                @media #{$xs}{
                    font-size: 35px;
                }
            }
            p{
                margin-bottom: 0px;
                color:#fff;
                font-size: 18px;
                line-height: 1.6;
                @media #{$xs}{
                    font-size: 18px;
                }
            }
        }
    }
}

//overly
.hero-overly {
    position: relative;
    z-index: 0;
    &::before {
        position: absolute;
        content: "";
        @extend %overlay1;
        // background-color: rgba(35, 39, 35,.4);
        width: 70%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: -1;
        background-repeat: no-repeat;
    }
}

.hero-overly01 {
    position: relative;
    z-index: 0;
    &::before {
        position: absolute;
        content: "";
        @extend %overlay2;
        // background-color: rgba(35, 39, 35,.4);
        width: 70%;
        height: 100%;
        // left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: -1;
        background-repeat: no-repeat;
    }
}

// Another Hero Page
.slider-area2{
    background-image: url(../img/hero/hero2.png);
	background-repeat: no-repeat;
    background-size: cover;
    .hero-cap{
        @media #{$md}{
            padding-top: 50px;
        }
        @media #{$sm}{
            padding-top: 50px;
        }
        @media #{$xs}{
            padding-top: 50px;
        }
        h2{
            color: #fff;
            font-size: 50px;
            font-weight: 800;
            text-transform: capitalize;
            line-height: 1;
            margin-bottom: 21px;
            @media #{$sm}{
                font-size: 50px;
              }
            @media #{$xs}{
                font-size: 35px;
              }
        }
    }
}



// slick dot style
.dot-style {
    .slick-dots {
        position: absolute;
        text-align: center;
        right:0;
        left: 0;
        bottom: 28px;
        li {
            display: inline-block;
            margin: 0 8px;  
        }
        li.slick-active button::before {
            position: absolute;
            content: "";
            height: 23px;
            width: 23px;
            border: 2px solid #fff;
            left: 49%;
            margin: 0 auto;
            text-align: center;
            top: 50%;
            transform: translateY(-50%) translateX(-50%);
            border-radius: 50%;
            line-height: 25px;
             @include transition(.4s);
        }
        button {
            text-indent: -100000px;
            height: 7px;
            width: 7px;
            line-height: 7px;
            border: 0;
            padding: 0;
            cursor: pointer;
            border-radius: 50%;
            background:#fff ;
        }
    }
}


.dot-style .slick-dots  .slick-active button{
    background: #fff;
    position: relative;
     @include transition(.4s);
}

