/*------------------------------------*\
    
    WebFX Slick Customizations - Global styling for all slider/carousels

    Add custom slider styling to this file if it should be applied to all slick sliders on the site
    Otherwise, put your slider-specific styles in individual block stylesheets

\*------------------------------------*/

.slick-slide img { width: 100%; }
/* Slick Dots */
.slick-dots {
    padding: 0 0 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

/* Overwrite global ul styling */
.page-content ul.slick-dots {
    width: 100%;
    list-style-type: none;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    background-color:#D1CFE2;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    margin-right: 14px;
    transition: all 0.4s ease 0s;
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .slick-dots li {
        width: 12px;
        height: 12px;
        margin-right: 8px;
    }
}

.slick-dots li:before {
    display: none;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots li:after {
    display: none;
}

.slick-dots li:hover,
.slick-dots li.slick-active {
    background-color: #18143E;
}

.slick-dots li:only-child { display: none; }

.slick-dots li button {
    display: none;
    cursor: pointer;
    outline: none;
}

/* Banner Slider */

.banner-slider .slick-dots { bottom: 40px; }

.banner-slider .slick-dots li { background: #fff; }

.banner-slider .slick-dots li:hover,
.banner-slider .slick-dots li.slick-active {
    background-color: #FDBD4D;
}

/* Box Slider */

.brand-slider {  padding: 70px 0px; }

.partner-slider { padding: 50px 0px; }

.box-slider .slick-slide {
    padding: 0px 16px;
    vertical-align: top;
}

.box-slider a { 
    color: #18143E; 
    text-decoration: none;
}

.box-slider h5 {  text-transform: uppercase; }

/* Responsive */
@media (min-width: 992px) {
    .brand-slider .slick-slide { padding: 0px; }
}

/* Preloader affect for your slider */

.js-slider-has-preloader {
    /* Add class to slider to show  */
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    /* Create and upload a loading gif to your image directory */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    /* Update width based on gif size */
    height: 50px;
    /* Update height based on gif size */
    transition: all .5s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}




/* slick-prev,
slick-next */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 10px;
    display: block;
    width: 52px;
    height: 52px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #FFFFFF;
    z-index: 9;
    text-align: center;
    border-radius: 0;
    color: #18143E;
}

.slick-prev {
    right: 65px;
}

.slick-next {
    right: 6px;
}

.slick-prev::before {
    content: "\e90f";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 22px;
    line-height: 52px;
    font-family: 'icomoon' !important;
}

.slick-prev:hover,
.slick-prev:focus {
    color: #fff;
    background: #18143E;
}

.slick-next::before {
    content: "\e908";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 22px;
    line-height: 52px;
    font-family: 'icomoon' !important;
}

.slick-next:hover,
.slick-next:focus {
    color: #fff;
    background: #18143E;
}

/* Only show the 1st slide while your slider is loading
NOTE: .your-slider should be the class that is holding your entire slider.
NOTE: .slide is the class you have on each slide before any js classes are added.
Guru: https://app.getguru.com/card/ixR67EpT/Slick-Slider
*/

.banner-slider .banner-slider-item,
.brand-slider .brand-box {
    display: none;
}

.banner-slider .banner-slider-item:first-child,
.brand-slider .brand-box:first-child {
    display: block;
}

.banner-slider .slick-initialized .slide,
.brand-slider .slick-initialized .slide {
    display: block;
}