/* Highlight one specific square */

.hero {
  
    background-size: 100% 100% !important;
   
    position: relative;
    z-index: 1;
    padding: 7% 20px;
}
@media (max-width:991px) {
    
.hero {
  
    background-size: 140% 100% !important;

}
}

    @media screen and (max-width: 786px) {
        .hero h2{
            font-size: 35px;
        }
}
    @media screen and (max-width: 576px) {
        .hero h2{
            font-size: 30px;
        }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: rgba(0, 0, 0, 0.568);
    z-index: -1;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rounded-image {
    width: 100%;
    max-width: 500px;
    /* height: 460px; */
    object-fit: cover;
    border-radius: 48px;
    z-index: 2;
    position: relative;
}

/* الركن الأزرق خلف الصورة */
.blue-corner {
    position: absolute;
    bottom: -33px;
    right: -38px;
    width: 61%;
    height: 46%;
    background-color: var(--bg);
    border-radius: 40px;
    z-index: 1;
}


/*articles*/
.articles {
    background-color: var(--footer);
}

.articles .span_articel {
    background-color: #1F86FF40;
    color: var(--white);
}

.articels_btn {
    background-color: var(--white);
    color: var(--main);
    border: 1px solid var(--white);
    position: absolute;
    bottom: -26px;

}

.articels_btn:hover {
    border: 1px solid var(--white);
    background-color: var(--main);
    color: var(--white);


}

.articel_btn {
    color: #fff;
}

.articel_btn i:lang(en) {
    transform: scaleX(-1);
}

.articel_btn:hover {
    color: #fff;
}

[data-bs-theme="dark"] .articels_btn {
    color: var(--black) !important;
}

[ data-bs-theme="dark"] .articels_btn:hover {
    color: var(--white) !important;
}
