.contact__content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact__item {
  padding: 0 20px;
  flex: 1 5 calc(50% - 16px);
}

.contact__map iframe {
  width: 100%;
  height: 450px;
}
.contact__image {
  width: 30px;
  margin: 16px 0;
}

.contact__image img {
  width: 100%;
}

.contact__text p {
  margin: 8px 0;
}

.contact__schedules {
  display: flex;
  flex-direction: column;
  margin: 16px 0;
}

.contact__schedules div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.contact__hours {
  flex-shrink: 0;
}

.contact__line {
  width: 100%;
  height: 1px;
  margin: 0 10px;
  background-color: var(--ebony);
  flex-shrink: 10;
}

.contact__days {
  font-weight: bold;
}

.contact__details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.contact__details div p {
  font-weight: bold;
}

.contact__details div a {
  color: var(--polynesiumBleu);
  text-decoration: underline
}

.contact__contacts {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .contact__content {
    flex-direction: column;

  }
}

@media screen and (max-width: 400px) {
  .contact__schedules div, .contact__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__line {
    margin: 0;
  }
}
