@font-face {
  font-family: "Candy Beans";
  font-style: normal;
  font-weight: normal;
  src: local("Candy Beans"), url("Candy Beans.woff") format("woff");
}
@font-face {
  font-family: "Bagel Fat One";
  src: url("../fonts/BagelFatOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* GENERAL */
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
body main #page-header {
  background-image: url(../img/2024/bg-internas.webp);
  padding-top: 20px;
  background-size: cover;
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  body main #page-header {
    padding-bottom: 70px;
    padding-top: 230px;
  }
}
@media screen and (min-width: 992px) {
  body main #page-header.submenu {
    padding-top: 290px;
  }
}
body.home {
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(../img/2024/bg-home.webp);
  background-attachment: fixed;
  background-size: cover;
}
body.home main {
  background-image: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
}

strong,
b {
  font-weight: 800;
}

.titulo-internas {
  width: 400px;
}

.title-circle {
  line-height: 1;
  letter-spacing: -0.1rem;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
  .title-circle {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1140px) {
  .title-circle {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .title-circle {
    font-size: 2.5rem;
  }
}

/* LINKS */
a {
  text-decoration: none;
}

p a {
  color: #7a9543;
  text-decoration: underline;
}

a:hover {
  color: #7a9543;
}

.link {
  font-weight: 800;
  color: #273339;
}

.link:hover {
  font-weight: 800;
  color: #7a9543;
}

.btn-1 {
  display: inline-flex;
  padding: 10px 16px 10px 10px;
  border: 2px solid #273339;
  background-color: #273339;
  border-radius: 35px;
  color: white;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.btn-1:hover {
  background-color: #a0c67a;
  border: 2px solid #a0c67a;
  color: #273339;
}
.btn-1:hover span {
  background-color: #7a9543;
}
.btn-1 span {
  display: inline-flex;
  background-color: #a0c67a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.btn-1 span img {
  width: auto;
  height: 1rem;
  filter: brightness(100);
}

.link-arrow {
  border: 2px solid #7a9543;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.link-arrow.sm {
  padding: 5px;
  width: 40px;
  height: 40px;
  border-width: 1px;
}
.link-arrow.sm img {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.link-arrow.lg {
  padding: 10px;
  width: 70px;
  height: 70px;
}
.link-arrow.lg img {
  display: inline-block;
  width: 40px;
  height: 40px;
}

/* IMAGES */
.img-multiply {
  mix-blend-mode: multiply;
}

.img-1 {
  height: 300px;
  width: auto;
}

.box-shadow {
  box-shadow: 11px 11px 19px 0px rgba(0, 0, 0, 0.1);
}

/* GRAPHIC ELEMENTS */
.bg-circle {
  background-size: 100%;
  background-repeat: no-repeat;
}
.bg-circle.contain {
  background-size: contain;
}
@media screen and (min-width: 992px) {
  .bg-circle.contain {
    background-size: 90%;
  }
}
.bg-circle.center {
  background-position: center;
}

.bg-cifras {
  width: 100%;
}
.bg-cifras img {
  width: 100%;
}

/* SECTION HIDE & SHOW */
body.home main, body.prevencion-de-los-nfu main, body.proyectos-de-id main {
  margin-top: 0;
}
body main > section {
  display: none;
  padding-bottom: 3rem;
}
body main > section.active {
  display: block;
}

/* ANIMATIONS */
.animation-updown {
  animation-name: updown;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes updown {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0px;
  }
}
.auto-animation-updown {
  animation-name: auto-updown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

@keyframes auto-updown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.deg180 {
  transform: rotate(180deg);
}

.anime {
  opacity: 0;
  transform: translateY(-50px);
  transition: 1s all ease;
  transition-delay: 0.5s;
}

.anime-init {
  opacity: 1;
  transform: translateY(0);
}

.dL-1 {
  transition-delay: 0.2s;
}

.dL-2 {
  transition-delay: 0.4s;
}

.dL-3 {
  transition-delay: 0.8s;
}

/* COLORS */
.color-grey {
  color: #273339;
}

.color-green {
  color: #7a9543;
}

/* FONT SIZES */
.fS-1 {
  font-size: 60px;
}

.fS-2 {
  font-size: 42px;
}

.fS-3 {
  font-size: 38px;
}

.fS-4 {
  font-size: 30px;
}

.fS-5 {
  font-size: 27px;
}

.fS-6 {
  font-size: 21px;
}

.fS-7 {
  font-size: 18px;
}

.fS-8 {
  font-size: 14px;
}

.fS-9 {
  font-size: 10px;
}

@media (min-width: 992px) {
  .fS-1 {
    font-size: 67px;
  }
  .fS-2 {
    font-size: 52px;
  }
  .fS-3 {
    font-size: 48px;
  }
  .fS-4 {
    font-size: 40px;
  }
  .fS-5 {
    font-size: 32px;
  }
  .fS-6 {
    font-size: 24px;
  }
  .fS-7 {
    font-size: 20px;
  }
  .fS-8 {
    font-size: 16px;
  }
  .fS-9 {
    font-size: 12px;
  }
}
/* UTILITIES */
.lH-1 {
  line-height: 1;
}

.lH-2 {
  line-height: 1.2;
}

.lH-3 {
  line-height: 1.5;
}

@media (min-width: 992px) {
  .lH-lg-1 {
    line-height: 1;
  }
  .lH-lg-2 {
    line-height: 1.2;
  }
  .lH-lg-3 {
    line-height: 1.5;
  }
}
.radius-30 {
  border-radius: 30px;
}

/* HEADER */
#main-header {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
  z-index: 20;
}
@media (min-width: 992px) {
  #main-header {
    padding-top: 50px;
    padding-bottom: 10px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*  HEADER > MENU */
.menu-row {
  position: relative;
}

nav#main-menu > ul {
  display: flex;
  justify-content: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav#main-menu > ul > li {
  flex: 1 1 0px;
  text-align: center;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
nav#main-menu > ul > li.active.has-children::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 25px 25px;
  border-color: transparent transparent #7a9543 transparent;
  z-index: 10;
  position: relative;
}
nav#main-menu > ul > li > a {
  font-weight: 800;
  color: #273339;
  font-size: 1.05rem;
}
nav#main-menu > ul > li > a:hover {
  color: #476359;
}
nav#main-menu > ul > li ul.submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
nav#main-menu > ul > li.active > a {
  font-weight: 800;
  color: #7a9543;
}
nav#main-menu > ul > li.active ul.submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  min-height: 62px;
  top: 92px;
  left: 0;
  background-color: #7a9543;
  font-weight: 500;
  border-radius: 30px;
  padding: 12px 24px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  z-index: 9;
}
nav#main-menu > ul > li.active ul.submenu li {
  flex: 1 1 0px;
  text-align: center;
}
nav#main-menu > ul > li.active ul.submenu li a {
  color: white;
  font-weight: 500;
}
nav#main-menu > ul > li.active ul.submenu li a:hover {
  color: #a0c67a;
}
nav#main-menu > ul > li.active ul.submenu li.active a {
  font-weight: 800;
  color: #a0c67a;
}

