.container {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
     height: 60vh;
}

.panel {
    background-size: cover;
    /* background-position: center; */
    background-position: -275px 0px;
    background-repeat: no-repeat;
   height: 55vh;
    color: #fff;
    cursor: pointer;
    flex: 2.5;
    margin: 0 2px;
    position: relative;
    transition: all 700ms ease-in;
}

.panel.active {
    flex: 10;
    height: 60vh;
    margin: -15px;
    z-index: 10;
}

.pagination {
    position: absolute;
    /* bottom: 10px; */
    left: 50%;
    bottom: -3vh;
    transform: translateX(-50%);
}
.pagination-item {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #F5E4C2;
    margin: 0 2px;
    border-radius: 50%;
    cursor: pointer;
}
    .pagination-item.active {
            background-color: #F18B19;
    width: 25px;
    border-radius: 15px;
    }

@media (max-width: 480px) {
    .container {
        width: 100vw;
        transition: opacity 0.3s ease-in 0.4s;
    }

    .panel:nth-of-type(4),
    .panel:nth-of-type(5) {
        display: none;
    }
}

.text-slide.active{
    color: #F18B19;
}

.container .swiper{
    height:100%;
}
.container .swiper img{
    height:100%;
}
.swiper-pagination{
    
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-ios.swiper-backface-hidden {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
}
.swiper-wrapper{
    flex:0 0 95%;
}
.swiper-pagination .swiper-pagination-bullet{
    
}
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
    width: 15px;
    height: 10px;
    border-radius: 40%;
}

.swiper-pagination-bullet-active{
    width: 20px !important;
    background:var(--e-global-color-primary);;
}


