.tariffs-container {
    max-width: 632px !important;
}

.lato {
    font-family: 'Lato';
}

.tariff-title-page {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    color: #1F201F;
}

/* steps */
.steps {
    margin-bottom: 64px;
}

.steps__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    position: relative;
}

.steps__item {
    max-width: 200px;
    width: 100%;
    height: 128px;
    background: #F9F9F9;
    border-radius: 16px;
    padding: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.steps__item-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.steps__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #636463;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.steps__description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #636463;
}

.steps__item-number {
    position: relative;
    z-index: 0;
    background-color: transparent;
    border-radius: 100%;
    width: 26px;
    height: 26px;
    text-align: center;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.steps__item-number::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background-color: #BABBBA;
    pointer-events: none;
}

.steps__item-number::after {
    content: '';
    position: absolute;
    z-index: -2;
    background-color: #E8E8E8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 100%;
    pointer-events: none;
}


.steps__item-number.active::before {
    background-color: #E87A1B;
}

.steps__item-number.active::after {
    background-color: #FED6B3;
}

.steps__item {
    position: relative;
}


/* tariffs */
.tariffs {
    margin-bottom: 60px;
}

.tariffs__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
}

.tariffs__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px 16px;
    gap: 10px;
    background: #FFFFFF;
    box-shadow: 0px 7px 80px rgba(163, 199, 227, 0.05), 0px 0.57037px 6.51852px rgba(163, 199, 227, 0.0196296), 0px 0.12963px 3.14815px #E2E2E2;
    border-radius: 24px;
    /* max-width: 320px; */
}

.tariffs__item:hover {
    background: #F9F9F9;
}

.tariffs__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #3C403B;
    margin-bottom: 0;
}

.tariffs__short-item {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #A3A1A0;
    margin-bottom: 16px;
    min-height: 48px;
}

.tariffs__price {
    margin-bottom: 10px;
}

.tariffs__price-value {
    position: relative;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
}

.tariffs__price-value::after {
    position: absolute;
    left: 0;
    bottom: -12px;
    content: '';
    background-image: url(../images/icons/price-decor.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    max-height: 16px;
    display: inline-block;
    margin-right: 4px;
}

.tariffs__price-text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #545453;
}

.tariffs__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    padding: 10px 16px;
    gap: 8px;
    max-width: 330px;
    width: 100%;
    height: 40px;
    background: #004276;
    border-radius: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}

.tariffs__button:hover,
.tariffs__button:focus,
.tariffs__button:active {
    background: #00599E;
    color: #FFFFFF;
}

.tariffs__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 6px;
    padding-left: 0;
}

.tariffs__features-item {
    position: relative;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #434343;
    padding-left: 10px;
    list-style: none;
}

.tariffs__features-item::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E87A1B;
    display: inline-block;
    margin-right: 4px;
}

.tariffs__time {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #C1BFBE;
    margin-top: auto;
}

.tariffs__club {
    position: absolute;
    top: -12px;
    right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    max-width: 226px;
    width: 100%;
    height: 32px;
    background: #FFF6F1;
    border: 1px solid #FFECDF;
    border-radius: 64px;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #E87A1B;
}

/* Banner */
.tariffs-banner__content {
    background-image: url(../images/content/tariffs-banner-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #F7F7F7;
    border-radius: 32px;

    display: flex;
    flex-direction: column;
    padding: 30px;
    margin-bottom: 56px;
}

.tariffs-banner__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #111111;
    margin-bottom: 0;
}

.tariffs-banner__description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #9D9D9D;
    margin-bottom: 32px;
}

.tariffs-banner__button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    max-width: 210px;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 32px;
    border: none;
    outline: none;
    cursor: pointer;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #E87A1B;
}

.tariffs-banner__button:hover,
.tariffs-banner__button:focus,
.tariffs-banner__button:active {
    color: #C35B00;
}

/* Clubs */
.clubs {
    background: #F9F9F9;
    border-radius: 16px;
    margin-bottom: 60px;
    padding: 20px;
}

.clubs__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.clubs__header {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #1F201F;
    margin-bottom: 12px;
}

.clubs__item {
    list-style: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    background: #FFFFFF;
    border: 1px solid #FFECDF;
    border-radius: 64px;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: #524941;
    cursor: pointer;
}

.clubs__item:hover,
.clubs__item:focus,
.clubs__item:active {
    background: #FFF6F1;
    border: 1px solid #FED6B3;
    border-radius: 64px;
    color: #C35B00;

}

.clubs__item.active {
    background: #E87A1B;
    color: #FFFFFF;
}

.club__item-icon--color {
    background-image: url(../images/icons/mark-color.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 14px;
    height: 16px;
    margin-right: 8px;
}

.club__item-icon--white {
    background-image: url(../images/icons/mark-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 14px;
    height: 16px;
    margin-right: 11px;
}

.club__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    padding: 12px 18px;
    background: #FFFFFF;
    border-radius: 16px;
}

.club__time {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #1F201F;
}

.club__phone {
    display: flex;
    align-items: center;
    gap: 9px;
}

.club__phone-value {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #1F201F;
}

/* Tariff detail */
.tariff-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 64px;
}

.tariff-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px 16px;
    background: #FFFFFF;
    box-shadow: 0px 7px 80px rgba(163, 199, 227, 0.05), 0px 0.57037px 6.51852px rgba(163, 199, 227, 0.0196296), 0px 0.12963px 3.14815px #E2E2E2;
    border-radius: 24px;
    position: relative;
}

