.participants__section {
  display: none;
}

.participants__section.participants__active {
  display: block;
}

.participants__main {
  padding: 90px 0 180px 0;
}

.places__body {
  color: var(--blackText);
}

.places__item {
  position: relative;
  padding: 55px 0 270px 100px;
  border-radius: 6px;
  background-color: var(--mainGrey);
  overflow: visible;
}

.places__item:not(:last-child) {
  margin-bottom: 150px;
}

.places__item:last-child {
  margin-bottom: 70px;
}

.places__head {
  margin-bottom: 30px;
}

.places__title {
  max-width: 900px;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.places__address {
  min-width: 340px;
  margin-left: 15px;
  padding: 20px 25px 20px 45px;
  border-radius: 6px 0 0 6px;
  background-color: var(--white);
}

.places__address-title {
  font-weight: 700;
}

.places__address-info {
  font-style: normal;
}

.places__text-block {
  padding-right: 100px;
  margin-bottom: 50px;
}

.places__text-block .paragraph:not(:last-child) {
  margin-bottom: 20px;
}

.places__btn-block {
  display: none;
  margin-bottom: 50px;
}

.place__btn {
  display: inline-block;
  min-width: 160px;
  margin-right: 40px;
  text-align: center;
}

.with-btns .places__btn-block {
  display: block;
}

.places__map-block {
  position: absolute;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-right: 100px;
  height: 350px;
  transform: translateY(70px);
}

.places__photo {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.places__map {
  border-radius: 6px;
  overflow: hidden;
}

.places__map div {
  width: 100%;
  height: 100%;
}

.places__map iframe {
  width: 100%;
  height: 100%;
  border: unset;
}

/* Transport */

.transport__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.transport__item {
  min-height: 370px;
  padding: 35px 50px 55px 60px;
  border-radius: 6px;
  background-color: var(--mainGrey);
  color: var(--blackText);
  background-image: url(../img/common/rightBlockBack.png);
  background-repeat: no-repeat;
  background-size: unset;
  background-position: bottom right;
}

.transport__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.transport__item .paragraph:not(:last-child) {
  margin-bottom: 15px;
}

/* Hotels */

.hotels__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hotels__item {
  flex-direction: column;
  justify-content: flex-start;
  min-height: 640px;
  padding: 50px 50px 35px 50px;
  border-radius: 6px;
  background-color: var(--mainGrey);
  color: var(--blackText);
}

.hotels__photo {
  width: 100%;
  height: 230px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.hotels__title {
  margin-bottom: 25px;
  color: var(--mainBlue);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.hotel__text {
  margin-bottom: 30px;
}

.hotels__address {
  width: 100%;
  margin-top: auto;
  padding: 20px 25px 20px 45px;
  border-radius: 0 6px 6px 0;
  background-color: var(--white);
  transform: translateX(-50px);
}

.hotels__address-title {
  font-weight: 700;
}

.hotels__address-info {
  font-style: normal;
}

@media (max-width: 1200px) {
  .places__item {
    padding: 55px 0 270px 50px;
  }

  .places__text-block {
    padding-right: 50px;
  }

  .places__map-block {
    padding-right: 50px;
  }

  /* HOTELS */

  .hotels__item {
    padding: 30px;
  }

  .hotels__address {
    padding: 20px 25px 20px 30px;
    transform: translateX(-30px);
  }
}

@media (max-width: 1024px) {
  .places__head {
    flex-direction: column;
  }

  .places__item {
    padding: 30px;
  }

  .places__item:not(:last-child) {
    margin-bottom: 70px;
  }

  .places__title {
    margin-bottom: 15px;
    width: 100%;
  }

  .places__address {
    width: 100%;
    margin-left: 0;
    padding: 15px;
    border-radius: 6px;
    background-color: var(--white);
  }

  .places__map-block {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
    height: 300px;
    transform: translateY(0);
  }

  /* Transport */
  .transport__item {
    padding: 20px;
  }

  /* Hotels */
  .hotels__body {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotels__item {
    padding: 50px 50px 35px 50px;
  }

  .hotels__address {
    padding: 20px 25px 20px 45px;
    transform: translateX(-50px);
  }
}

@media (max-width: 768px) {
  .participants__main {
    padding: 50px 0 70px 0;
  }

  /* Places */

  .places__item {
    padding: 15px;
  }

  .places__item:not(:last-child) {
    margin-bottom: 50px;
  }

  .places__item:last-child {
    margin-bottom: 0;
  }

  .places__head {
    flex-direction: column;
  }

  .places__title {
    margin-bottom: 15px;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
  }

  .places__address {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    background-color: var(--white);
  }

  .places__text-block {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .places__btn-block .place__btn:not(:last-child) {
    margin-bottom: 15px;
  }

  .places__map-block {
    position: relative;
    padding-right: 0;
    height: auto;
    grid-template-columns: 100%;
    grid-template-rows: repeat(2, 300px);
  }

  /* Transport */
  .transport__body {
    grid-template-columns: 100%;
  }

  /* Hotels */
  .hotels__item {
    min-height: 400px;
    padding: 15px;
  }

  .hotels__address {
    padding: 20px 25px 20px 25px;
    transform: translateX(-15px);
  }
}

@media (max-width: 568px) {

  /* Transport */
  .transport__item {
    min-height: 280px;
    padding: 15px;
  }

  .transport__title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
  }

  /* HOTELS */

  .hotels__body {
    grid-template-columns: 100%;
  }

  .hotels__item {
    min-height: 400px;
    padding: 15px;
  }
}