/* Global Styles */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
  }
  
  /* Header Styles */
  header {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }
  
 /* Nav*/
.links {
	background-color: #da668d;
	background-image: linear-gradient(to bottom, #0003, transparent);
	font-size: 15pt;
	font-weight: 300;
}
.links > a {
	color: #ffffff;
	padding: 15px 10px 15px 10px;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
.links > a:hover {
	color: #ffffff;
  background-color: #ef9db8;
}

#menu {
	/* position: fixed; */
	left: 0;
	right: 0;
}
.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
  
.booking-button {
    /* position:absolute; top:0; right: 15px; */
    /* background-image: linear-gradient(to bottom, #0003, transparent); */
    color: #FCE4EC !important;
    text-decoration: none;
  }
  
  .srvc-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #e184a5;
    text-decoration: none;
    margin-top: 50px;
  }

  .parallax {
    /* The image used */
    background-image: url("suite.png");
  
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .title {
    text-align: center;
    font-size: 26pt;
  }
  
  
  /* Main Section Styles */
  section {
    padding: 0px;
  }

  td {
    background-color: #f1f1f1;
    padding: 10px;
    width: 240px;
    text-align: center;
    vertical-align:  top;
    min-width: 200px
  }
  #tbtitle {
    font-size: 18pt;
  }


  #home-svc { 
    margin-left: auto;
    margin-right: auto;
    border-spacing: 20px;

  }

  #buttonbkg {
    background-image: url("bkg.jpeg");
    height: 130px;
    width: 108%;
    margin-left: -4%;
    background-size: cover;
    margin-bottom: -10px;
    margin-top: 30px;
  
  }

  #reviews {
    background-color: #FBF1E7;
  }
  
  h1, h2 {
    text-align: center;
  }
  
  /* Slideshow container */
.slideshow-container {
  position: relative;
  background: #FBF1E7;
}

/* Slides */
.mySlides {
  display: none;
  padding: 20px 200px 80px 200px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 10px;
  background: #FBF1E7;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

q{
  font-size: 16pt;
}


  /* Footer Styles */
  footer {
    background-color: #e184a5;
    padding: 10px 100px;
    text-align: center;
    height: 250px;
    color: #ffffff
  }

  .booking-button-footer{
    border-radius: 20px;
    display: inline-block;
    padding: 20px 30px;
    background-color: #ffffff;
    color: #e184a5;
    text-decoration: none;
  }

  footer > a{
    color: #ffffff;
  }
  
