body .carte {
  display: block;
  position: relative;
  overflow: hidden;
}
body .carte .zone-carte {
  position: relative;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body .carte .zone-carte::-webkit-scrollbar {
  display: none;
}
body .carte .zone-carte:before {
  content: "";
  width: 100%;
  display: block;
  padding-bottom: 60%;
}
@media screen and (max-width: 768px) {
  body .carte .zone-carte:before {
    padding-bottom: 160%;
  }
}
body .carte .zone-carte img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
}
body .carte .destinations {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  body .carte .destinations {
    position: relative;
    box-shadow: none;
    left: auto;
    bottom: auto;
  }
}
body .carte .destinations .head {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}
body .carte .destinations .destination {
  margin-top: 15px;
  line-height: 30px;
}
body .carte .destinations .destination .ville {
  font-size: 24px;
  font-weight: bold;
}
body .carte .destinations .destination .distance {
  font-size: 18px;
  font-weight: normal;
}
