.header-contacts {
  position: relative;
  z-index: 5;
  
  padding-top: 85px;
  margin-bottom: 30px;
}

.header-contacts__wrap {
  display: flex;
  justify-content: space-between;
}

.header-contacts__info {
  display: flex;
}

.header-contacts__logo-link {
  margin-right: 50px;
}

.header-contacts__location-ask {
  position: relative;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  margin-top: 17px;
  color: #fff;
}

.header-contacts__location-ask::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 19px;
  background: url('/img/icons/location.svg');
  background-repeat: no-repeat;
}

.header-contacts__location-city {
  color: #FF902E;
  font-family: 'Montserrat';
  font-style: semibold;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.header-contacts__number {
  display: flex;
  align-items: center;
}

.header-contacts__number-link {
  position: relative;
  font-family: 'Montserrat';
  font-style: medium;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #006FB7;;
}

.header-contacts__number-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -46px;
  width: 40px;
  height: 40px;
  background: url('/img/icons/call.svg');
  background-repeat: no-repeat;
}

.header-contacts__number-link-span {
  font-family: 'Montserrat';
  font-style: medium;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  margin-left: 5px;
}

.main-btn {
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}

.header-contacts__call-btn {
  color: #0069a9;
  padding: 24px 45px;
  margin-left: 40px;
  border-radius: 10px;
}

.header-contacts__call-btn span {
  border-bottom: 1px solid #0069a9;
}

@media (max-width: 900px) {
  .header-contacts {
    padding-top: 20px;
  }

  .header-contacts__wrap {
    flex-direction: column;
    align-items: center;
  }

  .header-contacts__info {
    align-items: center;
    margin-bottom: 30px;
  }
  
  .header-contacts__number {
    flex-direction: column;
  }

  .header-contacts__number-link {
    margin-bottom: 22px;
    margin-left: 40px;
  }

  .header-contacts__call-btn {
    margin: 0;
  }
}
