*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#000;
    font-family:Arial, Helvetica, sans-serif;

}

.galeria{

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

.swiper{

    width:100%;
    padding-top:50px;
    padding-bottom:60px;

}

.swiper-slide{

    width:700px;
    height:450px;

    border-radius:8px;
    overflow:hidden;

    background:#FFF;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.swiper-slide img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.swiper-pagination-bullet{

    width:16px;
    height:16px;

    background:#FFF;

    opacity:.6;

}

.swiper-pagination-bullet-active{

    opacity:1;

    background:#FFF;

}