/* =================================================================== 
 *
 *  Main Stylesheet
 *  
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography & general theme styles
 *  04. preloader
 *  05. common and reusable theme styles
 *  06. header styles
 *  07. home
 *  08. introduction
 *  09. tecnology
 *  10. stemlabs
 *  11. resources
 *  12. footer styles
 *
 * =================================================================== 
 * ===================================================================
 *  01. webfonts and iconfonts - (_document-setup)
 * ------------------------------------------------------------------- */
                        
@import url("font-awesome/css/font-awesome.min.css");
@import url("micons/micons.css");
@import url("fonts.css");

/* ===================================================================
 *  02. base style overrides - (_document-setup)
 * ------------------------------------------------------------------- */
                        
html {
    font-size: 10px;
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 9.375px;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 10px;
    }
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 9.375px;
    }
}

html,
body {
    height: 100%;
}

body {
    background: #f9fbfc;
    font-family: "muli-regular", sans-serif;
    font-size: 1.6rem;
    /*line-height: 1.875;*/
    color: #767676;
    margin: 0;
    padding: 0;
}
/* ------------------------------------------------------------------- 
 * links - (_document-setup) 
 * ------------------------------------------------------------------- */
                        
a,
a:visited {
    color: #0087cc;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: #e20a17;
}
/* ===================================================================
 *  03. typography & general theme styles - (_document-setup.scss) 
 * ------------------------------------------------------------------- */
                        
h1,
h2,
h3,
h4,
h5,
h6,
.h01,
.h02,
.h03,
.h04,
.h05,
.h06 {
    font-family: "lato-regular", sans-serif;
    color: #151515;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin-bottom: 10px;
}

h3,
.h03,
h4,
.h04 {
    margin-bottom: 1.5rem;
}

h5,
.h05,
h6,
.h06 {
    margin-bottom: 1.2rem;
}

h1,
.h01 {
    font-size: 3.1rem;
    line-height: 1.35;
    letter-spacing: -.1rem;
}

@media only screen and (max-width: 600px) {
    h1,
    .h01 {
        font-size: 2.6rem;
        letter-spacing: -.07rem;
    }
}

h2,
.h02 {
    font-size: 2.4rem;
    line-height: 1.25;
}

h3,
.h03 {
    font-size: 2rem;
    line-height: 1.5;
}

h4,
.h04 {
    font-size: 1.7rem;
    line-height: 1.76;
}

h5,
.h05 {
    font-size: 1.4rem;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: .2rem;
}

p img {
    margin: 0;
}

p.lead {
    font-family: "lato-light", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #6f768c;
    margin-bottom: 3.6rem;
}

@media only screen and (max-width: 768px) {
    p.lead {
        font-size: 2rem;
    }
}

em,
i,
strong,
b {
    font-size: 1.6rem;
    line-height: 1.875;
    font-style: normal;
    font-weight: normal;
}

em,
i {
    font-family: "muli-italic", sans-serif;
}

strong,
b {
    font-family: "muli-bold", sans-serif;
}

small {
    font-size: 1.1rem;
    line-height: inherit;
}

abbr {
    font-family: "muli-bold", sans-serif;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .05rem;
    color: #838383;
}

var,
kbd,
samp,
code,
pre {
    font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
    padding: 2.4rem 3rem 3rem;
    background: #F1F1F1;
}

code {
    font-size: 1.4rem;
    margin: 0 .2rem;
    padding: .3rem .6rem;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 3px;
}

pre>code {
    display: block;
    white-space: pre;
    line-height: 2;
    padding: 0;
    margin: 0;
}

pre.prettyprint>code {
    border: none;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: #FFF49B;
    color: #000;
}

hr {
    border: solid rgba(0, 0, 0, 0.1);
    border-width: 1px 0 0;
    clear: both;
    margin: 2.4rem 0 1.5rem;
    height: 0;
}

/* ------------------------------------------------------------------- 
* Lists - (_document-setup.scss)  
* ------------------------------------------------------------------- */
        
ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

li {
    display: list-item;
}

ol,
ul {
    margin-left: 1.7rem;
}

ul li {
    padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: .6rem 0 .6rem 1.7rem;
}

ul.disc li {
    display: list-item;
    list-style: none;
    padding: 0 0 0 .8rem;
    position: relative;
}

ul.disc li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e20a17;
    position: absolute;
    left: -17px;
    top: 11px;
    vertical-align: middle;
}

