.map-contacts {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: #f5f5f5;
  height: calc(100vh-80px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 721px) {
  .map-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.map-contacts .map {
  width: 60%;
  height: 85vh;
  -webkit-box-shadow: 0 0 20px black;
          box-shadow: 0 0 20px black;
  margin: 10px;
}

@media (max-width: 961px) {
  .map-contacts .map {
    width: 50%;
  }
}

@media (max-width: 721px) {
  .map-contacts .map {
    width: 95%;
    height: 300px;
  }
}

.map-contacts .contacts-container {
  width: 310px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 721px) {
  .map-contacts .contacts-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.map-contacts .contacts-container .contacts-column {
  padding: 20px 0;
}

.map-contacts .contacts-container h3 {
  margin-bottom: 5px;
}

.map-contacts .contacts-container a {
  margin-left: 30px;
  text-decoration: none;
  color: #242424;
}

.map-contacts .contacts-container .contacts-link {
  height: 35px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 25px 25px;
  padding: 10px 0;
  width: 300px;
  position: relative;
}

.map-contacts .contacts-container .contacts-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1976d2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-contacts .contacts-container .contacts-link:hover::after {
  width: 100%;
}

.map-contacts .contacts-container .facebook {
  background-image: url("/icons/fb.svg");
}

.map-contacts .contacts-container .instagram {
  background-image: url("/icons/insta.svg");
}

.map-contacts .contacts-container .response {
  background-image: url("/icons/response.svg");
}

.map-contacts .contacts-container .location {
  background-image: url("/icons/location.svg");
}

.map-contacts .contacts-container .footer-phone {
  background-image: url("/icons/phone.svg");
}

.map-contacts .contacts-container .mail {
  background-image: url("/icons/mail.svg");
}
/*# sourceMappingURL=contacts.css.map */