/*
    Padrão
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    background-color: rgb(36, 36, 36);
}

body{
    padding-top: 60px;
}




/*
    Slider
*/

.slider{
    width: 90%;
    max-width: 900px;
    height: 70vh;
    max-height: 800px;
    margin: 0 auto;
    position: relative;
    border: 2px #fff solid;
    border-radius: 20px;
}

.images, .bullets{
    width: 100%;
}

.images{
    height: 100%;
    position: relative;
}

.images .img{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    display: none;

    background: #fff center no-repeat;
    background-size: cover;

    
}

.bullets{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.bullets span{
    background-color: #fff;
    height: 10px;
    width: 10px;
    margin: 5px;
    border-radius: 50%;
    display: inline-block;
}