/* MENU MOBILE */
#btn-menu-mobile {
  position: relative;
  z-index: 21;
}

#main-menu-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  background-color: #7a9543;
  background-image: url(../img/2024/bg-menu-mobile.webp);
  background-size: cover;
  color: white;
  height: 100%;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 22;
  transition: 0.3s;
  width: 100%;
  padding: 25px 30px;
}
#main-menu-mobile.open {
  left: 0;
}
#main-menu-mobile > ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
#main-menu-mobile > ul li {
  display: flex;
  align-items: center;
}
#main-menu-mobile > ul li::before {
  content: url(../img/2024/menu-1.svg);
  display: inline;
  width: 15%;
  height: auto;
  margin-right: 10px;
}
#main-menu-mobile > ul li:first-child::before {
  content: url(../img/2024/menu-1.svg);
}
#main-menu-mobile > ul li:nth-child(2)::before {
  content: url(../img/2024/menu-2.svg);
}
#main-menu-mobile > ul li:nth-child(3)::before {
  content: url(../img/2024/menu-3.svg);
}
#main-menu-mobile > ul li:nth-child(4)::before {
  content: url(../img/2024/menu-4.svg);
}
#main-menu-mobile > ul li:last-child::before {
  content: url(../img/2024/menu-5.svg);
}
#main-menu-mobile > ul li::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  display: inline-block;
  margin-left: 0.5em;
  width: 15%;
  font-size: 1.25rem;
  font-weight: 900;
  color: #273339;
}
#main-menu-mobile > ul li a {
  color: #273339;
  font-size: 1.25rem;
  padding: 9px 2px;
  display: inline;
  line-height: 1.1;
  width: 70%;
}
#main-menu-mobile > ul > li {
  margin-bottom: 7px;
  margin-top: 7px;
}
#main-menu-mobile > ul > li > a {
  font-weight: bold;
}
#main-menu-mobile > ul > li.active > a {
  text-decoration: underline;
}
#main-menu-mobile ul.submenu {
  display: none;
}
@media screen and (min-width: 992px) {
  #main-menu-mobile ul.submenu {
    display: flex;
    flex-direction: row;
  }
}
#main-menu-mobile ul.submenu > li.active > a {
  background-color: white;
  color: #7a9543;
  border-radius: 30px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -13px;
}
#main-menu-mobile ul li ul.submenu {
  padding-left: 1rem;
}

