@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}


/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    margin-top: -66px;

    display: block;

    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    outline: none;

    border: 2px solid rgb(29, 45, 97);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 132px;
    height: 132px;
  }

  
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    outline: none;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    content: '';
    width: 34px;
    height: 56px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 56'%3E%3Cpath fill-rule='evenodd' stroke='rgb(29, 45, 97)' stroke-width='4px' stroke-linecap='round' stroke-linejoin='miter' fill='none' d='M26.294,51.216 L2.073,26.994 L26.294,2.770 '/%3E%3C/svg%3E") no-repeat center center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-next:before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 56'%3E%3Cpath fill-rule='evenodd' stroke='rgb(29, 45, 97)' stroke-width='4px' stroke-linecap='round' stroke-linejoin='miter' fill='none' d='M5.706,2.786 L29.927,27.005 L5.706,51.230 '/%3E%3C/svg%3E");
}

.slick-prev
{
    left: -190px;
}
.slick-next
{
    right: -190px;
}


/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 30px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
    border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li.slick-active button
{
    background: #1d2d61;
}
