.s-breakdown__title {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 500;
    color: #0D1828;
}

.s-breakdown__block {
    color: #0D1828;
    margin-bottom: 40px;
}

.s-breakdown__block:last-child {
    margin-bottom: 0;
}

.s-breakdown__block-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.s-breakdown__list {
    gap: 20px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.breakdown-card {
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 77px;     
    background: #F5F9FF;
    border-radius: 10px;
    padding: 20px 15px;
    color: #0D1828;
}

@media (hover: hover) {
    .breakdown-card:hover .breakdown-card__title {
        color: #00ACEC;
    }
}

.breakdown-card__img-c {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    margin-right: 16px;
	display: flex;
	align-items: center;
}

.breakdown-card__img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.breakdown-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.breakdown-card__title {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 18px;
    margin-right: 16px;
    transition: all .3s;
}

.breakdown-card__price {
    flex: 0 0 auto;
    white-space: nowrap;
    margin-left: auto;
    text-align: right;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}

@media (max-width: 1099px) {
    .s-breakdown__list {
        gap: 20px 16px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .s-breakdown__list {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none; 
    }

    .s-breakdown__list::-webkit-scrollbar {
        display: none;
    }

    .s-breakdown__item {
        width: 260px;
        flex: 0 0 auto;
    }

    .breakdown-card {
        padding: 15px 10px 15px 15px;
        flex-direction: column;
        min-height: 130px;
        align-items: flex-start;
    }

    .breakdown-card__img-c {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .breakdown-card__info {
        width: 100%;
        flex: 0 0 auto;
        align-items: flex-start;
    }

    .breakdown-card__title {
        margin-right: 10px;
    }

    .breakdown-card__price {
        font-size: 13px;
        line-height: 1.2;
    }
}