*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
}
.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #8b8b8b;
}

.container{
    position: relative;
    margin: 0 auto;
    max-width: 1172px;

}
.pre{
    font-weight: bolder;
    width: 32px;
    height: 32px;
    background-color: #dbdbdb;
    padding: 0.7em;
    border: 1px solid #ccc;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.next{
    font-weight: bolder;
    width: 32px;
    height: 32px;
    background-color: #dbdbdb;
    padding: 0.7em;
    border: 1px solid #ccc;
    position: absolute;
    top: 45%;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.next:hover{
    color: rgba(0, 0, 0, 0.6);
    opacity: 0.7;
}
.pre:hover{
    color: rgba(0, 0, 0, 0.6);
    opacity: 0.7;
}

