/*--------------------------------------------------------------
# Font Import
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

@font-face {
    font-family: 'AgencyFB Bold';
    src: url(../assets/fonts/AgencyFB-Bold.ttf) format("truetype"),
        url(../assets/fonts/AgencyFB-Bold.otf) format("opentype"),
        url(../assets/fonts/AgencyFB-Bold.woff) format("woff"),
        url(../assets/fonts/AgencyFB-Bold.svg) format("svg");
    font-weight: normal;
}

@font-face {
    font-family: 'AgencyFB';
    src: url(../assets/fonts/AgencyFB.ttf) format("truetype"),
        url(../assets/fonts/AgencyFB.otf) format("opentype"),
        url(../assets/fonts/AgencyFB.woff) format("woff"),
        url(../assets/fonts/AgencyFB.svg) format("svg");
    font-weight: normal;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    background: #fff;
    color: #333;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

a {
    color: #fff;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #ffba00;
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'AgencyFB Bold', Arial, sans-serif;
    font-weight: 700;
    color: #202020;
    margin-bottom: 20px;
    padding: 0;
}

h1 sup,
h2 sup,
h3 sup {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.4rem;
}

.linen-font {
    font-family: 'AgencyFB', Arial, sans-serif;
    font-weight: 400;
}

.linen-font-bold {
    font-family: 'AgencyFB Bold', Arial, sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.7;
}

.line {
    margin: 50px 0;
    border-bottom: 1px solid #ddd;
}

.line2  {
    margin: 25px 0;
    border-bottom: 1px solid #ddd;
}

.smartlinen-yellow-text{
    color: #ffba00;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #ffba00;
    width: 44px;
    height: 44px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: 0.5s;
    z-index: 10;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
    font-size: 16px;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #ffba00;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    display: flex;
    padding: 30px 24px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 100;
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.93);
    padding: 12px 24px;
    transition: all 0.5s;
}

#header-fixed {
    padding: 12px 24px;
    position: fixed;
    background: rgba(0, 0, 0, 0.93);
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 1;
}

#header #logo,
#header-fixed #logo {
    float: left;
}

#header #logo img,
#header-fixed #logo img {
    width: 230px;
    height: auto;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 10%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 35px;
}

.sf-arrows .sf-with-ul::after {
    content: "\f107";
    position: absolute;
    right: 10px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

/* Nav Meu Container */

#nav-menu-container {
    align-items: center;
    float: right;
    margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 4px 12px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: 'AgencyFB', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.4em;
    text-transform: uppercase;
    outline: none;
    letter-spacing: 0.1em;
}

.nav-menu a:hover,
.nav-menu a:active {
    color: #ffba00;
}


.nav-menu .menu-active > a{
    color: #ffba00;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 48px 0 0 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0px 0px 10px 10px;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #fff;
    transition: 0.3s;
    display: block;
    font-size: 1.2em;
    text-transform: uppercase;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
    color: #ffba00;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 200;
    margin: 10px 20px 0 0;
    border: 0;
    background: none;
    font-size: 30px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 200;
    background: #333;
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 24px;
    font-family: 'AgencyFB Bold', 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    padding: 15px 20px 15px 20px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #ffba00;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #ffba00;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #fff;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #fff;
}

#mobile-body-overlay {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section {
    padding: 120px 25px;
}

.section-header h2 {
    font-size: 38px;
    color: #111;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ffba00;
    bottom: 0;
    /*left: calc(50% - 20px);*/
}

/*--------------------------------------------------------------
# Banners
--------------------------------------------------------------*/

.banner {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(/assets/images/smartlinen/Smartinen_qr-label_banner.jpg);
    background-size: cover;
    background-position: right;
    position: relative;
    width: 100%;
    top: 65px;
    height: 250px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    text-align: center;
    padding: 20px;
    color: #333;
    max-width: 60%;
}

.banner-content h1 {
    margin: 25px 0;
    font-size: 48px;
}

.banner-content p {
    margin: 25px 0;
    font-size: 18px;
    max-width: 860px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    height: 95vh;
    background: #000;
}

#intro .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-item {
    width: 100%;
    height: 95vh;
    background-image: url("/assets/images/smartlinen/SMARTLINEN_product-grid.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 1em;
}

#intro .carousel-content {
    text-align: center;
}

