* {
  box-sizing: border-box;
}

html {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 1900px;
  background-color: #e8e8e8;
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8509803922);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

p, .card-title {
  color: #555;
}

a {
  color: #11a1d7;
  text-decoration: none;
}

.cortinilla {
  width: 100vw;
  height: 100vh;
  z-index: 998;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
.cortinilla.on {
  display: block;
}

nav {
  width: 100%;
}
nav ul {
  margin: 0;
  display: flex;
  justify-content: space-evenly;
}
nav ul li {
  list-style: none;
  position: relative;
}
nav ul li a {
  color: #555 !important;
  transition: all 300ms;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 840px) {
  nav ul li a {
    font-size: 0.8em;
  }
}
nav ul li:hover .mariposa, nav ul li.active .mariposa {
  opacity: 1;
  visibility: visible;
}
nav ul li:hover > a, nav ul li.active > a {
  color: #11a1d7 !important;
}
nav .mariposa {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  transition: all 300ms;
  left: -34px;
  top: -2px;
}
@media (max-width: 768px) {
  nav {
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
    position: absolute;
    top: 72px;
  }
  nav.show {
    visibility: visible;
    opacity: 1;
  }
  nav ul {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100%;
    color: white;
    background-color: rgba(253, 253, 253, 0.8784313725);
    padding: 1em;
  }
  nav ul li {
    text-align: center;
    width: 250px;
    font-size: 1.5em;
  }
}

section {
  background-color: #fff;
  text-align: center;
}
@media (min-width: 578px) {
  section {
    text-align: left;
  }
}

h1 {
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  line-height: 1;
  color: #11a1d7;
}
h1.carru-home {
  font-size: 4.5em;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 800px) {
  h1.carru-home {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h1.carru-home {
    font-size: 2em;
  }
}

h2 {
  font-family: "Libre Baskerville", serif;
  line-height: 1;
  color: #11a1d7;
  font-size: calc(1.375rem + 1.5vw);
  font-weight: bold;
}
h2.carru-home {
  font-size: 4.5em;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 800px) {
  h2.carru-home {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h2.carru-home {
    font-size: 2em;
  }
}

h3 {
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  color: #3e8c2e;
}

.card {
  border: 0;
}

.objetivos .fa-solid {
  color: #7cc145;
  font-size: 60px;
}
.objetivos h5 {
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 0.5em;
}

.mb {
  display: none !important;
}
@media (max-width: 600px) {
  .mb {
    display: inline-block !important;
  }
}

.desktop {
  display: none !important;
}
@media (min-width: 601px) {
  .desktop {
    display: inline-block !important;
  }
}

.btn-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 12px;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
}
.btn-toggle:active {
  transform: translateY(4px);
}
.btn-toggle:focus .line:after {
  background-color: black;
}

.line {
  display: block;
  width: 40px;
  padding: 2.5px;
}
.line:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: dimgray;
  border-radius: 2px;
  transform: translateZ(0) rotate(0);
  transition: background-color 0.2s ease-out;
}
.open .line:nth-child(1) {
  animation: jump-1 0.9s forwards ease;
}
.open .line:nth-child(1):after {
  animation: line-1 0.9s forwards ease-in-out;
}
.open .line:nth-child(2) {
  animation: jump-2 0.9s forwards ease;
}
.open .line:nth-child(2):after {
  animation: line-2 0.9s forwards ease-in-out;
}
.close .line:nth-child(1) {
  animation: jump-1 0.9s reverse ease;
}
.close .line:nth-child(1):after {
  animation: line-1 0.9s reverse ease-in-out;
}
.close .line:nth-child(2) {
  animation: jump-2 0.9s reverse ease;
}
.close .line:nth-child(2):after {
  animation: line-2 0.9s reverse ease-in-out;
}
.open .line:nth-child(3), .close .line:nth-child(3) {
  animation: jump-3 0.9s forwards ease-out;
}

@keyframes line-1 {
  10% {
    transform: translateZ(0) rotate(0);
  }
  80% {
    transform: translateZ(0) rotate(395deg);
  }
  90%, 100% {
    transform: translateZ(0) rotate(405deg);
  }
}
@keyframes line-2 {
  10% {
    transform: translateZ(0) rotate(0);
  }
  20% {
    transform: translateZ(0) rotate(10deg);
  }
  90%, 100% {
    transform: translateZ(0) rotate(-405deg);
  }
}
@keyframes jump-1 {
  10% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
  90%, 100% {
    transform: translateY(-5px);
  }
}
@keyframes jump-2 {
  10% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  85%, 100% {
    transform: translateY(-15px);
  }
}
@keyframes jump-3 {
  10% {
    transform: translateY(-5px) rotate(15deg);
  }
  30% {
    transform: translateY(-20px) rotate(-10deg);
  }
  50% {
    transform: translateY(5px) rotate(5deg);
  }
  80% {
    transform: translateY(0);
  }
}
@keyframes glow {
  50% {
    box-shadow: rgba(131, 131, 131, 0.4) 0 0 2px 2px;
  }
}
.invite-socio {
  background-image: url("../img/carrusel/mariposa.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
}

footer {
  background-color: #e8e8e8;
  border-top: 1px solid #666;
  position: relative;
  font-size: 14px;
  padding-bottom: 2.5em;
}
footer a {
  color: #555;
  text-decoration: none;
  transition: 300ms all;
}
footer a:hover {
  color: #11a1d7;
}
footer .rrss {
  display: inline-block;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .rrss a {
  color: #fff;
  background: #11a1d7;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-family: fontawesome;
  font-size: 22px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding-top: 3px;
  margin: 0 2px;
  transition: all 0.5s;
  -webkit-font-smoothing: antialiased;
}
footer .rrss a:nth-of-type(1):before {
  content: "\f16d";
}
footer .rrss a:nth-of-type(2):before {
  content: "\f39e";
}
footer .rrss a:nth-of-type(3):before {
  content: "\f0e1";
}
footer .rrss a:nth-of-type(4):before {
  content: "\e61b";
}
footer .rrss a:nth-of-type(5):before {
  content: "\f167";
}
footer .rrss a span {
  color: #666;
  position: absolute;
  font-family: sans-serif;
  bottom: 0;
  left: -25px;
  right: -25px;
  padding: 5px 7px;
  z-index: -1;
  font-size: 14px;
  border-radius: 2px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
footer .rrss a span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  left: 40px;
}
footer .rrss a:hover {
  background: #003e5b;
}
footer .rrss a:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}
footer .main-footer {
  display: flex;
  margin-top: 50px;
}
footer .main-footer .legal {
  padding: 1em 2em;
  width: 60%;
}
footer .main-footer .legal span {
  font-size: 12px;
  color: #666;
}
@media (max-width: 576px) {
  footer .main-footer .legal {
    width: 100%;
  }
}
footer .main-footer .donar {
  padding: 1em 2em;
  width: 40%;
}
@media (max-width: 576px) {
  footer .main-footer .donar {
    width: 100%;
    padding-bottom: 0;
  }
}

.revistas .slick-slide {
  padding: 5px;
}
.revistas .contenedor {
  position: relative;
  width: 95%;
}
.revistas .contenedor h5 {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5607843137);
  color: #fff;
  text-align: center;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 3px;
}
.revistas .contenedor .hover {
  z-index: 3;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 165, 10, 0.541);
  color: #fff;
  opacity: 0;
  transition: all 300ms;
}
.revistas .contenedor .hover:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .revistas .contenedor .hover {
    opacity: 1;
    background-color: transparent;
  }
}
.revistas img {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.accordion-header .accordion-button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #11a1d7;
}
.accordion-header .accordion-button::after {
  filter: invert(1);
  transition: 300ms all;
}
.accordion-header .accordion-button.collapsed {
  background-color: #8ba8b3;
  transition: 300ms all;
}

