#promise {
    text-align: center;
}

#promise .wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

#promise .wrap-context {
    display: grid;
    gap: 30px;


    display: grid;
    gap: 30px;
    margin-left: -100px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#promise h4 {
    margin-bottom: 0px;
    font-size: 16px;
    background: var(--site-bg);
    text-align: center;
    padding: 6px;
    border-radius: 50px 50px 50px 0px;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 100px;
}

#promise img {
    border-radius: 16px;   
    display: block;
    height: 100%;
    object-fit: cover;
}

#promise .before,
#promise .after {
    text-align: left;
    background: #fff;
    padding: 40px;
    box-shadow: rgb(170 183 199 / 30%) 0px 10px 40px 0px;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 10px;
    color: var(--site-text);
    font-size: 22px;
    font-weight: 600;
    color: var(--site-black);
    border-radius: 16px;
}


#promise .before {
    background: #ffe8ec;
    background: #fff;
}

#promise .before span {
    color: #df0101;
    margin-right: 7px;
}

#promise .after {
    background: #eaffe8;
    background: #fff;
}

#promise .after span {
    color: #129d00;
    margin-right: 7px;
}

#promise .before .item {
    color: #df0101;
}

#promise .after .item {
    color: #129d00;
}

#promise .item {
    color: var(--site-text);
}

#promise .before h4 {
    background: #ffe8ec;
    color: #df0101;   
}

#promise .after h4 {
    background: #eaffe8;
     color: #129d00;   
}


@media (max-width: 980px) {
    #promise .wrap {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #promise .wrap-context {
        margin: 0;
        gap: 15px;
    }
}