body {
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth;
}

.uwy.userway_p6 .userway_buttons_wrapper {
    top: unset !important;
    bottom: 0 !important;
}

.desktop {
    display: inline;
}

.mobile {
    display: none;
}

.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 * 2));
        transform: translateX(calc(-400px * 2))
    }
}

/*Scrollbar*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #95c11f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #95c11f;
}

/*Header*/
.fixed-top {
    max-width: 100vw !important;
    width: 100vw !important
}

.header-social-container {
    background: #10857f;
    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: #95c11f;
    border: 2px solid #95c11f;
    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: #95c11f !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: #10857f !important;
    transition: 0.5s
}

.scrolled {
    background-color: #95c11f !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: #10857f;
    color: #f2f7f5 !important;
    transition: 0.5s
}

/*menú sidebar*/
.custom-side-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    text-align: right;
    background: #f2f7f5;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;
}

.custom-side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-side-nav li {
    margin: 12px 0;
}

.custom-side-nav a {
    color: #95c11f;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-right: 20px;
    font-size: 15px;
}

.custom-side-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    border: 2px solid #95c11f;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.custom-side-nav a.active::after {
    background-color: #95c11f;
}

/*container*/
.container {
    max-width: 950px;
}

/*titulos*/
.title-container {
    text-align: center;
    margin-bottom: 20px
}

.icon-green {
    font-size: 3rem;
    color: #95c11f;
    display: block;
    margin-bottom: .5rem
}

.icon-dark-green {
    font-size: 3rem;
    color: #10857f;
    display: block;
    margin-bottom: .5rem
}

.title-green {
    font-size: 2rem;
    color: #95c11f;
    margin: 0;
    text-transform: uppercase
}

.title-dark-green {
    font-size: 2rem;
    color: #10857f;
    margin: 0;
    text-transform: uppercase
}

/*Description section*/
.description-section {
    padding: 40px 20px;
}

.description-container {
    border: solid 2px #10857f;
    border-radius: 25px;
    padding: 20px 0;
}

.description-content {
    margin-top: 0px;
    padding: 20px 40px;
    color: #95c11f;
}

/*Prefuntas frecuentes*/
.faqs-section {
    background: #f2f7f5;
    padding: 40px 20px
}

.logo-inciativa {
    width: 85%;
    height: auto;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer
}

.logo-inciativa:hover {
    scale: 1.2
}

.accordion-button {
    font-weight: 600 !important
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #95c11f !important;
    color: #f2f7f5
}

.collapsed {
    background: #10857f;
    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
}

/*Articulos*/
.articles-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.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: #95c11f !important
}

.card-article:hover .card-article-link {
    color: #95c11f !important
}

.bg-primary {
    background-color: #10857f !important
}

.card-title-article {
    color: #10857f !important;
    transition: 0.5s
}

.icon-article {
    color: #10857f !important
}

.card-article-link {
    text-decoration: none;
    color: #10857f !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: #10857f !important;
    transition: 0.5s;
    border: solid 1px #10857f
}

.btn-primary:hover {
    background: transparent !important;
    color: #10857f !important;
    border: solid 1px #10857f
}

.btn-danger {
    background: #95c11f;
    transition: 0.5s;
    border: solid 1px #95c11f
}

.btn-danger:hover {
    background: transparent !important;
    color: #95c11f !important;
    border: solid 1px #95c11f
}

/*download*/
.download-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.download-container {
    text-align: center
}

.download-col-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center
}

.download-col-img-container a {
    transition: 0.5s;
    width: 60%
}

.download-col-img-container a:hover {
    scale: .9
}

.download-col-img-container img {
    width: 100%;
    border-radius: 10px
}

.download-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.download-button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    border: solid 2px #95c11f;
    border-radius: 8px;
    background-color: #95c11f;
    color: #f2f7f5;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.5s;
    font-size: 20px
}

.download-button-link i {
    margin-left: 10px
}

.download-button-link:hover {
    background: #fff0;
    color: #95c11f
}

/*Agenda*/
.agenda-section {
    padding: 40px 20px;
    background: #f2f7f5;
}

