#contact-map {
  width: 100%;
  height: 582px;
  position: relative;
}

#contact-map iframe {
  height: 100%;
}

.contact-map__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.contact-balloon {
  padding: 67px 40px 83px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 51px 71px -11px rgba(224, 232, 232, 0.41);
  border-radius: 12px;
  width: 436px;
  position: fixed;
  left: 65px;
  top: 70px;
}

.contact-balloon__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 10px;
  height: 10px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  font-size: 40px;
}

.contact-balloon__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-balloon__item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-balloon__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #ef4343 -0.19%, #ff6262 99.95%);
  border-radius: 50%;
}

.contact-balloon__content {
  display: flex;
  flex-direction: column;
}

.contact-balloon__phone {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.contact-balloon__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.contact-balloon__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 160%;
}

.contact-balloon_domain {
  position: absolute;
  left: 45px;
  bottom: 100px;
}

@media (max-width: 768px) {
  .contact-balloon {
    width: 330px;
    padding: 25px 15px;
  }

  .contact-balloon__wrapper {
    gap: 15px;
  }

  .contact-balloon__item {
    gap: 10px;
  }

  .contact-balloon__icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .contact-balloon__icon img {
    width: 60%;
  }

  .contact-balloon__phone {
    font-size: 18px;
  }

  .contact-balloon__description {
    font-size: 13px;
    white-space: normal;
    overflow-wrap: break-word;
    /* Ensure long words break if needed */
    max-width: 100%;
    /* Ensure it doesn't overflow container */
  }

  .contact-balloon__title {
    font-size: 11px;
  }

  .contact-balloon__close {
    top: 10px;
    right: 10px;
    font-size: 30px;
    width: 30px;
    height: 30px;
  }

  .contact-balloon_domain {
    display: none;
  }
}