/* БЛОК МЕСТА ПРОВЕДЕНИЯ */

/* .place {
  background: #a9a27e;
  text-align: center;
  color: #f5f3ee;
} */

.place {
  background: #a9a27e;
  text-align: center;
  color: #f5f3ee;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

.place::before,
.place::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
  display: block;
}

.place::before {
  bottom: 100%;
  height: 50px;
  background-image: url("../img/top1.png");
}

.place::after {
  top: 100%;
  height: 50px;
  background-image: url("../img/bottom2.png");
}

/* РУКОПИСНЫЙ ЗАГОЛОВОК */

.place-title-script {
  font-family: "Kudryashev";
  font-size: 40px;
  margin-bottom: 0px;
  opacity: 0.9;
}

/* НАЗВАНИЕ ПЛОЩАДКИ */

.place-title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  letter-spacing: 3px;
  margin-top: 0px;
}

/* ФОТО */

.place-image {
  max-width: 900px;
  margin: 0 auto 50px;
}

.place-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* АДРЕС */

.place-address {
  font-family: "Montserrat", serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* КНОПКА */

.place-btn {
  display: inline-block;
  background: #ffffff;
  color: #8e8667;
  padding: 18px 40px;
  border: 2px solid #ffffff99;
  border-radius: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  transition: all 0.3s ease;
}

/* КАРТА */

.place-map {
  height: 0;
  overflow: hidden;

  transition: height 0.6s ease;

  border-radius: 20px;

  margin-top: 0;
}

/* когда карта открыта */

.place-map.open {
  height: 400px;
  margin-top: 20px;
}

/* АДАПТИВ */

/* @media (max-width: 768px) {
  .place-title-script {
    font-size: 48px;
  }

  .place-title {
    font-size: 36px;
  }

  .place-address {
    font-size: 24px;
  }

  .place-btn {
    font-size: 20px;
    padding: 14px 30px;
  }

} */
