.scale-in-center {
    -webkit-animation: scale-in-center .5s cubic-bezier(.25, .46, .45, .94) both;
    animation: scale-in-center .5s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.scale-out-center {
    -webkit-animation: scale-out-center .5s cubic-bezier(.55, .085, .68, .53) both;
    animation: scale-out-center .5s cubic-bezier(.55, .085, .68, .53) both
}

@-webkit-keyframes scale-out-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
}

@keyframes scale-out-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(calc(-400px * 16));
        transform: translateX(calc(-400px * 16))
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #443586;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #443586;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden
}

.uwy.userway_p6 .userway_buttons_wrapper {
    top: unset !important;
    bottom: 0 !important;
}

.container {
    padding: 0
}

.img-container-speaker {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: .25rem .25rem 0 0
}

.ad-section {
    padding: 20px;
    background: #ffffff
}

.ads-mobile {
    display: none
}

.ads-desktop {
    display: inline;
    text-align: center;
}

.ad-1,
.ad-2 {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100% !important;
    max-width: 100% !important
}

.title-container {
    text-align: center;
    margin-bottom: 20px
}

.icon-white {
    font-size: 3rem;
    color: #ffffff;
    display: block;
    margin-bottom: .5rem
}

.icon-violet {
    font-size: 3rem;
    color: #443586;
    display: block;
    margin-bottom: .5rem
}

.icon-red {
    font-size: 3rem;
    color: #be2128;
    display: block;
    margin-bottom: .5rem
}

.title-white {
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase
}

.title-violet {
    font-size: 2rem;
    color: #443586;
    margin: 0;
    text-transform: uppercase
}

.title-red {
    font-size: 2rem;
    color: #be2128;
    margin: 0;
    text-transform: uppercase
}

.row {
    justify-content: center !important
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700
}

.card {
    transition: transform 0.2s ease-in-out;
    cursor: pointer
}

.custom-prev,
.custom-next {
    width: 50px;
    height: 50px;
    padding: 10px
}

.carousel-indicators {
    bottom: -50px !important
}

.carousel-indicators button {
    background-color: #443586 !important;
    border-radius: 50%;
    width: 12px !important;
    height: 12px !important;
    opacity: .5
}

.carousel-indicators .active {
    background-color: #fff;
    opacity: 1
}

.fixed-top {
    max-width: 100vw !important;
    width: 100vw !important
}

.header-social-container {
    background: #be2128;
    padding: 10px 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translateY(0);
    opacity: 1
}

.header-social-container.hidden {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden
}

.mail-link {
    align-items: center;
    text-decoration: none;
    color: #F5F5F5
}

.mail-link i {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #443586;
    border: 2px solid #443586;
    border-radius: 8px;
    font-size: 20px;
    color: #F5F5F5 !important;
    text-decoration: none;
    margin-right: 10px
}

.logo {
    width: 150px
}

.navbar {
    transition: background-color 1s ease;
    background-color: #443586 !important
}

.navbar a {
    color: #f2f7f5 !important;
    padding-left: 20px !important;
    font-weight: 500 !important
}

.navbar-item {
    display: flex;
    align-items: center
}

.navbar-item i {
    margin-right: 2px
}

.navbar-item:hover {
    color: #be2128 !important;
    transition: 0.5s
}

.scrolled {
    background-color: #443586 !important
}

.back-to-home-button {
    border: solid 2px #f2f7f5;
    padding-right: 20px !important;
    border-radius: 8px;
    text-align: center;
    margin-left: 15px
}

.back-to-home-button:hover {
    background: #be2128;
    color: #f2f7f5 !important;
    transition: 0.5s
}