dt {
    margin: 0;
    color: #e20a17;
}

dd {
    margin: 0 0 0 2rem;
}
/* ------------------------------------------------------------------- 
* Spacing - (_document-setup)  
* ------------------------------------------------------------------- */
    
p,
ul {
    margin-bottom: 3rem;
}

/* ------------------------------------------------------------------- 
* pace.js styles - center simple  - (_document-setup.scss)
* ------------------------------------------------------------------- */
        
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    width: 150px;
    background: #dedede;
    overflow: hidden;
}

.pace .pace-progress {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 150px;
    position: fixed;
    z-index: 2000;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #e20a17;
}

.pace.pace-inactive {
    display: none;
}

.oldie .pace {
    display: none;
}

/* ===================================================================
*  04. preloader - (_preloader-blank.scss)
* ------------------------------------------------------------------- */
        
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 800;
    height: 100%;
    width: 100%;
}

.no-js #preloader,
.oldie #preloader {
    display: none;
}

/* ===================================================================
*  05. common and reusable theme styles 
* ------------------------------------------------------------------- */
        
h1.intro-header {
    font-family: "lato-thin", sans-serif;
    font-size: 25px;
    line-height: 1.324;
    color: #3d8dd0;
    position: relative;
    padding-bottom: 3.6rem;
    text-transform: uppercase;
    text-align: center;
    text-align: center;
}

h1.intro-header::before {
    display: block;
    content: "";
    height: 1px;
    width: 70px;
    background-color: #e20a17;
    position: absolute;
    left: 0;
    bottom: 0;
}

.myButton {
    -moz-box-shadow: 0px 6px 18px -4px #a199a1;
    -webkit-box-shadow: 0px 6px 18px -4px #a199a1;
    box-shadow: 0px 6px 18px -4px #a199a1;
    background-color: #CC0000;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: "lato-regular", sans-serif;
    font-size: 14px;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.myButton:active {
    background-color: #fff;
    color: #CC0000;
}

.myButton:visited {
    color: #FFFFFF;
}

.myButton:hover {
    background-color: #fff;
    color: #CC0000;
}

.content-my-button {
    text-align: center;
}

h1.intro-header-red {
    font-family: "lato-black", sans-serif;
    font-size: 25px;
    line-height: 1.324;
    color: #CC0000;
    position: relative;
    padding-bottom: 0.6rem;
    text-transform: uppercase;
    text-align: center;
}

h1.intro-header-light {
    font-family: "lato-extralight", sans-serif;
    font-size: 24px;
    line-height: 1.324;
    color: #CC0000;
    position: relative;
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
}

h1.intro-header-light::after {
    display: block;
    content: "";
    height: 1px;
    width: 450px;
    position: absolute;
    bottom: 0;
    background: #CC0000;
    /* Old browsers */
    background: -moz-linear-gradient(left, #CC0000 0%, #ffffff 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #CC0000 0%, #ffffff 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #CC0000 0%, #ffffff 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#CC0000', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
}

.wide {
    max-width: 1300px;
}

.narrow {
    max-width: 800px;
}

.section_shadow {
    align-content: center;
    width: 50%;
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.padding_top_30 {
    padding-top: 30px;
}

.nosproduitsvideo {
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

/* ------------------------------------------------------------------- 
* responsive: common styles
* ------------------------------------------------------------------- */
        
@media only screen and (max-width: 768px) {
    h1.intro-header {
        font-size: 3.1rem;
    }
}

@media only screen and (max-width: 600px) {
    h1.intro-header {
        font-size: 2.6rem;
    }
}

/* ===================================================================
*  06. header styles - (_site-layout.scss)
* ------------------------------------------------------------------- */
        
#header {
    width: 100%;
    height: 72px;
    background-color: #fff;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 501;
}

/* ------------------------------------------------------------------- 
* header logo - (_site-layout.css) 
* ------------------------------------------------------------------- */
        
.header-logo {
    position: absolute;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 501;
}

.header-logo a {
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    width: 270px;
    height: 34px;
    background: url("../images/logo.png") no-repeat center;
    background-size: 270px 34px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* ------------------------------------------------------------------- 
* menu trigger - (_site-layout.css) 
* ------------------------------------------------------------------- */
        
.header-menu-toggle {
    display: none;
    position: fixed;
    right: 32px;
    top: 15px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "lato-regular", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    background-color: #e20613;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
    color: #FFFFFF;
}

.header-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 9px;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
    top: -9px;
}

.header-menu-toggle span::after {
    bottom: -9px;
}

.header-menu-toggle.is-clicked span {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
    background-color: white;
}

.header-menu-toggle.is-clicked span::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

/* ------------------------------------------------------------------- 
* navigation - (_layout.scss) 
* ------------------------------------------------------------------- */
        
#header-nav-wrap {
    font-family: "lato-bold", sans-serif;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 40px;
}

#header-nav-wrap .header-main-nav {
    display: inline-block;
    list-style: none;
    height: 72px;
    margin: 0 1rem 0 0;
}

#header-nav-wrap .header-main-nav li {
    display: inline-block;
    padding-left: 0;
    margin-right: 1.5rem;
}

#header-nav-wrap .header-main-nav li a {
    display: block;
    line-height: 72px;
}

#header-nav-wrap .header-main-nav li a,
#header-nav-wrap .header-main-nav li a:visited {
    color: #2d2b35;
}

#header-nav-wrap .header-main-nav li a:hover,
#header-nav-wrap .header-main-nav li a:focus {
    color: #e20a17;
}

#header-nav-wrap .cta {
    height: 3.6rem;
    line-height: calc(3.6rem - .6rem);
    padding: 0 1.5rem;
    font-family: "lato-regular", sans-serif;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

/* ------------------------------------------------------------------- 
* responsive:
* header
* ------------------------------------------------------------------- */
        
@media only screen and (max-width: 1230px) {
    #header {
        max-width: none;
    }
}

@media only screen and (max-width: 1025px) {
    .header-logo a {
        width: 188px;
        height: 24px;
        background-size: 188px 24px;
    }
    #header-nav-wrap {
        display: none;
        height: auto;
        width: 100%;
        right: auto;
        left: 0;
        background-color: #ededef;
        background-color: #dadada;
        padding: 120px 40px 54px;
    }
    #header-nav-wrap .header-main-nav {
        display: block;
        height: auto;
        margin: 0 0 4.2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
    }
    #header-nav-wrap .header-main-nav li {
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 1.03);
    }
    #header-nav-wrap .header-main-nav li a {
        padding: 18px 0;
        line-height: 18px;
    }
    #header-nav-wrap .cta {
        height: 42px;
        line-height: calc(42px - .6rem);
        padding: 0 30px;
    }
    .header-menu-toggle {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    #header-nav-wrap .cta {
        display: block;
        padding: 0 20px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 400px) {
    p.lead {
        text-align: center;
        line-height: 1.5;
    }
    .column-left {
        float: left;
        width: 100%;
    }
    .column-right {
        float: left;
        width: 100%;
    }
    .column-center {
        float: left;
        width: 100%;
    }
}
/* -------------------------------------------------------------------
* make sure the menu is visible on larger screens
* ------------------------------------------------------------------- */
        
@media only screen and (min-width: 1028px) {
    #header-nav-wrap {
        display: block !important;
    }
}


/* ===================================================================
*  07. home - (_site-layout.scss)
* ------------------------------------------------------------------- */
        
#home {
    width: 100%;
    background-color: #FFFFFF;
}

.no-js #home {
    background: #151515;
}

.home-content {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.home-content .contents {
    padding-bottom: 20px;
}

.home-content-left {
    width: 100%;
    display: block;
    margin-top: 75px;
    z-index: 500;
    text-align: center;
}
#home .home-carousel-img {
    width: 100%;
}

#home .banner4-img {
    background-image: url('../images/banner4.svg');
}

#home #carousel_home .slick-dots{
    bottom: 5px;
}

#home #carousel_home .slick-dots li button:before {
    font-size: 10px;
}

#home #carousel_home .slick-dots li.slick-active button:before{
    color: #CC0000;
}

.home-social-list {
    position: absolute;
    right: 42px;
    top: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 2.2rem;
    line-height: 1.75;
    text-align: center;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
}

.home-social-list::before {
    display: block;
    content: "";
    width: 1px;
    height: 42px;
    background-color: #e20a17;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.home-social-list li {
    padding-left: 0;
}

.home-social-list li a,
.home-social-list li a:visited {
    color: #e20a17;
}

.home-social-list li a:hover,
.home-social-list li a:focus,
.home-social-list li a:active {
    color: #ff7e82;
}
/* scroll down */

.home-scrolldown {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    float: right;
}

.home-scrolldown i {
    padding-left: 9px;
}

.home-scrolldown a:hover,
.home-scrolldown a:focus {
    color: #e20a17 !important;
}

html[data-useragent*='MSIE 10.0'] .home-scrolldown,
.oldie .home-scrolldown {
    display: none;
}

.scroll-icon {
    display: inline-block;
    font-family: "lato-regular", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #000 !important;
    background: transparent;
    position: relative;
    top: 36px;
    right: 42px;
    -webkit-animation: animate-it 3s ease infinite;
    animation: animate-it 3s ease infinite;
}

.scroll-icon i {
    font-size: 2.4rem;
    position: relative;
    bottom: -6px;
}
/* vertical animation */

@-webkit-keyframes animate-it {
    0%,
    60%,
    80%,
    100% {
        -webkit-transform: translateX(0);
    }
    0%,
    60%,
    80%,
    100% {
        transform: translateX(0);
    }
    20% {
        -webkit-transform: translateX(-5px);
    }
    20% {
        transform: translateX(-5px);
    }
    40% {
        -webkit-transform: translateX(20px);
    }
    40% {
        transform: translateX(20px);
    }
}

@keyframes animate-it {
    0%,
    60%,
    80%,
    100% {
        -webkit-transform: translateX(0);
    }
    0%,
    60%,
    80%,
    100% {
        transform: translateX(0);
    }
    20% {
        -webkit-transform: translateX(-5px);
    }
    20% {
        transform: translateX(-5px);
    }
    40% {
        -webkit-transform: translateX(20px);
    }
    40% {
        transform: translateX(20px);
    }
}

/* ------------------------------------------------------------------- 
* responsive: home section 
* ------------------------------------------------------------------- */

@media only screen and (max-width: 1200px) {
    #home {
        overflow: hidden;
    }
}

@media only screen and (max-width: 1024px) {
    .row {
        width: 94%;
        max-width: 1170px;
        margin: 0px auto;
    }
}

@media only screen and (max-width: 900px) {
    #home {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .home-content-left {
        padding: 0rem 6rem 172px;
    }
    .home-social-list {
        font-size: 2rem;
        right: 30px;
    }
    .scroll-icon {
        top: 21px;
    }
}

@media only screen and (max-width: 500px) {
    .row {
        width: 100%;
    }
    .home-social-list,
    .home-scrolldown {
        display: none;
    }
    .home-content-left {
        padding: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .home-content-left {
        padding: 0;
    }
}

/* ===================================================================
*  08. introduction - (_layout.scss)
* ------------------------------------------------------------------- */

#introduction {
    background: #FFFFFF;
    padding: 60px 0 0;
    text-align: justify;
    min-height: 558px;
}

#introduction h1.intro-header::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#introduction .owl-wrap {
    width: 100%;
    margin: 0 auto;
}

#introduction .introduction-quote {
    text-align: justify;
    text-justify: inter-word;
}

#introduction .introduction-quote p {
    font-family: "lato-light", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #6f768c;
}

#introduction .introduction-quote .quote-container {
    background-image: url('../images/background_quote.png');
    background-repeat: no-repeat;
    background-size: 100%;
    min-height: 200px;
    margin-bottom: 25px
}

#introduction .introduction-quote .quote-container .quote-text {
    margin-left: 250px;
    padding: 70px 20px;
    display: inline-block;
}

#introduction .introduction-quote .quote-container .quote-text .author-info{
    display: inline-block;
    vertical-align: middle;
    text-align: justify;
    font-family: "lato-bold", sans-serif;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #6f758c;
    line-height: 1.5;
}

#introduction .introduction-carousel {
    margin: 0 0 3rem 0;
    position: relative;
}

#introduction .introduction-carousel::before {
    display: block;
    content: "";
    height: 2px;
    width: 100%;
    background: #CC0000;
}

#introduction .introduction-carousel::after {
    display: block;
    content: "";
    height: 2px;
    width: 100%;
    background: #CC0000;
}

#introduction .carousel-container {
    padding: 40px 30px;
}

#introduction .carousel-container .slick-prev, 
#introduction .carousel-container .slick-next {
    width: 30px;
    height: 25px;
}

#introduction .carousel-container .carousel-quote-desc {
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
}

#introduction .carousel-container .carousel-quote-desc p {
    margin-bottom: 15px;
    color: #6f758c;
}

#introduction .carousel-container .carousel-quote-signature {
    text-align: center;
    padding-bottom: 30px;
    font-family: "lato-bold", sans-serif;
    font-size: 18px;
    color: #151515;
}
/* ------------------------------------------------------------------- 
* responsive: introduction section 
* ------------------------------------------------------------------- */

@media only screen and (max-width: 600px) {
    #introduction .introduction-quote .quote-container {
        background-size: 220%;
    }

    #introduction .introduction-quote .quote-container .quote-text {
        margin-left: 0;
        margin-top: 160px;
        padding: 40px 20px;
    }

    #introduction .carousel-container .carousel-quote-desc {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 400px) {
    #introduction .introduction-quote .quote-container {
        background-size: 220%;
    }

    #introduction .introduction-quote .quote-container .quote-text {
        margin-left: 0;
        margin-top: 160px;
        padding: 40px 20px;
    }

    #introduction .carousel-container .carousel-quote-desc {
        padding-left: 0;
        padding-right: 0;
    }
}
/* ===================================================================
*  09. tecnology - (_layout.scss)
* ------------------------------------------------------------------- */

#technology {
    padding-top: 60px;
}

#technology .technology_image {
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#technology .technology-title {
    padding-bottom: 10px;
}

/* ------------------------------------------------------------------- 
* responsive: tecnology 
* ------------------------------------------------------------------- */
   

/* ===================================================================
*  10. stemlabs - (_layout.scss)
* ------------------------------------------------------------------- */

#stemlabs {
    background-color: #FFFFFF
}

#stemlabs .row {
    padding-bottom: 20px;
}

#stemlabs .intro-header-red {
    padding-top: 60px;
}

#stemlabs .stemlabs-description {
    text-align: left;
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 35px;
}

#stemlabs .stemlabs-description p {
    margin-bottom: 5px;
    font-size: 20px;
}

#stemlabs .stemlabs-quote-container {
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 100px;
}

#stemlabs .stemlabs-quote {
    background-color: #d2424a;
}

#stemlabs .stemlabs-quote p {
    text-align: center;
    font-family: "lato-regular", sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    padding: 50px 20px 30px 20px;
}

#stemlabs .button-container {
    text-align: center;
    margin-top: -50px;
}

#stemlabs .video-play {
    width: 100%;
    min-height: 310px;
}

/* ------------------------------------------------------------------- 
* responsive: stemlabs 
* ------------------------------------------------------------------- */
        
@media only screen and (max-width: 633px) {
    #stemlabs .stemlabs-description {
        padding-left: 0;
        padding-right: 0;
    }

    #stemlabs .stemlabs-quote-container {
        padding-left: 0;
        padding-right: 0;
    }
}


@media only screen and (max-width: 400px) {
    #stemlabs .stemlabs-description {
        padding-left: 0;
        padding-right: 0;
    }

    #stemlabs .stemlabs-quote-container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ===================================================================
*  11. resources - (_layout.scss)
* ------------------------------------------------------------------- */

#resources {
    background-color: #FFFFFF
}

#resources .row {
    padding-bottom: 20px;
}

#resources .intro-header-red {
    padding-top: 60px;
}

#resources .resources-description {
    text-align: center;
    padding-left: 200px;
    padding-right: 200px;
}   

#resources .column-contents {
    padding: 13px;
    background-color: #f3f7f9;
    text-align: center;
}

#resources .column-title {
    font-family: "lato-black", sans-serif;
    font-size: 20px;
    line-height: 1.324;
    color: #CC0000;
    position: relative;
    text-align: center;
    padding-top: 8px;
}

#resources .column-text {
    padding-top: 40px;
    font-family: "lato-regular", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    text-align: center;
    height: 200px;
}

#resources .column-left {
    float: left;
    width: 33.3%;
    padding: 5px;
}
#resources .column-left .column-title {
    padding-left: 60px;
    padding-right: 60px;
}

#resources .column-center {
    display: inline-block;
    width: 33.3%;
    padding: 5px;
}
#resources .column-center .column-title {
    padding-left: 50px;
    padding-right: 50px;
}

#resources .column-right {
    float: right;
    width: 33.3%;
    padding: 5px;
}

/* ------------------------------------------------------------------- 
* responsive: resources 
* ------------------------------------------------------------------- */

@media only screen and (max-width: 633px) {

    #resources .resources-description {
        padding-left: 0px;
        padding-right: 0px;
    }
    #resources .column-left {
        width: 100%;
    }
    #resources .column-center {
        width: 100%;
    }
    #resources .column-right {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    #resources .resources-description {
        padding-left: 0px;
        padding-right: 0px;
    }
    .column-left {
        width: 100%;
    }
    .column-center {
        width: 100%;
    }
    .column-right {
        width: 100%;
    }
}

/* ===================================================================
*  12. footer styles - (_site-layout.scss)
* ------------------------------------------------------------------- */
        
footer {
    padding-top: 9rem;
    padding-bottom: 1.4rem;
    font-size: 1.5rem;
    line-height: 1.9rem;
    background: #a9222c;
    /* Old browsers */
    background: -moz-linear-gradient(top, #a9222c 0%, #860f16 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #a9222c 0%, #860f16 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #a9222c 0%, #860f16 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a9222c', endColorstr='#860f16', GradientType=0);
    /* IE6-9 */
    font-family: "lato-light", sans-serif;
    color: #fff;
    font-size: 16px;
    top: -3.6rem;
    margin-right: 3px;
}

footer a,
footer a:visited {
    color: #ff7f83;
}

footer a:hover,
footer a:focus {
    color: white;
}

footer h4 {
    color: white;
    font-size: 1.5rem;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
    position: relative;
}

footer h4::before {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #ff7f83;
    position: absolute;
    left: 0;
    bottom: 0;
}

footer ul {
    list-style: none;
    margin: 0;
}

footer ul li {
    padding-left: 0;
}

footer ul a,
footer ul a:visited {
    color: #ff7f83;
}

.footer-logo {
    display: block;
    margin: 0 0 4.4rem 0;
    padding: 0;
    outline: 0;
    border: none;
    width: 250px;
    height: 32px;
    background: url("../images/../images/ti_white.png") no-repeat center;
    background-size: 250px 32px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-social-list {
    font-size: 1.8rem;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
}

.footer-social-list li {
    display: inline-block;
    margin-right: 8px;
}

.footer-social-list li:last-child {
    margin-right: 0;
}

.footer-site-links .list-links {
    margin-bottom: 3rem;
}

.footer-bottom {
    margin-top: 6.6rem;
    text-align: center;
}

.footer-bottom .copyright span {
    display: inline-block;
}

.footer-bottom .copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 1rem 0 1.2rem;
    color: rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright span:last-child::after {
    display: none;
}
/* ------------------------------------------------------------------- 
* go to top
* ------------------------------------------------------------------- */
        
#go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 600;
    display: none;
}

#go-top a,
#go-top a:visited {
    text-decoration: none;
    border: 0 none;
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: #e20a17;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#go-top a i,
#go-top a:visited i {
    font-size: 18px;
    line-height: inherit;
}

#go-top a:hover,
#go-top a:focus {
    color: #4C5568
}
/* ------------------------------------------------------------------- 
* responsive:
* footer 
* ------------------------------------------------------------------- */
        
@media only screen and (max-width: 1024px) {
    .footer-main>.row {
        max-width: 800px;
    }
    .footer-info,
    .footer-contact,
    .footer-site-links {
        margin-bottom: 1.2rem;
    }
    .footer-subscribe {
        clear: both;
    }
}

@media only screen and (max-width: 768px) {
    .footer-main>.row {
        max-width: 600px;
    }
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-info {
        text-align: center;
    }
    #go-top {
        bottom: 0;
        right: 0;
    }
    #go-top a,
    #go-top a:visited {
        border-radius: 5px 0 0 0;
    }
}

@media only screen and (max-width: 600px) {
    .footer-main .row {
        max-width: 480px;
    }
    .footer-main h4 {
        padding-bottom: 0;
        margin-bottom: 2.4rem;
    }
    .footer-main h4::before {
        display: none;
    }
    .footer-main ul.list-links {
        width: 80%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-main ul.list-links li a {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding: .6rem 0;
    }
    .footer-main ul.list-links li:first-child a {
        border-top: 1px solid rgba(255, 255, 255, 0.03);
    }
    .footer-contact,
    .footer-site-links,
    .footer-bottom {
        padding-bottom: .6rem;
    }
    .footer-bottom .copyright span {
        display: block;
    }
    .footer-bottom .copyright span::after {
        display: none;
    }
}

.formations-img, .formations-description {
    font-family: "lato-light", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #6f768c;
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

