.kiagallery {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
.kiagallery__title {
    text-align: left;
    font: normal normal bold 32px/36px Nunito;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 6px;
}
.kiagallery__text {
    text-align: left;
    font: normal normal normal 16px/18px Nunito;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 26px;
}

/* slider */
#kiagallerySlider {
    width: 1280px;
    height: 190px;
    position: relative;
    overflow: hidden;
}
#kiagallerySlider .slick-track{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#kiagallerySlider .slick-slide {
    background-size: cover !important;
    margin: 0 20px;
    width: 290px;
    height: 190px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}
.kiagallery__content {
    width: 100%;
    height: 100%;
    background-color: #627a91;
    opacity: 0.1;
}
.kiagallery__content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    mix-blend-mode: hue;    
    opacity: 0.4;
}

/* Стрелки */
.kiagallery__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: calc( -80px - 32px) calc(50% - (1400px) / 2) 0 calc(50% - (1400px) / 2);
}
/* Стрелка влево */
.kiagallery__slick-prev{
    background: transparent url('../img/arrow.svg') 0% 0% no-repeat padding-box;
    width: 33px;
    height: 33px;
    border: none;
    -webkit-transform: matrix(-1, 0, 0, -1, 0, 0);
        -ms-transform: matrix(-1, 0, 0, -1, 0, 0);
            transform: matrix(-1, 0, 0, -1, 0, 0);
    cursor: pointer;
}
/* Стрелка вправо */
.kiagallery__slick-next{
    background: transparent url('../img/arrow.svg') 0% 0% no-repeat padding-box;
    width: 33px;
    height: 33px;
    border: none;
    cursor: pointer;
}
.kiagallery__arrows-margin {
    height: calc( 112px - 32px);
}