.banner-header {
    width: 100%;
    min-height: 55vh;
    position: relative;
    padding: 80px 0 0 0;
    display: flex;
    align-items: center;
    background: url(https://www.iniciativas.behealthpr.com/assets/fondo-header-evento-enfermedad-arterial-periferica-4-desktop.webp) top center no-repeat;
    background-size: cover;
    margin-top: 80px;
    margin-bottom: 0;
}

.banner-mobile {
    display: none;
}

.img-banner {
    width: 100%;
}

.description-section {
    padding: 40px 20px;
}

.description-container {
    border: solid 2px #443586;
    border-radius: 25px;
    padding: 20px 0;
}

.description-content {
    margin-top: 0px;
    padding: 20px 40px;
    color: #f2f7f5;
}

.speakers-seccion {
    background: #f2f7f5;
    padding: 40px;
    overflow-x: hidden
}

.img-container-speaker {
    border-radius: 50%;
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto
}

.style-speaker-card {
    border-radius: 25px;
    padding: 20px;
    height: 300px !important;
}

.owl-item:nth-child(odd) .style-speaker-card {
    border-bottom: 3px solid #443586 !important;
    color: #443586 !important;
}

.owl-item:nth-child(even) .style-speaker-card {
    border-bottom: 3px solid #be2128 !important;
    color: #be2128 !important;
}

.owl-item:nth-child(odd) .style-speaker-card:hover {
    transition: 0.5s !important;
    background: #443586 !important;
    color: #f2f7f5 !important
}

.owl-item:nth-child(even) .style-speaker-card:hover {
    transition: 0.5s !important;
    background: #be2128 !important;
    color: #f2f7f5 !important
}

.faqs-section {
    background: #ffffff;
    padding: 40px 20px
}

.logo-inciativa {
    margin-top: 20px;
    width: 50%;
    height: auto;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer
}

.logo-inciativa:hover {
    scale: 0.8;
}

.magazine {
    transform: rotate(-10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 70%;
    border-radius: 10px;
}

.download-btn {
    background-color: #d4a50f;
    /* Color amarillo similar al diseño */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #b28c0c;
    /* Color más oscuro al pasar el cursor */
}

.accordion-button {
    font-weight: 600 !important
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #443586 !important;
    color: #f2f7f5
}

.collapsed {
    background: #be2128;
    color: #f2f7f5
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "-";
    font-weight: 500;
    transform: none
}

.accordion-button::after {
    fill: white !important;
    flex-shrink: 0;
    font-weight: 500;
    content: "+";
    background-image: none;
    font-size: 20px !important
}

.articles-section {
    padding: 40px 20px;
    background: #ffffff
}

.card-article {
    overflow: hidden;
    position: relative;
    height: 100%;
    justify-content: space-between
}

.img-container-article {
    overflow: hidden;
    height: 200px
}

.img-article {
    transition: transform 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card-article:hover .img-article {
    transform: scale(1.2)
}

.card-article:hover .card-title-article {
    color: #443586 !important
}

.card-article:hover .card-article-link {
    color: #443586 !important
}

.bg-primary {
    background-color: #be2128 !important
}

.card-title-article {
    color: #be2128 !important;
    transition: 0.5s
}

.icon-article {
    color: #be2128 !important
}

.card-article-link {
    text-decoration: none;
    color: #be2128 !important;
    transition: 0.5s;
    font-weight: 500 !important
}

.card-body,
.card-footer {
    z-index: 2;
    position: relative
}

.card-link {
    text-decoration: none
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start
}

.card-img-top {
    height: 200px;
    object-fit: cover
}

.card-title {
    font-size: 1.25rem
}

.spinner-container {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.spinner-border {
    width: 3rem;
    height: 3rem
}

.btn-primary {
    background: #be2128 !important;
    transition: 0.5s;
    border: solid 1px #be2128
}

.btn-primary:hover {
    background: transparent !important;
    color: #be2128 !important;
    border: solid 1px #be2128
}

.btn-danger {
    background: #443586;
    transition: 0.5s;
    border: solid 1px #443586
}

.btn-danger:hover {
    background: transparent !important;
    color: #443586 !important;
    border: solid 1px #443586
}

.gallery-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.row-gallery {
    padding: 0 !important;
    margin: 0 !important;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.gallery-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem
}

.gallery-image:hover img {
    transform: scale(1.1);
    opacity: .7
}

.gallery-image:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay i {
    font-size: 3rem
}

.modal-body {
    position: relative;
    padding: 0
}

.lightbox-container {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh !important
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #be2128;
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 5px;
    z-index: 10;
    cursor: pointer;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center
}

button.prev {
    left: 10px
}

button.next {
    right: 10px
}

button.prev:hover,
button.next:hover {
    background-color: #443586
}

.btn-close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1 !important;
    background: none !important;
    border: none !important;
    font-size: 2.5rem;
    color: #be2128;
    transition: 0.5s
}

.btn-close-modal:hover {
    color: #443586
}

.playlist-section {
    padding: 40px 20px;

}

#videoList {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #443586 #F5F5F5;
}

#videoList::-webkit-scrollbar {
    width: 8px;
    background: #F5F5F5;
}

#videoList::-webkit-scrollbar-thumb {
    background: #443586;
    border-radius: 10px;
}

