#Zasto {
    display: flex;
}

#Zasto h2 {
    display: none;
}

#Zasto > div {
    width: 33.33%;   
}

/* Slika Zasto */

#Zasto > div:first-of-type {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

#Zasto > div:first-of-type img {
    width: 60%;
}


/* Zajednicko za Setite se... i Zasto ne ovako... */
#Zasto > div:nth-child(2),
#Zasto > div:nth-child(3) {
    display: flex;
    padding: 20px 0;
    align-items: flex-start;
}

#Zasto > div:nth-child(2) > img,
#Zasto > div:nth-child(3) > img {
    width: 80px;
    flex-basis: 80px;
    flex-shrink: 0;
}

#Zasto > div:nth-child(2) > div,
#Zasto > div:nth-child(3) > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

#Zasto > div:nth-child(2) > div span,
#Zasto > div:nth-child(3) > div span {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

#Zasto ul {
    list-style-type: none;
    line-height: 150%;
    font-size: 18px;
}

#Zasto li:not(:last-of-type) {
    margin-bottom: 15px;
}

#Zasto > div:nth-child(2) > div li::before,
#Zasto > div:nth-child(3) > div li::before {
    content: "";
    display: inline-block;
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: -33px;
    margin-right: 14px;
}


/* Setite se samo */

#Zasto > div:nth-child(2) {
    background-color: var(--sivaTamna);
}

#Zasto > div:nth-child(2) > div li::before{
    background-image: url("../images/protiv.svg");
    margin-top: 5px;
}

#Zasto > div:nth-child(2) > div li {
    display: flex;
    align-items: center;
}

#Zasto > div:nth-child(2) img {
    margin-right: 15px;
}


/* Zasto ne biste ovako? */

#Zasto > div:nth-child(3) {
    background-color: var(--zuta);
    padding-left: 20px;
}

#Zasto > div:nth-child(3) > div li::before {
    background-image: url("../images/za.svg");
}

#Zasto > div:nth-child(3) img {
    margin-left: 15px;
}


#Hitno {
    display: flex;
    flex-direction: column;
    padding: 0 30px 50px 30px;
    background-color: var(--zutaSvetla);
    align-items: center;
}

/* Kontejner stavki */
#Hitno > div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;    
    justify-content: space-evenly;
    align-items: center;
}

/* Stavka */

#Hitno > div > div {
    width: 350px;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 30px 10px;
}

#Hitno > div img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

#Hitno > div > div:last-of-type {
    font-weight: bold;
}

@media screen and (max-width: 1023px) {
    #Zasto {
        flex-direction: column;
    }

    #Zasto > div {
        width: 100%;   
    }

    /* Slika Zasto */

    #Zasto > div:first-of-type {
        padding: 40px 20px;
    }

    #Zasto > div:first-of-type img {
        width: 80%;
        max-width: 450px;
    }


    /* Slika u Setite se samo... i Zasto ne biste ovako? */

    #Zasto > div:nth-child(2) > img,
    #Zasto > div:nth-child(3) > img {
        width: 60px;
        flex-basis: 60px;
    }

}


@media screen and (max-width: 800px) {
    /* Kontejner stavki */
    #Hitno > div {
        flex-wrap: unset;
        justify-content: unset;
        flex-direction: column;

    }

    /* Stavka */
    #Hitno > div > div {
        width: 100%;
        margin: 20px 0;
    } 

    #Hitno > div > div:last-of-type {
        margin: 20px 0 0 0;
    } 

    #Hitno > div img {
        width: 100px;
        height: 100px;
    }
}