* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  position: relative;
  height: 100%
}

body {
  overflow-y: auto;
  min-height: 100vh;
}
textarea:focus,
input:focus {
  outline: none;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}
footer {
  background: #f1f1f1;
  width: 100%;
  padding: 16px 0px;
  color: #999;
  vertical-align: bottom;
  margin-top: 40px;
  /* width: 100%; */
  /* height: 2.5rem;   */
}

.banner {
  height: 500px;
  width: 100%;
  background: #999;
  margin: 20px 0px;
}

.content {
  padding: 20px 0px;
  /* display: flex; */
  /* flex-wrap: wrap; */
}

/* ================================== */
/* Layout page CSS */
/* ================================== */

.tile {  
  width: 100%;
	display: inline-block;
	box-sizing: border-box;
  position: relative;
	padding: 20px;
	margin-bottom: 10px;
}
img
{
  display: block;
}

.tile img:hover {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  transform: scale(1.1);
  transition: transform .5s ease;
  filter: blur(1px);
  filter: brightness(70%);
}

/* Hint: Notice the position:absolute and z-index properties. */
/* Think about how those in relation to the existing "tile" classes. */
.tile-text {
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate( -50%, -50% );
  text-align: center;
  color: white;


}


.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/hero.jpg");

  /* TODO: MODULE_LAYOUT */
  /* 1. Set a specific height. */
  height: 50%;
  /* 2. Position and center the image to scale nicely on all screens. */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text
{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}


.hero-subheading {
  font-size: 24px;
  font-weight: 100;
}
.hero-input {
  width: 100%;
  height: 50px;
  padding: 16px;
  border-radius: 8px;
  border: none;

}

.nav-link {
  margin-right: 36px;
}

/* ================================== */
/* Adventures grid page CSS */
/* ================================== */

.adventure-card img {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  display: block;
}

.adventure-card:hover {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  transform: scale(1.1);
  transition: transform .5s ease;
  filter: blur(1px);
  filter: brightness(70%);
}

.card-img-top {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.card-body
{
  bottom: 5px;
}


/* ================================== */
/* Adventure details page CSS */
/* ================================== */

.adventure-detail-card {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  /* 1. Fill in the required properties. */

}

.adventure-card-image {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  /* 1. Fill in the required properties. */
}
.adventure-card-image:hover {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  /* 1. Fill in the required properties. */
}
.experience-content ul li {
  margin-left: 16px;
  padding: 0;
}

#img1
{
  width: 400px;
  height: 400px;
  object-fit: cover;
}

#img2
{
  width: 200px;
  height: 200px;
  object-fit: cover;
}

#img3
{
  width: 200px;
  height: 200px;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  /* For desktops phones: */
  #reservation {
    width: 400px;
    position: fixed;
  }
}