#videoList::-webkit-scrollbar-thumb:hover {
    background: #443586;
}

#videoList::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.video-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.playlist-container {
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    background: #fff;
}

.video-column {
    padding: 0;
    margin: 0
}

.video-container iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-list-item {
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    margin: 0 !important;
}

.video-list-item:hover {
    background-color: #4435864f
}

.active-video {
    background-color: #443586
}

.active-video .video-title {
    color: #f2f7f5
}

.active-video .video-duration {
    color: #f2f7f5 !important
}

.video-thumbnail {
    width: 75px;
    height: 42px;
    object-fit: fill
}

.program-container .video-list-item {
    cursor: pointer;
    padding: 10px;
    display: flex !important;
    align-items: center !important;
    transition: background-color 0.3s ease;
    border: solid 3px #be2128;
    margin: 15px !important;
    border-radius: 15px;
    font-weight: bold;
}

.program-container .video-list-item:hover {
    background-color: unset !important
}

.program-container .active-video {
    background-color: unset !important
}

.program-container .video-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: fill;
    border-radius: 50px;
}

.program-container .video-title {
    max-width: 100%;
}

.video-hour {
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    color: #f2f7f5;
    background: #443586;
    padding: 5px;
    border-radius: 10px;
}

.video-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #be2128;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}

.video-description {
    font-size: 0.7rem;
    color: #555;
    display: block;
    margin-top: 10px;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}

hr {
    border: none;
    border-top: 1px solid #be2128;
    margin: 10px 0;
}

.video-title {
    margin-left: 10px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 250px;
    font-size: 14px
}

.playlist {
    height: 400px;
    overflow-y: auto;
    margin: 0;
    border-bottom-left-radius: 10px
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #be2128;
    padding: 10px;
    color: #f2f7f5;
    border-top-left-radius: 10px
}

.video-duration {
    margin-left: auto;
    font-size: .9em;
    color: #555
}

.badge-primary {
    font-weight: 400;
    padding: 10px
}

.revista-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.revista-button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    border: solid 2px #BE2128;
    border-radius: 8px;
    background-color: #BE2128;
    color: #f2f7f5;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.5s;
    font-size: 20px
}

.revista-button-link i {
    margin-left: 10px
}

.revista-button-link:hover {
    background: #fff0;
    color: #BE2128
}

.publications-section {
    padding: 40px 20px;
}

.infographic-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.lightbox-container-Infography {
    height: 100%;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center
}

.lightbox-container-Infography img {
    max-height: 95vh !important
}

.owl-stage {
    display: flex !important;
    justify-content: center !important
}

.owl-carousel .owl-item {
    width: 33.33% !important;
    text-align: center !important;
    padding: 10px
}

.owl-item {
    width: 33.33% !important;
    text-align: center !important;
    padding: 10px
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px !important
}

.owl-stage-outer {
    padding: 0;
}

/* Aseguramos que el contenedor del carrusel tenga posición relativa */
#gallery-container {
    position: relative;
}

/* Contenedor de las flechas */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* No bloquear interacción de las imágenes */
    z-index: 10;
    /* Aseguramos que las flechas estén al frente */
}

/* Botones de navegación */
.owl-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white !important;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: all;
    /* Permitir interacción */
    transition: background-color 0.3s ease;
    background-color: #be2128 !important;
    border-radius: 10px !important;
    font-size: 2rem !important;
}

.owl-nav button:hover {
    background-color: #be212888 !important;
}

