/*
Consulting image area
*/

#consulting-cover {
    background-size: cover;
    height: 650px;
    background-position: center center;
    background-repeat: no-repeat;
}

/*
Expertise section
*/

#expertise {
    position: relative;
    z-index: 2;
    padding: 150px 0 145px;
    position: relative;
    z-index: 12;
}

.consulting-lists {
    display: flex;
}

.consulting-list li {
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    line-height: 38px;
    margin-bottom: 15px;
}

.consulting-list li:before {
    content: '';
    display: block;
    position: absolute;
    width: 19px;
    height: 14px;
    background-image: url("/wp-content/uploads/2024/08/Checkmark.svg");
    background-position: center center;
    background-repeat: no-repeat;
    top: 12px;
    left: 0;
}

.first-list {
   margin: 0 80px;
}

#expertise h2 {
    font-weight: 300;
    position: relative;
    padding-bottom: 60px;
}

#expertise h2 strong {
    font-weight: 600;
}

#expertise h2:before {
    content: '';
    display: block;
    position: absolute;
    height: 5px;
    width: 70px;
    background-color: var(--yellow-color);
    bottom: 0;
    left: 0;

}

#contact-banner h2 {
    width: 785px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

#contact-banner .container {
    position: relative;
    z-index: 12;
}



@media(max-width: 768px) {

    #expertise {
        padding: 50px 0 30px;
    }

    #expertise h2 {
        padding-bottom: 60px;
        text-align: center;
    }

    #expertise h2:before {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }

    .consulting-lists {
        display: block;
        padding: 0 15px;
    }

    .first-list {
        margin: 0;
    }

    #consulting-cover {
        height: 300px;
    }

}

@media(max-width: 575px) {
    #expertise {
        padding: 35px 0 25px;

    }
    .consulting-lists li {
        font-size: 16px;
        line-height: 22px;
    }

    .consulting-lists li:before {
        top: 5px;
    }

    #expertise h2 {
        width: 150px;
        margin: 0 auto;
        line-height: 35px;
    }

}