.slider-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content:center;
    width: 100%;
    border-radius: 16px;
}
.slider-block .slick-slider {
    width: 100%;
}
.slider-block .slick-list {
    border-radius: 16px !important;
}
.slider-block .slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-height: 360px;
    position: relative;
}
.slider-block .slide img {
    max-width: 100%;
    margin: auto 0;
    min-height: 200px;
}
.slider-block .text_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 576px) {
    .slider-block .text_block {
        width: 90%;
    }
}
.slider-block .text_block .title-text {
    margin: 0;
    padding: 0 15px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    pointer-events: auto;
}

.slider-block .text_block .text {
    width: 80%;
    padding: 10px 0;
    font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    font-size: 16px;
    color: #fff;
    pointer-events: auto;
}

.slider-block .text_block .button-submit {
    width:initial;
    margin: 10px 0;
    pointer-events: auto;
}

@media (max-width: 576px) {
    .slider-block .text_block .title-text {
        font-size: 24px;
    }
    .slider-block .text_block .text {
        font-size: 12px;
        width: 90%;
    }
    .slider-block .text_block .button-submit {
        width:initial;
        font-size: 14px;
        padding: 0 12px;
        min-height: 42px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    .slider-block .text_block .title-text {
        font-size: 24px;
    }
}

.arrows {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: none;
}
.arrows img {
    cursor: pointer;
    pointer-events: auto;
}