/* ==========================================
   SWIPER - Galeria d'imatges Els Fogons
   ========================================== */

.swiper {
    position: relative;
}

/* Botons de navegació */
.swiper .swiper-navBtn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 10px;
    background: rgba(45, 39, 34, 0.78);

    color: #fff;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;

    opacity: 0.9;
}

/* Elimina les fletxes originals de Swiper */
.swiper .swiper-navBtn::after {
    font-size: 14px;
    font-weight: 600;
}

/* Posició */
.swiper .swiper-button-prev {
    left: 18px;
}

.swiper .swiper-button-next {
    right: 18px;
}

/* Hover */
.swiper .swiper-navBtn:hover {
    background: #a66a45;
    color: #fff;
    transform: scale(1.08);
    opacity: 1;
}

/* Paginació */
.swiper .swiper-pagination {
    bottom: 15px;
}

/* Punts */
.swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
    transition: all 0.25s ease;
}

/* Punt actiu */
.swiper .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 6px;
    background: #a66a45;
}


/* ==========================================
   MÒBIL
   ========================================== */

@media (max-width: 768px) {

    .swiper .swiper-navBtn {
        width: 36px;
        height: 36px;
    }

    .swiper .swiper-navBtn::after {
        font-size: 14px;
    }

    .swiper .swiper-button-prev {
        left: 10px;
    }

    .swiper .swiper-button-next {
        right: 10px;
    }

    .swiper .swiper-pagination {
        bottom: 10px;
    }

    .swiper .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .swiper .swiper-pagination-bullet-active {
        width: 18px;
    }
}