/* Font Face */
@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Thin.eot');
    src: url('fonts/RobotoSlab-Thin.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Thin.woff2') format('woff2'),
        url('fonts/RobotoSlab-Thin.woff') format('woff'),
        url('fonts/RobotoSlab-Thin.ttf') format('truetype'),
        url('fonts/RobotoSlab-Thin.svg#RobotoSlab-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Regular.eot');
    src: url('fonts/RobotoSlab-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Regular.woff2') format('woff2'),
        url('fonts/RobotoSlab-Regular.woff') format('woff'),
        url('fonts/RobotoSlab-Regular.ttf') format('truetype'),
        url('fonts/RobotoSlab-Regular.svg#RobotoSlab-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Black.eot');
    src: url('fonts/RobotoSlab-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Black.woff2') format('woff2'),
        url('fonts/RobotoSlab-Black.woff') format('woff'),
        url('fonts/RobotoSlab-Black.ttf') format('truetype'),
        url('fonts/RobotoSlab-Black.svg#RobotoSlab-Black') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Light.eot');
    src: url('fonts/RobotoSlab-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Light.woff2') format('woff2'),
        url('fonts/RobotoSlab-Light.woff') format('woff'),
        url('fonts/RobotoSlab-Light.ttf') format('truetype'),
        url('fonts/RobotoSlab-Light.svg#RobotoSlab-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Bold.eot');
    src: url('fonts/RobotoSlab-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Bold.woff2') format('woff2'),
        url('fonts/RobotoSlab-Bold.woff') format('woff'),
        url('fonts/RobotoSlab-Bold.ttf') format('truetype'),
        url('fonts/RobotoSlab-Bold.svg#RobotoSlab-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Medium.eot');
    src: url('fonts/RobotoSlab-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/RobotoSlab-Medium.woff2') format('woff2'),
        url('fonts/RobotoSlab-Medium.woff') format('woff'),
        url('fonts/RobotoSlab-Medium.ttf') format('truetype'),
        url('fonts/RobotoSlab-Medium.svg#RobotoSlab-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

/* Font Face */

body {
    font-family: 'Roboto Slab'!important;
}

object{
    width: 100%;
    height: auto;
}

.hide {
    display: none;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.show {
    display: block;
}

.hide-session
{
    display: none;
}

.mejs__mediaelement video {
    border: solid 5px #fff;
}

.carousel-control-prev-icon, .carousel-control-next-icon
{
    display: none;
}

.nav-tabs,
.nav-tabs:hover,
.nav-tabs .nav-link {
    border: none !important;
}

.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: zoom;
    animation-name: zoom;
}

.stop-animate {
    -webkit-animation-iteration-count: 0;
    animation-iteration-count: 0;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes parachute {
    0% {
        transform: rotate(40deg) translate(-200px, -200px);
        opacity: 1;
    }

    30% {
        transform: rotate(-20deg) translate(120px, -50px);
    }

    60% {
        transform: rotate(20deg) translate(0px, -20px);
    }

    90% {
        transform: rotate(0deg) translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.animate-parachute
{
    opacity: 0;
}

.parachute-animation {
    animation: parachute 6s ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

.img-fluid-100 {
    width: 100%;
}

.img-fluid-100-center {
    width: 100%;
    margin: 0 auto;
    height: auto;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
    position: relative;
    left: 0px;
    top: 0px;
    min-height: 55px;
    z-index: 10;
}

#logo {
    left: 4px;
    top: 2px;
    width: 60px;
    height: auto;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

#course-title:before {
    content: " ";
    position: absolute;
    top: -1px;
    left: -22px;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.3);
}

#course-title {
    position: relative;
    display: inline-block;
    top: 11px;
    left: 40px;
}

#course-title h1 {
    font-size: 14px;
    color: rgb(42, 42, 134);
    font-style: italic;
    line-height: 14px;
    text-align: left;
    margin: 0px;
}

#course-title h1 strong {
    font-size: 16px;
    line-height: 21px;
    font-style: normal;
    font-weight: 700;
}

/* Header */

/* Lesson 01*/
#lesson-01{
    overflow: hidden;
}
/* Lesson 01*/

/* Section 01*/
#lesson-01-section-01 {
    position: relative;
    width: 100%;
    height: 586px;
    background: url(../images/lesson-01-section-01-image-01.png) no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#lesson-01-section-01 .container-01{
    height: 100%;
}

#lesson-01-section-01 .container-01 .row-01 .col-01{
    justify-content: center;
    display: flex;
}

#lesson-01-section-01 .container-01 .row-01 .col-01 .svg-01{
    width: 100%;
    max-width: 668px;
    height: auto;
    margin-top: 70px;
}
/* Section 01*/

