﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


html {
    font-size: 14px;
    font-weight: 300;
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
    font-size: 1rem;
    font-family: "Roboto", "Open Sans", sans-serif;
    line-height: 1.6;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    background-color: #fff;
}

/*------------------------------------
  Reference Pallete
------------------------------------*/

:root {
    --light-blue-color: #4C95FE;
    --blue-color: #3277C9;
    --slate-color: #3C434D;
    --beige-color: #C5B090;
    --brown-color: #B08865;
    --orange-color: #ED9A25;
    --orange-color-hover: #bf7a1a;
}

.g-color-primary {
    color: var(--orange-color) !important;
}

.g-color-secondary {
    color: var(--blue-color) !important;
}

.g-color-bg-slate {
    background-color: var(--slate-color);
}

.g-color-bg-beige {
    background-color: var(--beige-color);
}

.g-color-white {
    color: white;
}

/*------------------------------------
  Highlight Color
------------------------------------*/
::-moz-selection {
    color: #fff;
    background-color: var(--orange-color);
}

::selection {
    color: #fff;
    background-color: var(--orange-color);
}

.g-bg-primary ::-moz-selection {
    color: var(--orange-color);
    background-color: #fff;
}

.g-bg-primary ::selection {
    color: var(--orange-color);
    background-color: #fff;
}


/*------------------------------------
  Text
------------------------------------*/

strong, b {
    font-weight: 700;
}


/*------------------------------------
  Forms
------------------------------------*/

.form {
    background-color: white;
    color: #454545;
}

.form-control:focus,
.custom-select:focus {
    border-color: var(--orange-color);
    box-shadow: none;
}

/*------------------------------------
  Call-To-Action (CTA) Buttons
------------------------------------*/

.cta-btn {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    color: white;
    white-space: normal;
}

    .cta-btn:hover {
        -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
        background-color: var(--orange-color-hover);
        border-color: var(--orange-color);
        box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
        color: white;
    }

.cta-btn-secondary {
    color: var(--orange-color)
}

    .cta-btn-secondary:hover {
        color: var(--orange-color-hover);
    }

a {
    color: var(--orange-color);
    outline: none;
}

    a:focus,
    a:hover {
        color: var(--orange-color);
    }

.no-display {
    display: none !important;
    visibility: hidden;
}

.lesson-image{

}
    .lesson-image:hover {
        -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
        background-color: var(--orange-color-hover);
        border-color: var(--orange-color);
        box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
        color: white;
    }

/*------------------------------------
  STICKY FLOATING VIDEO
------------------------------------*/

.video-close-button {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid;
    border-radius: 8px;
    bottom: auto;
    color: #ffffff;
    cursor: pointer;
    display: none;
    height: 24px;
    left: auto;
    line-height: 20px;
    position: absolute;
    right: -10px;
    text-align: center;
    top: -1px;
    width: 24px;
    z-index: 100;
}

@-webkit-keyframes fade-in-up {
    0% {
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (min-width: 900px) {
    .video-wrap {
        text-align: center;
    }

    .video iframe {
        max-height: 100%;
        max-width: 100%;
    }

    .video.stuck {
        -webkit-animation: fade-in-up .5s ease forwards;
        -webkit-transform: translateY(100%);
        animation: fade-in-up .5s ease forwards;
        bottom: 20px;
        height: 245px;
        /*position: fixed;
        left: 20px;
        top: 50px;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        width: 100%;
        height: 145px;
        -webkit-animation: fade-in-up .25s ease forwards;
        animation: fade-in-up .25s ease forwards;
        z-index: 65000;*/
        position: fixed;
        right: 20px;
        transform: translateY(100%);
        width: 400px;
        z-index: 65000;
        /*border: 10px solid #7bc043;
        border-radius: 4px;*/
    }
}


/*------------------------------------
  SHRINKING NAVBAR
------------------------------------*/

.navbar {
    -webkit-transition: padding 0.2s ease;
    -moz-transition: padding 0.2s ease;
    -o-transition: padding 0.2s ease;
    transition: padding 0.2s ease;
}

.navbar-image {
    max-width: 30%
}

.affix {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    -webkit-transition: padding 0.2s linear;
    -moz-transition: padding 0.2s linear;
    -o-transition: padding 0.2s linear;
    transition: padding 0.2s linear;
}

.affix-image {
    max-width: 12%;
    -webkit-transition: max-width 0.2s linear;
    -moz-transition: max-width 0.2s linear;
    -o-transition: max-width 0.2s linear;
    transition: max-width 0.2s linear;
}

/*------------------------------------
  LESSONS
------------------------------------*/
.blockquote-custom {
    position: relative;
    font-size: 1.4rem;
    background-color: #fdf5e9 !important;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.blockquote-custom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    left: 20px;
    background-color: var(--orange-color) !important;
}

.activity-heading {
    color: var(--orange-color);
}

.lesson {
    background-color: white;
    border-radius: 8px;
}

.lesson p {
    font-size: 1.2rem;
    font-weight: 400;
}

.lesson li {
    font-size: 1.2rem;
    font-weight: 400;
}

.lesson-heading {
    padding-top: 1rem;
    color: var(--orange-color);
    font-weight: bold;
    font-size: xx-large;
}

.lesson-link h4 {
    /*font-size: x-large;*/
    font-weight: 700;
    color: var(--orange-color);
}

.lesson-subheading {
    padding-top: 1rem;
}

.breadcrumb-item {
    font-size: 1.2rem;
    font-weight: 400;
}


/*------------------------------------
  MEDIA QUERIES
------------------------------------*/
/* Keep the width constrained a bit*/
/*@media (min-width: 1200px) {
    .container {
        max-width: 960px;
    }
}*/

@media (max-width: 1200px) {
    legend {
        font-size: calc(1.275rem + 0.3vw);
    }

    h1,
    .h1 {
        font-size: calc(1.375rem + 1.5vw);
    }

    h2,
    .h2 {
        font-size: calc(1.325rem + 0.9vw);
    }

    h3,
    .h3 {
        font-size: calc(1.3rem + 0.6vw);
    }

    h4,
    .h4 {
        font-size: calc(1.275rem + 0.3vw);
    }

    .display-1 {
        font-size: calc(1.725rem + 5.7vw);
    }

    .display-2 {
        font-size: calc(1.675rem + 5.1vw);
    }

    .display-3 {
        font-size: calc(1.575rem + 3.9vw);
    }

    .display-4 {
        font-size: calc(1.475rem + 2.7vw);
    }

    .close {
        font-size: calc(1.275rem + 0.3vw);
    }
}
