/*text-tracado*/
.text-tracado {
    position: relative;
    width: 100%;
 }
 .text-tracado::before {
    content: "";
    background-color: var(--bcn-secondary);
    width: 20% !important;
    height: 5px;
    border-radius: 80px;
    z-index: 5;
    position: absolute;
    bottom: 0;
 }
 


/*Slider Hero*/
.bcn-blog-hero-slider .swiper-wrapper {
    transition-timing-function: ease-in-out;
 }
 @media (min-width: 768px) {
    .bcn-blog-hero-slider {
       min-height: 440px;
    }
    .bcn-blog-hero-slider .swiper-slide {
       min-height: 440px;
    }
 }
 .bcn-blog-hero-slider .swiper-pagination {
    bottom: 5% !important;
    width: 100% !important;
    z-index: 3;
    position: absolute;
 }
 .bcn-blog-hero-slider .swiper-pagination-bullet {
    width: 20px;
    height: 5px !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 8px !important;
    transition: all 0.3s ease;
 }
 .bcn-blog-hero-slider .swiper-pagination-bullet-active {
    background: var(--bcn-secondary);
    width: 32px;
    border-radius: 6px;
 }
 .bcn-blog-hero-slider .swiper-button-next,
 .bcn-blog-hero-slider .swiper-button-prev {
    width: 36px;
    height: 36px;
    color: var(--bcn-secondary);
    font-weight: 700;
    background: #999FAA;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
 }
 .bcn-blog-hero-slider .swiper-button-next:hover,
 .bcn-blog-hero-slider .swiper-button-prev:hover {
    background: #fff;
 }
 .bcn-blog-hero-slider .swiper-button-next::after,
 .bcn-blog-hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
 }
 .swiper-button-prev {
    left: 8% !important;
 }
 .swiper-button-next {
    right: 8% !important;
 }
 @media (min-width: 1800px) {
    .swiper-button-prev {
       left: 12% !important;
    }
    .swiper-button-next {
       right: 12% !important;
    }
 }
 @media (min-width: 1024px) and (max-width: 1800px) {
    .swiper-button-prev {
       left: 5% !important;
    }
    .swiper-button-next {
       right: 5% !important;
    }
 }
 @media (max-width: 768px) {
    .swiper-button-prev {
       left: 1% !important;
       width: 28px !important;
       height: 28px !important;
       font-size: 16px !important;
    }
    .swiper-button-next {
       right: 1% !important;
       width: 28px !important;
       height: 28px !important;
       font-size: 16px !important;
    }
 }

/*card horizontal*/
.bcn-card-horizontal-image-link {
    display: block;
}

.bcn-card-horizontal-image {
    width: 144px;
    height: 144px;
}

.bcn-card-horizontal-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcn-card-horizontal-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .bcn-card-horizontal-image-link {
        width: 100%;
        height: 144px;
    }

    .bcn-card-horizontal-image-link img,
    .bcn-card-horizontal-image-link div {
        width: 100%;
        height: 144px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .bcn-card-horizontal-title {
        font-size: 16px;
    }

    .bcn-card-horizontal-description {
        font-size: 13px;
    }
}

.bcn-banner-cta-geometric-shape {
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
 