.why-us-block__wrapper {
    background-color: var(--second);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}
.why-us-block__wrapper::before {
    content: '';
    width: 230px;
    height: 230px;
    object-fit: contain;
    background-image: url('../../../assets/images/star.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: 23%;
    top: 32%;
    filter: blur(15px);
    opacity: 0.3;
}
#why-us-block .container {
    position: relative;
    z-index: 1;
}
.why-us-block__right {
    max-width: 750px;
    width: 100%;
}
.why-us-block__content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 60px;
}
.why-us-block__image {
    max-width: 330px;
    max-height: 330px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}
.why-us-block-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}
.why-us-block-item__text {
    color: var(--head-secondary);
    font-weight: 400;
    line-height: 120%;
    font-size: var(--font-size-16-20);
    font-family: 'Roboto';
    max-width: 550px;
    padding-left: 40px;
    position: relative;
}
.why-us-block-item__text::before {
    content: '';
    width: 20px;
    height: 20px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../../../assets/images/star.svg');
}
.why-us-block-item__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.why-us-block__advantages {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.why-us-block-advantage__name {
    color: var(--main-text-secondary);
    font-size: var(--font-size-16-20);
    line-height: 120%;
    font-weight: 400;
    font-family: 'Roboto';
}
.why-us-block-advantage__value {
    color: var(--head-secondary);
    font-size: var(--font-size-30-200);
    line-height: 100%;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Roboto Condensed';
}
.why-us-block-advantage {
    width: 50%;
}
@media (max-width: 1024px) {
    .why-us-block__content {
        flex-direction: column;
    }
    .why-us-block__right {
        max-width: 100%;
    }
    .why-us-block__wrapper {
        border-radius: 20px;
    }
    .why-us-block__wrapper::before {
        left: 60%;
        top: 19%;
    }
    .why-us-block__wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .why-us-block__content {
        margin-bottom: 20px;
    }
    .why-us-block-item__text {
        padding-left: 0;
    }
    .why-us-block-item__text::before {
        display: none;
    }
    .done-work-item-data {
        flex-direction: column;
        align-items: flex-start;
    }
    .why-us-block__image {
        max-width: 100%;
        width: 100%;
    }
}