.agenda-date {
    text-align: left;
    margin-bottom: 30px;
}

.agenda-date p:nth-child(2) {
    display: none;
}

.agenda-date p {
    margin-bottom: 5px;
    font-size: 15px;
    color: #444;
}

.agenda-date p strong {
    color: #10857f;
    font-size: 18px;
}

.agenda-timezones P:nth-child(2) {
    display: block;
}

.agenda-timezones span {
    font-weight: 400;
    color: #666;
}

.agenda-block {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.agenda-timebox {
    background: #10857f;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    width: 120px;
}

.agenda-timebox span {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
}

.agenda-content {
    flex: 1;
    padding: 20px;
}

.agenda-content.green {
    background: #95c11f;
    color: #fff;
}

.agenda-content.gray {
    background: #f5f5f5;
}

.agenda-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.agenda-content p,
.agenda-list {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.agenda-list {
    padding-left: 0;
    list-style: none;
}

.agenda-list li {
    margin-bottom: 8px;
}

.agenda-btn {
    margin-top: 15px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    cursor: default;
    display: none;
}

.agenda-content.gray .agenda-btn {
    border-color: #95c11f;
    color: #95c11f;
}

/*speakers*/
.speakers-seccion {
    background: #fff;
    padding: 40px 20px;
    overflow-x: hidden
}

.img-container-speaker {
    width: 150px !important;
    height: 150px !important;
    background-size: cover;
    background-position: center;
    border-radius: .25rem .25rem 0 0;
    border-radius: 50%;
    margin: 0 auto
}

.style-speaker-card {
    border-radius: 25px;
    padding: 20px;
    height: 450px !important;
}

.owl-item:nth-child(odd) .style-speaker-card {
    border-bottom: 3px solid #95c11f !important;
    color: #95c11f !important;
}

.owl-item:nth-child(odd) .style-speaker-card .card-img-top {
    border: solid 3px #95c11f !important;
}

.owl-item:nth-child(even) .style-speaker-card {
    border-bottom: 3px solid #10857f !important;
    color: #10857f !important;
}

.owl-item:nth-child(even) .style-speaker-card .card-img-top {
    border: solid 3px #10857f !important;
}

.owl-item:nth-child(odd) .style-speaker-card:hover {
    transition: 0.5s !important;
    background: #95c11f !important;
    color: #f2f7f5 !important
}

.owl-item:nth-child(even) .style-speaker-card:hover {
    transition: 0.5s !important;
    background: #10857f !important;
    color: #f2f7f5 !important
}

.owl-carousel-speakers .owl-nav .owl-next {
    right: 0 !important;
}

/*playlist*/
.playlist-section {
    padding: 40px 20px;
    background: #ffffff;
}

#videoList {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #95c11f #F5F5F5;
}

#videoList::-webkit-scrollbar {
    width: 8px;
    background: #F5F5F5;
}

#videoList::-webkit-scrollbar-thumb {
    background: #95c11f;
    border-radius: 10px;
}

#videoList::-webkit-scrollbar-thumb:hover {
    background: #95c11f;
}

#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: #95c11f4f
}

.active-video {
    background-color: #95c11f
}

.active-video .video-title {
    color: #f2f7f5
}

.active-video .video-duration {
    color: #f2f7f5 !important
}

.video-thumbnail {
    width: 75px;
    height: 42px;
    object-fit: fill
}

.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: #10857f;
    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
}

/*galery*/
.gallery-section {
    padding: 40px 20px;
    background: #f2f7f5
}

.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%;
    height: 80vh !important;
    max-height: 80vh !important
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #10857f;
    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: #95c11f
}

.btn-close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1 !important;
    background: none !important;
    border: none !important;
    font-size: 2.5rem;
    color: #10857f;
    transition: 0.5s
}

.btn-close-modal:hover {
    color: #95c11f
}

.owl-stage {
    display: flex !important;
    justify-content: center !important;

}

.owl-carousel .owl-item {
    width: 33.33% !important;
    text-align: center !important;
    margin: 10px;
}

.owl-item {
    width: 33.33% !important;
    text-align: center !important;
}

