.section-heading {
    --section-heading-background: #f0dc8a;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 20px);
    min-height: 54px;
    box-sizing: border-box;
    margin: 0 0 1rem;
    padding: 0.65rem 5rem 0.65rem 1.5rem;
    border-radius: 1rem 0 0 0;
    background: var(--section-heading-background);
    margin-top:40px;
}

.section-heading--yellow { --section-heading-background: #f0dc8a; }
.section-heading--lime { --section-heading-background: #cbd18e; }
.section-heading--green { --section-heading-background: #9daf86; }
.section-heading--light-blue { --section-heading-background: #a6bed0; }
.section-heading--blue { --section-heading-background: #7193a8; }
.section-heading--beige { --section-heading-background: #c2a98f; }

.section-heading__title {
    margin: 0;
    color: #153943;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.section-heading__icon {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0.35rem 1rem rgba(21, 57, 67, 0.14);
    transform: translate(30%, -50%);
}

.section-heading__image {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .section-heading {
        width: fit-content;
        max-width: calc(100% - 14px);
        min-height: 50px;
        padding: 0.65rem 4.25rem 0.65rem 1rem;
    }

    .section-heading__icon {
        width: 56px;
        height: 56px;
        transform: translate(25%, -50%);
    }

    .section-heading__title {
        font-size: 20px;
    }
}
