.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}
.contact-section .contact {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .contact-section .contact {
    width: 100%;
    align-items: center;
  }
}
.contact-section .contact a, .contact-section .contact p {
  width: 100%;
}
.contact-section .contact a i, .contact-section .contact p i {
  color: #C30808;
  font-size: 28px;
  vertical-align: middle;
}
.contact-section .contact a.title, .contact-section .contact p.title {
  font-weight: 700;
}

.working-hours-section {
  margin-top: 24px;
}
.working-hours-section .work-hours {
  list-style: none;
}
.working-hours-section .work-hours li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.working-hours-section .work-hours li span:first-of-type {
  display: inline-flex;
  min-width: 18%;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .working-hours-section .work-hours li span:first-of-type {
    min-width: 6%;
  }
}
@media screen and (min-width: 1500px) {
  .working-hours-section .work-hours li span:first-of-type {
    min-width: 4%;
  }
}

.map-section {
  min-width: 100%;
  min-height: 190px;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  position: relative;
  filter: grayscale(1);
  transition: all 0.5s;
}
.map-section:hover {
  transition: all 1s;
  filter: grayscale(0);
  transition: all 0.5s;
}
.map-section #map {
  min-width: 100%;
  min-height: 100%;
}
