/*
 Theme Name:   Online Course Master
 Theme URI:    http://example.com/twenty-twenty-child/
 Description:  Twenty Twenty Child Theme
 Author:       St. Lawrence College
 Author URI:   http://stlawrencecollege.com
 Template:     twentytwenty
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  twentytwentychild
*/

/* -------------------------------------- Parent Theme (DO NOT EDIT) */

@import url("../twentytwenty/style.css");

/*----------------------------------------------- Child Theme */

@import url("../online-course-master/css/root.css");
@import url("../online-course-master/css/mc-listing.css");
@import url("../online-course-master/css/common.css");
@import url("../online-course-master/css/typography.css");
@import url("../online-course-master/css/print.css");
@import url("../online-course-master/css/animations.css");
@import url("../online-course-master/css/bootstrap.css");
@import url("../online-course-master/css/aframe.css");

/*----------------------------------------------- Navigation */

@import url("../online-course-master/js/multi-menu/css/component.css");
@import url("../online-course-master/js/multi-menu/css/icons.css");
@import url("../online-course-master/js/multi-menu/css/normalize.css");
@import url("../online-course-master/css/navigation.css");

/*----------------------------------------------- Interactives */

@import url("../online-course-master/css/interactive-environment.css");
@import url("../online-course-master/css/dashboard.css");

/*----------------------------------------------- Wordpress */

@import url("../online-course-master/css/wordpress.css");
@import url("../online-course-master/css/user-registration.css");

/*----------------------------------------------- Slick Slider */

@import url("../online-course-master/css/slickslider.css");
@import url("../online-course-master/js/slick-master/slick/slick-theme.css");
@import url("../online-course-master/js/slick-master/slick/slick.css");



/*///////////////////////////////////////////////////// HERO */

/* -------------------------------------- Banner Image ------ */

.banner-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-size: cover !important;
    background-position: center center !important;
}

.banner-image:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";

    background: var(--color-dark-opaque);
}

.banner-image.no-overlay:before {
    background: transparent;
}

.banner-content {
    position: relative;
}

.error404 .banner-content {
    position: relative;
    min-height: 100vh
}

.banner-section {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;
    right: 20%;
    color: #FFF !important;
    text-align: center;
}

.banner-section h2 {
    color: #FFF !important;
}

.banner-section .button {
    margin: 30px;
}

.banner-content button i {
    color: #FFF;
}

.banner-content button i:hover {
    color:  #228ae6;
}

.banner-content h1 {
    color: #FFF;
    font-size: 4em;
}

.banner-content h5.subtitle {
    color: #1971c2;
}

@media screen and (max-width: 1000px) {
    .banner-content h2 {
        font-size: 1.5rem !important;
    }

    .banner-content p {
        font-size: 0.9em;
    }
}

.activity-item p {
    font-size: 1.1rem;
    line-height: 1.4;
}

/*--------------------------------------- Bideo */

#background_video {
    position: fixed;

    top: 50%; left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    height: 100vh;
    width: 100%;
    min-height: 900px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    
    height: 100vh;
    width: 100%;
    min-height: 900px;
    
    background: var(--color-dark-opaque);
}

#video_cover {
    position: fixed;

    height: 100vh;
    width: 100%;
    min-height: 900px;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#video_controls {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, 0);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.landing.banner-image #video_controls {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}

.banner-image.banner-hide #video_controls {
    top: 85%;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

#play img {
    width: 100px;
}

#pause img {
    width: 90px;
}

#pause {
    display: none;
}

.play-button,
.pause-button {
    border: 1px solid #e9ecef !important;
    background: #e9ecef !important;
    border-radius: 50px;
    display: inline-block;
    height: 60px;
    width: 60px;
    padding: 0;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
    position: relative;
}

.play-button:hover,
.pause-button:hover {
    border: 5px solid #e9ecef;
    transform: scale(1.1);
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.play-button i.fas, 
.pause-button i.fas {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    
    color: #495057;
}

.play-button i.fas {
    left: 4px;
}

.button-container {
    position: fixed;
    bottom: 0;
    left: 25%;
    right: 25%;
    text-align: center;
}

.learning-objectives {
    padding: 80px;
    background: white;
    -webkit-box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
    -moz-box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
    box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
}

.introduction-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 45%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 60%;
    right: 0;
    -webkit-box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
    -moz-box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
    box-shadow: 30px 30px 26px -10px rgba(0,0,0,0.12);
}

@media screen and (max-width: 1000px) {
    .introduction-image {
        bottom: initial;
        left: 0;
        height: 150px;
        position: absolute;
    }

    .learning-objectives {
        margin-top: 30px;
    }
}

.introduction-image:after {
    background: var(--color-dark-opaque);
    position: absolute;
    content: '';
    left: 0; 
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

.listing {
    list-style-type: none;
    padding-left: 0;
    margin: 30px auto;
    font-size: 0.98rem;
    counter-reset: numberical-order;
}

.listing li {
    position: relative;
    margin-bottom: 8px;
    background: #fbfbfb;
    counter-increment: numberical-order;
}

.listing li a {
    border-color: #cacaca;
}

.listing li[type=button] {
    -webkit-appearance: none;
}

.listing li:nth-child(odd),
.listing li:nth-child(even){
    padding: 10px;
    padding-left: 50px;
}

.listing li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    
    height: auto;
    width: 30px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
    content: counter(numberical-order);
    background: #ececec;
    color: #1f282d;
    font-weight: 700;
    font-size: 0.9rem;
}

.listing.alpha {
    counter-reset: alpha-order !important;
}

.listing.alpha li {
    counter-increment: alpha-order !important;
}

.listing.alpha li:before {
    content: counter(alpha-order, lower-alpha) !important;
}

#site-footer {
    padding: 3rem 0 !important;
    background: transparent !important;
}

.footer-credits {
    display: block;
    margin-top: 30px;
}

.footer-credits p {
    text-align: center;
}

div#accessibility-links button {
    padding: 0 !important;
    font-size: initial;
}

.head-banner {
    height: 500px;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important; 
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.head-banner:before {
    content: '';
    height: 500px;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important; 
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
/*    background-image: linear-gradient(to bottom, rgba(243, 243, 243, 0), rgba(243, 243, 243,1));*/
    filter: blur(10px);
}

/*
.head-banner:after {
    content: '';
    height: 500px;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important; 
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-image: linear-gradient(to top, rgba(23, 23, 23, 0), rgba(23, 23, 23, 1));
}*/
