/*
variables
*/
:root
{
    --main-grey: #292c2e;
    --light-grey: #b2bbc0;
    --light-orange: #ea7849;
}











.wrapper-90
{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.wrapper-80
{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.wrapper-70
{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}








.hidden
{
    display: none;
    visibility: hidden;
    opacity: 0;
}









*
{
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body
{
    /* background-color: var(--main-grey); */
}












.navigation-mob
{
    background-color: var(--main-grey);
    position: relative;
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .navigation-mob
    {
        display: none;
        visibility: hidden;
    }
}

.nav-menu-btn
{
    color: var(--light-grey);
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.navigation
{
    display: none;
    visibility: hidden;
    background-color: var(--main-grey);
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .navigation
    {
        display: block;
        visibility: visible;
    }
}

.ul-mob
{
    width: 100%;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-grey);
}

.navigation-li-mob
{
    /* margin-left: auto;
    margin-right: auto; */
    list-style: none;
    /* width: 50%; */
    text-align: center;
    margin: 0;
    padding: 10px 0;
}

.navigation-li
{
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    width: 50%;
}

.navigation-link-mob
{
    color: var(--light-grey);
    text-decoration: none;
    /* width: 20%; */
    font-size: 20px;
}

.navigation-link
{
    float: left;
    color: var(--light-grey);
    text-decoration: none;
    width: 20%;
    padding: 15px 0;
    font-size: 18px;
    text-align: center;
}

/* For tablets */
@media only screen and (min-width: 1300px)
{
    .navigation-link
    {
        font-size: 30px;
    }
}

.navigation-link:hover
{
    color: var(--light-orange);
}

.navigation::after
{
  content: "";
  clear: both;
  display: table;
}












.hero-image
{
    width: 100%;
    margin: 0;
}















.section
{
    margin-top: 35px;
}

.section--dark
{
    background-color: var(--main-grey);
    padding-bottom: 50px;
}

.section-heading
{
    /* padding-top: 75px; */
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 10px;
    font-size: 50px;
    font-weight: 400;
    /* color: var(--light-grey); */
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .section-heading
    {
        padding-top: 20px;
        margin-bottom: 75px;
        font-size: 80px;
    }
}

/* For Laptops */
@media only screen and (min-width: 1300px)
{
    .section-heading
    {
        padding-top: 30px;
    }
}

.section-heading--dark
{
    padding-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 10px;
    font-size: 50px;
    font-weight: 400;
    color: var(--light-grey);
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .section-heading--dark
    {
        padding-top: 65px;
        font-size: 80px;
        margin-bottom: 75px;
    }
}

/* For Laptops */
@media only screen and (min-width: 1300px)
{
    .section-heading--dark
    {
        padding-top: 75px;
    }
}

.section-heading--video
{
    /* padding-top: 100px; */
    text-align: center;
    letter-spacing: 10px;
    font-size: 50px;
    font-weight: 400;
    color: var(--light-grey);
}

@media only screen and (min-width: 800px)
{
    .section-heading--video
    {
        margin-top: -20px;
        margin-bottom: 75px;
        font-size: 80px;
    }
}

.section-text
{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    padding-bottom: 40px;
    /* color: var(--light-grey); */
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .section-text
    {
        font-size: 30px;
        letter-spacing: 1px;
        font-weight: 100;
        padding-bottom: 100px;
    }
}

.section--white
{
    background-color: white;
    color: var(--main-grey);
}

.section--black
{
    background-color: black;
    position: relative;
}






/* For tablets */
@media only screen and (min-width: 1600px)
{
    .lessons-mob
    {
        display: none;
        visibility: hidden;
    }
}

.lessons-tablet
{
    display: none;
    visibility: hidden;
}

/* For tablets */
@media only screen and (min-width: 1600px)
{
    .lessons-tablet
    {
        display: block;
        visibility: visible;
        padding-bottom: 100px;
    }
}

.col-buttons
{
    width: 30%;
    box-sizing: border-box;
}

.col-buttons-button-mob
{
    color: var(--light-orange);
    font-weight: 400;
    line-height: 1;
    padding: 15px 0;
}

.col-buttons-button
{
    cursor: pointer;
    color: var(--light-grey);
    font-weight: 100;
    line-height: 3;
    transition: all .15s ease-out, color .3s ease-out;
    border: 2px solid var(--main-grey);
    border-radius: 50px;
}

.col-buttons-button:hover
{
    color: var(--light-orange);
}

.button--active
{
    box-sizing: border-box;
    border: 2px solid var(--light-grey);
    padding-left: 20px;
    /* font-weight: 600; */
    color: var(--light-orange);
}

.col-lines
{
    width: 15%;
    transform: translateY(29px);
}

.col-lines--underline
{
    transition: all .15s ease-out;
    border: 1px solid var(--light-grey);
    box-sizing: border-box;
    margin-bottom: 58px;
}

.dark-line
{
    border-color: var(--main-grey);
}

.col-answers
{
    margin-left: 3%;
    width: 50%;
    box-sizing: border-box;
}

.answer
{
    transition: all .15s ease-out;
    opacity: 1;
    color: var(--light-grey);
    font-weight: 100;
    font-size: 20px;
    line-height: 1.7;
    padding: 5px 0 30px 0;
}

@media only screen and (min-width: 800px)
{
    .answer
    {
        letter-spacing: 1px;
    }
}

/* For tablets */
@media only screen and (min-width: 1600px)
{
    .answer
    {
        padding: 0;
    }

    .answer-2
    {
        transform: translateY(10px);
    }

    .answer-3
    {
        transform: translateY(70px);
    }

    .answer-4
    {
        transform: translateY(120px);
    }
}























/* ROWS AND COLUMNS */
.row
{

}

.row::after
{
  content: "";
  clear: both;
  display: table;
}

.col
{
    float: left;
}

.col-3
{
    width: 100%;
}

/* For tablets */
@media only screen and (min-width: 1300px)
{
    .col-3
    {
        width: 33%;
    }
}

.col-4
{
    width: 25%;
}

























.video-background-img
{
    display: block;
    width: 100%;
    opacity: .2;
    margin: 0;
}

.videos-section-heading
{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* For tablets */
@media only screen and (min-width: 900px)
{
    .videos-section-heading
    {
        top: 60px;
    }
}

/* For tablets */
@media only screen and (min-width: 1300px)
{
    .videos-section-heading
    {
        top: 100px;
    }
}

/* For tablets */
@media only screen and (min-width: 1600px)
{
    .videos-section-heading
    {
        top: 150px;
    }
}

.video-section-row
{
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/* For tablets */
@media only screen and (min-width: 900px)
{
    .video-section-row
    {
        top: 200px;
    }
}

/* For tablets */
@media only screen and (min-width: 1600px)
{
    .video-section-row
    {
        top: 200px;
    }
}

@media only screen and (min-width: 1600px)
{
    .video-section-row
    {
        top: 350px;
    }
}

.video-section-col
{
    color: var(--light-grey);
}

.video-section-col-heading
{
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
}

/* For tablets */
@media only screen and (min-width: 600px)
{
    .video-section-col-heading
    {
        margin-top: 30px;
    }
}

/* For tablets */
@media only screen and (min-width: 1600px)
{
    .video-section-col-heading
    {
        font-size: 30px;
    }
}

.youtube-video-link
{
    display: block;
    width: 80%;
    /* 560 = 100%, 504 = 90% */
    /* 315 = 100%, 283 = 90% */
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* For tablets */
@media only screen and (min-width: 600px)
{
    .youtube-video-link
    {
        height: 240px;
    }
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .youtube-video-link
    {
        width: 478px;
        height: 270px;
    }
}

/* For tablets */
@media only screen and (min-width: 1000px)
{
    .youtube-video-link
    {
        margin-bottom: 50px;
    }
}

/* For tablets */
@media only screen and (min-width: 1300px)
{
    .youtube-video-link
    {
        width: 85%;
        height: 283px;
        margin-top: 100px;
    }
}




































.resource-section
{

}

.resource-heading
{
    color: var(--main-grey);
    text-align: center;
}

.resource-text
{
    color: var(--main-grey);
    text-align: center;
}

.resource-pdf-link
{

}

.icon-pdf
{
    display: block;
    height: 75px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}



























.contact-text
{
    text-align: center;
    line-height: 3;
    font-size: 22px;
    font-weight: lighter;
    color: var(--light-grey);
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .contact-text
    {
        font-size: 30px;
        letter-spacing: 2px;
    }
}











.social-icons-container
{
    margin-top: 30px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.social-icon-div
{
    float: left;
    width: 33.3%;
}

.social-icon
{
    display: block;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons-container::after
{
  content: "";
  clear: both;
  display: table;
}
















.footer-text
{
    color: var(--light-grey);
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 12px;
}

/* For tablets */
@media only screen and (min-width: 800px)
{
    .footer-text
    {
        padding-top: 50px;
        padding-bottom: 30px;
        font-size: 16px;
    }
}


















.temp-section-divider
{
    height: 100px;
    width: 100%;
    background-color: pink;
}


















/* For tablets */
@media only screen and (min-width: 800px)
{
    .noclass
    {

    }
}

/* For Laptops */
@media only screen and (min-width: 1200px)
{
    .noclass
    {

    }
}
