.contacts-1__item-title {
    margin-bottom: 0;
}

.contacts-1__item {
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
}



.contacts-1__item:before {
    position: static;
    display: block;
    margin-bottom: 20px;
    content: '';
    background: var(--background-color);
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;  
    border-radius: 100%;
}

.contacts-1__content {
    margin-top: 40px;
}

.contacts-1__item-text {
    font-size: 22px;
    color: var(--base-color);
}

.contacts-1__item.contacts-1__item_type_adress:before {
    background: var(--background-color) url(../../svg/svg1.svg) center no-repeat;
}

.contacts-1__item.contacts-1__item_type_phone:before {
    background: var(--background-color) url(../../svg/svg2.svg) center no-repeat;
}

.contacts-1__item.contacts-1__item_type_email:before {
    background: var(--background-color) url(../../svg/svg3.svg) center no-repeat;
}

@media (min-width: 600px) {
    .contacts-1__item {
        padding-left: 60px;
        margin-bottom: 30px;
    }
    .contacts-1__item:before {
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (min-width: 992px) {
    .contacts-1__item {
        padding-left: 60px;
        margin-bottom: 30px;
    }
    .contacts-1__item:before {
        position: absolute;
        top: 0;
        left: 0;
    }
    .contacts-1__content {
        margin-top: 60px;
    }
}