/* Лист цен на странице хранения  */

.storage-service .subtitle__title {
    margin-bottom: 40px;
}

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

.storage-service-elem {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    color: #222222;
}

.storage-service-elem__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.storage-service-elem__title .text {
    font-size: 24px;
    font-weight: 600;
    color: #222222;
}

.storage-service-elem__price {
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    color: white;
    font-size: 20px;
    background: #222222;
}

.storage-service-elem__whatwedo {

    margin-bottom: 16px;
}

.storage-service-elem__whatwedo li::before {
    content: '';
    display: inline-block;
    min-width: 14px;
    /* Ширина маркера */
    min-height: 14px;
    /* Высота маркера */
    background-color: #0B316B;
    /* Цвет маркера */
    border-radius: 50%;
    /* Закругление для круглого маркера */
    margin-right: 10px;
    /* Отступ между маркером и текстом */
    margin-top: 2px;
}

.storage-service-elem__whatwedo li {
    margin-bottom: 14px;
    display: flex;
    align-items: start;
}

.storage-service .global-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    border-radius: 4px;
    margin-top: auto;
}

.storage-service-elem__text {
    margin-bottom: 14px;
}

.storage-service-elem__read-all {
    color: #0B316B;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .storage-service-elem__title {
        flex-direction: column-reverse;
        gap: 14px;
        align-items: start;
    }

    .storage-service__list {
        gap: 10px;
    }

    .storage-service-elem__text {
        font-size: 14px;
    }

    .storage-service-elem {
        padding: 14px;
    }
}

.storage-service {
    /* margin-bottom: 80px; */
}

@media (max-width: 991px) {
    .storage-service__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .storage-service .subtitle__title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .storage-service-elem {
        min-height: 349px;
    }

    .storage-service__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .storage-service .subtitle__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Блок дополнительные условия */
.additional-terms {}

.additional-terms .subtitle__title {
    margin-bottom: 40px;
}

.additional-terms__elem {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.additional-terms__count {
    background: #0B316B;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.additional-terms__count span {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.additional-terms__text {
    font-size: 18px;
    color: #222222;
}

.additional-terms__price {
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    font-size: 20px;
    background: #222222;
}

@media (max-width: 600px) {
    .additional-terms__elem {
        margin-bottom: 20px;
    }

    .additional-terms__text {
        font-size: 16px;
    }
}

.global-button--blue:hover {
    background: #173D77;
    transition: all ease 0.3s;

}

.storage-service-elem__read-all:hover {
    color: #173D77;
    transition: all ease 0.3s;
}