﻿.benefits-head {
    text-align: center;
}

.benefits h3 {
    margin: 4px 0 4px 0px;
    color: #333333;
}

.benefits i {
    color: #333333;
}

.highlight-box {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 300px;
}

.btn-primary {
    background-color: #95c11f;
    border-color: #82aa16;
}

    .btn-primary:hover {
        background-color: #82aa16;
        border-color: #6f9310;
    }

.navbar-inverse {
    background-color: #2e2f33;
}

.home_main {
}

    /* unvisited link */
    .home_main :link {
        color: #333333;
    }

    /* visited link */
    .home_main a:visited {
        color: #333333;
    }

    /* mouse over link */
    .home_main a:hover {
        color: #000000;
        text-decoration: none;
    }

    /* selected link */
    .home_main a:active {
        color: #333333;
    }

.socialbutton {
    padding: 0px;
}

    /* unvisited link */
    .socialbutton :link {
        color: #95c11f;
    }

    /* visited link */
    .socialbutton a:visited {
        color: #95c11f;
    }

    /* mouse over link */
    .socialbutton a:hover {
        color: #95c11f;
        text-decoration: none;
    }

    /* selected link */
    .socialbutton a:active {
        color: #95c11f;
    }


/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
}

    /* Links inside the navbar */
    .navbar a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        /* Change background on mouse-over */
        .navbar a:hover {
            background: #ddd;
            color: black;
        }

/* Main content */
body {
    margin-top: 75px; /* Add a top margin to avoid content overlay */
}


.track_parallax1 {
    /* The image used */
    background-image: url("../images/parallax/track_parallax1.png");
    /* Set a specific height */
    min-height: 500px;
    width: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .track_parallax1 {
        background-attachment: scroll;
    }
}


.track_parallax2 {
    /* The image used */
    background-image: url("../images/parallax/track_parallax2.png");
    /* Set a specific height */
    min-height: 500px;
    width: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .track_parallax2 {
        background-attachment: scroll;
    }
}

.track_parallax3 {
    /* The image used */
    background-image: url("https://images.pexels.com/photos/159823/kids-girl-pencil-drawing-159823.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260");
    background-color: #95c11f;
    /* Set a specific height */
    min-height: 500px;
    width: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1.0;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .track_parallax3 {
        background-attachment: scroll;
    }
}


#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #2e2f33;
    border: 3px solid #FFFFFF;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 100;
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
        z-index: 100;
    }

    #scroll:hover {
        background-color: #878787;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }