.swiper  {
    width: 100%;
    height: 100%;
}
.swiper.mySwiperBanner {
    width: 100%;
    height: 80vh;
}

.mySwiperBanner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    position: relative;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    z-index: 2;
    
}


.mySwiperBanner .swiper-slide::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #00000075;
}

.mySwiperBanner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px !important;
    left: auto !important;
    width: 100px !important;

    top: 40%;
    right: 140px;

    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0 !important;
}

.mySwiperBanner .swiper-pagination .swiper-pagination-bullet{
    background-color: var(--cor-branco);
    opacity: 1;
}

.mySwiperBanner .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--cor-roxo);
    opacity: 1;

    transition: all 0.3s linear;
}

.mySwiperEquipe .swiper-button-next,.mySwiperEquipe .swiper-button-prev{
    color: var(--cor-roxo);
}