* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.zoom-in-zoom-out {
  margin: 0;
  width: 180px;
  height: 180px;
  animation: zoom-in-zoom-out 4s ease-out infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5, 1.5);
  }

  100% {
    transform: translate(-50%, -50%) scale(1, 1);
  }
}

.loader {
  background-image: url(/img/bannerinicio1.webp);
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  clip-path: circle(150% at 100% 0);
  transition: clip-path 0.8s ease-in-out;
  transition-duration: 2.5s;
  overflow: hidden;
}

.loader2 {
  clip-path: circle(0% at 100% 100%);
}

/*---scrollbar---*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#f4a236, transparent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #8ed959);
}

/*---header---*/

.parallax {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
  background-image: linear-gradient(
      rgba(134, 84, 27, 0.466),
      rgba(0, 114, 184, 0.459)
    ),
    url(/img/bannerinicio1.webp);
  background-position: center;
  background-size: cover;
  visibility: hidden;
}

.parallax::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #1c0522, transparent);
  z-index: 10;
}

.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.parallax #slogan {
  position: absolute;
  color: #110011;
  font-size: 6vmax;
  text-align: right;
  font-family: "Rancho", sans-serif;
  transform: translateY(-100px);
  margin-left: 45vw;
}

.parallax #btn {
  text-decoration: none;
  display: inline-block;
  padding: 8px 35px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 2px;
  background: #110011;
  border-radius: 20px;
  transform: translate(40vw, 120px);
}

.parallax #btn:hover {
  background: #3d003d;
}

@media only screen and (max-width: 1080px) {
  .parallax {
    align-items: flex-start;
  }

  .parallax img {
    top: 0;
    left: 0;
    transform: none;
    width: auto;
    height: 100%;
  }

  .parallax #slogan {
    font-size: 5.5vmax;
    margin-left: 30vw;
    transform: translate(15vh, 80px);
  }

  .parallax #btn {
    transform: translate(10vw, 250px);
  }
}

@media only screen and (max-width: 600px) {
  .parallax {
    flex-direction: column-reverse;
  }

  .parallax img {
    top: 0;
    left: 0;
    transform: translate(0, 150px);
    width: 200%;
    height: 65%;
  }

  .parallax #slogan {
    font-size: 5.5vmax;
    transform: translate(-12vh, -280px);
    align-items: flex-start;
  }

  .parallax #btn {
    transform: translate(30vw, 300px);
    z-index: 20;
  }
}

.header-area {
  background-color: transparent;
  position: fixed;
  width: 100%;
  padding: 0.4% 5%;
  z-index: 9999;
}

.header-container {
  display: table;
  width: 100%;
  margin: auto;
}

.site-logo a img {
  float: left;
  width: 350px;
}

.site-nav-menu {
  float: right;
}

.primary-menu {
  list-style: none;
}

.primary-menu li {
  display: inline-block;
  padding: 8px 12px;
}

.primary-menu a {
  color: #fff;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.5s;
}

.primary-menu li a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f44336;
  bottom: 0px;
  left: 0;
  transition: all 0.5s;
}

.primary-menu li a:hover:after {
  width: 100%;
}

.primary-menu li .active:after {
  width: 100%;
}

.mobile-nav {
  display: none;
}

.mobile-nav i {
  float: right;
  margin: 10px;
  padding: 10px;
  font-size: 24px;
  color: #fff;
  outline: none;
  cursor: pointer;
}

.scroll {
  background-color: #fff;
  transition: 1.2s;
}

.scroll .site-nav-menu ul li a,
.scroll .has-submenu ul li a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
}

.site-nav-menu ul li:hover::after,
.site-nav-menu ul li.active::after {
  width: 100%;
}

/*--sub-menu--*/

.has-submenu:hover .submenu {
  display: flex;
}

.submenu {
  display: none;
  flex-direction: column;
  position: absolute;
  background-color: transparent;
  padding: 10px;
  z-index: 999;
}

.submenu li {
  margin: 5px 0;
}

.submenu a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.5s;
}

.submenu a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f44336;
  bottom: 0px;
  left: 0;
  transition: all 0.5s;
}
.submenu-scroll {
  background-color: #fff;
  border-radius: 20px;
  transition: 1.3s;
}

.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 62px;
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  font-size: 13px;
  padding: 12px 34px;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  background: transparent;
  transition: 1s;
}

.hero-btn:hover {
  border: 1px solid #f4a236;
  background: #f4b136;
}
/*--botón de apoyo--*/
.submenu .btn-apoyo:after {
  background-color: transparent;
}
.btn-apoyo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 3rem;
  background-size: 300% 300%;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#212121, #212121),
    linear-gradient(
      137.48deg,
      #ffdb3b 10%,
      #fe53bb 45%,
      #8f51ea 67%,
      #0044ff 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

strong {
  z-index: 2;
  font-family: "Avalors Personal Use";
  font-size: 12px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
  background: rgba(142, 81, 234, 0.704);
}

.btn-apoyo:hover #container-stars {
  z-index: 1;
  background-color: #212121;
}

.btn-apoyo:hover {
  transform: scale(1.1);
}

.btn-apoyo:active {
  border: double 4px #fe53bb;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn-apoyo:active .circle {
  background: #fe53bb;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
}

#stars::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
}

#stars::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*---For mobile display responsive ness---*/
@media only screen and (max-width: 1080px) {
  .site-nav-menu {
    float: none;
    position: absolute;
    background: rgba(242, 203, 87, 1);
    width: 100%;
    left: 0;
    top: 50px;
    height: 100vh;
    clip-path: circle(0% at 100% 0%);
    transition: all 0.8s;
    flex-direction: column;
  }

  .primary-menu li {
    display: block;
    text-align: center;
    margin: 20px 5px;
  }
  .submenu {
    display: none;
    position: relative;
    background-color: rgba(242, 203, 87, 1);
    padding: 10px;
    z-index: 999;
  }

  .submenu a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
  }

  .btn-apoyo {
    margin: 0 auto;
  }
  .mobile-nav {
    display: block;
  }

  .mobile-nav i {
    padding: 0;
  }

  .mobile-menu {
    clip-path: circle(114% at 100% 0%);
  }

  .scroll .mobile-nav i {
    color: #0a0a0a;
  }

  .show-menu .header-area,
  .show-menu .header-container {
    background-color: rgb(242, 203, 87);
  }
}

@media only screen and (max-width: 700px) {
  .text-box h1 {
    font-size: 34px;
  }

  .site-logo a img {
    width: 250px;
    margin: 15px 5px;
  }

  .mobile-menu {
    clip-path: circle(120% at 100% 0%);
  }

  .scroll .mobile-nav i {
    color: #0a0a0a;
  }

  .show-menu .header-area,
  .show-menu .header-container {
    background-color: rgb(242, 203, 87);
  }
}

/*-----corses-----*/

.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

h1 {
  font-size: 36px;
  font-weight: 600;
}

p {
  color: #777;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 10px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.second-row {
  margin-top: -2%;
}

.course-col {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  transition: 0.5s;
}
.course-col p a {
  color: #0077ff;
  text-decoration: none;
  font-size: 16px;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

.course-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }

  .second-row {
    margin-top: 0;
  }
}

/*-----Slider-----*/

.slider {
  width: 80vw;
  height: auto;
  margin: auto;
  overflow: hidden;
  padding-top: 100px;
}

.slider .slide-track {
  margin-top: 58px;
  display: flex;
  animation: scroll 40s linear infinite;
  -webkit-animation: scroll 40s linear infinite;
  width: calc(200px * 14);
}

.slider .slide-inf {
  width: 200px;
}

.slider .slide-inf img {
  width: 100%;
  padding: 0px 10px;
}

.slider h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-200px * 7));
    transform: translateX(calc(-200px * 7));
  }
}

