.tariff {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 550px;
    width: 100%;
    background: #fce500;
    padding: 24px;
    color: #121212;

}

.tariff--bg-dark {
    background-color: #121212;
}

.tariff__title {
    margin: 0;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
    margin-bottom: 24px;
}

.tariff__description {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 16px;
}

.tariff__sale {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 40px;
    background: #000;
    margin-bottom: 16px;
}

.tariff__sale-text {
    color: #fce500;
    margin: 0;
    font-size: 16px;
}

.tariff__button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 240px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    border: 1px solid transparent;
    border-radius: 57px;
    background-color: #121212;
    color: #fce500;
}

.tariff__button:first-of-type {
    margin-bottom: 10px;
}

.tariff__button--transparent {
    background-color: transparent;
    border-color: #121212;
    color: #121212;
    text-decoration: none;
}

.tariff__button--transparent:hover {
    color: #121212;
}

.tariff__blocks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.tariff__block {
    max-width: 126px;
    width: 100%;
}

.tariff__block-text {
    display: flex;
    height: 150px;
    flex-direction: column;
    justify-content: space-between;
}

.tariff__block-top {
    display: block;
}

.tariff__block-bottom {
    display: block;
    margin-bottom: 20px;
}

.tariff__block-top,
.tariff__block-bottom {
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
}

.tariff__block-middle {
    margin: 0;
    font-weight: 300;
    font-size: 40px;
    line-height: 52px;
}

.tariff__block-img {
    width: 20px;
}

.tariff__block-img img {
    object-fit: contain;
}

.text {
    color: #fce500;
}

.text--bg-yellow {
    background-color: #fce500;
}

.text--color-yellow {
    color: #fce500;
}

.text--color-white {
    color: #fff;
}

.text--color-dark {
    color: #121212;
}

@media screen and (max-width: 991px) {
    .tariff {
        display: flex;
        margin: 0 auto;
    }
}

@media screen and (max-width: 565px) {
    .tariff {
        padding: 12px;
    }
}