:root {
  --white: #fff;
  --darkblue: #1b4965;
  --lightblue: #edf2f4;
}

* {
  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: 16px 0px;
  color: #999;
  position: absolute;
  bottom: 0;
  /* width: 100%; */
  /* height: 2.5rem;   */
}

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

.content {
  padding: 40px 0 100px 0px;
  /* display: flex;
  flex-wrap: wrap; */
}
/* .tile {
  position: relative;
  height: 100%;
  width: calc(25% - 20px);
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.tile img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -webkit-transition: 0.2s all;
}
.tile img:hover {
  -webkit-filter: brightness(50%);
  transform: scale(1.1);
}

.tile-text {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
} */
.wraper{
  display: grid;
  grid-template-columns:270px 270px 270px 270px;
  /* grid-template-columns:repeat(3, 200px); */
  /* grid-template-rows: 100px; */
  grid-template-rows: repeat(2, auto);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  justify-content: center;
}
.tile {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  position: relative;
  transition: all ease-in 600ms;
  display: inline-flex;
  z-index: 777;
}
.tile a{ display: flex;}
.tile a:hover .tile-text, .tile a:hover .descp{ bottom: 10px; transition: all ease-in-out 500ms;}

.tile img {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  border-radius: 15px;
  width: 100%;
  -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
  transition: all ease-in 600ms;
}
.tile img:hover {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  -webkit-filter: grayscale(0);
	filter: grayscale(0);
  transition: all ease-in 600ms;
}

/* Hint: Notice the position:absolute and z-index properties. */
/* Think about how those in relation to the existing "tile" classes. */
.tile-text{text-indent: 10px;}
.tile-text, .descp {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 50%;
  text-align: left;
  bottom:-60px;
  color: #fff;
  transition: all ease-in-out 500ms;
  
}
.descp {right: 0;}
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.pexels.com/photos/2422461/pexels-photo-2422461.jpeg?cs=srgb&dl=pexels-josh-hild-2422461.jpg&fm=jpg");
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.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;
}

/* activity page css */