/* Section 02*/
#lesson-01-section-02{
    position: relative;
    margin-top: -185px;
    padding: 0px;
    padding-bottom: 45px;   
}

#lesson-01-section-02 .container-01{
    max-width: 1400px!important;
    padding: 0px;
}

#lesson-01-section-02 .container-01 .svg-01{
    max-width: 1400px;
}

#lesson-01-section-02 .container-01 .svg-01-mobile{
    display: none;
}

#lesson-01-section-02 .container-02{ 
    padding: 0px 30px;
}

#lesson-01-section-02 .container-02 .row-01{
    margin: 0px;
} 

#lesson-01-section-02 .container-02 .row-01 p{
    font-size: 40px;
    color: #2a2a86;
    font-weight: bold;
    line-height: 45px;
    text-align: left;
}

#lesson-01-section-02 .container-02 .row-01 p span.highlight {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba(0, 139, 224, 1) 50%);
    padding: 2px;
    padding-right: 7px;
    color: #2a2a86!important;
    height: 45px;
    display: inline-block;
}

#lesson-01-section-02 .container-02 .row-01 p span.highlight.highlight-02 {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba(247, 135, 9, 1) 50%);
    padding: 2px;    
    padding-right: 6px;
    color: #2a2a86!important;
    height: 45px;
    display: inline-block;
}

#lesson-01-section-02 .container-02 .row-01 p span.highlight.active{
    color: #fff!important;
}
/* Section 02*/

/* Section 03*/
#lesson-01-section-03 {
    position: relative;
    width: 100%;
    height: auto;
    background: url(../images/lesson-01-section-03-svg-02.svg) no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: 90px;
    padding-bottom: 200px;
}

#lesson-01-section-03 .container-01 .svg-01{
    max-width: 1039px;
}

#lesson-01-section-03 .container-01 .image-01{
    display: none;
}

#lesson-01-section-03 .container-02 .svg-01{
    max-width: 1021px;
}

#lesson-01-section-03 .container-02 .row-01 h2 {
    font-size: 40px;
    color: rgb(0, 44, 71);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 45px;
    text-align: center;
}

#lesson-01-section-03 .container-02 .row-01 h2 span.white {
    color: #fff;
}

#lesson-01-section-03 .container-02 .box-mobile{
    display: none;
}

#lesson-01-section-03 .container-02 .row-01 .box-01{
    border: 2px solid rgb(255, 255, 255);
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
}

#lesson-01-section-03 .container-02 .row-01 .box-01 p {
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}

#lesson-01-section-03 .container-02 .row-01 .box-02{
    border: 2px solid rgb(0, 44, 71);
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
}

#lesson-01-section-03 .container-02 .row-01 .box-02 p {
    font-size: 22px;
    color: rgb(0, 44, 71);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}
/* Section 03*/

/* Section 04*/
#lesson-01-section-04 {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 200px;
    background: url(../images/lesson-01-section-04-image-01.png) no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 1;
}

#lesson-01-section-04 .container-01{
    top: -80px;
    position: relative;
    text-align: center;
}

#lesson-01-section-04 .container-01 .svg-01{
    max-width: 540px;
}

#lesson-01-section-04 .container-01 .svg-01-mobile{
    display: none;
}

#lesson-01-section-04 .container-02{
    max-width: none!important;
    padding: 0px!important;
    margin-top: -260px;
    text-align: center;
    padding-top: 90px !important;
}

#lesson-01-section-04 .container-02 .option{
    width: 457px;
    height: 470px;
    display: inline-block;
    background: url(../images/lesson-01-section-04-vector-01.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#lesson-01-section-04 .container-02 .option:last-child{
    padding-left: 115px
}

#lesson-01-section-04 .container-02 .option video{
    width: 245px;
    height: 189px;
    border: 10px solid #FFF;
    box-shadow: 5.878px 8.09px 8px 0px rgba(0, 0, 0, 0.3);
    position: relative;
}

#lesson-01-section-04 .container-02 .option .option-content{
    position: relative;
    display: table;
    top: 50%;
    transform: translateY(-50%);
}

#lesson-01-section-04 .container-02 .option:last-child video{
    float: left;
}

#lesson-01-section-04 .container-02 .option .box {
    background-color: #FFF;
    width: 280px;
    height: 90px;
    position: relative;
    float: left;
    margin-top: -30px;
    box-shadow: 5.878px 8.09px 8px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#lesson-01-section-04 .container-02 .option .box .check{
    width: 49px;
    height: 49px;
    border: solid 8px #002c47;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px;
    position: relative;
}

#lesson-01-section-04 .container-02 .option .box .check.checked:after{
    content: url(../images/tick-icon.svg);
    width: 52px;
    height: 52px;
    position: relative;
    top: -12px;
}

