main.annonce section.annonce {
  margin: 80px 0px;
}
main.annonce section.annonce .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.annonce section.annonce .swiper {
  margin-bottom: 40px;
}
main.annonce section.annonce .content {
  width: var(--col-7);
}
@media screen and (max-width: 768px) {
  main.annonce section.annonce .content {
    width: 100%;
  }
}
main.annonce section.annonce .content .info p {
  font-style: italic;
  font-size: 12px;
  color: var(--primary);
}
main.annonce section.annonce .content .title {
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main.annonce section.annonce .content .title {
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
main.annonce section.annonce .content .title h1 {
  font-size: 30px;
  margin: 0px;
  max-width: 60%;
}
main.annonce section.annonce .content .description {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.5;
}
main.annonce section.annonce .content .description-title {
  font-weight: 700;
  font-size: 20px;
}
main.annonce section.annonce .content .description .reference {
  font-weight: 700;
  color: var(--primary);
  font-size: 13px;
  margin-top: 10px;
}
main.annonce section.annonce .content .infos {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
main.annonce section.annonce .content .map-container {
  border-top: 1px solid var(--primary);
  margin-top: 40px;
  padding-top: 50px;
}
main.annonce section.annonce .content .map-container #map {
  height: 500px;
  background-color: grey;
}
main.annonce section.annonce .contact {
  width: var(--col-4);
  height: fit-content;
  position: sticky;
  top: 140px;
}
@media screen and (max-width: 768px) {
  main.annonce section.annonce .contact {
    width: 100%;
    margin-top: 80px;
  }
}
main.annonce section.annonce .contact .infos {
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 27px;
}
main.annonce section.annonce .contact .infos .content {
  width: 100%;
}
main.annonce section.annonce .contact .infos .logo {
  max-width: 90px;
}
main.annonce section.annonce .contact .infos .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.annonce section.annonce .contact .infos p {
  font-size: 20px;
  font-weight: 300;
}
main.annonce section.annonce .contact .form {
  margin-top: 20px;
}
main.annonce section.annonce .contact .form h3 {
  font-size: 18px;
  color: var(--primary);
  margin-top: 0px;
}
main.annonce section.annonce .contact .form form {
  margin-top: 20px;
}
main.annonce section.other-annonces {
  background-color: var(--background-light);
  padding: 80px 0px;
}
main.annonce section.other-annonces h2 {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}
main.annonce section.other-annonces .annonces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px;
}
@media screen and (max-width: 768px) {
  main.annonce section.other-annonces .annonces {
    grid-template-columns: repeat(1, 1fr);
  }
}