/*-----Sides-----*/
.sidebar-left {
  position: fixed;
  left: -31px;
  top: 0;
  bottom: 0;
  width: 110px;
  background-image: url("/img/leftside2.png");
  background-repeat: repeat-y;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.sidebar-right {
  position: fixed;
  right: -31px;
  top: 0;
  bottom: 0;
  width: 107px;
  background-image: url("/img/leftside2.png");
  background-repeat: repeat-y;
  transform: scaleX(-1);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s ease;
}

@media screen and (max-width: 970px) {
  .sidebar-left {
    width: 200px;
    mask-image: linear-gradient(to right, black 40%, transparent 0%);
    -webkit-mask-image: linear-gradient(to right, black 40%, transparent 0%);
  }

  .sidebar-right {
    width: 105px;
    mask-image: linear-gradient(to left, black 75%, transparent 0%);
    -webkit-mask-image: linear-gradient(to left, black 75%, transparent 0%);
  }
}

@media screen and (max-width: 768px) {
  .sidebar-left,
  .sidebar-right {
    opacity: 0;
    pointer-events: none;
    /* Desactivar eventos de puntero en las imágenes ocultas */
  }
}

/*-----program-----*/

.program {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.program-col {
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.program-col img {
  width: 100%;
  display: block;
}

.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.layer:hover {
  background: rgba(226, 0, 0, 0.7);
  cursor: pointer;
}

.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}

.layer:hover h3 {
  bottom: 45%;
  opacity: 1;
}

/*----- Activities-----*/

.activity {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.activity-col {
  flex-basis: 30%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}

.activity-col img {
  width: 100%;
  border-radius: 10px;
}

.activity-col:hover img {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.activity-col p {
  padding: 0;
}

.activity-col h3 {
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: left;
}

/*----- testimonials-----*/

.testimonials {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.testimonials-col {
  flex-basis: 40%;
  border-radius: 10px;
  margin-bottom: 3%;
  text-align: left;
  background: #fff3f3;
  padding: 25px;
  cursor: pointer;
  display: flex;
}

.testimonials .row {
  justify-content: space-around;
}

@media (max-width: 1520px) {
  .testimonials .row {
    flex-direction: column;
  }
  .video {
    border-radius: 10px;
    margin: auto;
  }
}

@media (max-width: 350px) {
  .testimonials-col iframe {
    max-width: calc(100% - 40px);
    margin: 5px;
    align-items: center;
  }
}
@media (max-width: 350px) {
  .testimonials-col {
    width: 90vw;
    margin-left: 0;
    padding: 0;
    background: none;
  }
  .video {
    border-radius: 10px;
    margin: auto;
    width: 100vw;
  }
}

/*----- call to action-----*/

.cta {
  margin: 100px auto;
  width: 80%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(/img/banner2.webp);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}

.cta h1 {
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}

@media (max-width: 700px) {
  .cta h1 {
    font-size: 14px;
  }
}

.coment {
  width: 70%;
  margin: auto;
  text-align: center;
}

/*----- footer-----*/

.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;  
  background-color: rgb(203, 199, 199);  
}

.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.icons .fab {
  font-size: 24px;
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  transition: 0.5s;
}

.icons .fab:hover {
  transform: scale(1.1);
}

.fa-heart {
  color: #f44336;
}

/*-------- about us page --------*/
.sub-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(/img/background1.webp);
  background-position: cover;
  background-size: cover;
  position: relative;
}

.sub-header .text-box h1 {
  font-size: 36px;
}

.about-us {
  width: 80%;
  margin: auto;
}

.about-us .row {
  width: 100%;
  justify-content: space-around;
}

.about-col {
  flex-basis: 35%;
  padding: 30px 2px;
}

.about-col img {
  width: 100%;
  border-radius: 25px;
}

.img1 {
  animation-duration: 3s;
  animation-name: slideinone;
}

.img2 {
  animation-duration: 3s;
  animation-name: slideintwo;
}

.about-col h1 {
  padding-top: 0;
}

.about-col p {
  padding: 15px 0 25px;
  font-weight: bolder;
}

.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}

.red-btn:hover {
  color: #fff;
}

@keyframes slideintwo {
  0% {
    opacity: 0;
    transform: translateX(-10vw);
  }
  50% {
    transform: translateX(30px);
    opacity: 1;
  }
  70% {
    transform: translateX(-10px);
  }
}

@keyframes slideinone {
  0% {
    opacity: 0;
    transform: translateX(10vw);
  }
  50% {
    transform: translateX(-50px);
    opacity: 1;
  }
  70% {
    transform: translateX(10px);
  }
}

@media (max-width: 970px) {
  .sub-header {
    height: 50vh;
    background-position: cover;
    background-size: cover;
  }

  .sub-header .text-box h1 {
    font-size: 34px;
  }
}

/*--perfiles--*/

.perfiles {
  width: 80%;
  margin: auto;
  padding: 80px 0;
  background-image: url(/img/bannerinicio3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.card {
  max-width: 340px;
  margin: auto;
  margin-top: 40px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.card-header {
  position: relative;
  display: flex;
  height: 200px;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;
}

.card-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 160px;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  transform: scale(1.2);
  transition: 0.5s;
}

.card-avatar {
  width: 100px;
  height: 100px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-64px);
}

.card-fullname {
  position: absolute;
  bottom: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-10px) translateX(-50%);
  left: 50%;
  line-height: 1.2;
}

.card-jobtitle {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 1;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
}

.card-main {
  position: relative;
  flex: 1;
  display: flex;
  padding-top: 8px;
  flex-direction: column;
}

.card-subtitle {
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.card-content {
  padding: 20px;
}

.card-desc {
  line-height: 1.6;
  color: #636b6f;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.card-social {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 30px;
}

.card-social svg {
  fill: rgb(165, 181, 206);
  width: 16px;
  display: block;
  transition: 0.3s;
}

.card-social a {
  color: #8797a1;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background-color: rgba(93, 133, 193, 0.05);
  border-radius: 50%;
  margin-right: 10px;
}

.card-social a:hover svg {
  fill: darken(rgb(165, 181, 206), 20%);
}

.card-social .fb:hover {
  background-color: rgba(24, 119, 242, 1);
}
.card-social .tw:hover {
  background-color: rgba(29, 161, 242, 1);
}
.card-social .inst:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.card-social .wsp:hover {
  background-color: #30bf42;
  stroke: rgba(48, 191, 66, 1);
}

.card-social a:last-child {
  margin-right: 0;
}

.card-buttons {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.card-buttons button {
  flex: 1 1 auto;
  user-select: none;
  background: 0;
  font-size: 13px;
  border: 0;
  padding: 15px 5px;
  cursor: pointer;
  color: #5c5c6d;
  transition: 0.3s;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  outline: 0;
  border-bottom: 3px solid transparent;
}

.card-buttons button.is-active,
.card-buttons button:hover {
  color: #2b2c48;
  border-bottom: 3px solid #8a84ff;
  background: linear-gradient(
    to bottom,
    rgba(127, 199, 231, 0) 0%,
    rgba(207, 204, 255, 0.2) 44%,
    rgba(211, 226, 255, 0.4) 100%
  );
}

.card-section {
  display: none;
}

.card-section.is-active {
  display: block;
  animation: fadeIn 0.6s both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
  }
}

.card-timeline {
  margin-top: 30px;
  position: relative;
}

.card-timeline:after {
  background: linear-gradient(
    to top,
    rgba(134, 214, 243, 0) 0%,
    rgba(81, 106, 204, 1) 100%
  );
  content: "";
  left: 42px;
  width: 2px;
  top: 0;
  height: 100%;
  position: absolute;
}

.card-item {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
  padding-bottom: 30px;
  z-index: 1;
}

.card-item:last-child {
  padding-bottom: 5px;
}

.card-item:after {
  content: attr(data-year);
  width: 10px;
  position: absolute;
  top: 0;
  left: 36px;
  height: 8px;
  line-height: 0.6;
  border: 2px solid #fff;
  font-size: 11px;
  text-indent: -35px;
  border-radius: 50%;
  color: rgba(134, 134, 134, 0.7);
  background: linear-gradient(
    to bottom,
    rgba(81, 106, 204, 1) 0%,
    rgba(81, 106, 204, 1) 100%
  );
}

.card-item-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.card-item-desc {
  font-size: 13px;
  color: #6f6f7b;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

.card-contact-wrapper {
  margin-top: 20px;
}

.card-contact {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #6f6f7b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  cursor: pointer;
}

.card-contact + .card-contact {
  margin-top: 16px;
}

.card-contact svg {
  flex-shrink: 0;
  width: 30px;
  min-height: 34px;
  margin-right: 12px;
  transition: 0.3s;
  padding-right: 12px;
  border-right: 1px solid #dfe2ec;
}

.contact-me {
  border: 0;
  outline: none;
  background: linear-gradient(
    to right,
    rgba(83, 200, 239, 0.8) 0%,
    rgba(81, 106, 204, 0.8) 96%
  );
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 12px 16px;
  width: 100%;
  border-radius: 5px;
  margin-top: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
}

.contact-me:hover {
  background: linear-gradient(
    to right,
    rgba(83, 200, 239, 1) 0%,
    rgba(81, 106, 204, 1) 96%
  );
}

@media (max-width: 950px) {
  .perfiles {
    flex-direction: column;
  }
  .perfiles .card {
    width: 95%;
    margin: 30px auto;
  }
  .card-contact {
    font-size: 12px;
  }
}

.organigrama {
  width: 80%;
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}

.buttons-more {
  padding: 20px;
}

.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.learn-more {
  width: 12rem;
  height: auto;
  margin: auto 25px;
}

.learn-more .circle-btn {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #012b39;
  border-radius: 1.625rem;
}

.learn-more .circle-btn .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle-btn .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle-btn .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle-btn {
  width: 100%;
}

.learn-more:hover .circle-btn .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}
/*------ contact us page -----*/

.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.location iframe {
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
}

.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
}

/*=================================
            404 page
==================================*/

.page_404 {
  padding: 35px 0 0 0;
  background: #fff;
  text-align: center;
  font-family: "Arvo", serif;
}

.page_404 img {
  width: 24%;
}

.four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/media/a683df6fd0b57db02968b6194c88d868.gif);
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
}

