.mount-transport {
    padding: 30px;
    border: 2px solid #4d4d4d;
    border-radius: 24px;
}

.mount-transport__title {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mount-transport__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mount-transport__list li {
    position: relative;

    margin-bottom: 22px;
    padding-left: 18px;

    line-height: 1.45;
    color: #333;
}

.mount-transport__list li:last-child {
    margin-bottom: 0;
}

.mount-transport__list li::before {
    content: "•";

    position: absolute;
    top: 0;
    left: 0;

    color: #333;
}

.mount-transport__image img {
    display: block;
    width: 100%;
    height: auto;
}

.mount-transport__images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* адаптив */
@media (max-width: 991px) {
    .mount-transport {
        padding: 20px;
    }

    .mount-transport__list li {
        margin-bottom: 16px;
    }

    .mount-transport__images {
        gap: 16px;
    }
}



.mount-prices__title {
    margin-bottom: 24px;
    text-transform: uppercase;
}

.mount-prices__head {
    padding: 12px 20px;
    margin-bottom: 12px;

    text-align: center;
    text-transform: uppercase;

    background: #d9d9d9;
}

.mount-prices__table {
    border-top: 1px solid #9f9f9f;
}

.mount-prices__row {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 14px 8px;

    border-bottom: 1px solid #9f9f9f;
}

.mount-prices__left {
    flex: 1;
}

.mount-prices__price {
    min-width: 220px;

    text-align: right;
    white-space: nowrap;
}

.mount-prices__price div + div {
    margin-top: 8px;
}

.mount-prices__name {
    margin-bottom: 4px;
    text-transform: uppercase;
}

.mount-prices__name span {
    text-transform: none;
}

.mount-prices__desc {
    line-height: 1.4;
    color: #444;
}

.mount-prices__list {
    margin: 6px 0 0;
    padding-left: 18px;
}

.mount-prices__list li {
    margin-bottom: 4px;
    line-height: 1.4;
}

.mount-prices__list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mount-prices__row {
        flex-direction: column;
        gap: 12px;
    }

    .mount-prices__price {
        min-width: 100%;
        text-align: left;
    }
}


.mount-note {
    margin-top: 24px;

    color: #ff0000;
    line-height: 1.4;
}

.mount-note p {
    margin: 0 0 6px;
}

.mount-note p:last-child {
    margin-bottom: 0;
}