.hero{
    background-image: url(../../images/official-company.jpg);
    background-size: cover;
    background-position: center;
    height: 340px;
position: relative;
}
.hero .hero-content h1{
 font-size: 3.25rem;
 font-weight: bold;
 position: relative;
 z-index: 3;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65);
    /* طبقة التظليل */
    backdrop-filter: blur(1px);
    z-index: 1;
}
.partner_item{
    border-left: 1px solid var(--border);
    border-color: var(--border) !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner_item::after{
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--border);
    position: absolute;
    left: -5px;
    bottom: -5px;
}
.partner_item img {
     max-width: 90%;

}
@media (max-width: 576px) {
.partner_item img {
    transition: 0.3s ease;
    width: 50px;
}
}
.new-partners{
    display: inline-block;
    border-color: var(--main);
    padding: .6rem 0;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}
.new-partners{
     background-color: var(--main);
     color: white !important;
}
.new-partners:hover{
    background-color: var(--main);
    color: #fff;
    text-decoration: none;
}
.map-index
{
    z-index: 1 !important;
}