.text_404 h1 {
  font-size: 75px;
  margin: 0;
  margin-top: 25px;
  font-family: "Arvo", serif;
}

.link_404 {
  color: #fff;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
  font-family: "Arvo", serif;
}

.contant_box_404 {
  margin-top: -50px;
  font-size: 20px;
}

.text_404_h3,
.text_404_p {
  font-family: "Arvo", serif;
}

/*---Programas---*/
/*--inicio--ollita--*/
.ollita {
  width: 100%;
  text-align: center;
  position: relative;
}

.programa-ollita {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      rgba(27, 11, 6, 0.493),
      rgba(30, 25, 4, 0.5)
    ),
    url(/img/backgroundOllita.webp);
  background-position: center;
  background-size: cover;
}
.video-main {
  background: rgb(241, 241, 241);
  padding: 1px 0;
}
.video-program {
  width: 80%;
  margin: auto;
  background: rgb(241, 241, 241);
}

.video-col {
  flex-basis: 48%;
  padding: 30px 2px;
  margin: auto;
}
.video-col h1 {
  padding-top: 0;
  font-size: 40px;
}

.video-col p {
  font-size: 16px;
  padding: 15px 0 25px;
}

.programa-ollita .texto-encima {
  width: 80%;
  position: absolute;
  top: 160px;
  left: 15%;
  text-align: left;
}

.programa-ollita .texto-encima h1 {
  color: #f0f0f0;
  font-size: 60px;
  line-height: 100px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.programa-ollita .texto-encima p {
  color: #f0f0f0;
  font-size: 16px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  max-width: 540px;
}
.btn-program {
  text-decoration: none;
  display: inline-block;
  padding: 8px 30px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 2px;
  background: #f39c12;
  border-radius: 20px;
  transform: translate(5px, 20px);
}

.btn-program:hover {
  background: #ffc400;
}
.texto-debajo {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 20px;
}

@media (max-width: 500px) {
  .programa-ollita .texto-encima h1 {
    font-size: 40px;
  }
}
.texto-catalogo {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 5%;
}
.container-ollita {
  padding: 0 30px;
  width: 80%;
  margin: 0 auto;
}
.card_ollita {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.card__image {
  height: 200px;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}
.card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card__body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}
.card__text {
  text-align: center;
  font-size: 16px;
  flex: 1;
  margin-bottom: 15px;
  font-weight: 300;
}
.card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.card__cost {
  font-size: 24px;
  color: #4a60d7;
  font-weight: 300;
}
.button-ollita {
  text-align: center;
}
.button-ollita a {
  display: inline-flex;
  padding: 0 15px;
  background: #f5b041;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  height: 40px;
  width: 200px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.6s ease;
}
.button-ollita a:hover {
  background: #66cc33;
}
.catalog {
  background: #f1f1f1;
  padding: 60px 0;
}
.catalog__title {
  margin-bottom: 60px;
}
.catalog__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.catalog__col {
  width: 33.33333333%;
  padding: 0 15px 30px;
}
@media (max-width: 950px) {
  .container-ollita {
    padding: 0 15px;
  }
  .popular__col {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .catalog__col {
    width: 100%;
  }
}

.msg-donaciones {
  padding: 50px 0;
  width: 80%;
  margin: 0 auto;
}
.msg-donaciones h2 {
  text-align: left;
  margin-bottom: 20px;
}

.msg-donaciones ul {
  padding-left: 20px;
}

.msg-donaciones li {
  margin-bottom: 10px;
}

.msg-donaciones p {
  margin-bottom: 0;
  color: red;
}
.msg-donaciones p strong {
  color: red;
  font-weight: bold;
  font-size: larger;
}

/*---formulario donaciones---*/
.form-donaciones {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}

.form-donaciones img {
  width: 100%;
  height: 100%;
  align-items: center;
}

form {
  width: 100%;
  text-align: center;
  margin: auto;
}
#input-name,
#input-number {
  border: 0;
  outline: 0;
  padding: 1.3em;
  border-radius: 8px;
  display: block;
  width: 100%;
  margin-top: 1em;
  font-family: "Merriweather", sans-serif;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: vertical;
}

form input,
form textarea {
  border: 0;
  outline: 0;
  padding: 1.3em;
  border-radius: 8px;
  display: block;
  width: 100%;
  margin-top: 1em;
  font-family: "Merriweather", sans-serif;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: vertical;
}

form input:focus,
form textarea:focus {
  box-shadow: 0 0px 2px rgba(255, 0, 0, 1) !important;
}

#input-submit {
  color: white;
  background: red;
  cursor: pointer;
}

#input-submit:hover {
  box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
}

textarea {
  min-height: 175px;
  height: auto;
}

.cf h1 {
  margin: 30px 0;
}

.half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}

.right {
  width: 50%;
}

.left {
  margin-right: 2%;
}

.btn-donation {
  width: 30%;
  margin: auto;
}

@media (max-width: 700px) {
  .half {
    width: 100%;
    float: none;
  }
  .form-donaciones img {
    display: none;
  }
}

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}
.favo-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}

.donacion-favo {
  padding: 20px 0;
  width: 80%;
  margin: auto;
}
.donacion-favo h1 {
  text-align: center;
  margin-bottom: 20px;
}
.donacion-favo center a {
  font-size: 22px;
  color: #ff0080;
  text-decoration: none;
}
.donacion-favo .favo-url {
  text-align: center;
}
.favo-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--fin--ollita--*/
/*--inicio-comedor--*/
.comedor {
  width: 100%;
  text-align: center;
  position: relative;
}

.programa-comedor {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      rgba(27, 11, 6, 0.445),
      rgba(30, 25, 4, 0.658)
    ),
    url(/img/backgroundcomedor.webp);
  background-position: center;
  background-size: cover;
}

.programa-comedor .texto-encima {
  width: 80%;
  position: absolute;
  top: 160px;
  left: 15%;
  text-align: left;
}

.programa-comedor .texto-encima h1 {
  color: #f0f0f0;
  font-size: 60px;
  line-height: 100px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.programa-comedor .texto-encima p {
  color: #f0f0f0;
  font-size: 16px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  max-width: 540px;
}

@media (max-width: 500px) {
  .programa-comedor .texto-encima h1 {
    font-size: 40px;
    line-height: 1;
  }
}

.fotos-comedor {
  flex: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.galeria-comedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: auto;
}

.galeria-comedor img {
  width: 0px;
  flex-grow: 1;
  object-fit: cover;
  filter: brightness(80%);
  transition: 0.5s ease;
}

.galeria-comedor img:hover {
  width: 400px;
  opacity: 1;
  filter: brightness(100%);
}

/*--propinas--*/
.container-donativos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  padding-bottom: 50px;
}
.container-donativos h1 {
  padding: 50px 0;
}