.activity-card {
  color: #000;
  position: relative;
  height: 350px;
  /* width: calc(25% - 20px); */
  /* padding: 6px; */
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.activity-card img {
  width: 100%;
  height: 100%;
  /* border-radius: 8px; */
  -webkit-transition: 0.2s all;
  /* -webkit-filter: brightness(70%); */
}
.activity-card img:hover {
  -webkit-filter: brightness(50%);
  /* transform: scale(1.1); */
}

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

.adventure-card {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  position: relative;
  transition: all ease-in 600ms;
  /* display: inline-flex; */
  border: 1px solid #a5a5a5;
    border-radius: 2px;
    padding-bottom: 0;

}
.adventure-card a{}
.adventure-card img {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  border-radius:2px;
  width: 100%;
  /* filter: grayscale(1); */
  height: 250px;

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

  filter: brightness(50%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;

}
.adventure-card .imgbox{
  display: flex;
  
}
.resort-details{
  display: flex;
  padding:10px 10px 15px 10px;
  font-weight: 700;
  position: relative;
  flex-direction: column;
}
.adventure-card .hoverDiv{
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.adventure-card:hover .hoverDiv{
  bottom: 0;
  height: 83px;
  /* background: #fff; */
  -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  
}
.price{text-align: right;}
.adventure-card .resort, .adventure-card .price{color: #000;font-weight: 500;font-size: 13px}
  .adventure-card:hover .resort, .adventure-card:hover .price{color: #fff;}
.category{z-index:11;height: 40px;padding:0 20px; border-bottom-left-radius: 15px;border-top-left-radius: 15px;background-color: brown;color: #fff;font-size: 1em;
position: absolute;right: -1px;top: 10%;line-height: 40px;}

/* activity-detail page css */
.cart-details{border:1px solid #a5a5a5}
.desc{flex-direction: column;display: flex;padding: 20px;}
.title-cnt {border-bottom:1px solid #a5a5a5;margin-bottom: 30px;}
.title-cnt p{font-size: 24px;}
.desc h2{font-size: 24px;}
.desc ul{padding:0; margin:0 0 30px 30px;}
.desc li {position: relative;list-style-type: none;padding-left: 20px;}
.desc li::before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  background-color:#a5a5a5;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top:10px;
  /* margin-top: -4px; */
  
}
.cart-details{padding: 20px;border:1px solid #eee;border-radius:4px;}
.cart-details .title {border-bottom:1px solid #a5a5a5;padding-bottom:10px;margin-bottom:20px;font-size: 24px;font-weight: 700;}
.cart-details .status p a {color:#f33636 !important;}





.adventure-detail-card {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
  /* margin: 8px; */
}

.activity-card-image {
  height: 500px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  border-radius: 2px;
}
.activity-card-image:hover {
  -webkit-filter: brightness(50%);
}
.experience-content ul li {
  margin-left: 16px;
  padding: 0;
}
.filter-bar {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 20px 0px;
}

.filter-bar-tile {
  border-right: 1px solid #999;
  padding: 0px 20px;
}

.category-filter {
  border: 1px solid orange;
  border-radius: 20px;
  padding: 5px 20px;
  margin: 10px 10px 10px 0px;
}
.category-banner {
  position: absolute;
  /* height: 50px; */
  padding: 5px 10px;
  box-shadow: 2px 1px 10px 1px rgba(0, 0, 0, 0.3);
  /*
  box-shadow: 0px 9.4px 20.4px rgba(0, 0, 0, 0.13),
    0px 9.2px 20.6px rgba(0, 0, 0, 0.1); */
  min-width: 50%;
  color: #fff;
  background: rgb(255, 145, 0);
  top: 0;
  right: 0;
  z-index: 1;
  margin-top: 16px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0px 0px 10px;
  font-weight: bolder;
}

.reserve-button {
  width: 100%;
  border: none;
  background-color: rgb(255, 145, 0);
  color: #fff;
  font-weight: bolder;
  padding: 15px;
  margin: 20px 0px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.reserve-button:hover {
  background-color: rgb(226, 129, 1);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
#reserved-banner {
  display: none;
}
.reservation-visit-button {
  background-color: rgb(255, 145, 0);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  white-space: nowrap;
  border-radius: 20px;
  cursor: pointer;
}
.reservation-visit-button:hover {
  background-color: rgb(226, 129, 1);
}

#carouselExampleIndicators {
  width: 100%;
}
#reservation-panel-sold-out {
  border: solid 1px #eee;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 30px;
}
#reservation-panel-available {
  border: solid 1px #eee;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 30px;
}
.table{margin-bottom: 0 !important;}
#reservation-table-parent {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); */
  border: 1px solid #dddddd;
}
#reservation-table-parent thead tr {
  background-color: #454545;
  color: #ffffff;
  text-align: left;
  
  color: #fff !important;
  /* background-image: repeating-linear-gradient(to right, rgba(255, 145, 1, 0.6), rgba(255, 145, 1, 0.6) 10px, transparent 10px, transparent);
background-size: 19px 19px;
background-color: rgba(255, 145, 1, 0.6); */
  transition: background 300ms ease-in-out;
}
#reservation-table-parent th,
#reservation-table-parent td {
    padding:10px;
    vertical-align: middle;
}
#reservation-table-parent tbody tr {
  border-bottom: 1px solid #dddddd;
}

#reservation-table-parent tbody tr:nth-of-type(even) {
  background-color: #f4f4f4;
}
/* #reservation-table-parent table tbody tr:nth-of-type(even) > * {
  background: var(--lightblue);
} */

#reservation-table-parent tbody tr:last-of-type {
  border-bottom: 2px solid #454545;
}
.tbl .content{padding-top: 30px;}
.cta {background-image: linear-gradient(to right, #232526 0%, #414345  51%, #232526  100%)}
         .cta {
               margin:0;
    padding:8px 0;
            text-align: center;
            transition: 0.5s;
            background-size: 200% auto;
            color: white !important;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
          }

          .cta:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}
.reservation-visit-button {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #e74c3c; */
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;    
  margin:0;
  padding: 1em 1.2em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 700;
}
.reservation-visit-button:hover, .btn:focus {
  color: #fff;
  outline: 0;
}

.reservation-visit-button {
  border-radius: 3em;
  border-color: #FF9100;
  color: #fff !important;
  background-image: linear-gradient(to right, rgba(255, 145, 1, 0.6), rgba(255, 145, 1, 0.6) 5%, #FF9100 5%, #FF9100 10%, rgba(255, 145, 1, 0.6) 10%, rgba(255, 145, 1, 0.6) 15%, #FF9100 15%, #FF9100 20%, rgba(255, 145, 1, 0.6) 20%, rgba(255, 145, 1, 0.6) 25%, #FF9100 25%, #FF9100 30%, rgba(255, 145, 1, 0.6) 30%, rgba(255, 145, 1, 0.6) 35%, #FF9100 35%, #FF9100 40%, rgba(255, 145, 1, 0.6) 40%, rgba(255, 145, 1, 0.6) 45%, #FF9100 45%, #FF9100 50%, rgba(255, 145, 1, 0.6) 50%, rgba(255, 145, 1, 0.6) 55%, #FF9100 55%, #FF9100 60%, rgba(255, 145, 1, 0.6) 60%, rgba(255, 145, 1, 0.6) 65%, #FF9100 65%, #FF9100 70%, rgba(255, 145, 1, 0.6) 70%, rgba(255, 145, 1, 0.6) 75%, #FF9100 75%, #FF9100 80%, rgba(255, 145, 1, 0.6) 80%, rgba(255, 145, 1, 0.6) 85%, #FF9100 85%, #FF9100 90%, rgba(255, 145, 1, 0.6) 90%, rgba(255, 145, 1, 0.6) 95%, #FF9100 95%, #FF9100 100%);

  background-position: 0 0;
  background-size: 100%;
  transition: background 300ms ease-in-out;
}
.reservation-visit-button:hover {
  background-position: 100px;
}

/* #reservation-table-parent td{
  
} */

.carousel-item{height: 350px;}
.carousel-item img{width: 100%;}
/* detail */
.main-grid{
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: auto auto;
  grid-column-gap: 5px;
  
}

.pro-detals{border:1px solid #eee;border-radius:4px;}
.pro-img-container{
  display: grid;
  grid-template-columns: auto auto auto ;
  /* grid-template-rows: 400px 200px 200px; */
  grid-template-rows:auto;
  /* grid-column-gap: 5px; */
  /* grid-row-gap: 5px; */
  /* grid-column-gap:5px; */
  padding: 20px;  
  align-content: flex-start;
}
.pro-img-container .item-1{grid-column-start: 1;grid-column-end: 3;grid-row-start: 1;grid-row-end: 3;padding-right: 20px;}
.pro-img-container .item-2{grid-column-start: 3;grid-column-end: 4;grid-row-start: 1;grid-row-end: 1;padding-bottom: 20px;}
.pro-img-container .item-3{grid-column-start: 3;grid-column-end: 4;grid-row-start: 2;grid-row-end: 3;}
.pro-img-container img{object-fit: cover;width: 100%;height: 100%;}
.no-result{position: absolute;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    display: flex
;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;}
.no-result h3{color: #f33636;}
/* 404 */

.screen-he100 {
  height: 100vh;
}
.bg{height: 100vh;}
.error {
  text-align: center;
  padding: 16px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%)
}

.error h1 {
  margin: -10px 0 -30px;
  font-size: calc(17vw + 40px);
  opacity: .8;
  letter-spacing:7px;
  font-family: "Jersey 15";
  color: #fff;
}

.error p {
  opacity: .8;
  font-size: 20px;
  margin: 8px 0 38px 0;
  font-weight: bold;
  font-family: "Jersey 15";
  color: #fff;
  font-family: "Roboto", sans-serif;;
}
.error a {
  opacity:1;
  font-size:30px;
  margin: 8px 0 38px 0;
  font-weight: bold;
  font-family: "Jersey 15";
  color: #fff;
  font-weight: 400;
}
@media all and (max-width: 1140px) { 
  .wraper{    
    grid-template-columns:250px 250px 250px;
    grid-template-rows: repeat(3, auto);
    justify-content: center;
  }
  
}
@media all and (max-width: 840px) {
  .wraper{    
    grid-template-columns:250px 250px;
    grid-template-rows: repeat(4, auto);
  }
}
@media all and (max-width: 767px) {
  .wraper{    
    grid-template-columns:250px;
    grid-template-rows: repeat(8, auto);
    
  }
  .hero-subheading{
    font-size: 16px;
  }
  .resort-details {
    display: inherit;
}
.resort, .price{text-align: center;}
}
@media only screen and (min-width: 768px) {
  /* For desktops phones: */
  #reservation {
    width: 400px;
    position: fixed;
  }
}
