.rendez-float {
  position: fixed;
  bottom: 110px;
  left: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3), 2px 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.rendez-float img {
  border-radius: 10%;
  padding: 1px;
}
.rendez-float:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}


.tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #fff;
  color: #0000ff;
  text-align: center;
  border-radius: 6px;
  padding: 4px;
  position: absolute;
  bottom: 12px;
  left: 290%;
  transform: translateX(-50%);
  z-index: 1001;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.rendez-float:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.conteneur {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 2rem;
  background-color: #f6f4fe;
}

.left, .right {
  flex: 1 1 45%;
  min-height: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 2%;
}
.right {
  background-color: #fff;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*.right:hover/*, .left:hover  {
  transform: scale(1.09);
  transition: transform 0.3s ease;
} */





@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 1rem;
  }

  .left, .right {
    flex: 1 1 100%;
    min-height: 400px;
  }
}
