@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;

}

/*img {*/
/*    width: 100%;*/
/*}*/

.container {
    width: 100%;
    max-width: 1480px;
    padding: 0 2rem;
    margin: 0 auto;
}

.about-bnr {
    width: 100%;
    height: 500px;
    background: url('../images/about-bnr.webp') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-bnr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.about-bnr-content {
    text-align: center;
}

.about-bnr-content h2 {
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.about-sec {
    padding: 60px 0;

}






.about-content p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 28px;
}

.first-as-client {
    padding: 60px 0;
    background-color: #0e0e28;
}

.first-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.first-as-client-content h3 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.first-as-client-content h4 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.first-as-client-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 28px;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

}


.first-as-client-content p {
    font-size: 16px;
    margin-bottom: 8px;

    line-height: 28px;
}

.first-as-client-content ul li svg {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.first-img img {
    height: 576px;
    object-fit: cover;
    border-radius: 12px;
}

.energetska {
    background-color: white;
}

.energetska .first-as-client-content,
.energetska .first-as-client-content h3,
.energetska .first-as-client-content h4 {
    color: #050517;
}
.first-as-client-content.list ul li::before{
    top:5px;
}

.experts-sec p,
.experts-sec ul li {
    color: #fff;
}
.reviews.review-onama {
    padding-top: 0;
    padding-bottom: 60px;
}
@media (max-width: 1199px) {
    .about-bnr {
        height: 400px;
    }

    .about-bnr-content h2 {
        font-size: 2rem;
    }

    .about-sec {
        padding: 40px 0;
    }

    .first-as-client-content h3 {
        font-size: 30px;

    }

    .first-as-client {
        padding: 40px 0;
    }
	.reviews.review-onama {
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: -1px;
}
}

@media (max-width: 991px) {
    .experts-sec .first-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .first-row {
        grid-template-columns: 1fr;
    }

    .first-img img {
        height: auto;
    }
}