/* Mobile menu button */
.button-circle {
  width: 50px;
  height: 50px;
  background-color: #7a9543;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1254901961);
  position: fixed;
  top: 34px;
  right: 15px;
  z-index: 100;
}

#btn-menu-mobile {
  width: 30px;
  height: 25px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#btn-menu-mobile span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: white;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#btn-menu-mobile span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#btn-menu-mobile span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}
#btn-menu-mobile span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}
#btn-menu-mobile.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
#btn-menu-mobile.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#btn-menu-mobile.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 5px;
}

/* MENU PAGES */
nav.nav-subpages {
  padding-bottom: 1rem;
  display: flex;
  align-content: center;
}
nav.nav-subpages a {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
nav.nav-subpages a:last-child {
  width: 75%;
}
nav.nav-subpages a.link-arrow {
  background-color: #273339;
  transition: all 0.3s;
  margin-right: 10px;
}
nav.nav-subpages a.link-arrow img {
  filter: brightness(100);
}
nav.nav-subpages:hover a.link-arrow {
  background-color: #476359 !important;
  border-color: #476359;
}
nav.pages {
  display: flex;
  align-items: center;
}
nav.pages a {
  line-height: 1;
  text-align: right;
}
@media screen and (min-width: 992px) {
  nav.pages a {
    text-align: left;
  }
}
nav.pages a.link-arrow {
  background-color: #7a9543;
  margin-left: 10px;
  transition: all 0.3s;
}
nav.pages a.link-arrow img {
  filter: brightness(100);
}
nav.pages:hover a.link-arrow {
  background-color: #476359 !important;
  border-color: #476359;
}

/* FOOTER */
nav.social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
nav.social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #273339;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
nav.social ul li a i {
  font-size: 20px;
}
nav.social ul li a:hover {
  background-color: #7a9543;
  color: #fff;
}
nav.social ul li a > svg {
  width: 20px;
  height: auto;
}
nav.social ul li a > svg path {
  fill: #fff;
}
nav.social ul li a:hover > svg path {
  fill: #fff;
}

/* HOME */
#animation-home {
  cursor: pointer;
}

@media (min-width: 992px) {
  #animation-home {
    margin-top: -80px;
  }
}
/* PAGES */
@media (min-width: 992px) {
  #page-header {
    margin-top: -20px;
  }
}
#animation-page-header {
  margin-top: -60px;
}

@media (min-width: 992px) {
  #animation-page-header {
    margin-left: -60px;
    margin-top: 0;
  }
}
.animation-leaf {
  position: absolute;
  top: 270px;
  right: 0;
  z-index: 12;
}

@media (min-width: 992px) {
  .animation-leaf {
    top: 65px;
    right: 65px;
  }
}
/* PAGES > FOOTER */
main > section > footer {
  padding-top: 1.5rem;
}

.nav-subpages {
  padding-bottom: 1rem;
}

/* FIGURE 1 - ANIMATION */
.figure-1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 500px);
}

