#Kontakt {
    background-color: var(--sivaSvetla);
    padding-bottom: 30px;
}

#Kontakt > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Kontakt > div:first-of-type p {
    margin: 0 !important;
    font-size: 28px;
}

#Kontakt > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
}

#Kontakt > div:nth-of-type(2) > div {
    display: flex;
    align-items: center;
    width: 380px;
    margin: 40px 20px;
}

#Kontakt > div:nth-of-type(2) > div > span {
    width: 120px;
    height: 120px;
    background-color: var(--zuta);
    font-size: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: white;
    border-radius: 150px;
    flex-basis: 120px;
    flex-shrink: 0;
}

#Kontakt > div:nth-of-type(2) > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    line-height: 150%;
    flex: 1;
}

#Kontakt > div:nth-of-type(2) > div > div div:first-of-type {
    margin-top: 10px;
    margin-bottom: 7px;
}

#Kontakt > div:nth-of-type(2) > div > div div:last-of-type {
    margin-top: 0 !important;
}


@media screen and (max-width: 1300px) {
    #Kontakt > div:nth-of-type(2) > div > span {
        width: 90px;
        height: 90px;
        font-size: 70px;
        border-radius: 150px;
        flex-basis: 90px;
    }

    #Kontakt > div:nth-of-type(2) > div {
        width: 350px;
        margin: 40px 10px;
    }
}

@media screen and (max-width: 1200px) {
    #Kontakt > div:nth-of-type(2) {
        display: flex;
        flex-wrap: unset;
        justify-content: unset;
        flex-direction: column;
        align-items: center;
        margin: 50px 0 0 0;
    }

    #Kontakt > div:nth-of-type(2) > div {
        width: 500px;
        margin: 30px 0;
    } 

    #Kontakt > div:nth-of-type(2) > div:first-of-type {
        align-items: flex-start;
    } 

    #Kontakt > div:nth-of-type(2) > div > span {
        width: 80px;
        height: 80px;
        font-size: 60px;
        flex-basis: 80px;
    }

    #Kontakt > div:nth-of-type(2) > div > div div {
        margin-top: 10px;
    }
}


@media screen and (max-width: 1023px) {
    #Kontakt > div:first-of-type p {
        font-size: 20px;
        padding: 0 10px;
        text-align: center;
    }

    #Kontakt > div:nth-of-type(2) {
        margin: 20px 0 0 0;
        padding: 0 20px;
    }
}




@media screen and (max-width: 600px) {

    #Kontakt > div:nth-of-type(2) > div {
        width: 100%;
        margin: 20px 0;
    } 

    #Kontakt > div:nth-of-type(2) > div > span {
        width: 50px;
        height: 50px;
        font-size: 30px;
        flex-basis: 50px;
    }

    #Kontakt > div:nth-of-type(2) > div > div {
        font-size: 16px;
        line-height: 130%;
    }


}