#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0%;
    left: 0%;
    z-index: 0;
}

#hero .rotated {
    animation: rotator 3s ease-in-out infinite alternate-reverse both;
}
@-webkit-keyframes rotator {
    0% {
        transform: rotate3d(0, 1, 0, 0deg) translateY(10px);
    }
    50% {
        transform: rotate3d(0, 1, 0, 180deg) translateY(0px);
    }
    100% {
        transform: rotate3d(0, 1, 0, 360deg) translateY(-10px);
    }
}
@keyframes rotator {
    0% {
        transform: rotate3d(0, 1, 0, 0deg) translateY(10px);
    }
    50% {
        transform: rotate3d(0, 1, 0, 180deg) translateY(0px);
    }
    100% {
        transform: rotate3d(0, 1, 0, 360deg) translateY(-10px);
    }
}

.highlighted-text {
    font-size: 20px;
}