.accordion {
  --bs-accordion-color:$grey;
}
.accordion-collapse {
  background-color: #eee;
}

.indice-rev {
  padding-left: 0 !important;
  text-align: left;
}
.indice-rev li {
  list-style: none;
}

#accordionrevista .accordion-header .accordion-button {
  background-color: #11a1d7;
}
#accordionrevista .accordion-header .accordion-button.collapsed {
  background-color: #08688c;
  transition: 300ms all;
}

/* CUSTOM CLASSES */
.glowCookies__border {
  border: 1px solid #e6e6e6 !important;
}

.glowCookies__left {
  left: 15px;
}

.glowCookies__right {
  right: 15px;
}

.glowCookies__show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
}

/* COMMON STYLES */
/* ========================= */
.glowCookies__banner {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  font-family: inherit;
  position: fixed;
  width: auto;
  max-width: 375px;
  z-index: 999;
  box-shadow: 0 0.625em 1.875em rgba(2, 2, 3, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.glowCookies__banner .accept__btn__styles {
  border: none;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  width: 49%;
  cursor: pointer;
  font-weight: bolder;
  transition: filter 0.15s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.glowCookies__banner .settings__btn__styles {
  border: none;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  width: 49%;
  cursor: pointer;
  font-weight: bolder;
  transition: filter 0.15s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.glowCookies__banner .btn__section button:focus {
  outline: none;
  transform: scale(0.95);
  filter: contrast(75%);
}

.glowCookies__banner .btn__section button:hover {
  filter: contrast(85%);
}

@media (max-width: 455px) {
  .btn__section .btn__accept {
    width: 100%;
    margin-bottom: 7px;
  }
  .btn__section .btn__settings {
    width: 100%;
  }
}
/* BANNER STYLE 1 */
/* ========================= */
.glowCookies__banner__1 {
  bottom: 15px;
  border-radius: 20px;
  padding: 20px 25px;
}

.glowCookies__banner__1 > h3 {
  font-size: 24px;
  margin: 0px;
  padding: 8px 0;
}

.glowCookies__banner__1 > p {
  font-size: 15px;
  margin: 0px;
  padding: 0px;
  line-height: 1.3;
}

.glowCookies__banner__1 .read__more {
  font-weight: bolder;
}

.glowCookies__banner__1 .read__more:hover {
  color: #666666;
}

.glowCookies__banner__1 .btn__section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 20px;
}

.glowCookies__banner__1 .btn__section button {
  border-radius: 10px;
}

@media (max-width: 455px) {
  .glowCookies__banner__1 {
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 7px;
  }
  .glowCookies__banner__1 .btn__section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
  }
}
/* Prebanner styles */
/* =========================== */
.prebanner {
  position: fixed;
  bottom: 15px;
  z-index: 999;
  min-height: 50px;
  min-width: 125px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: bolder;
  line-height: normal;
  border: none;
  padding: 12px 18px;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 0.625em 1.875em rgba(2, 2, 3, 0.1);
}

.prebanner__border__1 {
  border-radius: 15px;
}

.animation {
  transition: 0.2s;
}

.animation:hover {
  transform: scale(0.97);
}

.prebanner:hover {
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  text-decoration: none;
  color: #11a1d7;
  font-size: 3em;
  display: none;
  z-index: 997;
  background-color: #fff;
  border-radius: 50%;
  line-height: 0;
  transition: 300ms bottom;
}
.back-to-top:hover {
  bottom: 30px;
}/*# sourceMappingURL=style.css.map */