/* Flecha izquierda */
.owl-nav .owl-prev {
    position: absolute;
    left: -35px;
    /* Ajusta este valor según el diseño */
}

/* Flecha derecha */
.owl-nav .owl-next {
    position: absolute;
    right: -35px;
}


.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background-color: #443586 !important;
    opacity: .5
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #443586 !important;
    opacity: 1
}

.podcast-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.spotify-embed {
    width: 100%;
    height: 400px !important;
    border-radius: 8px;
}

.sponsors-section {
    padding: 40px 20px;
    background: #fff
}

.slider-sponsors {
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden
}

.slider-sponsors-track {
    display: flex;
    animation: scroll 30s linear infinite;
    -webkit-animation: scroll 30s linear infinite;
    width: calc(200px * 16);
    align-items: center;
    justify-content: center
}

.slide-sponsors {
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
}

.slide-sponsors img {
    width: 200px !important
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #443586;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible
}

.scroll-to-top-btn:hover {
    background-color: #4435864f;
    transition: 0.5s
}

.footer-container {
    background: #be2128;
    color: #fff
}

.footer-container a {
    transition: 0.5s
}

.footer-container a:hover {
    color: #443586
}

.social-container a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #fff0;
    border: 2px solid #443586;
    border-radius: 8px;
    font-size: 20px;
    color: #ffffff !important;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: -5s;
    margin-right: 5px;
    transition: 0.5s
}

.social-container svg {
    fill: #ffffff !important;
    width: 20px;
    height: 20px;
    transition: 0.5s
}

.social-container a:hover {
    color: #ffffff92 !important
}

.social-container a:hover svg {
    fill: #ffffff92 !important
}

.social-container a::before {
    fill: #f2f7f5 !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #443586;
    z-index: -1;
    transition: .5s
}

.social-container a:hover::before {
    width: 100%
}

.list-unstyled {
    color: #f2f7f5 !important
}

.menu-footer-container {
    display: flex
}

.menu-footer {
    display: flex
}

.menu-footer-item {
    display: flex
}

@media screen and (max-width:770px) {

    .carousel-control-next,
    .carousel-control-prev {
        display: none !important
    }

    .row-gallery>* {
        padding: 0 !important;
        margin: 0 !important;
    }

    .owl-item {
        margin: 0 10px !important;
        box-shadow: none !important;
    }
}

/* Ocultar scrollbars en dispositivos móviles y tabletas */
@media screen and (max-width: 1200px) {
    ::-webkit-scrollbar {
        display: none;
    }

    html {
        scrollbar-width: none;
    }
}


