.main-slide-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    background-color: #ffa334;
    line-height: 47px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #3a4e52;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    -webkit-transition: background-color 0.2s, color 0.2s;
    -o-transition: background-color 0.2s, color 0.2s;
    -moz-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.main-slide-dot:hover, .main-slide-dot.active, .main-slide-dot_current {
    background-color: #101010;
    border: 4px solid white;
}
.main-slide-dot:hover .main-slide-dot__animate,
.main-slide-dot.active .main-slide-dot__animate {
    opacity: 0;
}
.main-slide-dot:hover::before,
.main-slide-dot:hover::after,
.main-slide-dot.active::before,
.main-slide-dot.active::after,
.main-slide-dot_current:before,
.main-slide-dot_current:after {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
    display: none;
}

.main-slide-dot.project {
    display: none;
}

/*.main-slide-dot.project-29 {*/
/*    top: 42.7%;*/
/*    right: 13%;*/
/*    display: block;*/
/*}*/

/*.main-slide-dot.project-28 {*/
/*    top: 35%;*/
/*    left: 49%;*/
/*    display: block;*/
/*}*/

/*.main-slide-dot.project-26 {*/
/*    top: 48%;*/
/*    left: 63.5%;*/
/*    display: block;*/
/*}*/

/*.main-slide-dot.project-22 {*/
/*    top: 66%;*/
/*    left: 67%;*/
/*    display: block;*/
/*}*/

/*.main-slide-dot.project-1 {*/
/*    top: 82%;*/
/*    left: 61%;*/
/*    display: block;*/
/*}*/

/*.main-slide-dot.project-27 {*/
/*    top: 77.5%;*/
/*    left: 67.7%;*/
/*    display: block;*/
/*}*/

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -moz-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -moz-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@-o-keyframes pulse {
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -o-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -o-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.7);
        -moz-transform: scale(1.7);
        -o-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -o-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
    }
    100% {
        -webkit-transform: scale(2.4);
        transform: scale(2.4);
        opacity: 0;
    }
}

@-moz-keyframes pulse2 {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -moz-transform: scale(2.1);
        transform: scale(2.1);
    }
    100% {
        -moz-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}

@-o-keyframes pulse2 {
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -o-transform: scale(2.1);
        transform: scale(2.1);
    }
    100% {
        -o-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
    }
    100% {
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -o-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}

.main-slide-dot .main-slide-dot__animate::after,
.main-slide-dot .main-slide-dot__animate::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid white;
    content: '';
    position: absolute;
    left: 150%;
    top: 0%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: pulse 2.5s infinite ease-in-out;
    -moz-animation: pulse 2.5s infinite ease-in-out;
    -o-animation: pulse 2.5s infinite ease-in-out;
    animation: pulse 2.5s infinite ease-in-out;
    margin: auto 0 auto -30.02px;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.main-slide-dot .main-slide-dot__animate::after {
    -webkit-animation-delay: 9s;
    -moz-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    opacity: .25;
    -webkit-animation-name: pulse2;
    -moz-animation-name: pulse2;
    -o-animation-name: pulse2;
    animation-name: pulse2;
}

.main-slide-dot .main-slide-dot__animate::before {
    opacity: .5;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -o-animation-delay: .3s;
    animation-delay: .3s;
}
