/*==========================================================
    1.   IMPORT FILES
==========================================================*/

/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,300);

/*==========================================================
    2.   MAIN
==========================================================*/

.img-slider {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.img-slider img {
    object-fit: cover !important; 
    min-height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
    width: 100%;
}

.slick-slide {
    float: left;
    margin: 0;
    padding: 0;
}

.hero-slider .item .img-slider {
    height: 100vh;
    background: #000;
}

.hero-slider .item .img-slider .slider-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(255,255,255,.3);
    line-height: 100vh;
    text-align: center;
}

.hero-slider .item .slider-content > div {
    display: inline-block !important;
    vertical-align: middle;
}

.hero-slider .NextArrow {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,.5);
    border: 0 none;
    margin-top: -22.5px;
    text-align: center;
    font: 20px/45px FontAwesome;
    color: #FFF;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    z-index: 5;
}

.hero-slider .NextArrow:before {
    content: '\f105';
}

.hero-slider .PrevArrow {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,.5);
    border: 0 none;
    margin-top: -22.5px;
    text-align: center;
    font: 20px/45px FontAwesome;
    color: #FFF;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    z-index: 5;
}

.hero-slider .PrevArrow:before {
    content: '\f104';
}

.hero-slider .NextArrow:hover, .hero-slider .PrevArrow:hover {
    background: rgba(0,0,0,.8);
}

.hero-slider .slick-dots {
    position: absolute;
    height: 5px;
    background: rgba(255,255,255,.2);
    bottom: 0px;
    width: 100%;
    left: 0px;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.hero-slider .slick-dots li button {
    display: none;
}

.hero-slider .slick-dots li {
    float: left;
    width: 0px;
    height: 5px;
    background: #212121;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.hero-slider .slick-dots li.slick-active {
    width: 100%;
    -webkit-animation: ProgressDots 11s both;
    animation: ProgressDots 11s both;
}

.hero-slider .item h1 {
    color: #000 !important;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    -webkit-animation: fadeOutRight 1s both;
    animation: fadeOutRight 1s both;
    margin-bottom: 30px;
    padding: 0;
    left: 0;
}

.hero-slider .item h1 span {
    background: #33af60;
    color: #FFF;
    font-family: 'Josefin Sans',sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 38px;
    font-style: normal;
    letter-spacing: 4px;
    text-transform: uppercase !important;
    margin-bottom: 30px;
    padding: 8px 0 0 14px;
    left: 0;
}

@media screen and (max-width: 1100px) {
    .hero-slider .item h1, .hero-slider .item h1 span {
        font-size: 20px;
        margin: 20px 0;
        line-height: 42px;
        text-align: center !important;
    }

    .hero-slider .item h1 span {
        padding: 4px 0 2px 16px;
    }

    .hero-slider .NextArrow, .hero-slider .PrevArrow {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider .NextArrow, .hero-slider .PrevArrow {
        display: none !important;
    }
}

.hero-slider .heading-line-left {
    margin: 0 0 20px;
    margin-left: -7%;
    -webkit-animation: fadeOutLeft 1s both;
    animation: fadeOutLeft 1s both;
}

.hero-slider .item.slick-active h1 {
    -webkit-animation: fadeInDown 1s both 1s;
    animation: fadeInDown 1s both 1s;
}

.hero-slider .item.slick-active h5 {
    -webkit-animation: fadeInLeft 1s both 1.5s;
    animation: fadeInLeft 1s both 1.5s;
}

.hero-slider .item.slick-active .heading-line-left {
    -webkit-animation: fadeInLeft 1s both 1.5s;
    animation: fadeInLeft 1s both 1.5s;
}

.hero-slider .item.slick-active {
    -webkit-animation: Slick-FastSwipeIn 1s both;
    animation: Slick-FastSwipeIn 1s both;
}

.hero-slider {
    background: #000;
}

@-webkit-keyframes ProgressDots {
      from {
        width:0px;
      }
      to {
        width:100%;
      }
}

@keyframes ProgressDots {
      from {
        width: 0px;
      }
      to {
        width: 100%;
      }
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,.slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

/*==========================================================
    3.   SELECTED TEXT
==========================================================*/

::selection {
    color: #FFF;
    background: #33af60 !important;
}

::-moz-selection {
    color: #FFF;
    background: #33af60 !important;
}