/* LearnCube Home Page Specific Styles */

/* Hero Section Enhancements */
picture.img-hero-right {
    filter: drop-shadow(0px 0px 7px #fff);
}

/* New Announcement Section */
.new-att {
    background-color: #337ab7;
    text-align: center;
    padding: 10px 20px;
    font-weight: 400;
}

.new-att.sparkley {
    margin: 0px 0px 0px -10px;
}

/* Sub Navigation */
.firstsub {
    background: #fff;
    padding: 20px 0 1px 10%;
    margin: -4px 0 0px 0px;
}

ul.list-inline.text-left.submenu {
    padding: 5px 0 10px 0;
}

ul.list-inline.text-left.submenu li a {
    color: #989898;
    height: 20px;
    padding: 0px 10px;
}

ul.list-inline.text-left.submenu li a:hover {
    color: #337ab7;
}

.firstsub ul.list-inline.text-left.submenu li a {
    color: #337ab7;
}

/* Home Page Sections */
.bg-white {
    background-color: #fff;
    text-align: center;
    border-top: 2px solid #337ab7;
    padding-top: 30px;
    margin-bottom: -7px;
}

.bg-white2 {
    background-color: #fff;
    padding-top: 30px;
}

.bg-white2 h2 {
    font-weight: 600;
    margin-top: 5px;
}

.bg-orange {
    background-color: #337ab7;
    text-align: center;
    color: #fff;
    padding-top: 30px;
    margin-bottom: -7px;
}

.bg-orange h2 {
    color: #fff;
}

.bg-orange .fa-5x {
    padding: 20px;
}

.bg-orange i.fad {
    color: #fff;
    font-size: 70px;
}

.bluewrap1 {
    background-color: #337ab7;
    padding-top: 20px;
    padding-bottom: 70px;
    margin-bottom: -75px;
}

.bluehighlight2 {
    margin: 0;
    background-color: #337ab7;
    text-align: center;
    padding: 20px;
}

/* Feature Container */
.container.features {
    width: 100%;
    padding-left: 40px;
    padding-right: 15px;
    background: #fff;
}

/* Home Page Animations */
.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Fade in animations */
.hidden {
    opacity: 0;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

.show-below-fold {
    /* Content that loads after above-the-fold */
}

/* At a Glance Section */
#glance img.img-responsive.thumbnail {
    margin: 20px auto;
}

#glance .btn-xlg.btn-embossed {
    margin: 20px;
}

/* Home Page Utility Classes */
.mar-all {
    margin: 20px;
}

.pad-all {
    padding: 20px;
}

.mar-top {
    margin-top: 20px;
}

.mar-btm {
    margin-bottom: 5px;
}

/* Lead Text Styling */
.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}

/* Home Page Responsive */
@media (max-width: 768px) {
    .container.features {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .firstsub {
        padding-left: 15px;
    }
    
    ul.list-inline.text-left.submenu li a {
        font-size: 14px;
        padding: 5px;
    }
} 