/* ==============================
   HOME PAGE - HERO
============================== */

body .hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 15px 0 50px !important;
    margin: 0 !important;
    display: block !important;
}

body .hero .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body .hero .hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 65px !important;

    min-height: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* النص */

body .hero .hero-text {
    margin: 0 !important;
    padding: 0 !important;
}

body .hero .hero-text h1 {
    font-size: 46px !important;
    line-height: 1.3 !important;
    margin: 0 0 8px !important;
    color: #d63384 !important;
}

body .hero .hero-features {
    display: block;
    margin: 0 0 18px !important;
}

body .hero .hero-text p {
    margin: 0 0 28px !important;
}

/* الصورة */

body .hero .hero-image {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body .hero .hero-image img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    margin: 0 !important;
}

/* الهاتف */

@media (max-width: 900px) {

    body .hero {
        padding: 30px 0 45px !important;
    }

    body .hero .hero-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center !important;
    }

    body .hero .hero-text h1 {
        font-size: 36px !important;
    }

}

@media (max-width: 520px) {

    body .hero .hero-text h1 {
        font-size: 30px !important;
    }

}