.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: #95c11f !important;
    border-radius: 10px !important;
    font-size: 2rem !important;
}

.owl-nav button:hover {
    background-color: #10857f !important;
}

/* Flecha izquierda */
.owl-nav .owl-prev {
    position: absolute;
    left: 0px !important;
    /* Ajusta este valor según el diseño */
}

/* Flecha derecha */
.owl-nav .owl-next {
    position: absolute;
    right: 25px !important;
    /* Ajusta este valor según el diseño */
}


.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background-color: #95c11f !important;
    opacity: .5
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #95c11f !important;
    opacity: 1
}

/*Infographic section*/
.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
}

/*podcast*/
.podcast-section {
    padding: 40px 20px;
    background: #ffffff
}

.spotify-embed {
    width: 100%;
    height: 400px !important;
    border-radius: 8px;
}

/*Sponsors section*/
.sponsors-section {
    padding: 40px 20px;
    background: #fff
}

.slider-sponsors {
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden
}

.slider-sponsors-track {
    display: flex;
    animation: scroll 5s linear infinite;
    -webkit-animation: scroll 5s linear infinite;
    width: calc(400px * 4);
    align-items: center;
    justify-content: center
}

.slide-sponsors {
    width: 400px !important;
    padding-right: 50px;
}

.slide-sponsors img {
    width: 200px !important;
    margin-left: 100px;
    margin-right: 100px;
}

/*footer*/
.footer-container {
    background: #10857f;
    color: #fff
}

.footer-container a {
    transition: 0.5s
}

.footer-container a:hover {
    color: #95c11f
}

.social-container a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #fff0;
    border: 2px solid #95c11f;
    border-radius: 8px;
    font-size: 20px;
    color: #95c11f !important;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: -5s;
    margin-right: 5px;
    transition: 0.5s
}

.social-container svg {
    fill: #95c11f !important;
    width: 20px;
    height: 20px;
    transition: 0.5s
}

.social-container a:hover {
    color: #f2f7f5 !important
}

.social-container a:hover svg {
    fill: #f2f7f5 !important
}

.social-container a::before {
    fill: #f2f7f5 !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #95c11f;
    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
}

/*scroll to top*/
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #95c11f;
    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: #95c11f4f;
    transition: 0.5s
}

/*banner header*/
.banner-header {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url(https://behealthoncologia.com/wp-content/uploads/2025/06/header-fondo-revista-oncologia.webp) no-repeat;
    background-size: cover;
    overflow: hidden;
    align-items: center;
    background-position: bottom -150px left -180px;
    background-color: #e8e8e8;
    /* Evitar que algo salga del contenedor */
}

.banner-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff2e;
    /* Fondo blanco semitransparente */
    z-index: 1;
    /* Capa del fondo blanco */
    pointer-events: none;
    /* Asegura que no interfiera con clics */
}

.banner-header .container {
    position: relative;
    z-index: 2;
    /* Eleva el contenido por encima del overlay */
    color: #333;
    /* Ajusta el color del texto para que sea legible */
}

.banner-header-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.banner-header h1 {
    margin-bottom: 20px
}

.banner-header p {
    color: #333;
    font-weight: 600
}

.banner-header a {
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    text-decoration: none;
    border: solid 2px #10857f;
    border-radius: 8px;
    background-color: #10857f;
    color: #f2f7f5;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.5s;
    -webkit-box-shadow: 10px 10px 5px 0 rgb(23 94 75 / .75) !important;
    -moz-box-shadow: 10px 10px 5px 0 rgb(23 94 75 / .75) !important;
    box-shadow: 10px 10px 5px 0 rgb(23 94 75 / .75) !important
}

.banner-header a:hover {
    background: #fff0;
    color: #10857f;
    -webkit-box-shadow: 30px 10px 5px 0 rgb(23 94 75 / .75) !important;
    -moz-box-shadow: 30px 10px 5px 0 rgba(23 94 75 / 0.75) !important;
    box-shadow: 30px 10px 5px 0 rgb(23 94 75 / .75) !important
}

.banner-header a i {
    transition: 0.5s;
    color: #f2f7f5;
    margin-left: 10px
}

