.map-surtitre {
  font-size: 1rem;
  font-weight: 400;
  padding-bottom: 16px;
  color: black;
  margin: 0;
  position: relative;
}



.map-adresse img {
  height: 65%;
}

.map-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 48px 0;
}

.map-surtitre::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  bottom: 0;
  left: calc(50% - 25px);
  height: 2px;
  background-color: var(--main-red);
}

.map-titre {
  font-size: 2rem;
  font-weight: 400;
  color: black;
  width: 80%;
  text-align: center;
  margin: 0;
}

.map-cta {
  font-size: 16px;
  background-color: white;
  border-radius: 54px;
  width: 250px;
  padding: 18px;
  margin: 12px 0;
  text-align: center;
  border: 1px solid var(--main-red);
  color: var(--main-red);
}


.map-cta:hover {
  background-color: var(--main-red);
  color: white;
  border: 1px solid white;
}

.map-adresse-s {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 90%;
}

.map-responsive {
  overflow: hidden;
  position: relative;
  height: 450px;
  width: 90%;
  margin-bottom: 24px;
  margin-top: 24px;
}

.map-responsive iframe {
  height: 100%;
  width: 100%;
}

@media screen and (min-width:1024px) {
  .not-display-comp{
    display: none;
  }

  .map-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
  }

  .map-surtitre::after {
    left: 0;
  }

  .map-titre {
    text-align: left;
  }

  .map-responsive {
    height: auto;
    width: 40%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .map-infos {
    width: 40%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    line-height: 1.8;
  }

  .map-adresse {
    display: flex;
    align-items: center;
    gap: 10px
  }
}