#mealsProvided {
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 20px;
  margin-top: -20px;
  background: #ddd;
  color: black;
  padding: 20px;
  border-radius: 4px;
  width: 120%;
}
.infoicon {
  color: black;
  background-color: #ccc;
  font-style: italic;
  border-radius: 5rem;
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: pointer;
}

input[type="range"] {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  outline: none;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #f44336;
  cursor: pointer;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #f44336;
  cursor: pointer;
  border-radius: 50%;
}

input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  background-color: #f44336;
  cursor: pointer;
  border-radius: 50%;
}

.checkOutBtn {
  background-color: #f44336;
  padding: 10px 40px;
  border-radius: 5px;
  transition-duration: 0.4s;
  text-decoration: none;
  color: white;
}

.checkOutBtn:hover {
  background-color: #ffffff;
  color: red;
  border: 2px solid #f44336;
  cursor: pointer;
}
/*--fin-comedor--*/
/*--inicio-club--*/
.club {
  width: 100%;
  text-align: center;
  position: relative;
}

.programa-club {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      rgba(27, 11, 6, 0.281),
      rgba(30, 25, 4, 0.658)
    ),
    url(/img/bannerAdultoMayor.webp);
  background-position: center;
  background-size: cover;
}

.programa-club .texto-encima {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -90%);
  text-align: center;
}