#lesson-01-section-04 .container-02 .option:last-child .box .check{
    margin-left: auto;
    margin-right: 20px;
}

#lesson-01-section-04 .container-02 .option:last-child .box {
    float: right;
}

#lesson-01-section-04 .container-02 .option .box .text {
    font-size: 22px;
    font-family: "Roboto Slab";
    color: rgb(0, 44, 71);
    line-height: 27px;
    text-align: right;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

#lesson-01-section-04 .container-02 .option:last-child .box .text {
    right: auto;
    text-align: left;
    right: auto;
    left: 20px;
}

#lesson-01-section-04 .container-02 .option .box .text p {
    margin-bottom: 0px;
}

#lesson-01-section-04 .container-02 .svg-02{
    max-width: 1084px;
    margin: auto;
}

#correct-wrapper{
    display: none;
}

#lesson-01-section-04 .container-03 {
    padding-bottom: 150px;
    position: relative;
}

#lesson-01-section-04 .container-03 .image-01-mobile{
    display: none;
}

#lesson-01-section-04 .container-03 .svg-03{
    max-width: 1183px;
}

#lesson-01-section-04 .container-03 .video-box {
    display: inline-block;
    position: relative;
}

#lesson-01-section-04 .container-03 .video-box video {
    position: relative;
    border: 10px solid #FFF;
    box-shadow: 5.878px 8.09px 8px 0px rgba(0, 0, 0, 0.3);
}

#lesson-01-section-04 .container-03 .video-box:after {
    content: url(../images/lesson-01-section-04-dots-01.png);
    width: 78px;
    position: absolute;
    bottom: -35px;
    left: -35px;
    z-index: -1;
}
#lesson-01-section-04 .container-03 .video-box img {
    position: absolute;
    right: -70%;
    top: -70px;
}

#lesson-01-section-04 .container-03 .external-video {
    display: inline-block;
    position: absolute;
    margin-top: 93px;
    right: -17px;
}

#lesson-01-section-04 .container-03 .external-video img{
    position: relative;
    top: 0px;
    left: 0px;
}

#lesson-01-section-04 .container-03 .external-video .video-click{
    left: 17%;
    top: 7%;
    width: 100%;
    height: 100%;
    max-width: 620px;
    max-height: 350px;
    position: absolute;
    background-color: transparent;
    z-index: 9;
}

#lesson-01-section-04 .container-03 .external-video .video-click{
    cursor: pointer;
}

#lesson-01-section-04 .container-03 .external-video .video-click:hover:after {
    content: url(../images/play-icon.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

#lesson-01-section-04 .container-05 {
    padding-bottom: 150px;
}

#lesson-01-section-04 .container-05 .svg-03{
    max-width: 1183px;
}

#lesson-01-section-04 .container-05 .image-01-mobile{
    display: none;
}

#lesson-01-section-04 .container-05 .video-box {
    display: inline-block;
    position: relative;
}

#lesson-01-section-04 .container-05 .video-box video {
    position: relative;
    border: 10px solid #FFF;
    box-shadow: 5.878px 8.09px 8px 0px rgba(0, 0, 0, 0.3);
}

#lesson-01-section-04 .container-05 .video-box:after {
    content: url(../images/lesson-01-section-04-dots-02.png);
    width: 100%;
    max-width: 808px;
    position: absolute;
    bottom: -110%;
    left: -27px;
    z-index: -1;
}
#lesson-01-section-04 .container-05 .video-box img {
    position: absolute;
    right: -40%;
    top: -70px;
}

#lesson-01-section-04 .container-04 .row-01 .box-01 {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    padding: 50px;
    position: relative;
    z-index: 1;
}

#lesson-01-section-04 .container-04 .row-01 .box-01:before {
    content: url(../images/lesson-01-section-04-svg-04.svg);
    position: absolute;
    top: 20px;
    left: -150px;
    height: 103px;
    width: 124px;
}

#lesson-01-section-04 .container-04 .row-01 .box-01 p {
    font-size: 22px;
    color: rgb(0, 44, 71);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}

#lesson-01-section-04 .container-04 .row-02 .box-01 {
    background-color: rgb(96, 173, 105);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    padding: 50px;
    margin-top: -1px;
    position: relative;
    z-index: 0;
}

#lesson-01-section-04 .container-04 .row-02 .box-01:after {
    content: url(../images/lesson-01-section-04-svg-05.svg);
    position: absolute;
    top: 55px;
    right: -150px;
    height: 114px;
    width: 114px;
}

#lesson-01-section-04 .container-04 .row-02 .box-01 p {
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}

#incorrect-wrapper{
    display: none;
    padding-bottom: 50px;
}

#lesson-01-section-04 .container-05{
    text-align: left;    
}

#lesson-01-section-04 .container-05 .svg-07{
    max-width: 830px;
    margin: auto;
}

