/* 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 {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.eot');
    src: local('Roboto Regular'), local('Roboto-Regular'), url('fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto-Regular.woff') format('woff'), url('fonts/Roboto-Regular.ttf') format('truetype'), url('fonts/Roboto-Regular.svg#Roboto') format('svg');
    font-weight: 400;
    font-style: normal;
}

/* Font Face */

body {
    font-family: 'Roboto Slab'!important;
    background-image: url(../images/body-texture.png);
    background-repeat: repeat-y;
}

object{
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

img{
    width: auto;    
    height: auto;
    max-width: 100%;
    display: block;
}

p, h1, h2, h3, h4, h5, h6{
    margin: 0px;
}

strong{
    font-weight: bold;
}
/**********************************************************/

#html-container
{
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.end-course-ios
{
    width: 100%;
    max-width: 275px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(232, 43, 99, 1);
    border-radius: 12px;
    display: none;
    margin: auto;
    margin-bottom: 50px;
    cursor:pointer;
}

.end-course-ios p
{
    margin: 0px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
}

@supports (-webkit-overflow-scrolling: touch) {
    html, body {
        height: 100% !important;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/**********************************************************/

.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;
    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)
    }
}

@-webkit-keyframes parachute {
    0% {
        -webkit-transform: rotate(40deg) translate(-200px, -200px);
        transform: rotate(40deg) translate(-200px, -200px);
        opacity: 1;
    }

    30% {
        -webkit-transform: rotate(-20deg) translate(120px, -50px);
        transform: rotate(-20deg) translate(120px, -50px);
    }

    60% {
        -webkit-transform: rotate(20deg) translate(0px, -20px);
        transform: rotate(20deg) translate(0px, -20px);
    }

    90% {
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

@keyframes parachute {
    0% {
        -webkit-transform: rotate(40deg) translate(-200px, -200px);
        transform: rotate(40deg) translate(-200px, -200px);
        opacity: 1;
    }

    30% {
        -webkit-transform: rotate(-20deg) translate(120px, -50px);
        transform: rotate(-20deg) translate(120px, -50px);
    }

    60% {
        -webkit-transform: rotate(20deg) translate(0px, -20px);
        transform: rotate(20deg) translate(0px, -20px);
    }

    90% {
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.animate-parachute
{
    opacity: 0;
}

.parachute-animation {
    -webkit-animation: parachute 6s ease-in-out;
    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);
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
    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 02*/
#lesson-02{
    overflow: hidden;
}
/* Lesson 02*/

/* Section 01*/
#lesson-02-section-01 {
    position: relative;
    width: 100%;
    height: 2162px;
    background-color: #FFF;
    padding: 0px;
}

#lesson-02-section-01 .background-01{  
    width: 100%;
    max-width: 1253px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 155px;
    right: 0px;
    margin: auto;
    background: url(../images/lesson-02-section-01-image-01.png) no-repeat;
    background-repeat: no-repeat;
    background-position: center top 60px;
    background-size: contain;
    padding: 0px;
}

#lesson-02-section-01 .fluid-row-01{
    max-width: 1400px;
    margin: auto;
    padding: 0px;
    padding-top: 66px;
    position: relative;
    z-index: 2;
}

#lesson-02-section-01 .fluid-row-01 .col-01{
    padding: 0px;
}

#lesson-02-section-01 .fluid-row-01 .svg-01{
    margin-left: -22px;
}

#lesson-02-section-01 .container-01{
    position: relative;
    margin-top: -272px;
}

#lesson-02-section-01 .container-01 .row-01{
    position: relative;
    z-index: 1;
}

#lesson-02-section-01 .container-01 .row-01 .col-01 .box-01{
    background-color: rgb(0, 139, 224);
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 0px;
    visibility: hidden;
}

#lesson-02-section-01 .container-01 .row-01 .col-01 .box-01 h2{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(254, 254, 255);
    font-weight: bold;
    line-height: 55px;
    text-align: center;
    margin-bottom: 25px; 
}

#lesson-02-section-01 .container-01 .row-01 .col-01 .box-01 p{
    font-size: 24px;
    font-family: "Roboto";
    color: rgb(254, 254, 255);
    line-height: 29px;
    text-align: center;
    max-width: 455px;
    margin: auto;
    margin-bottom: 20px;
}

#lesson-02-section-01 .container-01 .row-02{
    position: relative;
    z-index: 1;
}

