
/* Button */
.button {
    background-color: var(--color-white);
    border: none;
    border-radius: var(--radius-34);
    padding: 12px 32px;
    color: var(--color-black);
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    margin: 0;
}

.button:hover {
    background-color: var(--color-white-80);
}

/* Calculations */
.services {
    padding: 20px 0 20px;
}
.calc {
    display: flex;
    border-bottom: var(--border);
    gap: 40px;
    padding: 20px 0;
}

.calc__text-heading {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--color-white);
    margin-top: 0;
}

.calc__text-p {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-white);
    margin-bottom: 40px;
}

/* comparison */
.list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-point {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-white-80);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison__heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--color-white);
}
.phone {
    color: var(--color-white);
    font-size: 48px;
    
}
/* banner */
.banner-8 {
    border: none;
    border-radius: var(--radius-8);
}

.banner-16 {
    border: none;
    border-radius: var(--radius-16);
}

/* support */
.support__list_aitem {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* section-header, paragraphs */
.section-header {
    text-align: center;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black);
    margin: 0 0 24px;
}

.paragraph {
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-grey-50);
    margin-bottom: 40px;
}

.paragraph_center {
    text-align: center;
}
@media (max-width:1200px) {
    .section-header {
        font-size: 36px;
    }
.paragraph_center {
    text-align: left;
}
}
/* tariffs */
.banner-8__heading {
    font-weight: 800;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--color-black);
    margin: 0 0 16px;
}

.banner-8__p {
    font-family: Inter;
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-grey-50);
    margin: 0 0 34px;
}

.benefit {
    display: inline-block;
    border: none;
    border-radius: var(--radius-8);
    background-color: var(--color-benefit);
    padding: 4px 16px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 16px;
}

.benefit-size {
    font-weight: 800;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0%;
}

.box {
    display: flex;
    flex-direction: column;
    color: var(--color-grey);
    margin-bottom: 40px;
}

.box__line {
    display: grid;
    grid-template-columns: 175px 120px;
    padding: 16px 0;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: 0%;
}

.box__price {
    border-radius: var(--radius-8);
    background-color: var(--color-yellow);
    padding: 8px 16px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-left: -16px;
}

@media (max-width: 500px) {

.box__line {
    grid-template-columns: 170px 100px;
}
}