.contacts-map__item{
	background-size: cover;
    width: 262px;
    height: 75px;
    background-repeat: no-repeat;
    transition: 0.5s;
    position: absolute;
    text-decoration: none;
    border-bottom: none;
    text-align: center;
}
@media(max-width: 1000px){
    .contacts-map__item{
        width: calc(262px / 1.5);
        height: calc(75px / 1.5);
    }
}
@media(max-width: 650px){
    .contacts-map__item{
        width: calc(262px / 2);
        height: calc(75px / 2);
    }
}