.programa-club .texto-encima h1 {
  color: #f0f0f0;
  font-size: 60px;
  line-height: 100px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.programa-club .texto-encima p {
  color: #f0f0f0;
  font-size: 16px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  max-width: 640px;
}

.btn-program-club {
  text-decoration: none;
  display: inline-block;
  padding: 8px 30px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 2px;
  background: #f39c12;
  border-radius: 20px;
  transform: translate(0px, 5px);
}

.btn-program-club:hover {
  background: #ffc400;
}
@media (max-width: 1100px) {
  .programa-club .texto-encima {
    top: 360px;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}

@media (max-width: 700px) {
  .programa-club .texto-encima {
    width: 100%;
    top: 360px;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .programa-club .texto-encima h1,
  .programa-club .texto-encima p {
    margin: 0 20px;
  }

  .programa-club .texto-encima h1 {
    font-size: 40px;
    line-height: 60px;
  }

  .programa-club .texto-encima p {
    font-size: 14px;
    line-height: 24px;
  }
}

/*--botón para bajar secciones--*/

.scrolldown {
  --color: #ffbf00e3;
  --sizeX: 30px;
  --sizeY: 50px;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: var(100% - 20px);
  height: 50px;
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
}

.btn-down {
  background-color: transparent;
  width: 120%;
  height: 200%;
  cursor: pointer;
  border-color: transparent;
  border-radius: 20px;
  position: absolute;
  left: -10%;
  top: -5%;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
}

.chevrondown {
  margin-top: -25px;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

@media (max-width: 700px) {
  .chevrons {
    margin-left: -2px;
  }

  .scrolldown {
    --sizeX: 25px;
    --sizeY: 40px;
    bottom: 5px;
  }
}
/*----catalogo-----*/
#detalle-club {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
}

.texto-catalogo {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 3%;
}

figure.snip1171 {
  font-family: "Raleway", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 20px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  background: #000000;
  color: #333;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
figure.snip1171 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1171 img {
  max-width: 100%;
  vertical-align: top;
}
figure.snip1171 figcaption {
  position: relative;
  background-color: #ffffff;
  padding: 20px 25px 50px;
}
figure.snip1171 h3 {
  position: absolute;
  bottom: 100%;
  text-transform: uppercase;
  padding: 0px 25px;
  line-height: 44px;
  margin: 0;
  left: 0;
  font-weight: 400;
  background-color: #000000;
  color: #ffffff;
}
figure.snip1171 h3 span {
  font-weight: 800;
}
figure.snip1171 h3:before {
  position: absolute;
  left: 100%;
  border-style: solid;
  border-width: 44px 0 0 12px;
  border-color: transparent transparent transparent #000000;
  content: "";
  top: 0;
}
figure.snip1171 p {
  font-size: 0.8em;
  font-weight: 500;
  text-align: left;
  margin: 0;
  line-height: 1.6em;
}
figure.snip1171 .price {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  background-color: #000000;
  padding: 0 10px;
  line-height: 40px;
  font-weight: 800;
}
figure.snip1171 .price:before {
  position: absolute;
  right: 100%;
  border-style: solid;
  border-width: 0 12px 40px 0;
  border-color: transparent #000000 transparent;
  content: "";
  top: 0;
}
figure.snip1171 a {
  text-decoration: none;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #000000;
  line-height: 40px;
  padding: 0 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9em;
  text-transform: uppercase;
  cursor: pointer;
}
figure.snip1171 a:before {
  position: absolute;
  right: 100%;
  border-style: solid;
  border-width: 0 0 40px 12px;
  border-color: transparent transparent #000000;
  content: "";
  top: 0;
}
figure.snip1171.blue {
  background-color: #2472a4;
}
figure.snip1171.blue h3,
figure.snip1171.blue a,
figure.snip1171.blue .price {
  background-color: #2472a4;
}
figure.snip1171.blue .price:before {
  border-color: transparent #2472a4 transparent;
}
figure.snip1171.blue h3:before {
  border-color: transparent transparent transparent #2472a4;
}
figure.snip1171.blue a:before {
  border-color: transparent transparent #2472a4;
}
figure.snip1171.red {
  background-color: #ab3326;
}
figure.snip1171.red h3,
figure.snip1171.red a,
figure.snip1171.red .price {
  background-color: #ab3326;
}
figure.snip1171.red .price:before {
  border-color: transparent #ab3326 transparent;
}
figure.snip1171.red h3:before {
  border-color: transparent transparent transparent #ab3326;
}
figure.snip1171.red a:before {
  border-color: transparent transparent #ab3326;
}
figure.snip1171.orange {
  background-color: #d67118;
}
figure.snip1171.orange h3,
figure.snip1171.orange a,
figure.snip1171.orange .price {
  background-color: #d67118;
}
figure.snip1171.orange .price:before {
  border-color: transparent #d67118 transparent;
}
figure.snip1171.orange h3:before {
  border-color: transparent transparent transparent #d67118;
}
figure.snip1171.orange a:before {
  border-color: transparent transparent #d67118;
}
figure.snip1171:hover img,
figure.snip1171.hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.donaciones-adulto {
  width: 80%;
  margin: auto;
  background: #f5f5f5;
  padding: 0 50px;
  border-radius: 50px;
}
/*--btn-whatsapp--*/

#btn-mas {
  display: none;
}
.btn-mas {
  position: absolute;
  bottom: 5px;
  right: 0px;
}

.wsp-contact {
  position: fixed;
  bottom: 20px;
  right: 8px;
}

.redes {
  display: flex;
  flex-direction: column;
  width: 250px;
  opacity: 0;
  transition: all 500ms ease;
  visibility: hidden;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  color: #fff;
  background: #fff;
}
.redes .encabezado {
  display: flex;
  flex-direction: column;
  background: #30bf42;
  color: #fff;
  padding: 15px 10px;
  border-radius: 10px 10px 0px 0px;
}
.redes .encabezado b {
  font-size: 20px;
  padding-bottom: 5px;
}
.redes .agentes i {
  font-size: 25px;
  padding: 10px;
  margin: 5px 10px;
  color: #fff;
  background: #30bf42;
  border-radius: 100px;
}
.redes .agentes ul {
  list-style: none;
  padding: 15px 0;
}
.agentes {
  overflow: auto;
  max-height: 300px;
}
.redes .agentes li {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.redes .agentes a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.redes .agentes::-webkit-scrollbar {
  -webkit-appearance: none;
}

.redes .agentes::-webkit-scrollbar:vertical {
  width: 10px;
}

.redes .agentes::-webkit-scrollbar-button:increment,
.redes .agentes::-webkit-scrollbar-button {
  display: none;
}

.redes .agentes::-webkit-scrollbar:horizontal {
  height: 10px;
}

.redes .agentes::-webkit-scrollbar-thumb {
  background-color: #777;
  border-radius: 20px;
  border: 2px solid #777;
}

.redes .agentes::-webkit-scrollbar-track {
  border-radius: 10px;
}

.btn-mas label {
  display: block;
  text-decoration: none;
  font-size: 30px;
  color: #fff !important;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
  transition: all 500ms ease;
}

#btn-mas:checked ~ .redes {
  margin-bottom: 5px;
  opacity: 1;
  visibility: visible;
}
.btn-mas label {
  cursor: pointer;
  background: #30bf42;
  font-size: 30px;
}

/*--fin-club--*/

/*---noticias---*/
.noticias {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.news-two {
  width: 80%;
  margin: auto;
  margin-top: 20px;
  flex: auto;
}

.container-news {
  margin: auto;
}

.row-news {
  clear: both;
  overflow: hidden;
  flex: auto;
}

.column-30,
.column-33,
.column-40,
.column-70 {
  float: left;
  min-height: 1px;
  padding: 5px 5px;
}

.column-60 {
  float: left;
  margin: auto;
  padding: auto;
}

.column-20 {
  width: 20%;
}

.column-30 {
  width: 30%;
}

.column-33 {
  width: 33.33%;
}

.column-40 {
  width: 40%;
}
.column-50 {
  width: 100%;
  flex: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.row-noticias {
  display: flex;
  flex-wrap: wrap;
}

.column-60 {
  width: 60%;
}

.column-70 {
  width: 70%;
  flex-wrap: 100%;
  flex: auto;
}

.column-80 {
  width: 80%;
}

.breaking-news {
  padding: 150px 0 0 0;
  background-image: url(/img/bannernoticias.webp);
  background-size: cover;
  background-position: center;
  font-family: "Arial";
  font-weight: bold;
  font-size: 12px;
  padding-top: 0px;
}

.breaking-news .update-left {
  padding: 5px 0px;
  text-align: center;
  background-color: #005aff;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.breaking-news .update-right {
  padding: 2.5px;
  color: #000;
  background-color: #fff;
  text-align: center;
}

.sidebar-widget,
.news .news-image,
.main-headline,
.side-news-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-headline {
  height: 430px;
}

.side-news-image {
  height: 180px;
  border: solid 1px;
  border-radius: 5px;
}

.main-headline {
  position: relative;
}

.main-headline .headline {
  position: absolute;
  bottom: 20px;
  left: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.66);
  padding: 10px 10px 10px 20px;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: bold;
  font-family: "Arial";
  color: #fff;
}

.main-headline-text p {
  margin: 12px;
  font-size: 18px;
  color: gray;
}

.side-news {
  margin-bottom: 13px;
}

.side-news-data {
  font-family: "Arial";
}

.side-news-data h2 a {
  font-size: 20px;
  color: #333333;
}

.side-news-data p {
  font-size: 10px;
  color: gray;
  width: 100%;
}

.sec-title {
  padding: 10px 10px 10px 25px;
  font-weight: bold;
  color: #000;
  text-shadow: 0px 0px 4px gray;
  background-color: #f1f1f1;
  border-left: 5px solid #3498db;
  font-size: 24px;
  margin-bottom: 15px;
}

.news {
  margin-bottom: 20px;
}

.news .news-image {
  height: 154px;
  margin-bottom: 5px;
}

.news h2 a {
  margin: 10px 0px;
}

.news ul {
  margin-bottom: 5px;
}

.news ul.category li {
  list-style: none;
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 5px;
}

.news p {
  font-size: 12px;
  color: gray;
  padding: 5px;
}

.news .read-more {
  display: flex;
  padding: 7.5px 0px;
  color: #fff;
  text-align: center;
  background-color: #333;
}

.news .read-more:hover {
  background-color: #000;
}

.sidebar-widget {
  margin-bottom: 25px;
}

.sidebar-widget ul {
  margin-left: 30px;
}

.sidebar-widget ul li {
  list-style: square;
  padding-bottom: 10px;
}

.responsive-image {
  width: 60%;
  height: 250px;
  margin: 0 120px;
  margin-left: 20px;
  align-items: center;
}

@media screen and (min-width: 0px) and (max-width: 768px) {
  .column-33 {
    width: 50%;
  }

  .side-news-image {
    height: 140px;
  }

  .side-news-data p {
    display: flex;
  }

  .news-section .news-image {
    height: 100px;
  }

  .responsive-image {
    width: 150px;
    height: 150px;
    margin: 0;
  }
}

@media screen and (min-width: 0px) and (max-width: 480px) {
  .breaking-news {
    padding: 10px 0 0 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .breaking-news .row {
    margin: 0;
  }

  .breaking-news .row .column-20 {
    width: 100%;
  }

  .column-30,
  .column-33,
  .column-40,
  .column-50,
  .column-60,
  .column-70,
  .column-80 {
    float: none;
    width: 100%;
    flex: 100%;
  }

  .side-headline {
    margin: 15px 0px;
  }

  .side-news-image {
    height: 150px;
  }

  .responsive-image {
    width: 150px;
    height: 150px;
    margin: 0 0 0 85px;
  }
}

/*---Aliados---*/
.slider-section {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  position: relative;
}

.title-aliados {
  text-align: center;
  padding-bottom: 40px;
}

.slider-aliados {
  position: relative;
  height: 75vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: -300px;
  left: 0;
  width: 100%;
  opacity: 0;
  background-color: rgba(229, 235, 243, 0.8);
  color: #495b73;
  padding: 1rem;
  line-height: 1.3;
}

.slide .content h1 {
  margin-bottom: 0.625rem;
  color: #362a2b;
  font-size: 1.5rem;
}
.slide .content p {
  color: #000000;
  font-weight: 600;
}

.slide.current .content {
  opacity: 1;
  transform: translateY(-300px);
  transition: all 0.7s ease-in-out;
}

.buttons button#prev,
.buttons button#prev1 {
  position: absolute;
  top: 50%;
  left: 1rem;
}

.buttons button#next,
.buttons button#next1 {
  position: absolute;
  top: 50%;
  right: 1rem;
}

.buttons button {
  border: 2px solid #e5ebf3;
  background-color: transparent;
  color: #e5ebf3;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: #e5ebf3;
  color: #362a2b;
}

@media (min-width: 1080px) and (min-height: 640px) {
  .slide .content {
    bottom: 70px;
    left: -600px;
    width: 600px;
    padding: 2rem;
    line-height: 1.6;
  }

  .slide .content h1 {
    font-size: 2rem;
  }

  .slide.current .content {
    transform: translateX(600px);
  }
}

#aliados-apoyo {
  padding-top: 80px;
}

/*--proyectos--*/
.proyectos {
  width: 80%;
  margin: 0 auto;
}

:root {
  --firefly: #0c1b23;
  --bunker: #141d1d;
  --pewter: #9da09f;
}

/* CSS */
.info-card-container {
  width: 100%;
  height: 65rem;
  background: linear-gradient(
    to bottom,
    rgba(245, 246, 252, 0.5),
    rgba(117, 19, 93, 0.7)
  );
}

.info-card {
  min-width: 80%;
  max-width: 90rem;
  min-height: 60%;
  height: 30rem;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  box-shadow: 0.01rem 0.01rem 1rem var(--firefly);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
}

.info-card__content {
  float: left;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-card__image-exposure {
  width: 55%;
}

.info-card__bio {
  width: 45%;
  padding: 5rem;
  height: auto;
  font-family: "Domine", serif;
}

.info-card__bio--title {
  color: var(--bunker);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.info-card__bio--copy {
  color: var(--pewter);
  line-height: 2;
}

.info-card__image-exposure__item {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.9;
}

.info-card__image-exposure__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px 0px 0px 50px;
}

/*--Apoyo--niña--*/

.main-apoyo {
  height: 725vh;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 75%);
}

.main-social {
  width: 100%;
  text-align: center;
  position: relative;
}
.help-social {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/*balls*/
.wrap {
  width: 100%;
  position: absolute;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 0 auto;
  top: 25%;
}
.balls-wrap {
  height: 500px;
  width: 500px;
  border-radius: 50%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.border {
  opacity: 0.3;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  border-width: 2px;
  height: 500px;
  width: 500px;
  animation: ellipsesRotate 10s ease-in-out infinite;
}
.border:after {
  content: "";
  position: absolute;
  border-radius: 55%;
  opacity: 0.3;
  border: 1px solid transparent;
  height: 500px;
  width: 500px;
}

.img {
  height: 450px;
  width: 450px;
  background-size: cover;
  position: absolute;
  top: 26px;
  left: 25px;
  animation: ellipsesRotateTwo 17s ease-in-out infinite;
}

.orbit {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  position: absolute;
  left: 85px;
}
.orbit:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 55%;
  border: 1px solid #ffffff;
  height: 5px;
  width: 5px;
  background-color: #ffffff;
  animation: none;
}
.greeting {
  position: absolute;
  top: 25%;
  left: 8%;
  text-transform: uppercase;
  letter-spacing: 1rem;
  font-size: 30px;
  font-weight: 900;
  opacity: 0.8;
  color: #ffffff;
}

@keyframes ellipsesRotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes ellipsesRotateTwo {
  0% {
    transform: rotate(77deg);
  }
  100% {
    transform: rotate(437deg);
  }
}

/*--botón principal*/
.btn-social-main {
  position: absolute;
  left: 44.5%;
  top: 60%;
  align-items: center;
  margin: auto;
}
#btn-social {
  position: relative;
  padding: 12px 35px;
  background: #090a0f;
  font-size: 17px;
  font-weight: 700;
  color: #747474;
  border: 3px solid transparent;
  border-radius: 8px;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

#btn-social:hover {
  background: transparent;
  color: #fcbf49;
  box-shadow: 0 0 25px #ffe680;
}

#btn-social:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

#btn-social:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

#btn-social:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

#btn-social:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

#btn-social:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

#btn-social:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}
.fil0 {
  fill: #fffdef;
}

/*-content main--*/
.main {
  margin-top: 100px;
  margin-bottom: 100px;
}

.main-text {
  display: block;
  width: 500px;
  padding: 15px;
  margin: auto;
  border-top: 2px solid #f2f2f2;
  text-align: center;
  color: #fff;
}

.main h2 {
  font-family: League Spartan, Helvetica, sans-serif;
  font-size: 35px;
  margin-top: 10px;
}

.main p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 20px;
  padding: 5px;
  opacity: 0.8;
  color: #fff;
}

.main img {
  width: 350px;
  padding: 50px;
  display: block;
  margin: auto;
}

/*Animation for the div container start.*/

#spaceAnimationHeading {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 100;
  display: absolute;
  margin-top: -100px;
  margin-bottom: 20px;
}

