﻿/* SWIPER */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
    .banner .swiper {
        width: 100%;
        height: 400px;
        overflow: hidden;
    }
    .banner .swiper-wrapper {
        display: flex !important;
        width: auto !important;
    }
    .banner .swiper-slide {
        width: 100% !important;
        flex-shrink: 0 !important;
    }

/* fabricantes */
.fabricantesSwiper {
    width: 95vw;
    height: 110px;
    padding: 20px 0;
    overflow: hidden;
}
    .fabricantesSwiper .swiper-wrapper {
        align-items: center;
    }
    .fabricantesSwiper .swiper-slide {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .fabricantesSwiper .swiper-slide img {
            max-height: 120px;
            max-width: 80%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: transform .3s ease, filter .3s ease, opacity .3s ease;
        }
        /* hover */
        .fabricantesSwiper .swiper-slide:hover img {
            transform: scale(1.2);
            filter: grayscale(0%);
            opacity: 1;
        }


/*  banners
    ocuparem tela comptelo */
.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}