#lesson-01-section-04 .container-06{
    margin-top: -130px;
}

#lesson-01-section-04 .container-06 .row-01 .box-01 {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    padding: 50px;
    position: relative;
    z-index: 1;
}

#lesson-01-section-04 .container-06 .row-01 .box-01 p {
    font-size: 22px;
    color: rgb(0, 44, 71);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}

#lesson-01-section-04 .container-06 .row-02 .box-01 {
    background-color: rgb(96, 173, 105);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    padding: 50px;
    margin-top: -1px;
    position: relative;
    z-index: 0;
}

#lesson-01-section-04 .container-06 .row-02 .box-01:after {
    content: url(../images/lesson-01-section-04-svg-06.svg);
    position: absolute;
    bottom: -125px;
    left: 0px;
    right: 0px;
    height: 96px;
    width: 100%;
}

#lesson-01-section-04 .container-06 .row-02 .box-01 h3 {
    font-size: 28px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 33px;
    margin-bottom: 0px;
}

#lesson-01-section-04 .container-06 .row-02 .box-01 p {
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 27px;
    text-align: left;
    margin-bottom: 0px;
}
/* Section 04*/

/* Section 05*/
#lesson-01-section-05 {
    position: relative;
    width: 100%;
    height: auto;
    background-image: -moz-linear-gradient( 0deg, rgb(211,149,3) 0%, rgb(245,173,3) 13%, rgb(245,173,3) 84%, rgb(211,149,3) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(211,149,3) 0%, rgb(245,173,3) 13%, rgb(245,173,3) 84%, rgb(211,149,3) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(211,149,3) 0%, rgb(245,173,3) 13%, rgb(245,173,3) 84%, rgb(211,149,3) 100%);
    z-index: 0;
    margin-top: -120px;
    border: 0px;
    padding-bottom: 40px;
}

#lesson-01-section-05 .container-01 .row-01{
    padding-top: 155px;
    text-align: center;
}

#lesson-01-section-05 .container-01 .row-01 .img-01{
    width: 100%;
    max-width: 488px;
    height: auto;
}

#lesson-01-section-05 .container-01 .row-02 p {
    font-size: 30px;
    color: rgb(0, 44, 71);
    line-height: 35px;
    text-align: center;
    max-width: 460px;
    margin: auto;
    margin-top: 15px;
}

#lesson-01-section-05 .container-02{
    padding: 0px;
    max-width: none!important;
    text-align: center;
}

#lesson-01-section-05 .container-02 .svg-01{
    max-width: 1130px;
    margin-top: 30px;
}

#lesson-01-section-05 .container-03{
    display: none;
}
/* Section 05*/

#lesson-01-section-06 .carousel-indicators li{
    opacity: 1;
}

#lesson-01-section-06 .carousel-inner div p{
    margin-bottom: 0px;
}

#lesson-01-section-06 .carousel-item .image-01-mobile,
#lesson-01-section-06 .carousel-item .image-02-mobile,
#lesson-01-section-06 .carousel-item .image-03-mobile,
#lesson-01-section-06 .carousel-item .image-04-mobile,
#lesson-01-section-06 .carousel-item .image-05-mobile,
#lesson-01-section-06 .carousel-item .image-06-mobile{
    display: none!important;
}

#lesson-01-section-08{
    margin-top: -10px;
}

#lesson-01-section-07 .container-02{
    display: none;
}

#lesson-01-section-08 .row.row-01 .image-01-mobile,
#lesson-01-section-08 .row.row-01 .image-02-mobile{
    display: none;
}

#lesson-01-section-08 #confirm-button-01{
    width: 271px;
    height: 70px;
    border: 0px;
    background: url(../images/lesson-01-section-08-svg-02.svg);
    background-position: top left;
    top: -6px;
    position: relative;
    cursor: pointer;
    float: right;
}

#lesson-01-section-08 #confirm-button-01:hover{
    background-position: bottom left; 
}

#lesson-01-section-08 .row-03 .svg-01{
    width: 100%;
    max-width: 950px;
    height: auto;
}

#lesson-01-section-08 .container-02 .row-04-00{
    display: none;
}

#lesson-01-section-08 .row-04 p{
    font-size: 22px;
    font-family: "Roboto Slab";
    color: rgb(0, 44, 70);
    line-height: 31px;
    text-align: left;
    max-width: 325px;
}

#lesson-01-section-08 .row-04{
    margin-top: -155px;
    padding-bottom: 120px;
}

#lesson-01-section-08 .row-04 p span.highlight{
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba(253, 204, 73, 1) 50%);
    padding: 0px;
}


@media (min-width: 1920px) {
    #lesson-01-section-01 {
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
}

@media (max-width: 1400px) {

}