#intro h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 700;
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 2rem;
}

#intro .carousel-fade {
    overflow: hidden;
}

.store-wrapper {
    display: inline-block;
}

.app-button {
    margin: 15px 30px;
    transition: all 0.2s ease 0s;
}

.app-button:hover {
    box-shadow: 0px 0px 15px rgba(235, 235, 235, 0.5);
    color: #fff;
    transform: translateY(-3px);
    border-radius: 10px;
}

.store-wrapper .apple-store {
    width: 200px;
    height: auto;
}

.store-wrapper .google-store {
    width: 226px;
    height: auto;
}

#intro .btn-get-started {
    display: block;
    position: absolute;
    width: auto;
    max-width: 100%;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    bottom: 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#intro .btn-get-started i{
    font-size: 2em;
}

#intro .btn-get-started:hover {
    color: #cccccc;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
    width: 100%;
    position: relative;
}


#about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

#about .container {
    position: relative;
    z-index: 10;
}

#about .container .video {
    display: block;
    margin: 0 auto;
    border: 1px solid #ccc;
}

#about .media {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

#about .media iframe, 
#about .media object, 
#about .media embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border: 1px solid #ccc;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

#services {
    background: #101010;
    width: 95%;
}

#services h2, #services p {
    color: #fff;
    /*text-align: center;*/
}

#services p {
    line-height: 2;
}

#services .services-attributes {
    margin-top: 4em;
}

#services .box {
    margin-bottom: 30px;
}

#services .icon {
    float: left;
    color: #ffba00;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
}

#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #fff;
}

#services .description {
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
    font-size: 16px;
    color: #aaa;
    text-align: left;
    
}


/*--------------------------------------------------------------
# Property Network Section
--------------------------------------------------------------*/

#network {
    width: 100%;
}

#network h2{
    text-align: center;
}
#network h2::after{
    left: calc(50% - 20px);
}

.network-grid {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 5px;
}

.network-grid img {
    width: 140px;
    max-width: 160px;
    height: auto;
    /*filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);*/
    transition: all 0.3s ease;
}

.network-grid img:hover {
    /*filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);*/
    opacity: 1;
}


/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

#call-to-action {
    background: #ffba00;
    width: 100%;
}

#call-to-action .container {
    max-width: 45%;
}

#call-to-action h2 {
    color: #202020;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

#call-to-action h2::after {
    background: #fff;
    left: calc(50% - 20px);
}


#call-to-action p {
    margin: 12px 0 24px 0;
    color: #202020;
}

#call-to-action .cta-btn {
    font-weight: 700;
    background: #fff;
    color: #202020;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 10px;
}

#call-to-action .cta-btn:hover {
    color: #fff;
    background: #202020;
}

#call-to-action .cta-btn-secondary {
    font-weight: 700;
    border: 2px solid #202020;
    color: #202020;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 10px;
}

#call-to-action .cta-btn-secondary:hover {
    color: #fff;
    background: #202020;
    border: 2px solid #202020;
}

/*--------------------------------------------------------------
# Products Landing Page
--------------------------------------------------------------*/

#products{
    margin: 10vh 0;
}

.product-section{
    align-items: center;
    justify-content: center;
}

.product-section-reverse{
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.product-select img {
    border-radius: 5px;
}

.product-select img:hover {
    opacity: 0.8;
    cursor: pointer;
}

.product-overview h2{
    font-size: 2.3rem;
}

.product-overview p{
    font-size: 18px;
    margin-bottom: 32px;
}

.product-overview .btn-select {
    color: #202020;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.1s;
}

.product-overview .btn-select:hover {
    color: #ffba00;
}

.product-overview .btn-select i {
    padding-left: 12px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.product-overview .btn-select:hover i {
    color: #ffba00;
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}




/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

.breadcrumb{
    background: none;
    font-family: 'AgencyFB Bold', Arial, san-serif;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 25px;
    font-size: 1.2rem;
    
}

.breadcrumb-item a{
     color: #202020;
}

.breadcrumb-item a:hover{
    color: #ffba00;
}

.breadcrumb-item.active{
     color: #777;
}

.product-gallery, .product-content{
    padding-left: 30px;
    padding-right: 30px
}

.product-title {
    font-size: 32px;
    color: #202020;
    top: 0;
    margin-bottom: 20px;
}

.product-details {
    list-style-position: inside;
    line-height: 2;
    font-size: 0.9em;
}

.product-details h5{
    margin: 0 0 10px 0;
}

/*------ Line Division -------*/

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}


.product-table th {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.1em;
    border: 0;
    border-bottom: 2px solid #ddd;
}

/*.product-table tr {
    border-bottom: 1px solid #ddd;
}

.product-table tr:last-child {
    border-bottom: none;
}*/

.product-table tr:nth-child(even){
    background: #f4f4f4;
}

.product-table td {
    border-top: none;
    font-size: 0.9em;
}

.product-table td,
th {
    padding: 12px;
    text-align: center;
}

.product-table th,
td:nth-child(1) {
    text-align: left;
}

.product-table th:nth-child(n+2) {
    text-align: center;
}



/*--------------------------------------------------------------
# Technology Section
--------------------------------------------------------------*/

.technology .row {
    align-items: center;
}

.description p, .description li{
    line-height: 1.7;
}

.description li {
    list-style-position: outside;
    margin-left: 10px;
}



/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

#faq {
    background: #fff;
    width: 100%;
}

#faq .faq-list{
    position: -webkit-sticky;
    position: sticky;
    top: 15%;
    margin-bottom: 20%;
}

#faq .faq-list ul {
    list-style-position: outside;
    line-height: 2;
    margin-left: 20px;
}

#faq .faq-list ul li a {
    color: #202020;
}

#faq .faq-list ul li a:hover {
    color: #ffba00;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
    width: 100%;
}

#contact .contact-content {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

#contact img {
    display: block;
    width: 150px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

#contact h2 {
    text-align: center;
}

#contact h2::after {
    left: calc(50% - 20px);
}

#contact p {
    text-align: center;
    margin-bottom: 20px;
}

#contact .form-block {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}


#contact .form-group{
    margin-bottom: 2rem;
}

#contact .form-group label{
    font-family: 'AgencyFB Bold', 'Arial', sans-serif;
    color: #333;
    font-size: 21px;
    letter-spacing: 0.08em;

}

#contact .form-group .form-control {
    background: #f6f6f6;
    border: none;
}

#contact .form-group .required {
    color: #ff2020;
}

#contact .btn {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 12px 32px;
    background-color: #ffba00;
    opacity: 1;
}

#contact .btn:hover {
    color: #fff;
    background-color: #202020;
}


#contact .help-block.with-errors {
    color: #ff2020;
    margin-top: 5px;
}

#contact .form #mail_send_suceess {
    color: #18d26e;
    border: 1px solid #18d26e;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #mail_send_failed {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #mail_send_suceess.show,
  #contact .form #mail_send_failed.show,
  #contact .form .show {
    display: block;
  }
  
  #contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }
  
  #contact .form input,
  #contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }
  
  #contact .form button[type="submit"] {
    background: #18d26e;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
  }
  
  #contact .form button[type="submit"]:hover {
    background: #13a456;
  }

  #footer > .thankyou-footer-wrapper {
    display: none;
}


/*--------------------------------------------------------------
# Privacy Policy Section
--------------------------------------------------------------*/

#policy {
    width: 100%;
}

#policy a {
    color: #000;
    text-decoration: underline;
}

#policy a:hover {
    color: #ffba00;
}

#policy .contact-content {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

#policy .section-header h2 {
    text-align: center;
}

#policy .section-header h2::after {
    left: calc(50% - 20px);
}

#policy .section-header p {
    text-align: center;
    margin-bottom: 20px;
}

#policy .section-body {
    margin-bottom: 60px;
}

#policy .sub-section {
    margin-left: 2.4em;
    margin-bottom: 30px;
}

#policy .sub-section ul li::before {
    margin-left: 5px;
}

#policy .sub-section ul {
    margin-left: 16px;
}

#policy .sub-section ul li {
    margin-bottom: 16px;
}

/*--------------------------------------------------------------
# 404 Page
--------------------------------------------------------------*/
.error-background {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(/assets/images/smartlinen/Smartinen_qr-label_banner.jpg);
    background-size: cover;
    background-position: right;
    margin-top: 72px;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.error-container {
    color: #000;
    width: 70%;
    box-shadow: 10px 10px 10px 0 rgba(0,0,0,0.5);
}

.error-content{
    background: rgba(255,255,255,0.8);
    margin: 0 auto;
    text-align: center;
    padding: 10%;
    
}

.error-content h1 {
    margin: 25px 0;
    font-size: 10em;
}

.error-content p {
    margin: 25px 0;
    font-size: 1.5em;
}

.error-content p a{
    text-decoration: underline;
    color: #777;
}

.error-content p a:hover{
    color: #ffba00;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    display: flex;
    width: 100%;
    height: auto;
    background: #000;
    padding: 24px 24px 0 24px;
}

#footer .support-links {
    color: #fff;
    text-align: center;
}

#footer .social-media {
    width: 100%;
    padding-bottom: 30px;

}

#footer .social-media ul {
    display: inline-block;
    float: none;
    margin: 0 0 20px 0;
    list-style-type: none;
}

#footer .social-media ul li {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

#footer .social-media ul li a {
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 500;
    background: transparent;
    text-transform: uppercase;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

#footer .social-media ul li a:hover {
    color: #ffba00;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

#footer .social-media ul li a img {
    display: inline-block;
    filter: brightness(100%) saturate(100%);
    line-height: 1;
    padding: 0px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 32px;
    height: 32px;
    transition: 0.3s;
}

#footer .social-media ul li a img:hover {
    filter: invert(25%) sepia(77%) saturate(2044%) hue-rotate(359deg) brightness(102%) contrast(104%);
}

#footer .qr-footer img {
    float: left;
    padding-left: 60px;
    width: 300px;
    height: auto;
    bottom: 0;
}


#footer .copyright {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 24px;
    color: #fff;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

/*--------------------------
    Media min-with 320px   
-----------------------*/

@media only screen and (min-width: 320px) {

    #header {
        padding: 20px 0;
    }
    
    #header.header-scrolled {
        padding: 12px 0;
    }

    #header #logo img,
    #header-fixed #logo img {
        width: 200px;
        height: auto;
    }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
    
    .section {
        padding: 100px 25px;
    }

    #intro h1 {
        font-size: 2rem;
    }
    
    #intro p {
        width: 100%;
        font-size: 1rem;
    }

    #network {
        width: 100%;
    }
    
    #network h2{
        text-align: center;
    }
    
    .network-grid img {
        width: 90px;
        max-width: 100px;
        padding-right: 5px;
        padding-left: 5px;
        height: auto;
    }
    
    .col{
        padding-right: 0;
        padding-left: 0;
    }
    
    #call-to-action .container {
        max-width: 100%;
    }
    
    #call-to-action .cta-btn {
        width: 100%;
        margin: 10px auto;
        padding: 0.8em;
    }
    
    #call-to-action .cta-btn-secondary {
        width: 100%;
        margin: 10px auto;
        padding: 0.8em;
    }

    .banner {
        width: 100%;
        top: 65px;
        height: 300px;
    }
    
    .banner-content {
        text-align: center;
        padding: 20px;
        color: #333;
        max-width: 100%;
    }
    
    .banner-content h1 {
        margin: 25px 0;
        font-size: 2.4em;
    }
    
    .banner-content p {
        margin: 25px 0;
        font-size: 1em;
    }
    
    .product-select img {
        border-radius: 5px;
        margin-bottom: 18px;
    }

    #footer {
        width: 100%;
        position: relative;
        padding-top: 24px;
        height: auto;
    }

    #footer .social-media {
        width: 100%;
        padding-bottom: 0;
    
    }

    #footer .social-media ul {
        margin: 0 0 15px 0;
    }
    
    #footer .social-media ul li {
        float: none;
        display: inline-block;
    }

    #footer .social-media ul li a {
        font-size: 24px;
        background: transparent;
    }

    #footer .social-media ul li a {
        font-size: 32px;
    }

    #footer .social-media ul li a img {
        width: 34px;
        height: 34px;
    }

    #footer .copyright {
        font-size: 0.8125rem;
        letter-spacing: 0.1em;
    }

    #footer .qr-footer img {
        display: none;
        position: absolute;
        float: none;
        left: 50%;
        margin-left: -75px;
        padding-left: 0;
        width: 150px;
        height: auto;
    }
}

   /*--------------------------
    Media min-width 768px   
-----------------------*/
    
@media only screen and (min-width: 768px) {

    #header {
        padding: 20px 0;
    }
    
    #header.header-scrolled {
        padding: 12px 0;
    }

    #header #logo img,
    #header-fixed #logo img {
        width: 200px;
        height: auto;
    }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
    
    .section {
        padding: 100px 25px;
    }

    #intro h1 {
        font-size: 2.5rem;
    }
    
    #intro p {
        width: 100%;
        font-size: 1.25rem;
    }

    #about .col-md-4{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; 
        margin-bottom: 2em;
    }
    #about .col-md-7{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; 
    }

    #network {
        width: 100%;
    }
    
    #network h2{
        text-align: center;
    }
    
    .network-grid img {
        width: 100px;
        max-width: 120px;
        height: auto;
    }

    .col{
        padding-right: 10;
        padding-left: 10;
    }
    
    #call-to-action .container {
        max-width: 100%;
    }
    
    #call-to-action .cta-btn {
        width: 45%;
        margin: 10px auto;
        padding: 0.8em;
        margin-right: 1em;
    }
    
    #call-to-action .cta-btn-secondary {
        width: 45%;
        margin: 10px auto;
        padding: 0.8em;
    }

    .banner {
        width: 100%;
        top: 65px;
        height: 300px;
    }
    
    .banner-content {
        text-align: center;
        padding: 20px;
        color: #333;
        max-width: 100%;
    }
    
    .banner-content h1 {
        margin: 25px 0;
        font-size: 2.4em;
    }
    
    .banner-content p {
        margin: 25px 0;
        font-size: 1em;
    }

    .col-md-6{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; 
        margin-bottom: 2em;
    }

    .product-select img {
        border-radius: 5px;
        margin-bottom: 18px;
    }
    
    #footer {
        width: 100%;
        position: relative;
        padding-top: 24px;
        height: auto;
    }

    #footer .social-media {
        width: 100%;
        padding-bottom: 0;
    
    }

    #footer .social-media ul {
        margin: 0 0 15px 0;
    }
    
    #footer .social-media ul li {
        float: none;
        display: inline-block;
    }

    #footer .social-media ul li a {
        font-size: 24px;
        background: transparent;
    }

    #footer .social-media ul li a {
        font-size: 32px;
    }

    #footer .social-media ul li a img {
        width: 34px;
        height: 34px;
    }

    #footer .copyright {
        font-size: 0.8125rem;
        letter-spacing: 0.1em;
    }

    #footer .qr-footer img {
        display: block;
        position: absolute;
        float: left;
        left: 0;
        margin-left: 0;
        padding-left: 30px;
        width: 200px;
        height: auto;
    }
}

 /*--------------------------
    Media min-with 992px   
-----------------------*/
@media only screen and (min-width: 992px) {

    #header {
        padding: 30px 24px;
    }
    
    #header.header-scrolled {
        padding: 12px 24px;
    }

    #header #logo img,
    #header-fixed #logo img {
        width: 230px;
        height: auto;
    }

    #nav-menu-container {
        display: inline-block;
    }

    #mobile-nav-toggle {
        display: none;
    }
    
    .section {
        padding: 100px 25px;
    }

    #intro h1 {
        font-size: 2.5rem;
    }
    
    #intro p {
        width: 100%;
        font-size: 1.25rem;
    }

    #about .col-md-4{
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 0 0 33.333333%; 
        margin-bottom: 0;
    }

    #about .col-md-7{
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%; 
    }

    #network {
        width: 100%;
    }
    
    #network h2{
        text-align: center;
    }
    
    .network-grid img {
        width: 140px;
        max-width: 160px;
        height: auto;
    }

    .col{
        padding-right: 15px;
        padding-left: 15px;
    }
    
    #call-to-action .container {
        max-width: 100%;
    }
    
    #call-to-action .cta-btn {
        width: 45%;
        margin: 10px auto;
        padding: 0.8em;
        margin-right: 1em;
    }
    
    #call-to-action .cta-btn-secondary {
        width: 45%;
        margin: 10px auto;
        padding: 0.8em;
    }

    .banner {
        width: 100%;
        top: 65px;
        height: 200px;
    }
    
    .banner-content {
        text-align: center;
        padding: 20px;
        color: #333;
        max-width: 100%;
    }
    
    .banner-content h1 {
        margin: 25px 0;
        font-size: 2.4em;
    }
    
    .banner-content p {
        margin: 25px 0;
        font-size: 1em;
    }
    
    .product-select img {
        border-radius: 5px;
        margin-bottom: 18px;
    }
    
    .col-md-6{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%; 
        margin-bottom: 0;
    }

    #footer {
        width: 100%;
        position: relative;
        padding-top: 24px;
        height: auto;
    }

    #footer .social-media {
        width: 100%;
        padding-bottom: 0;
    
    }

    #footer .social-media ul {
        margin: 0 0 15px 0;
    }
    
    #footer .social-media ul li {
        float: none;
        display: inline-block;
    }

    #footer .social-media ul li a {
        font-size: 24px;
        background: transparent;
    }

    #footer .social-media ul li a {
        font-size: 32px;
    }

    #footer .social-media ul li a img {
        width: 34px;
        height: 34px;
    }

    #footer .copyright {
        font-size: 0.8125rem;
        letter-spacing: 0.1em;
    }

    #footer .qr-footer img {
        display: block;
        position: absolute;
        float: left;
        left: 0;
        margin-left: 0;
        padding-left: 30px;
        width: 250px;
        height: auto;
    }
}
  

@media only screen and (min-width: 1024px){
    .container {
        max-width: 1200px;
    }
}
 /*--------------------------
    Media min-with 1200px   
-----------------------*/


@media only screen and (min-width: 1200px) {

    #header {
        padding: 30px 24px;
    }
    
    #header.header-scrolled {
        padding: 12px 24px;
    }

    #header #logo img,
    #header-fixed #logo img {
        width: 230px;
        height: auto;
    }

    #nav-menu-container {
        display: inline-block;
    }

    #mobile-nav-toggle {
        display: none;
    }
    
    .section {
        padding: 120px 25px;
    }

    #intro h1 {
        font-size: 3.5rem;
    }
    
    #intro p {
        width: 65%;
        font-size: 1.3125rem;
    }

    #about .col-md-4{
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 0 0 33.333333%; 
        margin-bottom: 0;
    }

    #about .col-md-7{
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%; 
    }

    #network {
        width: 100%;
    }
    
    #network h2{
        text-align: center;
    }
    
    .network-grid {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        margin: 0 5px;
    }
    
    .network-grid img {
        width: 140px;
        max-width: 160px;
        height: auto;
        padding: 0;
        /*filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
        filter: gray;
        -webkit-filter: grayscale(100%);*/
        transition: all 0.3s ease;
    }
    
    #call-to-action .container {
        max-width: 50%;
    }
    
    #call-to-action .cta-btn {
        box-sizing: border-box;
        width: 45%;
        max-width: 300px;
        margin: 10px auto;
        padding: 12px 32px;
        margin-right: 1em;
    }
    
    #call-to-action .cta-btn-secondary {
        box-sizing: border-box;
        width: 45%;
        max-width: 300px;
        margin: 10px auto;
        padding: 12px 32px;
    }
    
    #call-to-action .cta-btn:hover {
        color: #fff;
        background: #202020;
    }


    .banner {
        width: 100%;
        top: 65px;
        height: 200px;
    }
    
    .banner-content {
        text-align: center;
        padding: 20px;
        color: #333;
        max-width: 100%;
    }
    
    .banner-content h1 {
        margin: 25px 0;
        font-size: 2.4em;
    }
    
    .banner-content p {
        margin: 25px 0;
        font-size: 1em;
    }
    
    .product-select img {
        border-radius: 5px;
        margin-bottom: 18px;
    }
    
    #footer {
        width: 100%;
        position: relative;
        padding-top: 24px;
        height: auto;
    }

    #footer .social-media {
        width: 100%;
        padding-bottom: 0;
    
    }

    #footer .social-media ul {
        margin: 0 0 15px 0;
    }
    
    #footer .social-media ul li {
        float: none;
        display: inline-block;
    }

    #footer .social-media ul li a {
        font-size: 24px;
        background: transparent;
    }

    #footer .social-media ul li a img {
        width: 32px;
        height: 32px;
    }

    #footer .copyright {
        font-size: 0.8125rem;
        letter-spacing: 0.1em;
    }

    #footer .qr-footer img {
        display: block;
        position: absolute;
        float: left;
        left: 0;
        margin-left: 0;
        padding-left: 30px;
        width: 250px;
        height: auto;
    }
}

   
 