section.ex-banner{
    background-color: #d1d1d1;
}


section.ex-banner h1{
    color: #000;
}


section.ex-banner p{
    color: #000;
}


section.ex-banner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

section.ex-banner div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    height: auto;
    width: 50%;
}

section.ex-banner img {
    width: 40%;
}

@media (max-width: 700px) { 
    section.ex-banner{
        flex-direction: column-reverse;
    }
    section.ex-banner div,
    section.ex-banner img{
        width: 100% ;
    }
}