/* Arrows */
.slick-prev,
.slick-next{
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 40px;
    line-height: 0.5;

    opacity: 1;
    font-weight:26px;

 color:white;


}

@-webkit-keyframes effect{
  0% {
                background: orange;
                -webkit-background-clip: text;
            }

            25% {
                background: red;
                -webkit-background-clip: text;
            }

            50% {
                background: white;
                -webkit-background-clip: text;
            }

            75% {
                background: orange;
                -webkit-background-clip: text;
            }
}
@-moz-keyframes effect{
    0% {
                background: orange;
                -webkit-background-clip: text;
            }

            25% {
                background: red;
                -webkit-background-clip: text;
            }

            50% {
                background: white;
                -webkit-background-clip: text;
            }

            75% {
                background: orange;
                -webkit-background-clip: text;
            }
}

 @keyframes effect {
            0% {
                background: orange;
                -webkit-background-clip: text;
            }

            25% {
                background: red;
                -webkit-background-clip: text;
            }

            50% {
                background: white;
                -webkit-background-clip: text;
            }

            75% {
                background: orange;
                -webkit-background-clip: text;
            }


  
            100% {
                background: black;
                -webkit-background-clip: text;
            }
        }


.slick-prev
{
    left: 0px;
     margin-right: 0px;

        margin-left: 0px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '‹';
}
[dir='rtl'] .slick-prev:before
{
    content: '›';
}

.slick-next
{
    right: 0px;
     margin-right: 0px;

        margin-left: 0px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -45px;
}
.slick-next:before
{
    content: '›';
}
[dir='rtl'] .slick-next:before
{
    content: '‹';
}
