
.large-text {
    font-size: 36px;

    @media(max-width: 576px) {
        font-size: 30px;
    }
}
.medium-text {
    font-size: 20px;
}
.small-text {
    font-size: 18px;
}
.fw-600 {
    font-weight: 600;
}
.orange-text {
    color: rgba(255, 137, 6, 1);
}

/* Стилизация списков */
ul {
    /* list-style: none; */
    /* padding-left: 0; */
}
ul li:before {
    /* content: "•"; */
    /* font-size: 120%; */
    /* padding-right: 10px; */
    /* margin-top: 20px; */
}

/* Кнопки предыдущая и следующая*/
.step {
    font-size: 16px;
    font-weight: 500;
    border: 1px solid white;
    padding: 1em 1.5em;
    @media(max-width: 576px) {
        justify-content: center;
    }
}
.step:hover {
    border: 1px solid rgba(255, 169, 39, 1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 66px;
    font-weight: 600;
}
.step img {
    @media(max-width: 576px) {
        display: none;
    }
}

/* Основной блок */
.content-card {
    border-radius: 24px 24px 0 0;
    background-color: white;
}
.grey-bottom {
    background-color: #F9FAFC;
    border-radius: 24px;
    padding-bottom: 35px;
    box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.14);
}

.link {
    color: inherit;
    text-decoration: none;
}