.tariff-content__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #3C403B;
}

.tariff-content__short-description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #A3A1A0;
    margin-bottom: 20px;
}

.tariff-content__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.tariff-content__features-item {
    position: relative;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #434343;
    padding-left: 10px;
    list-style: none;
}

.tariff-content__features-item::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-36%);
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E87A1B;
    display: inline-block;
    margin-right: 4px;
}

.tariff-content__time {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: #C1BFBE;
}

.tariff-content__club {
    position: absolute;
    top: -12px;
    right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    max-width: 226px;
    width: 100%;
    height: 32px;
    background: #FFF6F1;
    border: 1px solid #FFECDF;
    border-radius: 64px;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #E87A1B;
}

/* Tariff price */
.tariff-price__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tariff-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px 24px;
    background: #FFFFFF;
    box-shadow: 0px 7px 80px rgba(163, 199, 227, 0.05), 0px 0.57037px 6.51852px rgba(163, 199, 227, 0.0196296), 0px 0.12963px 3.14815px #E2E2E2;
    border-radius: 32px;
    min-height: 300px;
    margin-bottom: 16px;
}

.tariff-price__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #3C403B;
    margin-bottom: 20px;
}

.tariff-price__price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 8px;
}

.tariff-price__price:nth-child(3) {
    margin-bottom: 16px;
}

.tariff-price__text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #A3A1A0;
}

.tariff-price__value {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #1F201F;
}

.tariff-price__faq {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    background: #F2FAFF;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 16px;
}

.tariff-price__faq-button {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #00376A;
    border: none;
    outline: none;
    background: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.tariff-price__faq-button:hover,
.tariff-price__faq-button:focus,
.tariff-price__faq-button:active {
    border: none;
    outline: none;
    background: none;
}

/* FAQ — скрываем контент по умолчанию и вращаем шеврон при открытии */
.tariff-price__faq-content {
    display: none;
}

.tariff-price__faq.open .tariff-price__faq-content {
    display: block;
}

.tariff-price__faq-button img:last-child {
    transition: transform 0.2s ease-in-out;
    transform: rotate(0deg);
}

.tariff-price__faq.open .tariff-price__faq-button img:last-child {
    transform: rotate(180deg);
}

.tariff-price__faq-content-title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #00376A;
    margin-bottom: 6px;
}

.tariff-price__faq-list {
    padding: 0;
    margin-bottom: 6px;
}

.tariff-price__faq-item {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #00376A;
    list-style: none;
}

.tariff-price__faq-item::before {
    content: '•';
    margin-right: 4px;
}

.tariff-price__faq-ps {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #00376A;
}

.tariff-price__first-pay {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.tariff-price__first-pay-title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #1F201F;
}

.tariff-price__first-pay-value {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #1F201F;
}

.tariff-price__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;

    max-width: 308px;
    width: 100%;
    height: 40px;

    background: #004276;
    border-radius: 32px;
    border: none;
    outline: none;

    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}

.tariff-price__button:hover,
.tariff-price__button:focus,
.tariff-price__button:active {
    background: #00599E;
    color: #FFFFFF;
}

/* FAQ */
.tariffs-faq__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-size: 28px;

    text-align: center;

    color: #1F201F;
    margin-bottom: 40px;
}






/*ADAPTIVE*/
/* EXTRA LARGE */
@media only screen and (max-width : 1200px) {}

/* LARGE */
@media only screen and (max-width : 1080px) {}

/* TAB */
@media only screen and (max-width : 992px) {

    /* tariffs */
    .tariffs__list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Banner */
    .tariffs-banner__title {
        max-width: 280px;
    }

    .tariffs-banner__description {
        max-width: 260px;
    }
}

/* MEDIUM */
@media only screen and (max-width : 768px) {

    /* tariffs */
    .tariffs__list {
        gap: 30px 15px;
    }

    /* Banner */
    .tariffs-banner__content {
        background-position: 200px;
    }
}

/* PHONE*/
@media only screen and (max-width : 576px) {
    .tariff-title-page {
        font-size: 32px;
    }

    /* Steps */
    .steps {
        margin-bottom: 25px;
    }

    .steps__list {
        flex-direction: column;
        gap: 12px;
    }

    .steps__item {
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        height: 78px;
    }

    .steps__item-link {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
    }

    .steps__item-number {
        order: -1;
    }

    /* tariffs */
    .tariffs__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tariffs__short-item {
        min-height: 0;
    }

    .tariffs-banner__title {
        margin-bottom: 10px;
    }

    .tariffs-banner__content {
        background-image: url(../images/content/tariffs-banner-bg-mob.png);
        background-position: right;
    }

    /* Tariff detail */
    .clubs {
        margin-bottom: 25px;
    }

    .tariff-body {
        grid-template-columns: 1fr;
    }

    .club__time {
        align-items: flex-start;
    }

    .club__content {
        gap: 10px;
    }

    .tariff-price {
        min-height: auto;
    }

    .tariff-price__button {
        max-width: 100%;
    }
}

@media only screen and (max-width : 420px) {

    /* Banner */
    .tariffs-banner__content {
        background-position: 85px;
    }
}

/* MINI */
@media only screen and (max-width : 374px) {}