@media screen and (max-width:600px) {
    html {
        overflow-x: hidden !important
    }

    .card:hover {
        transform: scale(1)
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none !important
    }

    .logo {
        padding-left: 12px
    }

    .header-social-container {
        display: none
    }

    .offcanvas-header {
        justify-content: end !important
    }

    .offcanvas {
        background: #443586 !important;
        width: 80% !important
    }

    .offcanvas-backdrop {
        height: 100% !important
    }

    .navbar a {
        padding-left: 0 !important
    }

    .back-to-home-button {
        margin-left: 0;
        margin-top: 20px
    }

    .banner-header {
        background: url(https://www.iniciativas.behealthpr.com/assets/fondo-header-evento-enfermedad-arterial-periferica-4-desktop.webp) top center no-repeat;
        background-size: contain;
        padding: 40px 20px;
        margin-top: 60px;
        min-height: 20vh;
    }

    .banner-mobile {
        display: flex;
    }

    .banner-desktop {
        display: none;
    }

    .banner-header a {
        width: 100%
    }

    .description-content {
        margin-top: 0px;
        padding: 20px 0px;
        color: #f2f7f5;
    }

    .scroll-indicator {
        display: none;
    }

    .ads-mobile {
        display: inline;
        text-align: center;
    }

    .ads-desktop {
        display: none
    }

    .speakers-seccion {
        background: #f2f7f5;
        padding: 40px 0
    }

    .owl-carousel-speakers {
        position: relative;
        padding: 18px !important;
        margin: 0 !important;
    }

    .owl-carousel-speakers .owl-dot {
        margin-top: 10px !important;
    }

    .img-container-speaker {
        border-radius: 50%;
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto
    }

    .style-speaker-card-container {
        padding: 20px
    }

    .style-speaker-card {
        border-radius: 25px;
        padding: 20px;
        height: 300px !important;
        border-bottom: 3px solid #be2128 !important;
        color: #be2128 !important
    }

    .style-speaker-card:hover {
        background: none;
        color: #be2128 !important
    }

    .modal-body {
        background: #333
    }

    button.prev,
    button.next {
        top: unset;
        bottom: 10%
    }

    .btn-close-modal {
        right: 0
    }

    .footer-container {
        padding: 20px
    }

    .menu-footer-container {
        display: inline
    }

    .menu-footer {
        display: none
    }

    .row-gallery>* {
        padding: 0 !important;
        margin: 0 !important;
    }

    .owl-item {
        margin: 0 10px !important;
        box-shadow: none !important;
    }

    .playlist-container {
        flex-direction: column-reverse
    }

    .video-container {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .video-container iframe {
        height: 250px
    }

    .playlist-header {
        border-top-left-radius: 0
    }

    .playlist {
        border-bottom-right-radius: 10px
    }


    .program-container .video-list-item {
        display: grid !important;
    }


    .owl-carousel .owl-item {
        width: 100% !important;
        padding: 0
    }

    .slider-sponsors-track {
        animation: scroll 30s linear infinite;
        -webkit-animation: scroll 30s linear infinite
    }

    .owl-nav {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
    }
}


@media (min-width:600px) and (max-width:1000px) {
    .banner-header {
        background: url(https://www.iniciativas.behealthpr.com/assets/fondo-header-evento-enfermedad-arterial-periferica-4-desktop.webp) top center no-repeat;
        background-size: cover;
        margin-top: 100px;
        min-height: 30vh;
    }

    .ads-mobile {
        display: inline;
        text-align: center;
    }

    .ads-desktop {
        display: none
    }

    .modal-body {
        background: #333
    }

    button.prev,
    button.next {
        top: unset;
        bottom: 5%
    }

    .btn-close-modal {
        right: 0
    }

    .menu-footer-container {
        display: inline
    }

    .playlist-container {
        flex-direction: column-reverse
    }

    .video-container {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .video-container iframe {
        height: 250px
    }

    .playlist-header {
        border-top-left-radius: 0
    }

    .playlist {
        border-bottom-right-radius: 10px
    }

    .owl-carousel .owl-item {
        width: 100% !important;
        padding: 0
    }

    .owl-nav {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
    }
}


@media (min-width:600px) and (max-width:1200px) {
    .banner-header {
        background: url(https://www.iniciativas.behealthpr.com/assets/fondo-header-evento-enfermedad-arterial-periferica-4-desktop.webp) top center no-repeat;
        background-size: cover;
        margin-top: 100px;
        min-height: 25vh;
    }

    .card:hover {
        transform: scale(1)
    }

    .offcanvas-header {
        justify-content: end !important
    }

    .offcanvas {
        background: #443586 !important;
        width: 80% !important
    }

    .offcanvas-backdrop {
        height: 100% !important
    }

    .navbar-item {
        font-size: 0.8rem
    }

    .back-to-home-button {
        font-size: 0.8rem;
        padding: 8px 10px !important
    }

    .navbar a {
        padding-left: 10px !important
    }

    .modal-body {
        background: #333
    }

    button.prev,
    button.next {
        top: unset;
        bottom: 5%
    }

    .btn-close-modal {
        right: 0
    }

    .menu-footer-container {
        display: inline
    }

    .owl-nav {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width:1200px) and (max-width:1400px) {

    .banner-header {
        background-size: cover;
        margin-top: 100px;
        min-height: 60vh;
    }

    .offcanvas-header {
        justify-content: end !important
    }

    .offcanvas {
        background: #443586 !important;
        width: 80% !important
    }

    .offcanvas-backdrop {
        height: 100% !important
    }

    .navbar a {
        padding-left: 20px !important
    }

    .back-to-home-button {
        padding-left: 10 !important
    }
}