.sentence {
    overflow: hidden;
    border-radius: 4px;
}

.sentence__arrow {
    z-index: 1;
    position: absolute;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 15px;
    border-width: 0;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
}

.sentence__next {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.sentence__prev {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.sentence__wrap {
    position: relative;
}

.sentence__wrap::before {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 265px solid #0C54A0;
    border-right: 265px solid transparent;
}

.sentence__wrap > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sentence__block {
    z-index: 1;
    position: relative;
    padding: 40px 95px;
}

.sentence__title {
    max-width: 500px;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    line-height: 44px;
    color: #fff;
}

.sentence__btn {
    margin-top: 42px;
    padding: 12px 22px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in, background 0.15s ease-in;
}

.sentence__btn:hover {
    background: #ffffff;
    color: #0C54A0;
}

@media (max-width: 1023px) {
    .sentence__wrap::before {
        border-bottom: 160px solid #0C54A0;
        border-right: 160px solid transparent;
    }

    .sentence__block {
        padding: 30px 65px;
    }

    .sentence__title {
        max-width: 300px;
        font-size: 22px;
        line-height: 28px;
    }

    .sentence__btn {
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .sentence__block {
        padding: 25px 50px;
    }

    .sentence__title {
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }

    .sentence__btn {
        margin-top: 24px;
    }
}
