.book {
  position: relative;
  padding: 130px 0;
  background: var(--primary);
  color: var(--white);
}

.book__container {
  position: relative;
  z-index: 2;
}

.book__content {
  max-width: 400px;
}

.book__text {
  margin-top: 35px;
  line-height: 155%;
  color: rgba(237, 237, 237, 0.9);
  font-size: var(--l);
}

.book__btn {
  margin-top: 60px;
}

.book__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

@media (max-width: 1260px) {
  .book {
    padding: var(--sp) 0;
  }
}

@media (max-width: 760px) {
  .book__content {
    text-align: center;
  }

  .book__text {
    margin-top: 20px;
  }

  .book__btn {
    margin: 40px auto 0;
  }
}