.notabene-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1440/720;
}

.notabene-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.notabene-slide-content {
    width: 40%;
    flex-shrink: 0;
}

.notabene-slide-content-inner {
    max-width: 600px;
    padding: var(--64-base-unit, 64px) var(--64-base-unit, 64px);
}

.notabene-slide-image {
    width: 60%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.notabene-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 840 / 720;
}

.notabene-slide-title {
/*    font-family: Platform;
    font-size: 67px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -0.67px;
*/    padding-bottom: var(--8-base-unit, 8px);
}

.notabene-slide-description {
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.52px;
}

.notabene-slide-description ~ .elementor-button {
    margin-top: var(--32-base-unit, 32px);
}

/* Navigation arrows */
.notabene-slider .swiper-button-next,
.notabene-slider .swiper-button-prev {
    color: var(--Black, #03082B);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notabene-slider .swiper-button-next:hover,
.notabene-slider .swiper-button-prev:hover {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Pagination */
.notabene-slider .swiper-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
    text-align: left;
    padding: 0 var(--64-base-unit, 64px);
}

.notabene-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--Black, #03082B);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0!important;
    margin-bottom: 40px!important;
    outline: 1px solid var(--Black, #03082B);
    outline-offset: -1px;
    background-color: #fff;
}

.notabene-slider .swiper-pagination-bullet-active {
    background-color: var(--Black, #03082B);
}

@media only screen and (min-width: 768px) and (max-width: 1440px) {
    .notabene-slide-description {
        font-size: calc(26 * (100vw / 1440))!important;
        line-height: calc(36 * (100vw / 1440))!important;
    }
    .notabene-slide-title {
        font-size: calc(67 * (100vw / 1440))!important;
        line-height: calc(70* (100vw / 1440))!important;
    }
}

@media (max-width: 1024px) {
    .notabene-slider {
        aspect-ratio: auto;
    }
    .notabene-slide-content-inner {
        max-width: 600px;
        padding: var(--32-base-unit, 32px) var(--16-base-unit, 16px) 20px;
        /* text-align: center; */
        margin: 0 auto;
    }
    .notabene-slide {
        flex-direction: column-reverse;
        text-align: center;
    }
    .notabene-slide-content,
    .notabene-slide-image {
        display: flex;
        width: 100%;
    }
    .notabene-slide-description {
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 133.333% */
        letter-spacing: -0.18px;
    }
    .notabene-slide-image img {
        min-height: 470px;
    }
    .notabene-slider .swiper-pagination {
        position: relative;
        bottom: 0!important;
        justify-content: center;
        text-align: center;
        padding: 0 var(--16-base-unit, 16px);
    }
    .notabene-slider .swiper-pagination-bullet {
        margin-bottom: 0 !important;
    }
    
}

@media (max-width: 480px) {
    .notabene-slider .swiper-button-next,
    .notabene-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}