#intro .flex {
    column-gap: 4rem;
    row-gap: 3rem;
}

#intro img {
    width: 40%;
}

#intro .text-content {
    width: 60%;
}

#problems ul {
    flex-wrap: wrap;
    row-gap: 3rem;
    column-gap: 2%;
}

#problems li {
    width: 32%;
    position: relative;
    overflow: hidden;
}

#problems li {
    position: relative;
    display: block;
}

#problems li::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#problems li h3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    color: #fff;
}

#price .flex {
    column-gap: 3rem;
}

#price .menu-content {
    width: 45%;
    padding-bottom: .5rem;
}

#price h3 {
    margin-bottom: 2rem;
}

#price li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--c-font);
    padding-block: 1rem;
}

#price li span {
    display: block;
}

.price {
    text-align: end;
    width: 5.5em;
}

@media screen and (max-width:992px) {

    #intro img,
    #intro .text-content {
        width: 100%;
    }

    #price h3 {
    margin-bottom: .5rem;
    }

    #problems li {
        width: 45%;
    }

    #price .flex {
        gap: 4rem;
    }

    #price .menu-content {
        width: 100%;
        padding-bottom: 0;
    }
}