.guarantee-box-block {
    --color-border: #FFB44F;
    --color-text: #2F2F2F;
    --color-white: #FFFFFF;
    --font-family-text: 'Verdana', sans-serif;
    font-family: var(--font-family-text);
    box-sizing: border-box;
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
          margin-right: auto;
         margin-top: 40px;
margin-bottom: 40px;
}
.guarantee-box-block *,
.guarantee-box-block *::before,
.guarantee-box-block *::after {
    box-sizing: border-box;
}
.guarantee-box__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 154px;
    padding: 15px 29px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 14px;
}
.guarantee-box-block.no-badge .guarantee-box__container {
    padding-right: 29px;
}
.guarantee-box__content {
    flex: 1;
    font-family: var(--font-family-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-text);
}
.guarantee-box__content p {
    margin-bottom: 20px;
}
.guarantee-box__content strong {
    font-weight: 700;
}
.guarantee-box__badge {
           position: absolute;
    right: -65px;
    top: 100%;
    transform: translateY(-50%);
    width: 137px;
    height: 137px;
    flex-shrink: 0;
    bottom: 0px;
}
.guarantee-box__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1060px) {
    .guarantee-box-block {
        max-width: 100%;
        padding: 0;
    }
    .guarantee-box__container {
    }
    .guarantee-box__content {
        font-size: 20px;
        line-height: 36px;
    }
    .guarantee-box__badge {
        width: 120px;
        height: 120px;
        right: 10px;
    }
}
@media (max-width: 767px) {
    .guarantee-box__container {
        flex-direction: column;
        padding: 20px 15px;
        padding-bottom: 25px;
        min-height: auto;
        text-align: center;
    }
    .guarantee-box-block.no-badge .guarantee-box__container {
        padding: 20px 15px;
    }
    .guarantee-box__content {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 20px;
        order: 1;
    }
    .guarantee-box__badge {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100px;
        height: 100px;
        margin: 0 auto;
        order: 2;
    }
}
@media (max-width: 380px) {
    .guarantee-box__content {
        font-size: 16px;
        line-height: 21px;
    }
    .guarantee-box__badge {
        width: 80px;
        height: 80px;
    }
}
.guarantee-box-block.alignwide {
    max-width: 1200px;
}
.guarantee-box-block.alignfull {
    max-width: none;
    padding: 0 20px;
}
.editor-styles-wrapper .guarantee-box-block {
    max-width: 100%;
}
.guarantee-box-block + .guarantee-box-block {
    margin-top: 20px;
}
