.header {
  text-align: center;
  padding: 10px 0;
  position: fixed;
  background: transparent;
  width: 100%;  
}

.header .logo img {
  width: 145px;
}

.hero-image {
  background-image: url('../img/hero.jpg');
  height: 575px;
  background-position: center;
  background-size: cover;
}

.fixed {
  top: 0;
  background: #fff;
}

.page-content {
  margin-top: 45px;
  text-align: center;
}

.title {
  color: #8B6D98;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

a.book-btn {
  display: block;
  text-decoration: none;
  color: #8B6D98;
  text-transform: uppercase;
  border: 1px solid #8B6D98;
  padding: 10px 25px;
  font-size: 20px;
  transition: .3s all;
  margin: 0 auto;
  width: 250px;
  margin-top: 30px;
}

a.book-btn:hover {
  background: #8B6D98;
  color: #fff;
}

.footer {
  text-align: center;
  margin-top: 39px;
  background: #8B6D98;
  color: #fff;
  padding: 20px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-image {
    height: 350px;
  }
}