.how-work-request {
    margin-bottom: 109px;
}

@media screen and (max-width: 1024px) {
    .how-work-request {
        margin-bottom: 34px;
    }
}

.how-work-request__row {
    padding: 40px 52px;
    border-radius: 24px;
    border: 1px solid rgba(100, 100, 102, 0.50);
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .how-work-request__row  {
        padding: 32px 16px;
    }
}

.how-work-request__inner>*:not(:last-child) {
    margin-bottom: 40px;
}

.how-work-request__inner {
    max-width: 888px;
    margin-inline: auto;
}

.how-work-request__left-column>*:not(:last-child) {
   margin-bottom: 16px;
}

.how-work-request__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1024px) {
    .how-work-request__title {
        font-size: 24px;
    }
}

.how-work-request__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-work-request__divider {
    margin-block: 22px;
}

.how-work-request__divider svg {
    display: block;
    max-width: 100%;
}

.how-work-request__right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 47px;
}

@media screen and (max-width: 767px) {
    .how-work-request__right-column {
        grid-template-columns: 1fr;
        gap: 10px 24px;
    }
}

.how-work-request__btn,
.how-work-request__link {
    padding: 14px 16px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 105.735%;
    border: 1px solid #BDD3FA;
}

@media screen and (max-width: 1024px) {
    .how-work-request__btn,
    .how-work-request__link  {
        padding-block: 6px;
    }
}

.how-work-request__btn {
    color: #000;
    background: #BDD3FA;
    text-decoration: none;
}

.how-work-request__btn:hover,
.how-work-request__btn:focus,
.how-work-request__btn:focus-visible,
.how-work-request__btn:visited {
    text-decoration: none;
}

.how-work-request__link {
    color: #BDD3FA;
    text-decoration: none;
    background-color: transparent;
}

.how-work-request__btn-icon,
.how-work-request__link-icon {
    width: 30px;
    height: 30px;
    padding: 8px;
    border-radius: 2px;
    border: 1px solid #000;
    display: block;
}

.how-work-request__btn-icon {
    border: 1px solid #000;
}

.how-work-request__link-icon {
    border: 1px solid #BDD3FA;
}

.how-work-request__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: inherit;
}

.how-work-request__image img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

@media screen and (max-width: 1024px) {
    .how-work-request__image img {
        object-position: left;
    }
}