html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Merriweather, 'Helvetica Neue', Arial, sans-serif;
    background-color: #171004;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.bg-primary {
    background-color: #f05f40;
}

.bg-dark {
    color: #fff;
    background-color: #222;
}

.text-faded {
    color: rgba(255, 255, 255, .7);
}

section {
    padding: 100px 0;
}

aside {
    padding: 50px 0;
}

.no-padding {
    padding: 0;
}

header {
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
    color: #fff;
    /* background-image: url(../images/cd.png); */
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

header .header-content {
    position: relative;
    width: 100%;
    padding: 50px 15px;
    text-align: center;
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
}

header .header-content .header-content-inner hr {
    margin: 30px auto;
}

header .header-content .header-content-inner p {
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .7);
}

@media(min-width:768px) {
    header {
        min-height: 100%;
    }

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
}

.section-heading {
    margin-top: 0;
}

.service-box {
    margin: 50px auto 0;
    max-width: 400px;
}

.text-primary {
    color: #f05f40;
}

.no-gutter>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

#track_description {
    color: white;
}

.cd {
    z-index: -1;
    margin: 0;
    position: absolute;
    opacity: 0.7;
    top: 10px;
    width: 100%;
    -webkit-animation: rotation 5s infinite linear;
    -ms-animation: rotation 5s infinite linear;
    animation: rotation 5s infinite linear;
}

.cd_stop {
    -webkit-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}

.cd_play {
    -webkit-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
}




@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}