@media (max-width: 1199.98px) {
    #lesson-01-section-04 .container-03{
        max-width: none;
        padding-bottom: 200px;
    }

    #lesson-01-section-04 .container-03 .video-box video{
        width: 90%;
        height: auto;
    }

    #lesson-01-section-04 .container-03 .video-box img {
        right: -50%;
        width: 90%;
    }

    #lesson-01-section-04 .container-03 .external-video{
        text-align: right;
    }

    #lesson-01-section-04 .container-03 .external-video img{
        width: 95%;
    }

    #lesson-01-section-04 .container-03 .external-video .video-click {
        left: 19%;
        top: 5%;
    }

    #lesson-01-section-08 .row.row-03 .box-container{
        margin: auto!important;
        margin-top: 50px!important;
    }

    #lesson-01-section-08 .row.row-03 .box-container:after{
        right: 20px!important;
        bottom: -35px!important;
    }

    #lesson-01-section-08 .row.row-03 .box{
        margin: auto!important;
    }

    #lesson-01-section-08 .row-03 .svg-01{
        margin-top: -25px!important;
    }

    #lesson-01-section-08 .row-04{
        margin-left: 160px;
    }

    #lesson-01-section-08 .row-04 .col-md-4{
        max-width: none;
        flex: none;
    }
}

@media (max-width: 990.98px) {
    #lesson-01-section-03{
        padding-bottom: 180px;
    }

    #lesson-01-section-03 .container-02 .row-01 h2{
        font-size: 37px;
        line-height: 42px;
    }

    #lesson-01-section-04{
        padding-bottom: 125px;
    }

    #lesson-01-section-04 .container-02 .option{
        width: 360px;
        height: 380px;
    }

    #lesson-01-section-04 .container-02 .option:last-child {
        padding-left: 56px;
    }

    #lesson-01-section-04 .container-01 .svg-01 {
        max-width: 455px;
    }

    #lesson-01-section-04 .container-02{
        padding-top: 150px !important;
    }

    #lesson-01-section-04 .container-03{
        max-width: none;
        padding-bottom: 225px;
        padding-top: 50px;
    }

    #lesson-01-section-04 .container-03 .video-box video{
        width: 80%;
        height: auto;
    }

    #lesson-01-section-04 .container-03 .video-box img {
        right: -40%;
        width: 80%;
    }

    #lesson-01-section-04 .container-03 .external-video {
        text-align: right;
        width: auto;
        display: inline;
    }

    #lesson-01-section-04 .container-03 .external-video img{
        width: 70%;
    }

    #lesson-01-section-04 .container-03 .external-video .video-click {
        right: -68px;
        left: inherit;
        top: -5%;
    }

    #lesson-01-section-04 .container-05{
        max-width: none;
        margin-top: 100px;
        text-align: left;
    }

    #lesson-01-section-04 .container-06 {
        margin-top: -130px;
        padding-bottom: 125px;
        max-width: none;
    }

    #lesson-01-section-04 .container-05 .video-box video{
        width: 80%;
        margin-left: 0%;
    }

    #lesson-01-section-04 .container-05 .video-box img {
        position: absolute;
        right: -23%;
        top: -70px;
        width: 65%;
    }

    #lesson-01-section-08{
        padding-top: 40px;
    }

    #lesson-01-section-08:before {
        height: 130px;
    }

    #lesson-01-section-08 .row.row-03 .box-container:after {
        right: -32px!important;
        bottom: -35px!important;
    }

    #lesson-01-section-08 .container-02{
        max-width: none;
    }

    #lesson-01-section-08 .row-03 .svg-01{
        margin-bottom: 50px;
        max-width: 735px;
    }

    #lesson-01-section-08 .row-04 {
        margin-left: 0%;
        margin-top: -165px;
    }
}

@media (max-width: 900px) {
    #lesson-01-section-08 .row-04 {
        margin-left: 0%;
        margin-top: 0px;
        padding-bottom: 60px;
    }

    #lesson-01-section-08 .row-04 .offset-md-7{
        margin: 0!important;
    }

    #lesson-01-section-08 .row-04 p {
        max-width: 435px;
        margin: auto;
    }
}

