#DotsWrapper {
    display: none;
}

#DotsWrapper > div {
    width: 25px;
    height: 25px;
    background-color: #d8d8d8;
    border-radius: 50%;
    position: relative;
    margin: 0 1em;
}

#DotsWrapper > div.active {
    background-color: #439cd7;
}


@media ( max-width: 1100px ) {

    main:not( .homepage ) #DotsWrapper.active {
        display: flex;
    }

}

@media ( max-width: 1000px ) {

    main.homepage #DotsWrapper.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        background-color: #f1f1f1;
        padding-top: 0;
    }

}