/* ==============================
   LIO SLIDER WRAPPER
================================ */
.lio-slider {
    position: relative;
    max-width: 1180px;
    margin: auto;
    padding: 40px 15px;
}

.lio-slider h3 {
    text-align: center;
    padding-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.lio-slider h3 span {
    color: var(--fourth-color);
}

/* ==============================
   SWIPER CONTAINER
================================ */
.swiper {
    width: 100%;
    font-family: "Roboto", sans-serif;
}

.swiper-wrapper {
    align-items: stretch;
}

/* ==============================
   SLIDE CARD
================================ */
.swiper-slide.card {
    width: 100%;
    height: auto;
    min-height: 320px;
    background: var(--fourth-color);
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(217, 217, 217, 0.25);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* ==============================
   THUMBNAIL
================================ */
.swiper .thumbnail {
    width: 100%;
    margin-bottom: 10px;
}

.swiper .thumbnail img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
}

/* ==============================
   TITLE
================================ */
.swiper .card .title-container {
    display: block;
    text-decoration: none;
    margin-top: 8px;
}

.swiper .card .title-container h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* ==============================
   DESCRIPTION
================================ */
.swiper .card .description {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
}

.swiper .card .description ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.swiper .card .description ul li {
    text-align: center;
}

/* ==============================
   NAVIGATION ARROWS
================================ */
.slider__prev,
.slider__next {
    position: absolute;
    width: 54px;
    height: 54px;
    background-color: var(--text-header-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
    cursor: pointer;
    z-index: 5;
    top: 50%;
    /* transform: translateY(-50%); */
}

.slider__prev::after,
.slider__next::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    top: 20px;
    left: 20px;
}

.slider__prev {
    left: 0;
}

.slider__prev::after {
    border-top: 3px solid var(--fourth-color);
    border-left: 3px solid var(--fourth-color);
    transform: rotate(-45deg);
}

.slider__next {
    right: 0;
}

.slider__next::after {
    border-bottom: 3px solid var(--fourth-color);
    border-right: 3px solid var(--fourth-color);
    transform: rotate(-45deg);
}

.slider__prev.swiper-button-disabled,
.slider__next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* ==============================
   PAGINATION (OPTIONAL)
================================ */
.lio-slider .swiper-pagination-bullet {
    background-color: transparent;
    border: 3px solid #eba53d;
    height: 14px;
    width: 14px;
    opacity: 1;
}

.lio-slider .swiper-pagination-bullet-active {
    background: #eba53d;
}

.lio-slider .swiper-pagination {
    margin-top: 25px;
}

/* ==============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .lio-slider h3 {
        font-size: 22px;
    }

    .swiper-slide.card {
        min-height: 280px;
        padding: 14px;
    }

    .swiper .thumbnail img {
        max-height: 140px;
    }

    .swiper .card .title-container h3 {
        font-size: 16px;
    }

    .swiper .card .description {
        font-size: 14px;
        line-height: 20px;
    }

    /* .slider__prev,
    .slider__next {
        display: none;
    } */
}

/* ==============================
   TABLET
================================ */
@media (min-width: 769px) and (max-width: 1023px) {
    .swiper-slide.card {
        min-height: 300px;
    }
}

/* ==============================
   DESKTOP
================================ */
@media (min-width: 1025px) {
    .slider__prev {
        left: -60px;
    }

    .slider__next {
        right: -60px;
    }

    .swiper-slide.card {
        min-height: 340px;
    }
}

@media screen and (max-width: 500px) {
.swiper-slide.card h3{
    padding: 0px !important;
}
.description{
    margin: 0px;
}
    
}