@media (max-width: 767.98px) {
    #lesson-01-section-01{
        height: 425px;
    }

    #lesson-01-section-01 .container-01 .row-01 .col-01 .svg-01{
        margin-top: 30px;
    }

    #lesson-01-section-02{
        margin-top: -125px;
    }

    #lesson-01-section-02 .container-01 .svg-01{
        display: none;        
    }

    #lesson-01-section-02 .container-01 .svg-01-mobile{
        display: block;
    }

    #lesson-01-section-02 .container-02{
        max-width: none;
        margin-top: 35px;
    }

    #lesson-01-section-03 .container-01{
        max-width: 100%!important;
        padding: 0px;
    }

    #lesson-01-section-03 .container-01 .svg-01{
        display: none;
    }

    #lesson-01-section-03 .container-01 .image-01{
        width: 100%;
        max-width: 768px;
        height: auto;
        display: block;
    }

    #lesson-01-section-03 .container-02{
        max-width: 100%!important;
        padding-top: 25px;
    }

    #lesson-01-section-03 .container-02 .svg-01{
        display: none;
    }

    #lesson-01-section-03 .container-02 .box-mobile{
        display: block;
    }

    #lesson-01-section-04 .container-01{
        top: -100px;
    }

    #lesson-01-section-04 .container-01 .svg-01{
        display: none;
    }

    #lesson-01-section-04 .container-01 .svg-01-mobile{
        display: block;
        width: 100%;
        height: auto;
        max-width: 455px;
        margin: auto;
    }

    #lesson-01-section-04 .container-02 .option .box, #lesson-01-section-04 .container-02 .option .box:last-child, #lesson-01-section-04 .container-02 .option:last-child video{
        float: none;
    }

    #lesson-01-section-04 .container-02 .option{
        width: 285px;
        margin: 0px 11%;
        height: 320px;
    }

    #lesson-01-section-04 .container-02 .option:first-child{
        margin-top: 30px;
    }

    #lesson-01-section-04 .container-02 .option:last-child{
        padding-left: 0px;
    }    

    #lesson-01-section-04 .container-03 {
        max-width: none;
        padding-bottom: 0px;
        padding-top: 40px;
        text-align: center;
    }

    #lesson-01-section-04 .container-03 .image-01{
        display: none;
    }

    #lesson-01-section-04 .container-03 .image-01-mobile{
        display: block;
    }

    #lesson-01-section-04 .container-03 .video-box{
        text-align: center;
    }

    #lesson-01-section-04 .container-03 .video-box video {
        width: 100%;
        height: auto;
        max-width: 450px;
        position: relative;
    }

    #lesson-01-section-04 .container-03 .video-box:after {
        position: absolute;
        bottom: 147px;
        left: -36px;
    }

    #lesson-01-section-04 .container-03 .video-box img {
        width: 100%;
        position: relative;
        max-width: 350px;
        margin: auto;
        right: 0px;
    }

    #lesson-01-section-04 .container-03 .external-video{
        position: relative;
        width: 100%;
        text-align: center;
        right: 0px;
        margin-top: -30px;
        display: block;
    }

    #lesson-01-section-04 .container-03 .external-video .video-click {
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 35%;
        margin: auto;
        width: 100%;
        height: auto;
        max-width: none;
        max-height: none;
        display: block;
    }

    #lesson-01-section-04 .container-03 .external-video .video-click:hover:after {
        content: url(../images/play-icon.svg);
        position: absolute;
        width: 80px;
        height: 80px;
        top: 0px;
        bottom: 0px;
        margin: auto;
        right: 0px;
        left: 0px;
        transform: none;
    }

    #lesson-01-section-04 .container-03 .external-video img{
        width: 104%;
        left: -5%;
    }

    #lesson-01-section-04 .container-04{
        margin-top: -160px;        
        padding-bottom: 35px;
        max-width: none;
    }

    #lesson-01-section-04 .container-04 .row-01 .box-01:before{
        content: "";
    }

    #lesson-01-section-04 .container-04 .row-02 .box-01:after{
        content: "";
    }

    #lesson-01-section-04 .container-05{
        text-align: center;
        margin-top: 35px;
    }

    #lesson-01-section-04 .container-05 .image-01{
        display: none;
    }

    #lesson-01-section-04 .container-05 .image-01-mobile{
        display: block;
    }

    #lesson-01-section-04 .container-05 .video-box{
        display: inline-block;
        position: relative;
        text-align: center;
    }

    #lesson-01-section-04 .container-05 .video-box video {
        width: 100%;
        margin: auto;
    }

    #lesson-01-section-04 .container-05 .video-box img {
        position: relative;
        margin: auto;
        right: inherit;
        top: -70px;
        width: 100%;
        max-width: 340px;
    }

    #lesson-01-section-04 .container-05 .video-box:after {
        content: url(../images/lesson-01-section-04-dots-02.png);
        width: 100%;
        max-width: none;
        position: absolute;
        bottom: -22%;
        left: -84px;
        z-index: -1;
    }

    #lesson-01-section-04 .container-06 {
        margin-top: -160px;
        padding-bottom: 125px;
        max-width: none;
    }

    #lesson-01-section-05{
        margin-top: -130px;
    }

    #lesson-01-section-05 .container-01, #lesson-01-section-05 .container-02{
        display: none;
    }

    #lesson-01-section-05 .container-03{
        max-width: none;
        display: block;
        background: url(../images/lesson-01-section-05-image-09.png) no-repeat;
        background-position: center top;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        z-index: 1;
    }

    #lesson-01-section-05 .container-03 .row.icon-row{
        text-align: center;
        margin-top: 20px;
    }

    #lesson-01-section-05 .container-03 .row.icon-row img{
        width: auto;
        max-width: 100%;
        height: auto;
    }

    #lesson-01-section-05 .container-03 .row.row-01{
        padding-top: 120px;
    }

    #lesson-01-section-05 .container-03 .row.row-01{
        text-align: center;
    }

    #lesson-01-section-05 div.container.container-03 .row.row-01 .image-01{
        width: auto;
        max-width: 100%;
        height: auto;
    }

    #lesson-01-section-06{
        padding: 0px;
        background-size: 70%!important;
        background-position-y: -30px!important;
    }

    #lesson-01-section-06 .container-01 .row-01 h2 {
        font-size: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #lesson-01-section-06 .carousel-item{
        padding-top: 30px;
        background:url(../images/lesson-01-section-06-bg-01.png) repeat-x #00af65;
        background-size: contain;
        background-position-y: -80px;
        display: block!important;
        opacity: 1!important;
        float: none!important;
    }

    #lesson-01-section-06 .carousel-item:first-child{
        background: none;
    }

    #lesson-01-section-06 .carousel-indicators{
        display: none!important;
    }

    #lesson-01-section-06 .carousel-indicators li{
        display: none!important;
    }

    #lesson-01-section-06 .container-01{
        padding: 0px;
        max-width: none;
    }

    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-01, 
    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-02, 
    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-03, 
    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-04, 
    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-05, 
    #lesson-01-section-06 .container-01 .carousel-inner .carousel-item .box-06 {
        position: relative;
        background-color: #002c47;
        padding: 30px 25px;
        margin: 0px -15px;
        bottom: 0px;
    }

    .carousel-inner .carousel-item .box-05{
        bottom: 0px;
    }

    #lesson-01-section-06{
        border-bottom: none!important;
    }

    .carousel-control-prev, .carousel-control-next {
        display: none!important;
    }

    #lesson-01-section-07{
        background: none;
    }

    #lesson-01-section-07 .container-01{
        display: none;
    }

    #lesson-01-section-07 .container-02{
        display: block;
        padding: 0px;
    }

    #lesson-01-section-07 .row-01{
        padding: 0px!important;
        padding-top: 50px!important;
    }    

    #lesson-01-section-07 .container-02 .image-01{
        width: 100%;
        max-width: 768px;
        height: auto;
    }

    #lesson-01-section-07 .container-02 .row-02 .box-01{
        background-color: rgb(255, 255, 255);
        padding: 15px;
        position: relative;
        margin-bottom: -70px;
        z-index: 2;
    }

    #lesson-01-section-07 .container-02 .row-02 .box-01 p{
        font-size: 20px;
        color: rgb(0, 44, 71);
        line-height: 25px;
        text-align: center;
        margin-bottom: 0px;
    }

    #lesson-01-section-08 .row-03 .svg-01{
        margin-bottom: 0px;
    }
}

