/*
Text      : #242424;
Brand     : #204fa2;
Secondary : #333333;
Muted Text: #6c757d;
Borders   : #ececec;
 */

html {
    font-size: 16px;
}
body {
	background: #fff;
    color: #4f4f4f;
    scroll-padding-top: 109px;
    font-family: Roboto, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color:  #204fa2;
}

a {
    color: #204fa2;
    transition: all 0.3s 0s ease-in-out;
}
a:hover {
    color:  #000;
}


.topnav-container {
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0);
    transition: all .5s ease-in-out;
}

.topnav-container:hover {
    /* background-color: #fff; */
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

/* Stuff for the hero spot at the top */
.ci-welcome-index .header-container {
    height:  580px;
}
.jumbotron {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url('/images/powerlift/hero-1.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.jumbotron .container {
    display: flex;
    padding-top: 100px;
}

.page-heading {
    text-align: left;
    margin-bottom: 1.5rem;
}
.page-title,
.section-title {
    position: relative;
    text-transform: none;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: -1px;
    border-bottom: 1px solid #dad9da;
    padding: 1rem;
    padding-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.subsection-title {
    display: flex;
    width: 100%;
    justify-content: start;
    align-items: center;
    /*text-align: center;*/
    font-size: 1.2rem;
}
.subsection-title:before,
.subsection-title:after {
    content: '';
    border-top: 1px solid #dad9da;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
    max-width: 12px;
}
.subsection-title:after {
    margin: 0 0 0 20px;
    max-width: 100%;
}

.page-title {
    margin-top: 0;
    margin-bottom: 0;
}
.page-desc {
    position: relative;
    padding: .5rem 2rem;
    background: #f3f3f3;
}

.btn-brand {
    background-color: #204fa2;
    font-weight: 400;
    border: 1px solid #204fa2;
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus,
.btn-brand:active {
    background-color:  #333333 !important;
    border-color:  #333333 !important;
    color:  #ffffff !important;
}

.contact-button {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 1rem;
}

.btn-contact,
.btn-contact:focus,
.btn-contact:active,
.btn-contact:hover {
    background: #204fa2!important;
    font-weight: 400!important;
    border: 2px solid #fff!important;
    color: #fff!important;
}

.btn-contact:hover {
    background:  #333333 !important;
    border-color:  #fff !important;
    color:  #ffffff !important;
}

/* override Bootstrap */
.btn {
    border-radius: 0.2rem;
}

.jumbotron .container {
    position: relative;
    height: 100%;
    padding: 0;
}

.hero-text {
    display: block;
    position: absolute;
    left: 0;
    bottom: 20%;
    padding: 3rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}
.hero-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: .5rem;
    color: #fff;
}
.hero-text h5 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: #fff;
}

.navbar-primary {
    padding: 0;
}
.navbar-brand {
    margin: 0;
    padding: 0;
}
.navbar-brand:hover {
    opacity:  1;
}
.navbar-brand img {
    max-width: 220px;
    height: auto;
}
.navbar-primary .navbar-nav {
    margin-left: auto;
}

/*
 * top nav links
 * Desktop styles are in a media query near bottom of file
 */
.navbar-primary .nav-link {
    position: relative;
    padding: .5rem 1rem !important;
    color: #666;
    transition: all .5s;
}

.navbar-primary .dropdown-menu {
    border-radius: 0;
    margin: 0;
    border: none;
    box-shadow: 0 10px 10px rgba(0,0,0,.15);
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.navbar-toggler {
    color: #fff;
}

.navbar-primary .dropdown-item {
    position: relative;
    color: #333;
}

.navbar-primary .dropdown-item:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    bottom: -1px;
    width: 0;
    background-color: #ccc;
    visibility: hidden;
    /* transform: scaleX(0); */
    transition: all 0.3s ease-in-out 0s;
}
.navbar-primary .dropdown-item:hover:before {
    visibility: visible;
    /*transform: scaleX(1);*/
    width: 100%;
}

.slidenav:not(.ci-welcome) .main-content {
    padding-top: 125px;
}

.main-content section {
    margin-top: 24px;
}

/* Course listings (front page) */

.subsection-title + .course-card {
    margin-top: 2.3rem;
}

.card-collection {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
}

.footer-container {
    position: relative;
    padding: 1rem 1rem .5rem 1rem;
    color: #333;
    background-color: #fff;
    text-align: center;
}
.footer-container.container {
    max-width: 100%;
}
.footer-container .separator-white {
    border-color: rgba(255,255,255,.15);
}

.footer-container h5 {
    text-transform: none;
    font-weight: 700;
    font-size: 1rem;
    color:  #fff;
}
.footer-container a {
    color: #fff;
    /*border-bottom: 1px dotted #fff;*/
}
.footer-container a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-container .social-icon-link {
    text-decoration: none;
    border: 0;
    font-size: 1rem;
}
.social-icon-link i {
    transition: all .125s linear;
    -o-transition: all .125s linear;
    -moz-transition: all .125s linear;
    -webkit-transition: all .125s linear;
}

.footer-container .social-icon-link i:hover {
    color: #fff;
    transform: scale(1.3,1.3);
    -ms-transform: scale(1.3,1.3);
    -webkit-transform: scale(1.3,1.3);
}

.post-footer-container {
    color: #efefef;
    background-color: #404041;
}

/* Bootstrap overrides */

.alert,
.list-group-item:first-child,
.list-group-item:last-child {
    border-radius: 0;
}

/* SCORM viewer overrides */
.sco-navigation #prev,
.sco-navigation #next {
    display:  none;
}


/* Bootstrap's Breakpoints */
@media (min-width: 576px) {
    .jumbotron .container {
    }
}

@media (min-width: 768px) {
    .ci-welcome-index .header-container {
        height:  580px;
    }
    .jumbotron .container {
        /* padding-top: 430px; */
    }
    .hero-text h2 {
        font-size: 2rem;
        top: 28%;
    }
    .hero-text h5 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .footer-brands .brand-logo {
        min-width: 20%;
    }
}

@media (min-width: 992px) {
    .navbar-primary .nav-link {
        position: relative;
        z-index: 1;
        border-top: 8px solid transparent;
        padding: 1.25rem 1rem !important;
        margin-left: 1px;
        color: #204fa2;
    }
    .navbar-primary .nav-link:hover,
    .navbar-primary .nav-link:focus,
    .navbar-primary .nav-link-active {
        outline: 0;
        background-color: #fff;
        color: #204fa2;
    }
    .navbar-primary .nav-link:before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        top: -8px;
        right: 0;
        margin-bottom: auto;
        width: 100%;
        height: 8px;
        color: transparent;
        transition: all .5s;
        background: #204fa2;
        visibility: hidden;
        transform: scaleX(0);
    }

    .navbar-primary .nav-link:hover:before,
    .navbar-primary .nav-link:focus:before,
    .navbar-primary .nav-link-active:before {
        visibility: visible;
        transform: scaleX(1);
    }
    .ci-welcome .navbar-primary .nav-link:before {
        bottom: 0;
    }
    .navbar-primary .dropdown-menu {
        top: 100%;
    }
    .hero-text {
        text-align: left;
        max-width: 75%;
    }
    .hero-text h1 {
        font-size: 2rem;
        bottom: 48%;
    }
    .hero-logo {
        display: block;
    }
    .footer-brands .brand-logo {
        margin-bottom: 0;
        min-width: 20%;
    }
}

@media (min-width: 1200px) {
    .hero-text {
        max-width: 60%;
    }
    .hero-logo {
        right: 3rem;
    }
}

@media (min-width: 1400px) {
    .hero-text {
        max-width: 50%;
    }
    .hero-logo {
        top: 45%;
        right: 4rem;
    }    
}

@media (min-width: 1550px) {
    .contact-button {
        width: auto !important;
        text-align: right !important;
        margin: 0;
    }
}