#spaceCite {
  font-size: 30px;
}

#spaceCite::before {
  content: "\2014 \2009";
}

#animationContainer {
  padding: 120px;
  min-height: 500px;
  animation-name: divBackground;
  -webkit-animation-name: divBackground;
  animation-duration: 5s;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-animation-duration: 5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@keyframes divBackground {
  from {
    background-color: rgba(255, 255, 255, 1);
  }
  to {
    background-color: #343538;
  }
}

@-webkit-keyframes divBackground {
  from {
    background-color: rgba(255, 255, 255, 1);
  }
  to {
    background-color: #343538;
  }
}

#box {
  background-color: #592d00;
  width: 250px;
  height: 250px;
  display: block;
  margin: auto;
  position: relative;
  animation-name: box;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: box;
  -webkit-animation-duration: 5s;
  cursor: pointer;
}

#clickMe {
  color: rgb(253, 253, 253);
  font-family: League Spartan, Helvetica, sans-serif;
  font-size: 27px;
  text-align: center;
  vertical-align: center;
  line-height: 250px;
}

@keyframes box {
  from {
    border-radius: 0px;
    background-color: #592d00;
    position: relative;
  }
  to {
    border-radius: 1000px;
    background-color: #f99939;
    position: relative;
  }
}

@-webkit-keyframes box {
  from {
    border-radius: 0px;
    background-color: #592d00;
  }
  to {
    border-radius: 1000px;
    background-color: #f99939;
  }
}

#cratersContainer {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 15s;
  -webkit-animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 15s;
}

.crater {
  width: 25px;
  height: 25px;
  background-color: #d86c00;
  border-radius: 100px;
  margin-left: 170px;
  margin-top: 70px;
  position: absolute;
}

.crater2 {
  width: 35px;
  height: 35px;
  background-color: #b75c01;
  border-radius: 100px;
  margin-left: 50px;
  margin-top: 50px;
  position: absolute;
}

.crater3 {
  width: 15px;
  height: 15px;
  background-color: #723f0d;
  border-radius: 100px;
  margin-left: 80px;
  opacity: 0.6;
  margin-top: 180px;
  position: absolute;
}

.crater4 {
  width: 19px;
  height: 19px;
  background-color: #aa6817;
  border-radius: 100px;
  margin-left: 170px;
  margin-top: 155px;
  position: absolute;
}

.crater5 {
  width: 40px;
  height: 40px;
  background-color: #aa6817;
  opacity: 0.4;
  border-radius: 100px;
  margin-left: 125px;
  margin-top: 100px;
  position: absolute;
}

#starsContainer {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 15s;
  -webkit-animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 15s;
}

.star {
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -250px;
}

.star2 {
  width: 50px;
  height: 50px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -140px;
  left: 30%;
}

.star3 {
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -250px;
  right: 35%;
}

.star4 {
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -70px;
  right: 20%;
}

.star5 {
  width: 25px;
  height: 25px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -170px;
  right: 10%;
}

.star6 {
  width: 33px;
  height: 33px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: -90px;
  left: 15%;
}

.star7 {
  width: 26px;
  height: 26px;
  position: absolute;
  background-color: white;
  border-radius: 500px;
  margin-top: 35px;
  right: 35%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*Animation for the div container end.*/
#section-main {
  padding-top: 50px;
  border-bottom: 2px solid #8f8f8f;
}

.container-apoyo {
  width: 100%;
  border-top: 2px solid #f2f2f2;
  border-bottom: 2px solid #f2f2f2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: space-around;
  transition: all 0.2s linear;
}

.item {
  background-color: #343538;
  padding: 15px;
  color: white;
  text-align: center;
  font-size: 15px;
  border-radius: 15px;
  width: 330px;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: League Spartan, Helvetica, sans-serif;
  flex-basis: 25%;
}

