.history__wrap {
    max-width: 1184px;
    margin: 0 auto;
}

.history-nav-item  {
    padding: 0 17px;
}

.history-count {
    width: 100px;
    padding-top: 34px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.js-history-nav {
    position: relative;
}

.js-history-nav::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: #4A2876;
    border-radius: 4px;
    left: 0;
    top: 0;
}

.slick-current .history-count::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var( --lime );
    border-radius: 4px;
    left: 0;
    top: 0;
}

.history__flex {
    position: relative;
    z-index: 1;
}

.history__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: 20px;
}

.history__bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); 
  -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px); 
}

.history__headlines {
    padding-bottom: 30px;
}

.js-history-for {
    margin-bottom: 40px;
}

.history__image {
    height: 300px;
}

.history__image img {
    border-radius: 20px;
}

.history__details {
    padding: 20px;
}

.history__number {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 10px 0;
}

h3.history__tilte {
    color: var( --white );
    margin-bottom: 10px;
}

.js-history-for .slick-arrow {
    top: 150px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    background: #5A4179;
    border-radius: 50%;
    color: var( --white );
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-history-for .slick-prev {
    left: 10px;
}

.js-history-for .slick-next {
    right: 10px;
}

.js-history-for .slick-arrow::before {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
    padding: 0 5px;
}

.history__details p {
    font-size: 16px;

    & a {
        color: var( --lime );
    }
}

@media (min-width: 1200px) {
    .history-count {
        width: 136px;
    }

    .history__headlines {
        max-width: 1032px;
        margin: 0 auto;
        padding-bottom: 75px;
    }

    .history__flex {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .history__image {
        width: 576px;
        height: 517px;
    }

    .history__details {
        width: calc(100% - 576px);
        padding: 20px 32px;
    }

    .js-history-for .slick-arrow {
        top: 50%;
        margin-top: 0;
        transform: translate(0, -50%);
        width: 75px;
        height: 75px;
        background: rgba(255,255,255,0.25);
        border: 1px solid rgba(255,255,255,0.25);
    }

    .js-history-for .slick-arrow::before {
        font-size: 27px;
    }

    .js-history-for .slick-prev {
        left: -55px;
    }

    .js-history-for .slick-next {
        right: -55px;
    }

    .js-history-for .slick-arrow:hover {
        background: var( --lime );
        border-color: var( --lime );
        color: #000;
        
    }

    .history__number {
        padding: 0 0 15px 0;
    }
    
    h3.history__tilte {
        margin-bottom: 20px;
    }
}

@media (min-width: 1367px) {
    .js-history-for .slick-prev {
        left: -75px;
    }

    .js-history-for .slick-next {
        right: -75px;
    }

    
}