#how-work-block {
    display: flex;
    gap: 30px;
}
.how-work-contact__wrapper {
    position: sticky;
    top: 160px;
}
.how-work-block__left {
    width: 32%;
}
.how-work-contact .title-block {
    margin-bottom: 30px;
}
.how-work-contact {
    background-color: var(--background-secondary);
    border: 1px solid var(--background-thirdly);
    border-radius: 30px;
    padding: 30px;
}
.how-work-contact__title {
    font-size: var(--font-size-18-24);
    font-weight: 500;
    line-height: 100%;
    color: var(--head-primary);
    margin-bottom: 15px;
}
.header-callback__text--wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.how-work-contact-phone {
    color: var(--head-primary);
    font-size: var(--font-size-18-24);
    line-height: 100%;
    font-weight: 500;
    transition: all .3s;
    margin-bottom: 5px;
}
.how-work-contact-phone:hover {
    color: var(--primary);
}
.how-work-contact-phone__text {
    color: var(--main-text-primary);
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
}
.how-work-contact-bottom {
    display: flex;
    gap: 66px;
}
.how-work-contact-bottom-data__name {
    color: var(--main-text-primary);
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px;
}
.how-work-contact-bottom-data__value {
    font-size: var(--font-size-16-20);
    font-weight: 500;
    line-height: 100%;
    color: var(--head-primary);
    transition: all .3s;
}
.how-work-contact-bottom-data__value:hover {
    color: var(--primary);
}
.how-work-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.how-work-item {
    background-color: var(--background-secondary);
    border: 1px solid var(--background-thirdly);
    border-radius: 30px;
    padding: 30px;
}
.how-work-item__number {
    color: var(--main-text-thirdly);
    font-size: var(--font-size-16-20);
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 25px;
}
.how-work-item__title {
    font-size: var(--font-size-18-24);
    line-height: 100%;
    font-weight: 500;
    color: var(--head-primary);
    margin-bottom: 15px;
}
.how-work-item__text {
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--main-text-primary);
}
.how-work-item__text span {
    color: var(--primary);
    text-transform: uppercase;
}
.how-work-block__right {
    width: 66.3%;
}
@media (max-width: 1200px) {
    .how-work-contact-bottom {
        gap: 15px;
    }
    #how-work-block {
        gap: 15px;
    }
    .how-work-contact {
        padding: 15px;
    }
    .how-work-item {
        padding: 15px;
    }
    .how-work-list {
        gap: 15px;
    }
}
@media (max-width: 1024px) {
    #how-work-block {
        flex-direction: column;
    }
    .how-work-block__left,
    .how-work-block__right {
        width: 100%;
    }
    .header-callback__text--wrapper {
        margin-bottom: 15px;
    }
    .how-work-item__number {
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .how-work-list {
        grid-template-columns: 1fr;
    }
}