#section-contacts {
    margin-top: -100px;
    background: transparent;
    overflow: hidden;
}

#section-contacts .item {
    display: flex;


    flex-grow: 1;
    /* default 0 */
    flex-shrink: 1;
    /* default 1 */

    justify-content: flex-start;
    /* flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe */
    align-items: stretch;
    /*stretch | flex-start | flex-end | center | baseline | first baseline | last baseline | start | end | self-start | self-end + ... safe | unsafe */
    align-content: flex-start;
    /* flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline + ... safe | unsafe */
    order: 0;
    /* default is 0 */
    gap: 0;

    margin: 0 auto;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: left;
}

#section-contacts .item .item-col {}

#section-contacts .contact-icon {
    padding-right: var(--size-small);
    font-size: 2rem;
    color: var(--color-primary2);
}

@media only screen and (max-width:60em) {
    #section-contacts {
        margin-top: 0px;
        background: transparent;
        overflow: hidden;
    }
}