@media (min-width: 768px) {
  .figure-1 {
    height: calc(100vh - 350px);
  }
}
@media (min-width: 992px) {
  .figure-1 {
    height: calc(100vh - 200px);
  }
}
.layer {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

.layer.l1 {
  z-index: 3;
  animation: none;
  animation-name: layers;
}

.layer.l2 {
  z-index: 4;
  animation-name: layers2;
}

.layer.l3 {
  z-index: 5;
  animation-name: layers3;
}

.layer.l4 {
  z-index: 6;
  animation-name: layers4;
}

.layer.content {
  z-index: 7;
  animation-name: no-animation;
  text-align: center;
  top: 10%;
}

.layer img {
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: auto;
}

@keyframes layers {
  0% {
    top: 0px;
  }
  50% {
    top: 5px;
  }
  100% {
    top: 0px;
  }
}
@keyframes layers2 {
  0% {
    top: 0px;
  }
  50% {
    top: 12px;
  }
  100% {
    top: 0px;
  }
}
@keyframes layers3 {
  0% {
    top: 0px;
  }
  50% {
    top: 24px;
  }
  100% {
    top: 0px;
  }
}
@keyframes layers4 {
  0% {
    top: 0px;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0px;
  }
}
.data-row > div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.data-row > div h4 {
  text-transform: uppercase;
  font-size: 1.25rem;
}

#cifras-destacadas .data-row .box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  min-height: 300px;
}
#cifras-destacadas .data-row h4 {
  font-family: "Bagel Fat One", cursive;
  font-size: 2rem;
  color: #7a9543;
}
#cifras-destacadas .data-row .data {
  font-weight: 700;
  font-size: 1.25rem;
  color: #273339;
}

#prevencion-de-los-nfu .box {
  position: relative;
  padding: 30px;
  height: 100%;
  border-radius: 15px;
}
#prevencion-de-los-nfu .box img {
  width: 100%;
  max-width: 170px;
  display: block;
  margin: 0 auto 15px;
}
#prevencion-de-los-nfu .box h3 {
  font-family: "Candy Beans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}
#prevencion-de-los-nfu .box h3 b {
  font-weight: 400;
  color: white;
}
#prevencion-de-los-nfu .box ul {
  margin-left: -15px;
  margin-top: 10px;
  line-height: 1.3;
}
#prevencion-de-los-nfu .box ul li {
  margin-bottom: 10px;
}
#prevencion-de-los-nfu .box ul li::marker {
  color: white;
}
#prevencion-de-los-nfu .box.green-3 {
  background-color: #ccd970;
}
#prevencion-de-los-nfu .box.green-4 {
  background-color: #acc872;
}
#prevencion-de-los-nfu .box.green-5 {
  background-color: #d1e6c7;
}
#prevencion-de-los-nfu .box.grey-3 {
  background-color: #b7b9b6;
}

ul.proyectos-list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
}
ul.proyectos-list li figure {
  background-image: url(../img/2023/bg-circulo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 1rem;
  padding: 30px 0;
}
ul.proyectos-list li figure img {
  max-width: 250px;
  height: auto;
  border-radius: 50%;
}
ul.proyectos-list li p {
  text-align: center;
  font-weight: 300;
}

/* Memoria 2024 */
body.home #footer {
  position: absolute;
  bottom: -70px;
}
@media screen and (min-width: 768px) {
  body.home #footer {
    width: 100%;
    position: static;
    transform: translateX(0);
  }
}
@media screen and (min-width: 992px) {
  body.home #footer {
    width: 100%;
    position: static;
    margin-top: -160px;
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .anime-home {
    position: static;
    bottom: auto;
    left: auto;
    transform: translateX(0);
  }
}

footer.footer-internas a {
  color: white;
}
footer.footer-internas .nav-subpages {
  margin-left: 10px;
  background-color: #a0c67a;
  border-radius: 30px 0 0 30px;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  footer.footer-internas .nav-subpages {
    margin-left: 15%;
  }
}
footer.footer-internas .pages {
  width: 100%;
  margin-top: 10px;
  margin-right: 10px;
}
footer.footer-internas .pages .nav {
  background-color: #273339;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: 0;
  padding: 5px;
  border-radius: 0 50px 50px 0;
}
@media screen and (max-width: 768px) {
  footer.footer-internas .pages .nav {
    width: calc(100% - 15px);
  }
}
footer.footer-internas .pages .nav a {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  footer.footer-internas .pages .nav a {
    font-size: 2rem;
  }
}
footer.footer-internas .pages .nav a:first-child {
  width: 75%;
}
@media screen and (min-width: 768px) {
  footer.footer-internas .pages .nav a:first-child {
    width: auto;
  }
}

.vehicle-bg {
  position: absolute;
  top: -55px;
  left: -55px;
  z-index: -1;
}