@media (max-width: 575.99px) {
    #lesson-01-section-01{
        height: 375px;
    }

    #lesson-01-section-01 .container-01{
        padding: 0px;
    }

    #lesson-01-section-01 .container-01 .row-01 .col-01 .svg-01{
        margin-top: 22px;
    }

    #lesson-01-section-02{
        margin-top: -100px;
    }

    #lesson-01-section-02 .container-02 .row-01 p{
        font-size: 30px;
        line-height: 35px;
    }

    #lesson-01-section-02 .container-02 .row-01 p span.highlight, #lesson-01-section-02 .container-02 .row-01 p span.highlight.highlight-02 {
        padding: 1px;
        padding-right: 6px;
        height: 34px;
    }

    #lesson-01-section-04 .container-04{
        margin-top: -100px; 
    }

    #lesson-01-section-04 .container-05 .video-box img{
        top: -45px;
        max-width: 295px;
    }

    #lesson-01-section-04 .container-06{
        padding-bottom: 50px;
    }

    #lesson-01-section-05 .container-03 .row.icon-row{
        margin-top: 0px;
    }

    #lesson-01-section-05 .container-03 .row.icon-row > div{        
        margin-top: 20px;
    }

    #lesson-01-section-06 {
        padding: 0px;
        background-size: 110%!important;
        background-position-y: 0px!important;
    }

    #lesson-01-section-06 .carousel-item .image-01,
    #lesson-01-section-06 .carousel-item .image-02,
    #lesson-01-section-06 .carousel-item .image-03,
    #lesson-01-section-06 .carousel-item .image-04,
    #lesson-01-section-06 .carousel-item .image-05,
    #lesson-01-section-06 .carousel-item .image-06{
        display: none!important;
    }

    #lesson-01-section-06 .carousel-item .image-01-mobile,
    #lesson-01-section-06 .carousel-item .image-02-mobile,
    #lesson-01-section-06 .carousel-item .image-03-mobile,
    #lesson-01-section-06 .carousel-item .image-04-mobile,
    #lesson-01-section-06 .carousel-item .image-05-mobile,
    #lesson-01-section-06 .carousel-item .image-06-mobile{
        display: block!important;
        width: auto!important;
        max-width: 100%;
        height: auto;
        margin: auto;
        margin-bottom: 30px;
        padding: 0px 15px;
    }

    #lesson-01-section-08:before {
        height: 205px;
    }

    #lesson-01-section-08 .row.row-01 .img-01{
        display: none;
    }

    #lesson-01-section-08 .row.row-01 .image-01-mobile,
    #lesson-01-section-08 .row.row-01 .image-02-mobile{
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
        margin-top: 30px;
    }

    #lesson-01-section-08 .box-area, #lesson-01-section-08 .row-02{
        margin-top: 30px!important;
    }

    #lesson-01-section-08 .box-area:before {
        width: 65px!important;
        height: 65px!important;
        background: #60ad69!important;
        background: url(../images/lesson-01-section-08-icon-lapis_3.png) #00af65 no-repeat 22px 10px!important;
        background-size: 30%!important;
        top: -4px!important;
    }

    #lesson-01-section-08 .box-area textarea{
        padding: 20px!important;
        padding-top: 30px!important;
    }

    #lesson-01-section-08 .container-02 .svg-01{
        display: none;
    }

    #lesson-01-section-08 .container-02 .row-04-00{
        display: block;
        margin-top: 50px;
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01{
        text-align: center;
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01 h2 {
        font-size: 24px;
        color: rgb(0, 44, 71);
        line-height: 29px;
        text-align: center;
        margin: auto;
        margin-bottom: 0px;    
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01 .image-01{
        margin: auto;
        margin-top: 30px;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01 ul{        
        padding: 0px;
        margin: auto;
        margin-top: 30px;
        max-width: 435px;
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01 li{
        font-size: 22px;
        color: rgb(0, 44, 71);
        line-height: 27px;
        text-align: left;
        margin-bottom: 0px;
        margin-top: 20px;
        list-style: none;
        padding-left: 30px;
        position: relative;        
    }

    #lesson-01-section-08 .container-02 .row-04-00 .col-01 li:before{
        content: "\25A0";
        width: 10px;
        height: 10px;
        position: absolute;    
        top: -2px;
        left: 2px;
        color: rgb(0, 139, 224);
    }
    
    #lesson-01-section-08 .row-04{
        margin-top: 30px;
    }
}

@media (max-width: 425.98px) {
    #lesson-01-section-01 {
        height: 330px;
    }

    #lesson-01-section-01 .container-01 .row-01 .col-01 .svg-01 {
        margin-top: -25px;
    }

    #lesson-01-section-04 .container-02 .option{
        margin: 0px;
    }

    #lesson-01-section-04 .container-03 .video-box img{
        max-width: 275px;
    }

    #lesson-01-section-04 .container-03 .video-box:after {
        bottom: 108px;
    }

    #lesson-01-section-04 .container-04{
        margin-top: -70px; 
    }

    #lesson-01-section-07 .container-02 .row-02 .box-01{
        padding: 12px;
    }
}

@media (max-width: 375.98px) {
    #lesson-01-section-02{
        padding-bottom: 20px;
    }

    #lesson-01-section-03{
        background-position-y: 40px;
    }

    #lesson-01-section-04 .container-04 .row-01 .box-01, #lesson-01-section-04 .container-04 .row-02 .box-01, #lesson-01-section-04 .container-06 .row-01 .box-01, #lesson-01-section-04 .container-06 .row-02 .box-01{
        padding: 30px;
    }

    #lesson-01-section-04 .container-03{
        padding-bottom: 100px;
    }

    #lesson-01-section-04 .container-03 .external-video img {
        width: 122%;
        left: -16%;
    }

    #lesson-01-section-04 .container-04 {
        margin-top: -150px;
    }
}

@media (max-width: 319.99px) {

}


/**************** Hacks ******************/
/*HACKS FOR IE9 AND IE10*/
/*
.ie10 #lesson-03-section-07 .container-06 .row-01 .col-01 h2:before{
display: none;
}
*/

/* Safari and iOs*/
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
    /*
    @media {
    #lesson-03-section-07 .container-03 .row-01 .col-02{
    display: flex;
}

    */
}