.repair-offers {
    width: 100%;
}

.repair-offers__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}

.repair-offers__wrap {
    position: relative;
    padding: 0 46px;
}

.repair-offers__arrow {
    position: absolute;
    top: 124px;
    z-index: 5;
    border: 0;
    background: transparent;
    color: #5b4a54;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.repair-offers__arrow:hover,
.repair-offers__arrow:focus {
    color: #ff1f12;
    outline: none;
}

.repair-offers__arrow--prev {
    left: 0;
}

.repair-offers__arrow--next {
    right: 0;
}

.repair-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.repair-card__image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.repair-card__image img {
    display: block;
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.repair-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 14px 18px;
    background: #6b5864;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
}

.repair-card:hover .repair-card__title {
    background: #5c4a55;
    color: #fff;
}

@media (max-width: 767.98px) {
    .repair-offers__title {
        font-size: 21px;
    }

    .repair-offers__wrap {
        padding: 0 30px;
    }

    .repair-offers__arrow {
        top: 105px;
        font-size: 24px;
    }

    .repair-card__image {
        height: 210px;
        margin-bottom: 20px;
    }

    .repair-card__image img {
        max-height: 210px;
    }

    .repair-card__title {
        min-height: 62px;
        font-size: 16px;
    }
}