html,
body,
header,
.view {
  height: 100vh;
}


body {
  background-color: #e9ecef;
}

/* nav  */

header .primer {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 40px 0 black;
}

header .logo img {
  height: 90px;
  padding: 10px 0;
  float: left;
  font-weight: bold;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  line-height: 90px;
  padding: 0 20px;
  font-family: sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #fff;
  background: #f09420;
  height: 100%;
  transition: 0.5s;
}

.menu-toggle {
  color: #fff;
  float: right;
  line-height: 70px;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

h1 {
  letter-spacing: 8px;
}

h5 {
  letter-spacing: 3px;
}

.hr-light {
  border-top: 3px solid #fff;
  width: 100px;
}

.imagen-intro {
  background-image: url('../tours/lagos-de-moreno/img/templo-del-calvario-lg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* /nav  */

.hr-linea {
  border-top:3px solid #e2e2e2;
  width: 80%;
}

/* Botones */
.btn-galeria {
  text-align: center;
  padding: 10px 50px;    
  border-radius: 50px;
  background: #ff6826;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.btn-galeria:hover {
  border: 2px solid #ff6826;
  background:#fff;
  color: #ff6826;   
}

.btn-reserva {
  text-align: center;
  padding: 10px 50px;    
  border-radius: 50px;  
  background: #48c857;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.btn-reserva:hover {
  border: 2px solid #48c857;
  background:#fff;
  color: #48c857; 
}
/* / Botones */

.informes {
  display: flex;
  justify-content: space-evenly;
}

/************************************* CAJA DE COMENTARIOS **************************************/

.accordion {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 30px;
}

.accordion h4 {
  display: block;
  margin: 0 0 30px 0;
  color: rgb(165, 162, 161);
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.accordion .comentarios {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 2;
}

ul {
  list-style: none;
}

.accordion ul li {
  position: relative;
  padding-bottom: 4px;
}

.accordion ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.accordion ul li:nth-of-type {
  padding-bottom: 0;
}

.accordion ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}

.accordion ul li i:before,
.accordion ul li i:after {
  content: '';
  position: absolute;
  background: #ff6873;
  width: 3px;
  height: 9px;
}

.accordion ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.accordion ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

.accordion .comentarios,
.accordion ul li i:before,
.accordion ul li i::after {
  transition: all 1s ease-in-out;
}

.accordion ul li input[type='checkbox'] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.accordion ul li input[type='checkbox']:checked ~ .comentarios {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.accordion ul li input[type='checkbox']:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.accordion ul li input[type='checkbox']:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/************************************* FIN CAJA DE COMENTARIOS **************************************/

@media (max-width: 740px) {
  html,
  body,
  header,
  .view {
    height: 100vh;
  }
}

.top-nav-collapse {
  background-color: black !important;
  transition: 2s;
}

@media (max-width: 991px) {
  .imagen-intro {
    background-image: url('../tours/lagos-de-moreno/img/templo-del-calvario-sm.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  header .primer {
    padding: 0 30px;
  }

  header .primer .logo img {
    height: 70px;
    transition: 1s;
  }

  .menu-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 50px);
    background: black;
    top: 70px;
    left: -100%;
    transition: 1s;
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }

  header nav ul li a {
    line-height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }