﻿/* 
    Accent color #1: #ED1C24 - logo red
    Accent color #2: #D90000 - d red
    Accent color #3: #B6795D - brown
    Accent color #4: #C79983 - brown #2
    Accent color #5: #E1D6D7 - light brown
    Accent color #6: #FB8B8B; - light grey

*/
@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    80% {
        transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem);
    }

    80% {
        transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;
    padding: 0;
    background-color: #fff;
}

@media only screen and (max-width: 480px) {
    body {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

::selection {
    background-color: #c22323;
    color: #fff;
}

body {
    font-family: "Nunito Sans", "Arial", sans-serif;
    font-weight: 400;
    /*font-size: 16px;*/
    line-height: 1.7;
    color: #777;
}

/* ----------------------------------------------- */
/* FORM */
/* ----------------------------------------------- */

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {
    outline: none;
}

/* Helper classes */
.white-bg {
    background-color: #fff!important;
}

.left {
    text-align: left;
}

.section-max-width {
    max-width: 114rem;
}

.invisible {
    display: none!important;
}

.fixed {
    position: fixed!important;
}

.absolute {
    position: absolute!important;
}

.emph {
    font-style: italic;
}

section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* End Helper classes */
.heading-primary {
    color: #000;
    font-family: "Nunito Sans";
    text-transform: uppercase;
    backface-visibility: hidden;
    margin-bottom: 6rem;
}

.heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: .8rem;
    line-height: 1.2;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */
}

@media only screen and (max-width: 480px) {
    .heading-primary--main {
        font-size: 3rem;
        letter-spacing: .2rem;
    }
}
/* @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        line-height: 1.1;
        font-family: 5rem; } } */
.heading-primary--sub {
    display: block;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: .5rem;
    margin-top: 2rem;
    animation: moveInRight 1s ease-out;
}

@media only screen and (max-width: 480px) {
    .heading-primary--sub {
        font-size: 1.4rem;
        letter-spacing: .1rem;
    }
}
/* @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem; } } */

.heading-2, .heading-3, .heading-4 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    background-image: linear-gradient(to right, #494848, #070707);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: .2rem;
    transition: all .2s;
}

.heading-3 {
    font-size: 2.5rem;
}

.heading-4 {
    font-size: 1.5rem;
}

.paragraph {
    font-size: 1.9rem; }
    .paragraph:not(:last-child) {
        margin-bottom: 3rem; }

.u-center-text {
    text-align: center !important;
}

.u-margin-bottom-small {
    margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
    margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
    margin-bottom: 8rem !important;
}

.u-margin-top-big {
    margin-top: 8rem !important;
}

.u-margin-top-huge {
    margin-top: 10rem !important;
}


.btn, .btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 4rem;
    display: inline-block;
    border-radius: .8rem;
    transition: all .2s;
    position: relative;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    }

        .btn:hover::after {
            transform: scaleX(1.4) scaleY(1.6);
            opacity: 0;
        }

    .btn:active, .btn:focus {
        outline: none;
        transform: translateY(-1px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    }

.btn--black {
    position: absolute;
    bottom: 0;
    background-color: #000;
    color: #fff; }
    .btn--black::after {
        background-color: #000; }

.btn--white {
    background-color: #fff;
    color: #777; }
    .btn--white::after {
        background-color: #fff; }

.btn--blue {
    background-color: #D90000;
    color: #fff; }
    .btn--blue::after {
        background-color: #D90000; }

.btn--green {
    background-color: #55c57a;
    color: #fff;
}

    .btn--green::after {
        background-color: #55c57a;
    }

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: .8em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn--animated {
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
    font-family: 'Nunito Sans';
    font-size: 2.4rem;
    font-weight: 700;
    color: #B6795D;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #B6795D;
    padding: 3px;
    transition: all .2s; }
    @media  only screen and (max-width: 920px) {
        .btn-text:link, .btn-text:visited {
            font-size: 2rem; } }
    @media only screen and (max-width: 450px) {
        .btn-text:link, .btn-text:visited {
            font-size: 1.6rem; } }

.btn-text:hover {
    background-color: #B6795D;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-text:active {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.btn-smaller {
    font-size: 1.5rem !important; 
    font-weight: 400 !important; }
    @media  only screen and (max-width: 920px) {
        .btn-smaller {
            font-size: 1.3rem !important;
        } }
    @media only screen and (max-width: 450px) {
        .btn-smaller {
            font-size: 1.2rem !important;
        } }

.header__logo-box {
    position: absolute;
    top: 6rem;
    left: 6rem; }
    @media only screen and (min-width: 376px) {
        .header__logo-box {
            border: 1px solid orange;
            top: 4.5rem;
            left: 3.5rem; } }
    @media only screen and (min-width: 576px) {
        .header__logo-box {
            top: 3rem;
            left: 2rem; } }

.header__logo {
    height: 5rem;
}

.header__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.header__icon-container {
    margin-top: 1.4rem;
}

.subheader__container {
    height: 3rem !important;
    overflow: hidden;
}

.subheader__left {
    float: left;
    text-align: left;
    padding-left: .8rem;
    padding-top: .6rem;
}

.subheader__signin-link {
    text-decoration: none;
    color: #626161; }

.subheader__signin-container {
    z-index: 8999;
    float: right;
    margin-right: 1rem; }
    .subheader__signin-container:hover ~ .subheader__signin-text {
        color: #D90000; }

.subheader__signin-text {
    float: left;
    display: inline-block;
    padding-right: .5rem;
    padding-top: .7rem; }
    .subheader__signin-text:hover {
        color: #D90000; }
    .subheader__signin-text:hover ~ .subheader__signin-icon {
        color: #D90000; }

.subheader__signin-icon {
    float: left;
    display: inline-block;
    margin-top: -1rem;
    font-size: 3rem;
    color: #626161; }
    .subheader__signin-icon:hover {
        color: #B6795D; }

.header__signin-container {
    float: left;
    margin-left: 9rem;
    /*right: 12%;*/ }
    /*@media only screen and (min-width: 1140px) {
        .header__signin-container {
            left: -1000px; } }*/
        /*@media only screen and (max-width: 1139px) {
        .header__signin-container {
            right: 10%; } }*/
    @media only screen and (max-width: 1100px) {
        .header__signin-container {
            margin-left: 7%; } }
    @media only screen and (max-width: 950px) {
        .header__signin-container {
            margin-left: 6%; } }    
    @media only screen and (max-width: 850px) {
        .header__signin-container {
            margin-left: 5%; } }    
    @media only screen and (max-width: 750px) {
        .header__signin-container {
            margin-left: 4%; } }    
    @media only screen and (max-width: 650px) {
        .header__signin-container {
            margin-left: 3%; } }    
    @media only screen and (max-width: 580px) {
        .header__signin-container {
            margin-left: 1%; } }
    @media only screen and (max-width: 500px) {
        .header__signin-container {
            margin-left: -1%; } }
    @media only screen and (max-width: 450px) {
        .header__signin-container {
            margin-left: -3%; } }
    @media only screen and (max-width: 400px) {
        .header__signin-container {
            margin-left: -5%; } }
    @media only screen and (max-width: 350px) {
        .header__signin-container {
            margin-left: -8%; } }
    @media only screen and (max-width: 300px) {
        .header__signin-container {
            margin-left: -14%; } }
    @media only screen and (max-width: 250px) {
        .header__signin-container {
            margin-left: -25%; } }

.header__signin-icon {
    /*float: right;*/
    display: block;
    margin-top: 1rem;
    font-size: 3rem;
    color: #333; }
    .header__signin-icon:hover {
        cursor: pointer;
        color: #B6795D; }

.section-top-margin {
    margin-top: 3rem;
}

.section-part-top-margin {
    margin-top: 4rem;
}

/* .navigation.navigation {
    .display: none;
  } */

.heading-callus {
    width: 15rem;
    height: 2rem;
    border-radius: .3rem;
    font-size: 1.1rem;
    position: relative;
    padding-top: .5rem;
    margin: 0 auto;
    text-align: center; }
    @media only screen and (max-width: 480px) {
        .heading-callus {
            font-size: .8rem; } }

.heading-usp {
    font-family: Merriweather;
    font-size: 1.2rem;
    letter-spacing: 0.0325em;
    color: #0786b5;
    width: 50rem;
    line-height: 1.6rem;
    position: relative;
    padding-top: 1.2rem;
    margin: 0 auto;
    text-align: center; }
    @media only screen and (max-width: 690px) {
        .heading-usp {
            font-size: 1rem; } }
    @media only screen and (max-width: 600px) {
        .heading-usp {
            font-size: 1rem;
            width: 25rem;
            line-height: 1.3rem;
            padding-top: 1rem; } }
    @media only screen and (max-width: 490px) {
        .heading-usp {
            font-size: .8rem;
            width: 20rem;
            line-height: 1.2rem;
            padding-top: .5rem; } }

.temp-nav {
    float: right;
    position: relative;
    top: 1rem;
}

/* Navigation */
.navigation__checkbox {
  display: none;
  width: 0; }

.navigation__button {
    background-color: transparent;
    margin-left: 3rem;
    /*height: 6rem;
    width: 6rem;*/
    /*position: absolute;*/
    top: .5rem;
    top: 2rem;
    z-index: 10003;
    text-align: right;
    cursor: pointer;
}

.navigation__background {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /*margin-top: .1rem;*/
    background-color: #cfa996;
    z-index: 10000;
}

.navigation__nav {
    display: none;
    position: relative;
    /*top: 6rem;*/
    padding: 2rem;
    height: 100%;
    z-index: 10001;
    margin-top: 3rem;
    margin-bottom: 2rem;
    overflow-y: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navigation__header {
    width: 100%;
    font-family: 'Nunito Sans';
    float: left;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #B6795D;
    margin: .4rem 1rem;
}

.navigation__subheader {
    width: 100%;
    font-family: 'Nunito Sans';
    float: left;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #D90000;
    margin: 1rem 1rem .4rem 1rem;
}

.navigation__list {
    display: block;
    list-style: none;
    text-align: left;
    width: 100%; }

.navigation__item {
  margin: .1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 300;
  padding: .1rem 1rem;
  color: #555;
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #B6795D 50%);
  background-size: 220%;
  border-radius: 2px;
  transition: all .4s; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #fff;
  transform: translateX(1rem); }

.navigation__icon {
  position: relative;
  margin-top: 3rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #111;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  background-color: #B6795D;
  top: -1rem; }

.navigation__button:hover .navigation__icon {
    background-color: #B6795D;
}

.navigation__button:hover .navigation__icon::after {
  background-color: #B6795D; 
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

/* End Navigation */



.section--gray {
    background-color: #F0F0F0;
    height: 100rem;
}

.section-lesson {
    padding: 25rem 0;
    margin-top: -20vh;
}
/* @media only screen and (max-width: 56.25em) {
      .section-about {
        padding: 20rem 0; } } */

.sidebar {
    color: white;
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {
    .sidebar {
        display: none;
    }
}

.prod-box {
    display: none;
    color: #fff; }
    @media only screen and (max-width: 480px) {
        .prod-box {
            display: block; } }

.sundblad-col {
    color: white;
    font-size: 2rem;
}

.top-col {
    margin: -1.8% 0 1% 0%;
}

@media only screen and (max-width: 480px) {
    .top-col {
        margin: -1.9% 0 1% 0%;
    }
}

.top-col-sidebar {
    margin: -1.6% 0 1% 1.6%;
}

.page-center-full {
    margin: 0 auto;
    text-align: center;
}

.page-center {
    max-width: 114rem;
    margin: 0 auto;
    text-align: center;
    
}

.section--link {
    color: #D90000;
}

.section--link:hover { 
    cursor: pointer;
    color: #f39c12;
}

/* Section Header */
.header__container {
    background-color: #fff;
    width: 100%;  
    /*height: 10rem;*/  
    overflow: hidden; }

.header__left {
    float: left;
    width: 15%;
    text-align: left;
    overflow: visible;
    white-space: nowrap;
    padding: .7rem 0 0 1rem;
}

.header__center {
    float: left;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 0 0 0; }

.header__right {
    float: right;
    width: 15%;
    padding-right: 7rem; }

.header--containerx .logo-ss-container {
    /*float: left;*/
    width: 10%;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    padding: .7rem 0 0 1rem;
}
    @media only screen and (max-width: 669px) {
        .header--containerx .logo-ss-container  {
            width: 15%; } }
        @media only screen and (max-width: 555px) {
        .header--containerx .logo-ss-container  {
            width: 40%; } }

.logo-ss-container .logo-full {
    width: 12rem; }
    @media only screen and (max-width: 690px) {
        .logo-ss-container .logo-full {
            width: 10rem; } }
    @media only screen and (max-width: 590px) {
        .logo-ss-container .logo-full {
            width: 9rem; } }
    @media only screen and (max-width: 619px) {
        .logo-ss-container .logo-full {
            padding-top: .1rem;
            width: 9rem; } }
    @media only screen and (max-width: 480px) {
        .logo-ss-container .logo-full {
            width: 7rem; } }

.header__container .text-navigation-container {
    padding-top: 4rem;
    /*width: 80%; 
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 0 0 0;*/ }
    /*@media only screen and (max-width: 669px) {
        .header__containerx .text-navigation-container {
            width: 70%;
        } }
        @media only screen and (max-width: 555px) {
        .header__containerx .text-navigation-container {
            width: 10%;
        } }*/

.text-navigation-container .text-navigation {
    font-size: 1.4rem;
    height: 3rem; }
    @media only screen and (max-width: 640px) {
        .header__container .text-navigation-container .text-navigation {
            font-size: 1rem; } }
    @media only screen and (max-width: 460px) {
        .header__container .text-navigation-container .text-navigation {
            width: 0;
            visibility: hidden;
        } }

.header__container .text-navigation-container .text-navigation a:link,
.header__container .text-navigation-container .text-navigation a:visited {
    padding: 8px 0;
    margin-left: 2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
    color: #111; }
    @media only screen and (max-width: 640px) {
        .header__container .text-navigation-container .text-navigation a:link,
        .header__container .text-navigation-container .text-navigation a:visited {
            display: inline-block;
            margin-left: 1rem;
            padding: 0;
            margin-top: .5rem;
        } }

.header__container .text-navigation-container .text-navigation a:hover,
.header__container .text-navigation-container .text-navigation a:active {
    border-bottom: 2px solid #D90000;
    /*color: #f39c12;*/
}

.header__container .text-navigation-container .text-navigation a:first-child {
    margin-left: 0; }
    /*@media only screen and (max-width: 626px) {
        .header__container .text-navigation {
            margin-left: 0; } }*/

.header__container .navigation {
    float: right;
}

/*.nav-container {
    margin-top: 40rem !important;
}*/

/*.header--container .nav-image {
    padding: 1.3rem 1rem 0 0;
}*/


/* End Section Header */


/* Section Carousel */
.carousel {
    margin-top: .5rem; 
    margin-bottom: .5rem; 
    padding: 0; }
    @media only screen and (max-width: 690px) {
        .carousel {
            /*margin-top: -2rem;*/ } }
    @media only screen and (max-width: 619px) {
        .carousel { 
            /*margin-top: 1rem;*/ } }
    @media only screen and (max-width: 480px) {
        .carousel {
            /*margin-top: -2rem;*/ } }

/* End Section Carousel */

/* Section 0 */
.section_0__container {
    /*margin-top: -3rem;*/
    width: 100%;
    height: 70rem;
    background-repeat: no-repeat;
    background-image: url(img/section-0__bg.png);
    background-position: center; }
    @media only screen and (max-width: 480px) {
        .section_0__container {
            /*background-attachment: scroll;*/ } }

.section--0--subheader {
    font-family: Roboto;
    color: #555;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 2.8rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.section--0--header {
    font-family: Oswald;
    color: #555;
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 6.2rem;
    margin-top: 2rem;
}

.section--0--thirdheader {
    font-family: Roboto;
    color: #555;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 2px;
    /*text-transform: uppercase;*/
    line-height: 2.2rem;
    margin-top: 1rem;
}

.section--0--button {
    font-family: Roboto;
    color: #B6795D;
    font-size: 1.8rem;
    border: 1px solid #B6795D;
    /*border-radius: 1rem;*/
    width: 25rem;
    margin-top: 5rem;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    /*margin-left: 40%;
    margin-right: 40%;*/
    padding: 1.6rem;
}

.section--0--button:hover {
    border: 1px solid #D90000;
    color: #D90000;
    cursor: pointer;
}
/* End Section 0 */



/* Section 1 */
.section--1 {
    margin-bottom: 4rem;
}

.section_1__container {
    background-color: #fff;
}

.section_1__container .description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    /*line-height: 1.5rem;*/
    /*height: 3rem;*/
    width: 100%;
}

.detail-area .children-workitem .header {
    float: left;
    padding-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.products__container {
    /*margin-left: .4rem;
    margin-right: .4rem;*/
    margin: 0 .4rem !important;
}

.adjust-bottom {
    margin-bottom: 0.2% !important;
}

.tile_product__container {
    /*margin-left: .9rem !important;*/
    margin-left: .3rem;
    margin-right: .3rem;
    /*margin-bottom: -1.5rem;*/
    border: 1px solid #E1D6D7;
    padding: 1rem;
    overflow: hidden;
    white-space: nowrap;
    height: 12.5rem;
}
    @media only screen and (max-width: 880px) {
        .tile_product__container {
            height: 10.2rem; } }
    @media only screen and (max-width: 750px) {
        .tile_product__container {
            height: 8.5rem; } }

.tile_product__container:hover {
    border: 1px solid #B6795D;
    cursor: pointer;
    background-color: #F8F8F8;
}

.tile_product__link {
    text-decoration: none;
    color: inherit;
}

/*.tile_product__container a:link, .tile_product__container a:visited {
    text-decoration: none !important;
    color: red;
}*/

.tile_product__container__img_container {
    float: left;
    width: 20%;
}

.tile_product__container img {
    float: left; }
    @media only screen and (max-width: 880px) {
        .tile_product__container img {
            width: 8rem; } }
        @media only screen and (max-width: 750px) {
        .tile_product__container img {
            width: 6rem; } }
        @media only screen and (max-width: 620px) {
            .tile_product__container img {
               width: 0; } }
        @media only screen and (max-width: 480px) {
            .tile_product__container img {
               width: 6rem; } }

.tile_product__text_container {
    float: left;
    margin-top: 2.8rem;
    margin-left: 2rem;
    width: 70%; }
    @media only screen and (max-width: 880px) {
        .tile_product__text_container {
            margin-top: 2rem; } }
    @media only screen and (max-width: 750px) {
        .tile_product__text_container {
            margin-top: .9rem; } }
    @media only screen and (max-width: 620px) {
        .tile_product__text_container {
            width: 95%; 
            margin-left: .5rem; } }
    @media only screen and (max-width: 480px) {
        .tile_product__text_container {
            width: 70%; 
            margin-left: 2rem; } }

.tile_product__header {
    float: left;
    text-align: left;
    display: block;
    font-family: Roboto;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    width: 100%; }
    @media only screen and (max-width: 750px) {
        .tile_product__header {
            font-size: 1rem; } }

.tile_product__subheader {
    float: left;
    text-align: left;
    display: block;
    font-family: Roboto;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    width: 100%; }
    /*@media only screen and (max-width: 750px) {
        .tile_product__header {
            font-size: 1rem; } }*/

.tile_product__thirdheader {
    float: left;
    text-align: left;
    display: block;
    font-family: Roboto;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    width: 100%; }
    /*@media only screen and (max-width: 750px) {
        .tile_product__thirdheader {
            font-size: 1rem; } }*/

/* End Section 1*/


/* Section USP */
.section_usp__container {
    width: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/usp-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/usp-min.jpg);
    background-size: cover;
    background-attachment: fixed;
}
    @media only screen and (max-width: 480px) {
        .section_usp__container {
            background-attachment: scroll; } }

.section--usp {
    margin-top: .5rem;
    padding-bottom: 4rem;
    padding-left: 1rem; 
    padding-right: 1rem;
}

.section--usp--header {
    font-family: Oswald;
    color: #fff;
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 6rem;
    padding: 0 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem; }
    @media  only screen and (max-width: 920px) {
        .section--usp--header {
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
            line-height: 3rem; } }
    @media only screen and (max-width: 450px) {
        .section--usp--header {
            font-size: 2rem;
            margin-bottom: 1rem;
            line-height: 2.5rem; } }

.section--usp--subheader {
    font-family: Oswald;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 6rem;
    padding: 0 1rem;
    margin-top: 3rem;
    margin-bottom: 1rem; }
    @media  only screen and (max-width: 920px) {
        .section--usp--subheader {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            line-height: 2.8rem; } }
    @media only screen and (max-width: 450px) {
        .section--usp--subheader {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            line-height: 2.2rem; } }

.section--usp h3{
    font-family: 'Oswald';
    font-size: 2rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 2.3rem;
    text-align: left;
    color: #444;
    color: #fff;
    margin-bottom: .5rem;
    margin-top: 2rem; }
    @media only screen and (max-width: 920px) {
        .section--usp h3 {
            font-size: 1.8rem;
            line-height: 2rem;
            margin-bottom: -1rem;
            margin-top: 1.6rem; } }
    @media only screen and (max-width: 700px) {
        .section--usp h3 {
            font-size: 1.6rem;
            line-height: 1.8rem;
            margin-bottom: .5rem;
            margin-top: 1.4rem; } }
    @media only screen and (max-width: 480px) {
        .section--usp h3 {
            font-size: 1.8rem;
            line-height: 2rem;
            margin-bottom: .1rem; } }

.section--usp i {
    font-size: 400%;
    color: #B6795D;
    float: left;
    text-align: left;
    display: block;
    width: 100%;
}

.section--usp p{
    font-family: Roboto;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.8rem;
    text-align: left;
    float: left;
    color: #444;
    color: #fff;
    color: #eee;
    margin-top: .2rem; }
    @media only screen and (max-width: 920px) {
        .section--usp p {
            font-size: 1.4rem;
            line-height: 2.2rem;
            margin-top: 1.6rem; } }
    @media only screen and (max-width: 700px) {
        .section--usp p {
            font-size: 1.3rem;
            line-height: 1.8rem;
            margin-top: .4rem; } }
    @media only screen and (max-width: 480px) {
        .section--usp p {
            font-size: 1.4rem;
            line-height: 2.2rem;
            margin-bottom: 1rem; } }

/* End Section USP */



/* Section Articles */

.section_articles__container{
    background-color: #fff;
}

.article {
    width: 100%;
    margin: 0 auto;
    font-size: 1.6rem;
}

.article__link {
    text-decoration: none;
    cursor: pointer;
}

.article__shape {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.article__img {
    transform: translateX(0) scale(1.0);
    backface-visibility: hidden;
    transition: all .5s; }

.article:hover .article__img {
    transform: translateX(0) scale(1.3);
    filter: brightness(30%); }
    @media only screen and (max-width: 670px) {
        .article__img {
            transform: translateX(0) scale(1.0); } }
    @media only screen and (max-width: 670px) {
        .article:hover .article__img {
            filter: brightness(100%); } }

.article__shade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    @media only screen and (max-width: 535px) {
        .article__shade {
            
            } }

.article__front-img {
    float: left;
    width: 100%; }
    @media only screen and (max-width: 480px) {
        .article__front-img {
            width: 100%;
            padding-bottom: 0; } }

.article__caption {
    position: absolute;
    left: 5%;
    bottom: 2rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    opacity: 1;
    transition: all 0.5s;
    backface-visibility: hidden;
    width: 92%; }
    .article:hover .article__caption { }
    @media only screen and (max-width: 850px) {
        .article__caption {
            font-size: 1.2rem;
            line-height: 1.5rem; } }
    @media only screen and (max-width: 480px) {
        .article__caption {
            font-size: 1.5rem; } }

.article__caption-category {
    color: #C79983; 
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .2rem; }
    @media only screen and (max-width: 850px) {
        .article__caption-category {
            font-size: 1rem; } }
    @media only screen and (max-width: 480px) {
        .article__caption-category {
            font-size: 1.2rem;
            margin-bottom: .6rem; } }

.article__caption-title {
    color: #fff;
    font-size: 1.6rem;
    line-height: 2.1rem;
    letter-spacing: 0.08em;
    font-weight: 600; }
    @media only screen and (max-width: 850px) {
        .article__caption-title {
            font-size: 1.3rem;
            line-height: 1.4rem;
        } }
        @media only screen and (max-width: 480px) {
            .article__caption-title {
                font-size: 1.6rem;
                line-height: 2.1rem; } }

.article__caption-description {
    font-size: 1.3rem;
    line-height: 1.6rem;
    color: #fff;
    opacity: 0;
    display: none;
    margin-top: .2rem; }
    .article:hover .article__caption-description {
        display: block; 
        opacity: 1; }
    @media only screen and (max-width: 850px) {
        .article__caption-description {
            font-size: 1rem;
            line-height: 1.2rem; } }
    @media only screen and (max-width: 1055px) {
        .article:hover .article__caption-description {
            display: none;
            opacity: 0; } }


.article__caption-read-more {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #C79983;
    opacity: 0;
    display: none;
    margin-top: .5rem;
    text-decoration: none; }

.article__caption-read-more:hover {
    text-decoration: underline; }

.article:hover .article__caption-read-more {
    opacity: 1;
    display: block; }
    @media only screen and (max-width: 850px) {
        .article__caption-read-more {
        font-size: 1rem; } }
    @media only screen and (max-width: 1055px) {
        .article:hover .article__caption-read-more {
            display: none;
            opacity: 0; } }

.section--artsection--articles {
    padding-bottom: 3rem;
    padding-top: 3rem; }

.section--articles .pre__header {
    font-family: Roboto;
    color: #555;
    font-size: 1.7rem;
    font-weight: 200;
    letter-spacing: 4px;
    padding-left: 1rem;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center; }


.section--articles .header {
    font-family: Oswald;
    color: #222;
    font-size: 3.6rem;
    font-weight: 300;
    letter-spacing: 6px;
    padding-left: 1rem;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center; }

.section--articles .adjusted-margins {
    /*margin: 1% 0 1% 1.6%;*/ }
.section--articles .bg {
    background-image: -webkit-linear-gradient(#000, rgba(0, 0, 0, 0.3)), url(/resources/img/v3/code-code-code.jpg);
    background-image: linear-gradient(#000, rgba(0, 0, 0, 0.3)), url(/resources/img/v3/code-code-code.jpg); }
.section--articles .link:hover {
    opacity: 0.5;
    cursor: pointer; }

/* End Section Articles*/

/* ----------------------------------------------- */
/* Section What others say */
/* ----------------------------------------------- */
.section_what_others_say__container {
    width: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/back-customers-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/back-customers-min.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.section--what_others_say {
    margin-top: 4rem;
    margin-bottom: 4rem; 
    padding-left: 1rem; 
    padding-right: 1rem;
}

.section--what_others_say h2 {
    font-size: 3rem; }

.section--what_others_say .h2-semi {
    font-size: 2rem; 
    color: #C79983; }


.section--what_others_say blockquote {
    padding: 2%;
    text-align: left;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px; }
    .section--what_others_say blockquote:before {
        content: "\201C";
        font-size: 500%;
        display: block;
        position: absolute;
        top: -5px;
        left: -5px; }
    @media only screen and (max-width: 700px) {
        .section--what_others_say blockquote {
            font-size: 1.2rem; } }
    @media only screen and (max-width: 480px) {
    .section--what_others_say blockquote {
        font-size: 1.4rem; } }

.section--what_others_say cite {
    font-size: 90%;
    margin-top: 25px;
    display: block; }
    .section--what_others_say cite img {
        height: 45px;
        border-radius: 50%;
        margin-right: 10px;
        vertical-align: middle; }

/* End Section What others say */

    
/* Section Footer */
/*.section__footer {
    background-color: #B6795D;
    min-height: 20rem;
}

    @media only screen and (max-width: 480px) {
        .section__footer {
            font-size: 1.3rem;
            min-height: 10rem;
        }
    }

    @media only screen and (max-width: 400px) {
        .section__footer {
            font-size: 1rem;
            min-height: 5rem;
        }
    }*/
    /* End Section Footer */

    
    /* Popups */
    .popup {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }

    @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
        .popup {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            background-color: rgba(0, 0, 0, 0.3);
        }
    }

    .popup__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 75%;
        background-color: #fff;
        box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
        border-radius: 3px;
        display: table;
        overflow: hidden;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.25);
        transition: all .5s .2s;
    }
    /*@media only screen and (max-width: 911px) and (max-height: 668px) {
        .popup__content {
            
            transform: translate(-50%, -50%) scale(0.6) !important;
        } }*/
    /*@media only screen and (max-width: 900px) {
        .popup__content {
            width: 95%;
            height: 95%;
        } }*/

    .popup__left {
        width: 33.333333%;
        display: table-cell;
    }

    @media only screen and (max-width: 900px) {
        .popup__left {
            width: 0%;
        }
    }

    .popup__right {
        width: 66.6666667%;
        display: table-cell;
        vertical-align: middle;
        padding: 3rem 5rem;
    }

    @media only screen and (max-width: 900px) {
        .popup__right {
            width: 100%;
        }
    }

    .popup__img {
        display: block;
        width: 100%;
    }

    .popup__text {
        font-size: 1.6rem;
        line-height: 2rem;
        margin-bottom: 4rem;
        /*-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 4rem;
    -moz-column-rule: 1px solid #eee;
    column-gap: 4rem;
    column-rule: 1px solid #eee;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;*/
        border-radius: 2px;
    }

    .popup a {
        color: #D90000; }
    .popup a:hover { 
        text-decoration: none; 
    }

    @media only screen and (max-width: 1023px) {
        .popup__text {
            max-height: 15rem;
            overflow: scroll;
            overflow-x: hidden;
            line-height: 1.9rem;
        }
    }


    /*@media only screen and (max-height: 650px) {
        .popup__text {
            font-size: 1.4rem;
            line-height: 2rem;
            height: 40vh;
            line-height: 1.9rem;
            -webkit-column-width: 30rem;
            -moz-column-width: 30rem;
            column-width: 30rem;
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1;
        } }*/
    @media only screen and (max-width: 415px) {
        .popup__text {
            /*background-color: wheat;
            max-height: 10rem;
            overflow: scroll;
            overflow-x: hidden;*/
            line-height: 1.9rem;
            /*-webkit-column-width: 33rem;
            -moz-column-width: 33rem;
            column-width: 33rem;
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1;*/
        }
    }

    @media only screen and (max-width: 342px) {
        .popup__text {
            /*-webkit-column-width: 35rem;
            -moz-column-width: 35rem;
            column-width: 35rem;
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1;*/
        }
    }

    .popup:target {
        opacity: 1;
        visibility: visible;
    }

        .popup:target .popup__content {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

    .popup__close:link, .popup__close:visited {
        color: #777;
        position: absolute;
        top: 2.5rem;
        right: 2.5rem;
        font-size: 3rem;
        text-decoration: none;
        display: inline-block;
        transition: all .2s;
        line-height: 1;
    }

    .popup__close:hover {
        color: #D90000;
    }

    .heading-secondary {
        font-size: 3.5rem;
        text-transform: uppercase;
        font-weight: 700;
        display: inline-block;
        line-height: 3.7rem;
        /*background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent;*/
        letter-spacing: .2rem;
        transition: all .2s;
    }

    @media only screen and (max-width: 1200px) {
        .heading-secondary {
            line-height: 2.4rem;
            font-size: 2.2rem;
        }
    }

    @media only screen and (max-width: 900px) {
        .heading-secondary {
            line-height: 3rem;
            font-size: 2.8rem;
        }
    }

    @media only screen and (max-width: 700px) {
        .heading-secondary {
            line-height: 2.4rem;
            font-size: 2.2rem;
        }
    }

    @media only screen and (max-width: 415px) {
        .heading-secondary {
            line-height: 2rem;
            font-size: 1.5rem;
        }
    }

    .heading-secondary:hover {
        transform: skewY(2deg) skewX(15deg) scale(1.1);
        text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
    }

    .heading-tertiary {
        font-size: 1.6rem;
        line-height: 2.2rem;
        font-weight: 700;
        letter-spacing: .1rem;
        text-transform: uppercase;
    }

    @media only screen and (max-width: 1200px) {
        .heading-tertiary {
            line-height: 1.7rem;
            font-size: 1.4rem;
        }
    }

    @media only screen and (max-width: 900px) {
        .heading-tertiary {
            line-height: 1.7rem;
            font-size: 1.4rem;
        }
    }

    @media only screen and (max-width: 700px) {
        .heading-tertiary {
            line-height: 1.5rem;
            font-size: 1.2rem;
        }
    }

    .popup .logo-full {
        width: 7rem; }
    @media only screen and (max-height: 532px) {
        .popup .logo-full {
            width: 0;
            height: 0;
            visibility: hidden; } }

    /* End Popups */

    /* Program Content Page */
    .program--content p {
        text-align: left;
        font-size: 1.7rem;
        line-height: 2.4rem;
        padding: 0 1rem 2rem 1rem;
    }

    @media only screen and (max-width: 670px) and (max-height: 670px) {
        .program--content p {
            /*color: dodgerblue;*/
            line-height: 1.6rem;
            font-size: 1.2rem;
        }
    }

    @media only screen and (max-width: 450px) {
        .program--content p {
            /*color: slategrey;*/
            line-height: 2.4rem;
            font-size: 1.7rem;
        }
    }

    .program--content .image {
        float: right;
        width: 30rem;
        margin: 1rem 1.5rem 1rem 1rem;
        text-align: center;
    }

    @media only screen and (max-width: 530px) {
        .program--content .image {
            width: 20rem;
        }
    }

    @media only screen and (max-width: 400px) {
        .program--content .image {
            /*margin: 1rem 1rem;*/
            width: 92%;
        }
    }

    .program--content .container {
        border: 0px solid #eee;
        background-color: #fff;
        min-height: 500px;
        margin-left: 20px;
        font-size: 14px;
        margin: 0 auto;
        text-align: center;
        width: 80%;
        /*letter-spacing: 0.02em;*/
    }

        .program--content .container .theme-item {
            /*font-family: 'Nunito';*/
            /*height: 50px;*/
            padding: 10px 0 8px 12px;
            border-bottom: 1px solid #eee;
            /*font-size: 10px;*/
            /*letter-spacing: 0.03em;*/
            line-height: 16px;
            color: #666;
            overflow: hidden;
            background-color: #f6f5f5;
        }

            .program--content .container .theme-item:hover {
                background-color: #ddd;
                cursor: pointer;
            }

        .program--content .container .theme-item-selected:hover {
            background-color: #eee;
            cursor: default;
        }

        .program--content .container .theme-item-selected {
            background-color: #eee;
            border-left: 3px solid #D90000;
            padding-left: 9px;
        }

        .program--content .container .theme-item .circle {
            display: inline-block;
            float: left;
            width: 20px;
            height: 20px;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            border-radius: 25px;
            margin-right: 10px;
        }

        .program--content .container .theme-item .color-1 {
            background: #CFFFBF;
        }

        .program--content .container .theme-item .color-2 {
            background: #FFDC73;
        }

        .program--content .container .theme-item .color-3 {
            background: #FFBFBF;
        }

        .program--content .container .theme-item .color-4 {
            background: #FFCFBF;
        }

        .program--content .container .theme-item .color-5 {
            background: #99CCFF;
        }

        .program--content .container .theme-item .color-6 {
            background: #FFBFFF;
        }

        .program--content .container .theme-item .color-7 {
            background: #FF4D4D;
        }


        .program--content .container .theme-item .hdr {
            font-weight: normal;
            font-family: 'Helvetica Neue LT W01_55 Roman';
            font-size: 11px;
            letter-spacing: 0.03em;
            display: inline-block;
            float: left;
            width: 85%;
            overflow: hidden;
            text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            white-space: nowrap;
            text-align: left;
        }

        .program--content .container .theme-item .text {
            font-weight: normal;
            float: left;
            display: block;
            overflow: hidden;
            font-size: 10px;
        }

        .program--content .container .theme-item .space-between {
            padding-right: 20px;
        }

        .program--content .container .sub-header {
            border-bottom: 1px solid #eee;
            height: 34px;
            width: auto;
            padding: 40px 0 35px 0;
        }

    @media only screen and (max-width: 850px) {
        .program--content .container .sub-header {
            padding: 0 0 35px 0;
        }
    }

    .program--content .container .sub-header .hdr {
        font-family: 'Helvetica Neue LT W01_55 Roman';
        letter-spacing: 0.1em;
        font-size: 1.5rem;
        font-weight: 600;
        float: left;
        width: 100%;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space: nowrap;
    }

    .program--content .container .lessonlist {
        padding-top: 2rem;
        line-height: 2rem;
    }

    .program--content .container .lessons-sub-header {
        margin-top: 1px;
        background-color: #fafafa;
        height: 27px;
        padding: 8px 0 8px 10px;
        padding-left: 2rem;
        /*margin-right: 2rem;*/
    }

        .program--content .container .lessons-sub-header .hdr {
            /*font-family: 'Lato';*/
            /*font-size: 10px;*/
            font-weight: 700;
            float: left;
            letter-spacing: 0.09em;
        }

    .program--content .container .lesson-item {
        font-family: 'Helvetica Neue LT W01_55 Roman';
        height: 35px;
        padding: 10px 0 4px 12px;
        border-bottom: 1px solid #eee;
        font-size: 13px;
        /*letter-spacing: 0.03em;*/
        line-height: 16px;
        color: #666;
        text-align: left;
        padding-left: 2rem;
        background-color: #fafafa;
    }

        .program--content .container .lesson-item:hover {
            background-color: #dcf2fa;
            /*cursor: pointer;*/
        }

    .program--content .container .lesson-item-selected:hover {
        background-color: #eee;
        cursor: default;
    }

    .program--content .container .lesson-item-selected {
        background-color: #eee;
    }

    .program--content .container .lesson-item .name {
        font-weight: normal;
        float: left;
        display: block;
        width: 98%;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space: nowrap;
    }

    .program--content .container .ll-end {
        height: .2rem;
        background-color: #fafafa;
    }

    /* End Program Content Page */

    /* Section Footer */
/*.footer__container {
    background-color: #B6795D;
    width: 100%;
    min-height: 15rem;
    overflow: hidden;
    padding: 2rem 0;
    color: #fff;
    font-size: 1.4rem;
}*/


    /* End Section Footer */

    /* Cube Animation */
    .sk-cube-grid {
        /*display: none;*/
        width: 40px;
        height: 40px;
        margin: 0 auto;
        /*margin: 100px auto;*/
    }

        .sk-cube-grid .sk-cube {
            width: 33%;
            height: 33%;
            background-color: #D90000;
            float: left;
            -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
        }

        .sk-cube-grid .sk-cube1 {
            -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

        .sk-cube-grid .sk-cube2 {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .sk-cube-grid .sk-cube3 {
            -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
        }

        .sk-cube-grid .sk-cube4 {
            -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
        }

        .sk-cube-grid .sk-cube5 {
            -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

        .sk-cube-grid .sk-cube6 {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .sk-cube-grid .sk-cube7 {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        .sk-cube-grid .sk-cube8 {
            -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
        }

        .sk-cube-grid .sk-cube9 {
            -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

    @-webkit-keyframes sk-cubeGridScaleDelay {
        0%, 70%, 100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        35% {
            -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
        }
    }

    @keyframes sk-cubeGridScaleDelay {
        0%, 70%, 100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        35% {
            -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
        }
    }

    /* End Cube Animation */

/* SECTION FOOTER */
.section__footer-container {
    background-color: #F5F5F7;
    padding: 8rem 2rem 0 2rem;
}

.section__footer {
    color: #8f8e8e;
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 2.5rem;
}

.section__footer .top-margin {
    padding-bottom: 8rem;
}

.section__footer .contact__info {
    text-align: left;
}

.section__footer .contact__info-intro {
    padding-right: .5rem;
}

.section__footer .footer__icon {
    color: #111;
    font-size: 1.8rem;
    font-weight: 200;
    padding: 0 .5rem 0 1rem;
}

.section__footer a:link, a:link:visited {
    color: #2583DC;
    text-decoration: none;
}

.section__footer a:link:hover {
    text-decoration: underline;
}

.section__footer .divider {
    border-top: 1px solid #ccc;
    margin-top: 1rem;
    margin-bottom: -.6rem;
}

.section__footer .copyright__info {
    text-align: left;
}

.section__footer .country {
    float: right;
}

@media only screen and (max-width: 480px) {
    .section__footer .contact__info-intro {
        display: block;
    }

    .section__footer .footer__icon {
        padding: 0 .5rem 0 .2rem;
    }
}

@media only screen and (max-width: 462px) {
    .section__footer .copyright__info, .section__footer .country {
        font-size: 1rem;
    }
}
/* END SECTION FOOTER */

/* new sections */
.section__container-black {
    background-color: #000;
    color: #fff;
}
.section__container-dark {
    background-color: #222;
    color: #fff;
}
.section__general {
    /*margin-top: .5rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;*/

    /*margin-top: 2%;*/
}

.section__general .header {
    font-size: 5.3rem;
    font-weight: 700;
    line-height: 5.5rem;
    padding: 0 20%;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section__general .subheader {
    font-size: 3rem;
    font-weight: 500;
    line-height: 4rem;
    padding: 0 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section__general .header span {
    display: block;
    font-size: 2rem;
    line-height: 2.8rem;
    color: #2997FF;
}

@media only screen and (max-width: 920px) {
    .section--usp--header {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
        line-height: 3rem;
    }
}

@media only screen and (max-width: 450px) {
    .section--usp--header {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 2.5rem;
    }
}

/* end new section */