.banner-header a:hover i {
    transform: translateX(5px);
    color: #10857f
}

/*Magazine section*/
.magazine-section {
    padding: 80px 20px;
    background: #ffffff;
}

.magazine-section .row {
    justify-content: center;
    display: flex;
}

.img-magazine {
    border-radius: 15px;
    transform: rotate(10deg);
    width: 75%;
    transition: 0.5s;
}

.img-magazine:hover {
    scale: 0.9;
}

.magaine-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3rem;
    color: #10857f;

}

/*esconder el side-nav*/
@media (max-width: 1199.98px) {
    .custom-side-nav {
        display: none;
    }
}

@media screen and (max-width:600px) {
    .mobile {
        display: inline;
    }

    .desktop {
        display: none;
    }


    .container {
        padding: 0;
    }

    .card:hover {
        transform: scale(1)
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none !important
    }

    .logo {
        padding-left: 12px
    }


    /*navbar*/
    .header-social-container {
        display: none
    }

    .offcanvas-header {
        justify-content: end !important
    }

    .offcanvas {
        background: #95c11f !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
    }

    /*Magazine section*/

    .img-magazine {
        border-radius: 15px;
        transform: rotate(10deg);
        width: 80%;
    }

    .img-magazine:hover {
        scale: 0.9;
    }

    .magaine-title {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 2rem;
        color: #10857f;
        margin-top: 20px;

    }

    /*modal*/
    .modal-body {
        background: #333
    }

    button.prev,
    button.next {
        top: unset;
        bottom: 10%
    }

    .btn-close-modal {
        right: 0
    }

    .banner-header {
        background: url(https://behealthoncologia.com/wp-content/uploads/2025/06/header-fondo-revista-oncologia.webp) no-repeat;
        background-size: cover;
        margin-top: 50px;
        min-height: 50vh;
        align-items: start;
        background-position: bottom right;
        background-color: none;
        padding-top: 50px;
    }

    /*footer*/
    .footer-container {
        padding: 20px
    }

    .menu-footer-container {
        display: inline
    }

    .menu-footer {
        display: none
    }

    /*gallery*/
    .row-gallery>* {
        padding: 0 !important;
        margin: 0 !important;
    }

    .owl-item {
        margin: 0 !important;
        box-shadow: none !important;
    }

    .owl-carousel .owl-item {
        width: 100% !important;
        padding: 0;
    }

    .owl-nav {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
    }

    /*speakers*/
    .owl-carousel-speakers .owl-dot {
        margin-top: 10px !important;
    }

    /*playlist*/
    .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
    }

    /*Guía educativa*/

    .download-col-img-container a {
        width: 100%
    }

    .download-col-img-container a:hover {
        scale: 1
    }

    /*sponsors section*/
    .slider-sponsors-track {
        animation: scroll 10s linear infinite;
        -webkit-animation: scroll 10s linear infinite;
    }

    .slide-sponsors img {
        width: 200px !important;
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (min-width:600px) and (max-width:1000px) {
    .mobile {
        display: inline;
    }

    .desktop {
        display: none;
    }

    /*navbar*/
    .header-social-container {
        display: none
    }

    .offcanvas-header {
        justify-content: end !important
    }

    .offcanvas {
        background: #95c11f !important;
    }

    .navbar a {
        padding-left: 0 !important
    }

    .back-to-home-button {
        margin-left: 0;
        margin-top: 20px
    }

    /*Banner header*/
    .banner-header {
        background-size: cover;
        margin-top: 50px;
        min-height: 50vh;
        align-items: start;
        justify-content: end;
        background-position: bottom right;
        background-color: none;
        padding-top: 50px;
    }

    /*playlist*/
    .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
    }
}

@media (min-width:600px) and (max-width:1200px) {

    /*gallery*/
    .owl-nav {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
    }

    .footer-container {
        padding: 40px 20px;
    }
}

@media (min-width:1000px) and (max-width:1400px) {

    /*Banner header*/
    .banner-header {
        min-height: 100vh;
        background-position: bottom right;
        background-color: none;
    }
}