/* slider */

.slider-wrp {
    height: 151px;
    width: 950px;
    margin: 0 auto;
}

.slider {
    width: 351px;
    height: 117px;
    position: relative;
    left: 505px;
    top: 10px;
}

.slide {
    background: url(../images/slider__bg.png) no-repeat;
    width: 351px;
    height: 117px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 5px 15px;
    box-sizing: border-box;
    perspective: 500px;
}

.slide__title {
    color: rgb(235, 181, 69);
    font-family: "PT Sans", sans-serif;
    font-size: 21px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(5, 5, 5, 0.75), 0 0 14px rgba(255, 133, 0, 0.57), 0 0 14px rgba(255, 60, 0, 0.77);
    text-transform: uppercase;
    margin: 2px 0;
    transform: translateY(-10px) scale(0);
    transition: .6s all;
    transition-delay: .2s;
}

.slick-active .slide__title {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.slide__content {
    color: #b5b5b5;
    font-size: 18px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .51);
    margin: 2px 0;
    transform: rotateX(90deg);
    opacity: 0;
    transition: .8s all;
    transition-delay: .4s;
    transform-origin: center bottom;
}

.slick-active .slide__content {
    opacity: 1;
    transform: rotateX(0deg);
}


/* arrows */

.slider .slick-next {
    right: -15px;
    z-index: 5;
}

.slider .slick-prev {
    left: -15px;
    z-index: 5;
}

.slider .slick-prev,
.slider .slick-next {
    width: 39px;
    height: 53px;
}

.slider .slick-prev::before {
    content: '';
    display: block;
    width: 39px;
    height: 53px;
    background: url(../images/slider__arrow_left.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.slider .slick-next::before {
    content: '';
    display: block;
    width: 39px;
    height: 53px;
    background: url(../images/slider__arrow_right.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.slider .slick-prev:hover:before,
.slider .slick-next:hover:before {
    opacity: 1;
}


/* dots */

.slider .slick-dots {
    bottom: -5px;
}

.slider .slick-dots li {
    width: 13px;
    height: 13px;
}

.slider .slick-dots li button {
    width: 13px;
    height: 13px;
    padding: 0;
}

.slider .slick-dots li button:before {
    content: "";
    background: url(../images/slider__dot.png) no-repeat;
    width: 13px;
    height: 13px;
    opacity: 1;
}

.slick-active button:after {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(-5px, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    content: "";
    background: url(../images/slider__dot_active.png) no-repeat;
    width: 21px;
    height: 21px;
    opacity: 1;
}

.slider .slick-dotted.slick-slider {
    margin-bottom: 0;
}