#lesson-02-section-01 .container-01 .row-02 .col-01 .box-01{
    background-color: rgb(69, 80, 204);
    position: relative;
    width: 100%;
    height: 105px;
    padding: 30px 0px;
    visibility: hidden;
}

#lesson-02-section-01 .container-01 .row-02 .col-01 .box-01 h3{
    font-size: 40px;
    font-family: "Roboto Slab";
    color: rgb(254, 254, 255);
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
}

#lesson-02-section-01 .container-01 .row-03 img{
    max-width: 823px;
    visibility: hidden;
}

#lesson-02-section-01 .container-01 .row-04 .col-01{
    visibility: hidden;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container{
    position: relative;
    width: 100%;
    height: 391px;
    padding: 0px;
    z-index: 2;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav{
    position: relative;
    height: 87px;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav > .nav.nav-tabs{
    border: none;
    border-radius:0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav > div a.nav-item.nav-link
{
    border: none;
    width: 255px;
    height: 67px;
    color:#fff;
    background:#008be0;
    border-radius:0;
    padding-bottom: 10px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav > div a.nav-item.nav-link.active
{
    border: none;
    height: 87px;
    color:#fff;
    background:#4550cc;
    padding-bottom: 0px;
    -webkit-transition:all 0.05s ease;
    transition:all 0.05s ease;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container .nav-fill .nav-item {
    flex: 0 0 auto;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container .tab-content{
    background:#4550cc;
    line-height: 25px;
    border: none;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container .tab-content ul{
    margin: 0px;
    padding: 45px 70px;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container .tab-content ul li{
    font-size: 22px;
    font-family: "Roboto";
    color: rgb(254, 254, 255);
    line-height: 27px;
    text-align: left;
    margin-bottom: 20px;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container .tab-content ul li:last-of-type{
    margin-bottom: 0px;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav > div a.nav-item.nav-link:hover{
    background:#3563a3;
    -webkit-transition:all 0.10s linear;
    transition:all 0.10s linear;
}

#lesson-02-section-01 .container-01 .row-04 .tab-container nav > div a.nav-item.nav-link:focus
{
    border: none;
    background:#4550cc;
    color:#fff;
    border-radius:0;
    -webkit-transition:all 0.10s linear;
    transition:all 0.10s linear;
}

#lesson-02-section-01 .container-01 .row-05{
    position: relative;
    display: flex;
    align-items: center;
}

#lesson-02-section-01 .container-01 .row-05 .col-01{
    position: relative;
    padding-left: 54px;
}

#lesson-02-section-01 .container-01 .row-05 .col-01 h3{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(42, 42, 134);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 55px;
    text-align: left;
    margin-bottom: 20px;
}

#lesson-02-section-01 .container-01 .row-05 .col-01 p{
    font-size: 28px;
    font-family: "Roboto";
    color: rgb(42, 42, 134);
    line-height: 33px;
    text-align: left;
}

#lesson-02-section-01 .container-01 .row-05 .col-01 p strong{
    font-family: "Roboto Slab";
    color: #ffc935;
    font-weight: 900;
    font-size: 38px;
}

#lesson-02-section-01 .container-01 .row-05 .col-02{
    position: relative;
}

#lesson-02-section-01 .container-01 .row-05 .col-02 img{
    max-width: 121px;
    margin-left: -8px;
}
/* Section 01*/

/* Section 02*/
#lesson-02-section-02 {
    position: relative;
    width: 100%;
    height: 1360px;
    background: url(../images/lesson-02-section-02-image-01.png) no-repeat;
    background-position: center top;
    background-size: cover;
}

#lesson-02-section-02 .container-01{
    position: relative;
    padding-top: 70px;
}

#lesson-02-section-02 .container-01 .row-01 .col-01{
    position: relative;
    padding-left: 54px;
}

#lesson-02-section-02 .container-01 .row-01 .col-01:before{
    content: "";
    position: absolute;
    top: -325px;
    left: 14px;
    background: url(../images/lesson-02-section-02-svg-01.svg);
    background-repeat: no-repeat;
    width: 461px;
    height: 575px;
}

#lesson-02-section-02 .container-01 .row-01 .col-01 h2{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 55px;
    text-align: left;
    font-weight: 300;
}

#lesson-02-section-02 .container-01 .row-01 .col-01 h3{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 55px;
    text-align: left;
    font-weight: bold;
}

#lesson-02-section-02 .container-01 .row-02{
    position: relative;
    z-index: 2;
}

#lesson-02-section-02 .container-01 .row-02 .col-01{
    position: relative;    
}

#lesson-02-section-02 .container-01 .row-02 .col-01 .box-01{
    position: relative;
    padding-top: 80px;
    padding-left: 54px;
    max-width: 346px;
}

#lesson-02-section-02 .container-01 .row-02 .col-01 p{
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 25px;
    text-align: left;
    margin-bottom: 20px;
}

#lesson-02-section-02 .container-01 .row-02 .col-01 p strong{
    font-size: 24px;
}

#lesson-02-section-02 .container-01 .row-02 .col-01 p:last-of-type{
    margin-bottom: 0px;
}

#lesson-02-section-02 .container-01 .row-02 .col-02{
    position: relative;        
}    

#lesson-02-section-02 .container-01 .row-02 .col-02 img{
    position: absolute;
    right: 110px;
    top: -20px;
}

#lesson-02-section-02 .container-01 .row-03{
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: auto;
    margin-top: 85px;
    background-color: #FFF;
    padding: 54px;
}

#lesson-02-section-02 .container-01 .row-03 .col-01{
    padding: 0px;
}

#lesson-02-section-02 .container-01 .row-03 .col-01 h2{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(34, 33, 113);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 55px;
    text-align: left;
    max-width: 310px;
    margin-bottom: 20px;
}

#lesson-02-section-02 .container-01 .row-03 .col-01 p{
    font-size: 28px;
    font-family: "Roboto Slab";
    color: rgb(34, 33, 113);
    line-height: 33px;
    text-align: left;
}

#lesson-02-section-02 .container-01 .row-03 .col-02{
    position: relative;    
}

#lesson-02-section-02 .container-01 .row-03 .col-02 img{
    position: absolute;
    width: 561px;
    max-width: none;
    top: 30px;
}
/* Section 02*/

/* Section 03*/
#lesson-02-section-03 {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 150px;
}

#lesson-02-section-03 .container-01 .row-01{
    position: relative;
    margin-top: -140px;
}

#lesson-02-section-03 .container-01 .row-01 .col-01 .box-01{
    background-color: rgb(250, 250, 250);
    box-shadow: 0px -22px 20px 0px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
    padding-top: 85px;
    padding-bottom: 25px;
}

#lesson-02-section-03 .container-01 .row-01 .col-01 .box-01 h2{
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(34, 33, 113);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 55px;
    text-align: center;
    max-width: 600px;
    margin: auto;    
}

#lesson-02-section-03 .container-01 .row-01 .col-01 .box-01 h2 span.text-green{
    color: #91d661;
}

#lesson-02-section-03 .container-01 .row-02{
    padding-top: 50px;
}

#lesson-02-section-03 .container-01 .row-02 .col-01 h3 {
    font-size: 28px;
    font-family: "Roboto";
    color: rgb(34, 33, 113);
    line-height: 33px;
    text-align: center;    
    max-width: 460px;
    margin: auto;
    margin-bottom: 20px;
}

#lesson-02-section-03 .container-01 .row-02 .col-01 p {
    font-size: 18px;
    font-family: "Roboto";
    color: rgb(34, 33, 113);
    line-height: 23px;
    text-align: center;
}

#lesson-02-section-03 .container-01 .row-03{
    position: relative;
    padding-top: 90px;
}

#lesson-02-section-03 .container-01 .row-03 object{
    position: relative;
    max-width: 589px;
    margin: auto;
    left: -32px;
}
/* Section 03*/

/* Section 04*/
#lesson-02-section-04 {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 120px;
    background: url(../images/lesson-02-section-04-image-01.png) no-repeat;
    background-position: center top;
    background-size: cover;
}

#lesson-02-section-04 .container-01 .row-01{
    position: relative;
    padding-top: 120px;
}

#lesson-02-section-04 .container-01 .row-01:after{
    content: "";
    position: absolute;
    background: url(../images/button-minus-svg.svg) no-repeat;
    width: 229px;
    height: 314px;
    top: -120px;
    right: -39px;
}

#lesson-02-section-04 .container-01 .row-01 .col-01 .svg-01{
    margin: auto;
    max-width: 728px;
}

#lesson-02-section-04 .container-01 .row-02{
    position: relative;
    padding-top: 110px;
}

#lesson-02-section-04 .container-01 .row-02 .card, #lesson-02-section-04 .container-01 .row-02 .card-header{
    border: 0px;
    border-radius: 0px;
    background-color: transparent;
}

#lesson-02-section-04 .container-01 .row-02 .card{
    margin-top: 30px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#lesson-02-section-04 .container-01 .row-02 .card:first-of-type{
    margin-top: 0px;
}

#lesson-02-section-04 .container-01 .row-02 .card-header{
    background-color: rgb(145, 214, 97);
    width: 100%;
    height: auto;
    padding: 30px 35px;
    margin: 0px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

#lesson-02-section-04 .container-01 .row-02 .card-header:after {
    content: "";
    position: absolute;
    background: url(../images/button-minus-svg.svg) no-repeat;
    width: 38px;
    height: 9px;
    margin: auto;
    top: 0px;
    bottom: 0px;
    right: 30px;
}

#lesson-02-section-04 .container-01 .row-02 .card-header.collapsed:after{
    content: "";
    position: absolute;
    background: url(../images/button-plus-svg.svg) no-repeat;
    width: 38px;
    height: 38px;
    margin: auto;
    top: 0px;
    bottom: 0px;
    right: 30px;
}

#lesson-02-section-04 .container-01 .row-02 .card-header h3{
    font-size: 35px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 40px;
    text-align: left;
}

#lesson-02-section-04 .container-01 .row-02 .card-body{
    background-color: rgb(145, 214, 97);
    width: 100%;
    height: auto;
    padding: 0px 80px 50px 25px;
    margin: 0px;
    position: relative;
    border: 0px;
    border-bottom: 8px solid rgb(92, 137, 61);
}

#lesson-02-section-04 .container-01 .row-02 .card-body ol{
    margin: 0px;
    padding: 0px 30px;
    margin-top: 10px;
}

#lesson-02-section-04 .container-01 .row-02 .card-body p, #lesson-02-section-04 .container-01 .row-02 .card-body li{
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(0, 12, 53);
    line-height: 25px;
    text-align: left;
    margin-bottom: 10px;
}
/* Section 04*/

/* Section 05*/
#lesson-02-section-05 {
    height: 850px;
}

#lesson-02-section-05 .container-01{
    position: relative;
    padding-top: 70px;
}

#lesson-02-section-05 .row-01 p {
    font-size: 45px;
    font-family: "Roboto Slab";
    color: rgb(0, 12, 53);
    font-weight: bold;
    line-height: 1.2;
}

#lesson-02-section-05 .row-03{
    position: relative;
    margin-top: -55px;
}

#lesson-02-section-05 .row-03 .col-01{
    position: relative;
}

#lesson-02-section-05 .row-03 .col-01 video{
    position: relative;
    width: 100%;
    max-width: 582px;
    z-index: 2;
    box-shadow: 9px 15.588px 24px 0px rgba(0, 0, 0, 0.3);
}

#lesson-02-section-05 .row-03 .col-01 .image-01{
    position: absolute;
    width: 105px;
    height: 160px;    
    right: 0px;
    bottom: -105px;
    margin: auto;
}
/* Section 05*/

/* Section 06*/
#lesson-02-section-06 {
    background:#008be0;
    padding-bottom:145px;
}

#lesson-02-section-06 .container-01{
    position: relative;
    z-index: 1;
    padding-top: 175px;
}

#lesson-02-section-06 .container-01:before {
    content: "";
    background-image: url(../images/lesson-02-section-06-svg-01-01.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-175%);
    top: 330px;
    width: 505px;
    height: 823px;
    z-index: 0;
}

#lesson-02-section-06 .container-01 .row{
    position: relative;
    z-index: 2;
}

#lesson-02-section-06 .container-01:after {
    content: "";
    background-image: url(../images/lesson-02-section-06-svg-02-01.svg);
    background-repeat: no-repeat;
    position: absolute;
    right:50%;
    transform: translateX(175%);
    top: 330px;
    width: 505px;
    height: 823px;
    z-index: 0;
}
#lesson-02-section-06 .row-01 p {
    font-size: 34px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}
#lesson-02-section-06 .row-02 {
    background-image: url(../images/lesson-02-section-06-svg-03.svg);
    background-position: center;
    background-repeat: no-repeat;
    height: 173px;
}
#lesson-02-section-06 .row-03 {
    background-image: url(../images/lesson-02-section-06-svg-04.svg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    height: 238px;
    position: relative;
    z-index: 1;
}

#lesson-02-section-06 .row-03 h1 {
    font-size: 34px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: right;
    font-weight: lighter;
}
#lesson-02-section-06 .row-03 p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: right;
}
#lesson-02-section-06 .row-04 {
    background-image: url(../images/lesson-02-section-06-svg-05.svg);
    background-position: center;
    background-repeat: no-repeat;
    height: 279px;
    padding: 38px 0 0 0;
}
#lesson-02-section-06 .row-04 h1 {
    font-size: 34px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    font-weight: lighter;
}
#lesson-02-section-06 .row-04 p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
}
#lesson-02-section-06 .row-05 {
    background-image: url(../images/lesson-02-section-06-svg-05.svg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 38px 0 0 0;
    height: 280px;

}
#lesson-02-section-06 .row-05 h1 {
    font-size: 34px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: right;
    font-weight: lighter;
}
#lesson-02-section-06 .row-05 p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: right;
}
#lesson-02-section-06 .row-06 {
    background-image: url(../images/lesson-02-section-06-svg-06.svg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 38px 0 0 0;
    height: 278px;

}
#lesson-02-section-06 .row-06 h1 {
    font-size: 34px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    font-weight: lighter;
}
#lesson-02-section-06 .row-06 p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
}
#lesson-02-section-06 .row-07 {
    background-image: url(../images/lesson-02-section-06-svg-08.svg);
    background-position: center;
    background-repeat: no-repeat;
    height: 109px;
}
#lesson-02-section-06 .box-icon-01 {
    width: 160px;
    height: 160px;
    border: 3px solid #fff;
    padding: 25px;
}
#lesson-02-section-06 .box-icon-01:before {
    content: "";
    background-image: url(../images/lesson-02-section-06-svg-09.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: -67%;
    width: 36px;
    height: 97px;
    z-index: 0;
}
#lesson-02-section-06 .box-icon-02 {
    width: 160px;
    height: 160px;
    border: 3px solid #fff;
    padding: 20px 0 0 25px;
}
#lesson-02-section-06 .box-icon-02:before {
    content: "";
    background-image: url(../images/lesson-02-section-06-svg-09.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: -67%;
    width: 36px;
    height: 97px;
    z-index: 0;
}
#lesson-02-section-06 .box-icon-03 {
    width: 160px;
    height: 160px;
    border: 3px solid #fff;
    padding: 17px 0 0 25px
}
#lesson-02-section-06 .box-icon-03:before {
    content: "";
    background-image: url(../images/lesson-02-section-06-svg-09.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: -67%;
    width: 36px;
    height: 97px;
    z-index: 0;
}

#lesson-02-section-06 .box-icon-04 {
    width: 160px;
    height: 160px;
    border: 3px solid #fff;
    padding: 13px 0 0 20px;
}

#lesson-02-section-06 .box-icon-01 img {
    width: 115px;
    height: 115px;
}
#lesson-02-section-06 .box-icon-02 img {
    width: 106px;
    height: 115px;
}
#lesson-02-section-06 .box-icon-03 img {
    width: 104px;
    height: 123px;
}
#lesson-02-section-06 .box-icon-04 img {
    width: 113px;
    height: 128px;
}
/* Section 06*/

/* Section 07*/
#lesson-02-section-07 {
    background:#222171;
    padding: 90px 0;
}
#lesson-02-section-07 .container-01 {
    background-image: url(../images/lesson-02-section-07-svg-01-01.svg);
    background-repeat: no-repeat;
    background-position: right;
}
#lesson-02-section-07 .row-01 .box-01 {
    width:277px;
    height: 612px;
}
#lesson-02-section-07 .row-01 .box-01:before {
    content: "";
    background-image: url(../images/lesson-02-section-07-svg-02.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 55%;
    bottom: 5%;
    width: 115px;
    height: 102px;
    z-index: 1;
    background-position: 0px -27px;
}
#lesson-02-section-07 .row-01 img {
    text-align: center;
}
#lesson-02-section-07 .row-01 h1 {
    font-size: 52px;
    font-family: "Roboto Slab";
    color: #91d661;
    font-weight: bold;
    line-height: 1.019;
    margin: 25px 0 40px 0;
}
#lesson-02-section-07 .row-01 p {
    font-size: 22px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    margin:0 35px 40px 0; 
}
#lesson-02-section-07 .row-01 p:last-child {
    color:#91d661;
    margin: 65px 0 0 0;
}
/* Section 07*/

/* Section 08*/
#lesson-02-section-08 {
    padding: 145px 0;
    padding-bottom: 0px;
}

#lesson-02-section-08 .container-01{
    padding-bottom: 100px;
}

#lesson-02-section-08 .row-01 h1 {
    font-size: 50px;
    font-family: "Roboto Slab";
    color: rgb(34, 33, 113);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin-bottom: -11px;
}
#lesson-02-section-08 .row-01 .box-01 {
    background:#222171;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.3);
    padding:32px;
    margin-bottom: -85px;
    position: relative;
    z-index: 2;
}
#lesson-02-section-08 .row-01 .box-01 p {
    font-size: 22px;
    font-family: "Roboto";
    color: rgb(254, 254, 255);
    line-height: 1.2;
    text-align: center;
}
#lesson-02-section-08 .row-02 {
    margin-top: 40px;
}

#lesson-02-section-08 .row-02 .box-01{
    cursor: pointer;
}

#lesson-02-section-08 .row-02 .box-01 img {
    position: relative;
    z-index: 1;
}
#lesson-02-section-08 .row-02 .box-01:before {
    content: "";
    background-image: url(../images/lesson-02-section-08-svg-01.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    bottom: -50px;
    width: 817px;
    height: 197px;
    z-index: 0;
}
#lesson-02-section-08 .row-03 {
    padding-top: 145px;
}
#lesson-02-section-08 .row-03 h1 {
    font-size: 30px;
    font-family: "Roboto Slab";
    color: rgb(34, 33, 113);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}
#lesson-02-section-08 .row-03 p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(34, 33, 113);
    line-height: 1.2;
    text-align: left;
}
#lesson-02-section-08 .row-03 .box-01 img {
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.3);
}

#lesson-02-section-08 .row-03 .box-02 img {
    float: left;
    width: 90px;
    margin-top: 30px;
    margin-right: 30px;
}

#lesson-02-section-08 .row-03 .box-02 a{
    text-decoration: none;
    border: none;
}

#lesson-02-section-08 .container-fluid-01{    
    height: 145px;
    background-color: rgb(69, 80, 204);
    display: flex;
    align-items: center;
    justify-content: center;
}

#lesson-02-section-08 .container-fluid-01 .row-01 .col-01 p {
    font-size: 22px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 27px;
    text-align: center;
}

.popup .header-modal{
    padding: 35px 50px;
    background-color: #0076bf;
    position: relative;
}

.popup .header-modal h2 {
    font-size: 26px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 31px;
    text-align: left;
    margin-bottom: 0px;
}

.popup .header-modal h3 {
    font-size: 26px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 31px;
    text-align: left;
    margin-bottom: 0px;
}

.popup{
    position: relative;
    background-color: rgb(0, 139, 224);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.3);
    width: auto;
    max-width: 730px;
    height: auto;
    margin: auto;
}

.popup .content-modal{
    padding: 35px 50px;
    padding-top: 0px;
}

.popup .content-modal h2{
    font-size: 24px;
    font-family: "Roboto Slab";
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 29px;
    text-align: left;
    margin-top: 50px;
}

.popup .content-modal ul{
    margin: 0px;
    margin-top: 15px;
    padding: 0px;
    padding-left: 20px;
}

.popup .content-modal p, .popup .content-modal li{
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    line-height: 25px;
    text-align: left;
}

.popup .content-modal p{
    margin-top: 15px;
}

.popup .content-modal li{
    margin-bottom: 15px;
}

.popup .header-modal .mfp-close {
    color: #333;
    background: url(../images/close-button.svg);
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 15px;
    margin: auto;
    width: 31px;
    height: 31px;
    opacity: .8;
}

.popup .header-modal .mfp-close:hover {
    opacity: 1;
}
/* Section 08*/

@media (max-width: 1400px){

}

@media (max-width: 1199.98px) {
}

@media (max-width: 990.98px){
}

@media (max-width: 767.98px){
}

@media (max-width: 575.99px) {
}

@media (max-width: 425.98px) {
}

@media (max-width: 375.98px) {
}

@media (max-width: 319.99px) {

}


/**************** Hacks ******************/
/*HACKS FOR IE9 AND IE10*/
/*
.ie10 #lesson-02-section-01 .container-01 .row-04 .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-02-section-01 .container-01 .row-04 .container-03 .row-01 .col-02{
    display: flex;
}

    */
}