.Modern-Slider .slick-dots li.slick-active button,
.slick-arrow:hover {
    /* background: #fde428 */
    background: #82020b;
}

.img-fill {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    z-index: 3
}

.NextArrow,
.PrevArrow {
    background: #56757f;
    height: 50px;
    margin-top: -25px;
    top: 50%;
    width: 50px;
    font-size: 24px;
    transition: .4s;
    opacity: .2
}

.img-fill img {
    min-height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none
}

.Modern-Slider .item .img-fill {
    background: #000
}

.Modern-Slider .item .img-fill .info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 52, 69, .85)
}

.Modern-Slider .item {
    z-index: -10
}

.welcometext {
    color: #fff
}

.Modern-Slider .item a.read-btn {
    animation: 1s 1.8s both slideInleft
}

.Modern-Slider .item a.buy-btn,
.Modern-Slider .item h3.subheadin2 {
    animation: 1s 2s both slideInleft
}

.Modern-Slider .item h3.subheadin1 {
    animation: 1s 1s both slideInleft
}

.Modern-Slider .item h1 {
    animation: 1s 1.5s both slideInleft
}

.Modern-Slider .item.slick-active a.read-btn {
    animation: 1s 2.5s both fadeInUp
}

.Modern-Slider .item.slick-active a.buy-btn {
    animation: 1s 3s both fadeInUp
}

.Modern-Slider .item.slick-active h1 {
    animation: 1s 1s both fadeInUp
}

.Modern-Slider .item.slick-active h1.hero-subtitle,
.Modern-Slider .item.slick-active p {
    animation: 1s 1.5s both fadeInUp
}

.PrevArrow {
    border: 1px solid #56757f;
    border-radius: 1px;
    color: #003445;
    left: 2%;
    line-height: 50px;
    position: absolute;
    z-index: 5
}

.NextArrow {
    border: 1px solid #56757f;
    position: absolute;
    right: 2%;
    text-align: center;
    color: #003445;
    border-radius: 1px
}

.Modern-Slider .slick-dots li {
    display: inline-block;
    margin-right: 10px
}

.Modern-Slider .slick-dots li:last-child {
    margin-right: 0
}

.Modern-Slider .slick-dots li button {
    background: #fff;
    font-size: 0;
    height: 5px;
    width: 30px
}

.Modern-Slider .slick-dots {
    bottom: 7%;
    position: absolute;
    text-align: center;
    width: 100%
}

.slick-arrow:hover {
    border-color: #fde428;
    opacity: 1;
    color: #003445
}

.Modern-Slider .item h3 {
    animation: 1s both fadeInUp
}

.Modern-Slider .item h5 {
    animation: 1s both fadeInDown
}

.Modern-Slider .item.slick-active h3 {
    animation: 1s 1s both fadeInDown
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}