.container-person {
  border-radius: 50%;
  height: 312px;
  -webkit-tap-highlight-color: transparent;
  transform: scale(0.48);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.container-person:after {
  content: "";
  height: 10px;
  position: absolute;
  top: 390px;
  width: 100%;
}
.container-person:hover {
  transform: scale(0.54);
}
.container-inner-person {
  clip-path: path(
    "M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
  );
  position: relative;
  transform-origin: 50%;
  left: 25px;
  top: -200px;
}
.circle-person {
  background-color: #fee7d3;
  border-radius: 50%;
  cursor: pointer;
  height: 380px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 380px;
}
.img-person {
  pointer-events: none;
  position: relative;
  transform: translateY(20px) scale(1.15);
  transform-origin: 75% bottom;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.container-person:hover .img-person {
  transform: translateY(0) scale(1.2);
}
.img-person {
  top: 160px;
  width: 340px;
}
.divider {
  background-color: #ca6060;
  height: 1px;
  width: 160px;
  margin: 0 auto;
}

.mail {
  color: gray;
  margin-top: -15px;
}

h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.descri {
  margin-bottom: 17px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  margin-top: 15px;
  opacity: 0.7;
  color: #fff;
}

.btn {
  cursor: pointer;
  margin-top: 15px;
  padding: 15px;
  font-size: 17px;
  height: 53px;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  width: 160px;
  border-radius: 100px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  margin-bottom: 25px;
  transition: all 0.2s linear;
}

.btn:hover {
  background-color: white;
  color: black;
}

article {
  padding: 70px;
  width: 1000px;
  text-align: center;
  display: block;
  margin: auto;
  color: #fff;
}

blockquote:before {
  display: block;
  content: "\201C";
  font-style: normal;
  font-size: 150px;
  font-family: League Spartan;
  position: absolute;
  margin-top: -50px;
  margin-left: -70px;
  color: #7a7a7a;
}

blockquote cite {
  color: #999999;
  font-size: 17px;
  display: block;
  margin-top: 5px;
}

blockquote cite:before {
  content: "\2014 \2009";
}

blockquote {
  margin-top: 70px;
  width: 800px;
  margin-bottom: 70px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: italic;
  display: block;
}

.secondimg {
  width: 220px;
  border-right: 2px solid #f2f2f2;
  float: left;
  margin-top: -15px;
  margin-right: 50px;
  margin-left: -20px;
}

.content2 {
  padding: 100px;
  width: 1100px;
  display: block;
  margin: auto;
  text-align: center;
  color: #fff;
}

.content2 h2 {
  font-size: 35px;
  font-family: League Spartan, Helvetica, sans-serif;
}

.content2 p {
  font-size: 20px;
}

@media screen and (max-width: 1100px) {
  .container-apoyo {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .item {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .item-2 {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .item-3 {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}

.tabFacts {
  padding: 80px;
  text-align: center;
  display: block;
  margin: auto;
  border-bottom: 2px solid #f2f2f2;
  color: #fff;
}

.tabFacts h1 {
  font-family: League Spartan, Helvetica, sans-serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
}

.tabFacts p {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 18px;
}

.tabButton {
  border: none;
  margin-top: 30px;
  width: 150px;
  cursor: pointer;
  border-radius: 500px;
  border: 2px solid #343538;
  padding: 15px;
  font-family: "Roboto", sans-serif;
  color: white;
  background-color: #343538;
  font-size: 17px;
  margin-right: 20px;
  transition: all 0.2s linear;
}
.tabButton:hover {
  background-color: #1f2021;
  color: white;
  border: 2px solid #1f2021;
}

#button1 {
  background-color: black;
}

.tabContainer {
  max-width: 1200px;
  text-align: center;
  display: block;
  margin: auto;
}

#tabContainer2,
#tabContainer3 {
  display: none;
  transition: all 0.2s linear;
}

.tabContainer img {
  width: 170px;
  float: left;
  margin-top: 30px;
  margin-right: 50px;
}

#tabContainer2 img {
  width: 170px;
  float: right;
  margin-top: 30px;
  margin-left: 50px;
}

/*--book--*/

.tabText {
  width: 90%;
  padding: 25px;
  margin-top: 50px;
  margin-left: 100px;
}

.tabContainer h2 {
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  text-align: left;
  font-weight: 500;
}

.tabContainer p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-align: left;
}

.form-apoyo {
  width: 700px;
  display: block;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  color: #fff;
}

.form-apoyo h1 {
  font-family: League Spartan, Helvetica, sans-serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 50px;
}

input:focus {
  outline: 0;
}

.form-apoyo input {
  display: block;
  margin-bottom: 15px;
  max-width: 700px;
  padding: 10px;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  border-radius: 10px;
  width: 700px;
  border: 2px solid #d8d8d8;
}

.form-apoyo textarea:focus {
  outline: 0;
}

.form-apoyo textarea {
  width: 700px;
  box-sizing: border-box;
  height: 250px;
  border-radius: 10px;
  padding: 10px;
  border: 2px solid #d8d8d8;
  font-size: 17.5px;
  font-weight: 100;
  color: black;
  font-family: "Roboto", sans-serif;
}

.form-apoyo textarea::placeholder {
  font-size: 17.5px;
  font-weight: 100;
  color: gray;
  letter-spacing: 0.5px;
  font-family: "Roboto", sans-serif;
}

.form-apoyo h3 {
  text-align: left;
  padding: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

#form-button {
  border: none;
  background-color: #343538;
  color: white;
  padding: 12px;
  font-size: 17px;
  margin-top: 22px;
  width: 700px;
  border-radius: 500px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: all 0.2s linear;
}

#form-button:hover {
  background-color: black;
}

.form {
  border-bottom: 2px solid #f2f2f2;
}

/*All Media Queries, for Responsive layout */

/*Lorem Ipsum Content-1*/
@media screen and (max-width: 514px) {
  .main img {
    width: 80%;
    padding: 0;
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: 5px;
    margin-right: 5px;
    display: block;
    margin: auto;
    padding-bottom: 80px;
  }

  .main-text {
    width: 100%;
    display: block;
    margin: auto;
  }

  .main-text h2 {
    font-size: 25px;
    text-align: center;
  }

  .main-text p {
    font-size: 16px;
    text-align: center;
  }
}
/*Lorem Ipsum Content-1 end*/

/*Animation Div Container*/
@media screen and (max-width: 945px) {
  .star2 {
    width: 35px;
    height: 35px;
    left: 20%;
  }
  .star3 {
    width: 20px;
    height: 20px;
    left: 25%;
  }
  .star6 {
    width: 27px;
    height: 27px;
    left: 10%;
    margin-top: 30px;
  }
  .star7 {
    width: 16px;
    height: 16px;
    margin-top: 35px;
    right: 25%;
  }
}

@media screen and (max-width: 617px) {
  #starsContainer {
    display: none;
  }
  #box {
    display: block;
    margin: auto;
    margin-left: -35px;
    margin-top: 50px;
  }
  #spaceAnimationHeading {
    width: 95%;
    text-align: center;
    font-size: 25px;
  }
  #spaceCite {
    text-align: center;
    font-size: 18px;
  }
}
/*Animation Div Container Over*/

