/* Carousel */
div.jumbotron.carousel-hero {
    color: #0a0653;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
  }
  
  div.jumbotron.hero-nature {
    /*background-image: url('../../assets/img/hero-background-nature.jpg');*/
   /* background-image: radial-gradient(circle at 50% -20.71%, #ffffe7 0, #ffffdd 10%, #ffffd3 20%, #fdfdc9 30%, #eff8bf 40%, #def2b5 50%, #ccecac 60%, #bae7a6 70%, #a7e2a3 80%, #93dea1 90%, #7fdaa2 100%);*/
   background-color:darkseagreen
  }
  
  div.jumbotron.hero-photography {
    /*background-image: url('../../assets/img/hero-background-photography.jpg');*/
   /* background-image: radial-gradient(circle at 50% -20.71%, #faffff 0, #d8f0fa 25%, #b5def2 50%, #92cbeb 75%, #72b9e5 100%);*/
    background-color:rgb(224, 229, 66);
  }
  
  div.jumbotron.hero-technology {
    /*background-image: url('../../assets/img/hero-background-technology.jpg');*/
    /*background-image: linear-gradient(180deg, #ffffaf 0, #ffffa6 25%, #f2f29d 50%, #d7dd94 75%, #bfca8b 100%);*/
    background-color: #ccecac;
  }
  
  /*h1.hero-title, h2.hero-title, h3.hero-title {
    text-shadow: 0 3px 3px rgba(0,0,0,0.4);
  }*/
  
  p.hero-subtitle {
    max-width: 600px;
    margin: 25px auto;
    padding: 10px 15px;
    color: #a4061e;
  }

  

/* Preguntas desplegables*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&display=swap");
body {
  background: #f6f8fa;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.faq-container {
  max-width: 100%;
  margin: 50px auto 0 auto;
  padding: 2rem;
}

.faq-container h2 {
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #364f6b;
}

details {
  background-color: #f6f8fa;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #d8e0e9;
  /*color: #364f6b;*/
  position: relative;
}

details summary {
  font-weight: 100%;
  font-size: 1.25rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
  color:#0a0653;
}

details p {
  padding: 1rem;
  margin: 0 1rem 1rem 1rem;
  background: #f6f8fa;
  color:#364f6b;
  /*border-left: 2px solid #364f6b;*/
  border-left: 2px solid #a4061e;
}

details ul{
  list-style: decimal;
}
details ol{
  list-style:lower-latin;
}

details:hover,
details[open] {
  box-shadow: 5px 5px 15px #d9d9d9;
}

details[open] {
  background: #ffffff;
}

details[open] summary {
  font-weight: 600;
}

details summary::before {
  position: absolute;
  content: "👇";
  font-size: 1.5rem;
  top: 10px;
  right: 16px;
}

details[open] summary::before {
  -webkit-animation: rotate 0.6s ease-in-out both;
  animation: rotate-emoji 0.6s ease-in-out both;
}

@-webkit-keyframes rotate-emoji {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

