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

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: 20px 0px;
  color: #999;
  vertical-align: bottom;
  margin-top: 40px;
  text-align: center;
  /* width: 100%;
  height: 2.5rem;   */
}

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

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

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

.tile {
  /* TODO: MODULE_CARDS */
  position: relative;
  height: 100%;
  overflow: hidden;
  /* 1. Fill in the required properties. */
}
.tile img {
  /* TODO: MODULE_CARDS */
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  /* 1. Fill in the required properties. */
}
.tile img:hover {
  /* TODO: MODULE_CARDS */
  filter: brightness(50%);
  transform: scale(1.2);
  /* 1. Fill in the required properties. */
}

/* Hint: Notice the position:absolute and z-index properties. */
/* Think about how those in relation to the existing "tile" classes. */
.tile-text {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  bottom: 0;
  right: 0;
  left: 0;
}

.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. */
  width: 100%;
  height: 50vh;
  /* 2. Position and center the image to scale nicely on all screens. */
  background-size: cover;
  background-position: center;
}

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

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

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

.adventure-card {
  /* TODO: MODULE_ADVENTURES_GRID */
  height: 100%;
  overflow: hidden;
  position: relative;

  /* 1. Fill in the required properties. */
}
.adventure-card img {
  /* TODO: MODULE_ADVENTURES_GRID */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s all ease;
  /* 1. Fill in the required properties. */
}
.adventure-card img:hover {
  /* TODO: MODULE_ADVENTURES_GRID */
  filter: brightness(50%);
  transform: scale(1.1);
  /* 1. Fill in the required properties. */
}

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

.adventure-detail-card {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  min-height: 100%;
  position: relative;
  overflow: hidden;
  border: 0.1rem solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  background-color: #fff;
  background-clip: border-box;
  padding: 0px 15px;
  /* 1. Fill in the required properties. */

}

.adventure-card-image {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  max-width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 0.2rem;
  transition: all 0.2s;
  /* 1. Fill in the required properties. */
}

.adventure-detail-image{
  max-width: 100%;
  height: 13rem;
  margin: 0 0 12px 0;
  padding-left: 4px ;
  object-fit: cover;
  border-radius: 0.2rem;
  transition: all 0.2s;
}
.adventure-detail-image:hover{
  filter: brightness(50%);
}

.adventure-card-image:hover {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  filter: brightness(50%);
  /* 1. Fill in the required properties. */
}
.experience-content ul li {
  margin-left: 16px;
  padding: 0;
  font-weight: 500;
  font-size: 12px;
}
.card{
  height: 320px;
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, .125);
}
h5.card-text{
  font-size: 1.25rem;
}
p.card-text{
  font-size: 1rem;
  font-weight: 500;
}
.adventure-detail-box{
  position: relative;
  min-height: 20vh;
  word-wrap: break-word;
  border: 0.1rem solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  background-color: #fff;
  background-clip: border-box;
  padding: 13px 15px 0px 15px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  /* For desktops phones: */
  #reservation {
    width: 400px;
    position: fixed;
  }
}
@media (min-width: 992px){
  .adventure-detail-box{
    position: fixed;   
    max-width: 26vw;
    min-height: 10vh;
    word-wrap: break-word;
    border: 0.1rem solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: border-box;
    padding: 13px 6px 0px 7px;
    margin: 0;
  }
}
@media (min-width: 1100px) {
  .adventure-detail-box {
    position: fixed;
    max-width: 25vw;
    min-height: 10vh;
    word-wrap: break-word;
    border: 0.1rem solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: border-box;
    padding: 13px 6px 0px 7px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .adventure-detail-box {
    position: fixed;
    max-width: 23vw;
    min-height: 10vh;
    word-wrap: break-word;
    border: 0.1rem solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: border-box;
    padding: 13px 6px 0px 7px;
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  .adventure-detail-box {
    position: fixed;
    max-width: 29vw;
    min-height: 10vh;
    word-wrap: break-word;
    border: 0.1rem solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: border-box;
    padding: 13px 6px 0px 7px;
    margin-top: 0;
  }
}
@media (min-width: 992px){
  div.col-lg-8{
    padding-right: 0;
  }
}

@media (min-width: 1100px) {
  div.col-lg-8 {
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  div.col-lg-8 {
    padding-right: 0;
  }
}

@media (min-width: 1400px) {
  div.col-lg-8 {
    padding-right: 0;
  }
}