.vehicle-row {
  border: 2px solid #acc872;
  border-radius: 20px;
  padding: 15px 30px;
  background-color: #f2ffeb;
  line-height: 1.1;
}
@media screen and (min-width: 992px) {
  .vehicle-row {
    border-radius: 80px;
  }
}
.vehicle-row .vehicle-description {
  font-weight: 700;
  font-size: 1.5rem;
}
.vehicle-row .vehicle-numbers {
  font-weight: 700;
  font-size: 1.85rem;
  color: #7a9543;
}

.proyectos-row .titulo-principal {
  background-color: #8a8a8a;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.proyectos-row .titulo-principal h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .proyectos-row .titulo-principal h1 {
    font-size: 1.4rem;
  }
}
.proyectos-row .bloque-proyecto {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.proyectos-row .bloque-proyecto .row {
  height: 100%;
  margin: 0;
}
.proyectos-row .bloque-proyecto .imagen-container {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.proyectos-row .bloque-proyecto .contenido-texto {
  background-color: #a4c67c;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proyectos-row .bloque-proyecto .contenido-texto h3 {
  color: #2d4a2b;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .proyectos-row .bloque-proyecto .contenido-texto h3 {
    font-size: 1.2rem;
  }
}
.proyectos-row .bloque-proyecto .contenido-texto .colaboracion {
  color: #4a6b47;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .proyectos-row .bloque-proyecto .contenido-texto .colaboracion {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .proyectos-row .bloque-proyecto {
    height: auto;
  }
  .proyectos-row .bloque-proyecto .row {
    flex-direction: column;
  }
  .proyectos-row .bloque-proyecto .imagen-container {
    min-height: 250px;
    order: 2;
  }
  .proyectos-row .bloque-proyecto .contenido-texto {
    min-height: 250px;
  }
}

.accordion .accordion-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border: none;
  border-radius: 15px;
}
.accordion .accordion-item .accordion-header .accordion-button {
  background-color: #f8f9fa;
  color: #4a6b47;
  border-radius: 7px !important;
  box-shadow: none;
  font-size: 1.375rem;
  font-weight: 700;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #acc872;
  color: inherit;
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 1rem;
}
.accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
  font-size: 1.25rem;
}
.accordion .accordion-item .accordion-collapse .accordion-body img.img-accordion {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1254901961);
  max-height: 500px;
  width: auto;
}
.accordion .accordion-item .accordion-collapse .accordion-body .row {
  margin: 0;
}
.accordion .accordion-item .accordion-collapse .accordion-body .row [class^=col-] {
  padding: 0;
}
.accordion .accordion-item .accordion-collapse .accordion-body .row .col-md-6:last-child {
  padding: 1.5rem;
}
.accordion .accordion-item .accordion-collapse .accordion-body .row .col-md-6:last-child p {
  margin-bottom: 1rem;
}
.accordion .accordion-item .accordion-collapse .accordion-body .row .col-md-6:last-child p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-collapse .accordion-body .row {
    flex-direction: column;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body .row .col-md-6 {
    width: 100%;
  }
}
.huella {
  width: 100%;
  height: 50px;
  background-image: url(../img/2024/huella-rueda-4.svg);
  background-size: auto 50px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -6px;
}

.animation-home {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (min-height: 760px) {
  .animation-home {
    height: calc(100vh - 312px);
  }
}
@media screen and (max-height: 650px) {
  .animation-home #animation_container {
    max-width: 740px;
  }
}
@media screen and (max-height: 760px) {
  .animation-home #animation_container {
    max-width: 840px;
  }
}
@media screen and (max-height: 800px) {
  .animation-home #animation_container {
    max-width: 920px;
  }
}
@media screen and (min-height: 900px) {
  .animation-home #animation_container {
    max-width: 1100px;
  }
}
@media screen and (min-width: 992px) {
  .animation-home {
    height: 100vh;
  }
}
.animation-home #animation_container {
  width: 100% !important;
  height: auto !important;
}
.animation-home #animation_container #dom_overlay_container {
  width: 100% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
}
.animation-home #animation_container #dom_overlay_container canvas#canvas {
  width: 100% !important;
  height: auto !important;
}

#animation_container {
  width: 100% !important;
  height: auto !important;
}
#animation_container #dom_overlay_container {
  width: 100% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
}
#animation_container #dom_overlay_container canvas#canvas {
  width: 100% !important;
  height: auto !important;
}/*# sourceMappingURL=style.css.map */