/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 09 2024 | 20:40:03 */
.wrapper {
  position: relative;
}

a,
      a:hover {
        text-decoration: none;
      }
.ocultar {
	display:none;
}
.item-bg {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
        opacity: 0;
		transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
        /*transition: all 0.3s;*/
        left: 0;
		
      }

      .item-bg.active {
        left: 0;
        top: 0;
        opacity: 1;
      }

      .news-slider {
        z-index: 2;
        max-width: 1300px;
        margin: 60px auto 0 auto;
      }

      @media screen and (max-width: 1300px) {
        .news-slider {
          max-width: 1000px;
        }
      }

      .news-slider__wrp {
        display: flex;
        align-items: flex-start;
        position: relative;
        z-index: 2;
      }

      .news-slider__item {
        width: 400px;
        flex-shrink: 0;
      }

      @media screen and (max-width: 992px) {
        .news-slider__item {
          width: 340px;
        }
      }

      .news-slider__item.swiper-slide {
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
		
		
      }

      .news-slider__item.swiper-slide-active,
      .news-slider__item.swiper-slide-prev,
      .news-slider__item.swiper-slide-next {
        opacity: 1;
        pointer-events: auto;
		
      }

      .news-slider__ctr {
        position: relative;
        z-index: 12;
      }

      .news-slider__arrow {
        background: #fff;
        border: none;
        display: inline-flex;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        z-index: 12;
        cursor: pointer;
        outline: none !important;
      }

      .news-slider__arrow.news-slider-prev {
        left: 15px;
        transform: translateY(-50%);
      }

      .news-slider__arrow.news-slider-next {
        right: 15px;
        transform: translateY(-50%);
      }

      .news-slider__pagination {
        text-align: center;
        margin-top: 50px;
      }

      .news-slider__pagination .swiper-pagination-bullet {
        width: 13px;
        height: 10px;
        display: inline-block;
        background: black;
        opacity: 0.2;
        margin: 0 5px;
        border-radius: 20px;
        transition: opacity 0.5s, background-color 0.5s, width 0.5s;
      }

      .news-slider__pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: black;
        width: 100px;
        transition-delay: 0s;
      }

      .news__item {
        padding: 40px;
        color: black;
        border-radius: 10px;
        display: block;
        transition: all 0.3s;
      }

      .news__title {
        font-size: 22px;
        font-weight: 500;
        opacity: 0.7;
        margin-top: 10px;
        margin-bottom: 15px;
        transition: opacity 0.3s;
      }

      .news__txt {
        margin: 10px 0;
        line-height: 1.6em;
        font-size: 12px;
        opacity: 0.7;
        transition: opacity 0.3s;
        text-align: justify;
      }

      .news__img {
        border-radius: 10px;
        box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
        height: 200px;
        margin-top: 30px;
        width: 100%;
        transition: all 0.3s;
        transform-origin: 0% 0%;
      }

      .news__img img {
        max-width: 100%;
        border-radius: 10px;
        height: 100%;
        width: 100%;
      }
		.news__item {
          color: #222222 !important;
        }

      /* Hover Effect */
      @media screen and (min-width: 800px) {
        .news__item:hover {
          color: #222222;
          transition-delay: 0.1s;
        }
      }

      /* Responsiveness */
      @media screen and (max-width: 992px) {
        .news__item {
          padding: 30px;
        }
      }

      @media screen and (max-width: 576px) {
        .news__item {
          padding: 20px;
        }

        .news__img {
          height: 180px;
          margin-top: 20px;
        }

        .news__title {
          font-size: 18px;
          margin-bottom: 10px;
        }
      }
	  .news__title {
            display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 3; /* Limita a 3 líneas */
			overflow: hidden; /* Oculta el texto que exceda las 3 líneas */
			text-overflow: ellipsis; /* Añade puntos suspensivos (...) */
			line-height: 1.6em; /* Ajusta la altura de la línea */
			max-height: calc(1.6em * 3); /* Altura máxima permitida (3 líneas) */
      }
      .news__txt {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* Limita a 3 líneas */
        overflow: hidden; /* Oculta el texto que exceda las 3 líneas */
        text-overflow: ellipsis; /* Añade puntos suspensivos (...) */
        line-height: 1.6em; /* Ajusta la altura de la línea */
        max-height: calc(1.6em * 3); /* Altura máxima permitida (3 líneas) */
      }
