* {
    font-family: 'Ubuntu', sans-serif;
}

.wrapper {
    max-width: 1316px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
}

.title {
    font-weight: 700;
    font-size: 38px;
    line-height: 120%;
    color: #000;
    max-width: 910px;
    width: 100%;
    margin-bottom: 50px;
}

.step-1 .title {
    max-width: 823px;
}

.text {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
}

.green_text {
    font-weight: 500;
    color: #3acf84;
}

.grey_fon {
    border-radius: 25px;
    background: #f0f4f8;
    padding: 50px;
}

.grid_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 70px;
}

.grid_item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.grid_item-image {
    max-width: 180px;
    width: 100%;
}

.grid_item-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    color: #000;
    max-width: 340px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row.short {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.row .text {
    max-width: 850px;
    margin-bottom: 0;
}

.red_text {
    font-weight: 700;
    color: #ff3222;
}

.btn_black {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: left;
    padding: 14px 25px;
    max-width: 250px;
    width: 100%;
    background-image: url(../image/button_black.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.btn_black.next {
    background-image: url("../image/btn-next.webp");
    background-position: left;
}

.p-relative {
    position: relative;
}

.step_count {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 0;
    right: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
}

.red_counter {
    border-radius: 100%;
    background: #ff3222;
    text-align: center;
    place-content: center;
    width: 45px;
    height: 45px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
}

.step_progress {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 42px;
}

.progress_bar {
    width: 100%;
    height: 16px;
    background: #f0f4f8;
    border-radius: 25px;
}

.progress_fill {
    background: #ff3222;
    height: 16px;
    border-radius: 25px;

}

.prize {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #ff3222;
}

.form_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mb-2 {
    margin-bottom: 20px;
}

.form_label {
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.green_text.fw {
    font-weight: 800;
}

.form_input-text {
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: rgba(0, 0, 0, 0.85);
    padding: 10px 12px;
    border: 1px solid #40a9ff;
    max-width: 350px;
    width: 100%;
}

.form_input-text:focus {
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.form_label-radio {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    color: #000;
}

.form_label-radio img {
    max-width: 100px;
}

.btn_black.get {
    padding-left: 20px;
}

.block_wrapper {
    display: flex;
    align-items: end;
    padding-top: 40px;
    gap: 40px;
}

.block_wrapper img {
    max-width: 190px;
}

.info_block {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.info_block-text {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #000;
    max-width: 600px;
}
.info_block-list{
    padding-left: 40px;
}
.info_block-item{
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: #000;
    list-style: disc;
}

.link_wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 125px;
}

.link_wrapper .link_wrapper-item {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    text-decoration: underline;
    color: #0f66e9;
}
.none{
    display: none;
}
@media screen and (max-width: 900px){
    .grid_block{
        grid-template-columns: 1fr;
    }
    .block_wrapper{
        flex-direction: column;
        align-items: start;
    }
}
@media screen and (max-width: 600px){
    .link_wrapper{
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        text-align: center;
    }
    .row.short{
        flex-direction: column;
    }
    .info_block{
        align-items: center;
        gap: 20px;
    }
    .block_wrapper{
        align-items: center;
        text-align: center;
    }
    .grey_fon{
        padding: 10px;
        text-align: center;
        margin-bottom: 20px;
    }
    .info_block-item{
        list-style: none;
    }
    .title{
        font-size: 26px;
        margin-bottom: 20px;
    }
    .text{
        font-size: 18px;
    }
    .grid_item-text{
        font-size: 16px;
        text-align: start;
    }
    .grid_item-image{
        max-width: 70px;
    }
    .row{
        flex-direction: column;
        gap: 20px;
    }
    .step_count{
        top: -55px;
    }
    .form_label-radio{
        font-size: 18px;
    }
}