/*Blockquote Section*/
@media screen and (max-width: 1071px) {
  blockquote:before {
    font-size: 70px;
    margin-left: 10px;
  }
  blockquote {
    font-size: 20px;
    width: 90%;
  }
  article {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 881px) {
  blockquote:before {
    font-size: 70px;
    margin-left: 10px;
  }
  blockquote {
    font-size: 20px;
    width: 90%;
  }
  article {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
/*Blockquote Section*/

/*Lorem Ipsum Content-2*/
@media screen and (max-width: 1071px) {
  .secondimg {
    border-right: none;
    width: 300px;
    padding: 0;
    margin-top: 80px;
    margin-bottom: 80px;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    margin: auto;
    float: none;
  }
  .SecondText {
    width: 80%;
    display: block;
    text-align: center;
    margin: auto;
    padding: 0;
  }
}

@media screen and (max-width: 1053px) {
  .secondimg {
    display: block;
    margin: auto;
  }
  .content2 {
    width: 100%;
    display: block;
    margin: auto;
    text-align: center;
  }
}
/*Lorem Ipsum Content-2*/

@media screen and (max-width: 993px) {
  .tabFacts img {
    float: none;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 40px;
  }
  .tabContainer img {
    float: none;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 40px;
  }
  #tabContainer2 img {
    float: none;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 40px;
  }
  .tabButton {
    margin-bottom: -15px;
  }
  .tabText {
    width: 100%;
    text-align: center;
    margin: auto;
    display: block;
  }
}

/*form section*/
@media screen and (max-width: 732px) {
  .form h1 {
    width: 100%;
    text-align: center;
    display: block;
  }
  form {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: 5px;
    margin-right: 5px;
    display: block;
    margin: auto;
  }
  form input {
    width: 95%;
    display: block;
    margin: auto;
  }
  form textarea {
    width: 95%;
    display: block;
    margin: auto;
  }
  form h3 {
    width: 95%;
    display: block;
    margin: auto;
    text-align: left;
  }
  #form-button {
    width: 95%;
    text-align: center;
    display: block;
    margin: auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 390px) {
  .footer-products-section {
    display: none;
  }
}
/*--blackboard--*/

.blackboard {
  width: 100%;
  height: 502px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.draw {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #ffffffde;
}
/*--section donations 'Index'--*/
.section-pagos-index {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
  text-align: center;
}
.section-pagos-index h1 {
  margin: 0;
  padding: 20px 0;
  color: #000;
}

#tabs-index {
  position: absolute;
  width: 680px;
  height: 580px;
  padding: 30px 20px;
  background: #f5f5f5;
  box-shadow: 5px 5px 10px 5px #ccc;
  overflow: hidden;
}

/*--section donations--*/

.tabs-donaciones h1 {
  margin-top: 20px;
  text-align: center;
}

/* Navegación por tabs */
.navegation-tabs {
  margin: 4.5em auto;
  width: 60%;
}

/* Contenedor links navegación por tabs */
.navegation-tabs .ctn-tabs-links {
  display: flex;
  position: relative;
  top: 1px;
}

/* Contenedor de iconos de la navegación por tabs */
.navegation-tabs .ctn-tabs-links .ctn-icons-tabs {
  background-color: #dddddd;
  border: 1px solid #bbbbbb;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-radius: 5px 5px 0 0;
  color: #4a4a4a;
  cursor: pointer;
  font-size: 1em;
  line-height: 50px;
  margin: 0 1px;
  text-align: center;
  transition-duration: 0.3s;
  width: 150px;
}

/* Efecto hover en el contenedor de los iconos navegación por tabs */
.navegation-tabs .ctn-tabs-links .ctn-icons-tabs:hover,
.navegation-tabs .ctn-tabs-links .ctn-icons-tabs:focus,
.navegation-tabs .ctn-tabs-links .ctn-icons-tabs:active {
  background-color: #cacaca;
  font-size: 20px;
}

/* Contenedor de iconos cuando esta activo navegación por tabs */
.navegation-tabs .ctn-tabs-links .ctn-icons-tabs.active {
  background-color: #f9f9f9;
  font-size: 25px;
  transition-duration: 0.3s;
  z-index: 1;
}

/* Contenedor del que contiene cada contenido de navegación por tabs */
.navegation-tabs .ctn-tabs-contents {
  position: relative;
}

/* Contenedor de cada contenido navegación por tabs */
.navegation-tabs .ctn-tabs-contents-item {
  background-color: #f9f9f9;
  border: 1px solid #bbbbbb;
  display: block;
  line-height: 25px;
  margin: 0 1px;
  padding: 1em;
}

/* Clase para ocultar el contenido mediante jquery */
.navegation-tabs .hide.ctn-tabs-contents-item {
  display: none;
}

/* Título de cada contenido navegación por tabs */
.navegation-tabs .ctn-tabs-contents-item .title-content-navegation-tabs {
  font-family: "Poiret One", sans-serif;
  margin-bottom: 15px;
}

/* Contenido navegación por tabs */
.navegation-tabs .ctn-tabs-contents-item .content-navegation-tabs {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}
.logo-don {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

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

.qr-pago {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 35%;
}

/* Hace que la imagen en .qr-pago sea responsive */
.qr-pago img {
  max-width: 100%;
  height: auto;
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Navegación por tabs soporte */
  .navegation-tabs {
    width: 95%;
  }
  .logo-don img {
    max-width: 50%;
  }
  .qr-pago {
    width: 95%;
  }
}

/*-tabs de paypal*/
input[type="text"],
select {
  width: 100%;
  padding: 5px 5px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.pp-formbox h1 {
  color: #000;
}
.pp-formbox p {
  padding: 0;
  margin: 0;
}
.pp-form {
  margin: 0px;
}

.pp-input {
  width: 130px;
  margin: 3px 0px 3px 0px;
}
.pp-textarea {
  width: 130px;
  margin: 3px 0px 3px 0px;
}
.pp-button {
  width: 134px;
  margin: 3px 0px 3px 0px;
  color: white;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  background-color: #1189d6;
  border: 1px solid #1189d6;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.pp-badge {
  float: left;
  margin: 20px auto 0px 0px;
}
.pp-canvasarea {
  background-color: #f0f0f0;
  display: inline-block;
  display: inline;
  zoom: 1;
  padding: 6px;
}
.pp-formbox {
  font: normal 13px arial, sans-serif;
  float: left;
  padding: 0px 10px 0px 0px;
}
.pp-clear-float {
  height: 1px;
  clear: both;
}

/*Lightbox-aliados*/
.proyecto-yosi {
  width: 90%;
  margin: auto;
}

.container-lightbox {
  width: 100%;
  margin: 5% auto;
  padding: 2px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.text-center {
  text-align: center;
  margin-bottom: 1em;
}

.lightbox-gallery {
  flex: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.lightbox-gallery div > img {
  max-width: 100%;
  display: block;
  height: 100%;
}

.lightbox-gallery div {
  margin: 10px;
  flex-basis: 180px;
}

@media only screen and (max-width: 480px) {
  .lightbox-gallery {
    flex-direction: column;
    align-items: center;
  }

  .lightbox > div {
    margin-bottom: 10px;
  }
}

/*Lighbox CSS*/

.lightbox {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 100px;
  box-sizing: border-box;
}

.lightbox img {
  display: block;
  margin: auto;
}

.lightbox .caption {
  margin: 15px auto;
  width: 50%;
  text-align: center;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 700;
  color: #eee;
}

/* botón PopUp  */

.btn-popup {
  background: #0063a5;
  color: #fff;
  padding: 10px;
  display: inline-block;
  border: none;
  cursor: pointer;
}

/* PopUp  */

.pop-up {
  background: rgba(48, 48, 48, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 9999;
}

.pop-up-wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1250px;
  transform: scale(0.6); /*para animación de tamaño*/
  opacity: 0;
  transition: 0.3s ease all;
}

.pop-up-titulo {
  flex-basis: 0;
  flex-grow: 1.5;
  height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url("../img/navidad.webp");
  background-size: 165%;
  background-position: center;
  background-repeat: no-repeat;
}

.pop-up-titulo::after {
  content: "";
  position: absolute;
  background: rgba(96, 228, 63, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pop-up-titulo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.subscription::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.pop-up-titulo h2,
.pop-up-titulo p {
  z-index: 10;
  color: #fff;
}

.pop-up-titulo h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: 75px;
  text-align: center;
  font-weight: 700;
  margin: 120px 10px 0 10px;
}

.pop-up-titulo p {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  padding: 15px;
  margin: 30px 5px 0 5px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
}

.subscription {
  background: #fff;
  flex-basis: 0;
  flex-grow: 2;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-align: center;
  background-image: url("../img/navidad1.webp");
  background-size: 155%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.subscription::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sub-content {
  width: 85%;
  z-index: 1;
}

.sub-content h2 {
  font-weight: 700;
  font-size: 35px;
  color: #ffffff;
  margin-bottom: 15px;
}

.sub-content h3 {
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.pop-up-list {
  margin-left: 80px;
  text-align: left;
  list-style: none;
}
.pop-up-list a {
  font-weight: 900;
  color: #f5f4f2;
  text-decoration: none;
  transition: color 0.3s;
}
.pop-up-list a:hover {
  color: #bf761f;
}

.sub-content p {
  text-align: center;
  font-weight: 900;
  color: #dab92b;
}

.subs-send {
  width: 100%;
  padding: 15px;
  border: none;
  background: #034f1b;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.25s ease background;  
}

.subs-send:hover {
  background: #d7ad3b;
}

.line {
  width: 100%;
  height: 20px;
  background: orange;
}

#close {
  position: absolute;
  top: 40px;
  right: 25px;
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
}

.pop-up.show {
  visibility: visible;
}

.pop-up-wrap.show {
  transform: scale(1);
  opacity: 1;
}

.pop-up-wsp {
  text-decoration: none;
  font-weight: 900;
  color: #6d9848;
}

@media only screen and (max-width: 980px) {
  .pop-up-titulo {
    display: none;
  }
  .sub-content h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 430px) {
  .subscription {
    height: auto;
  }
  .pop-up-disable {
    display: none;
  }
  .pop-up-list {
    margin-left: 0px;
    font-size: 12px;
  }
  #close {
    top: 10px;
    right: 10px;
  }
  .sub-content p {
    text-align: center;
    font-weight: 500;
    color: #dab92b;
    font-size: 14px;
  }
}

/*end popup*/
