/* -------------------------------- 

Primary style

-------------------------------- */

@font-face {
    font-family: 'Acephimere';
    src: url('../fonts/Acephimere.otf') format('opentype');
}

@font-face {
    font-family: 'Acephimere Italic';
    src: url('../fonts/Acephimere Italic.otf') format('opentype');
}

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *::after, *::before {
        content: '';
    }

body {
    font-size: 100%;
    font-family: "PT Sans", sans-serif;
    color: #3e585f;
    background-color: #fff;
}

    body::after {
        /* dark overlay layer - visible when we fire .cd-quick-view */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(71, 55, 78, 0.8);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity .3s 0s, visibility 0s .3s;
        -moz-transition: opacity .3s 0s, visibility 0s .3s;
        transition: opacity .3s 0s, visibility 0s .3s;
    }



@media only screen and (min-width: 1024px) {
    body.overlay-layer::after {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -moz-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
    }
}

a {
    color: #f82f53;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

    .cd-container:after {
        content: "";
        display: table;
        clear: both;
    }

/* -------------------------------- 

Main components 

-------------------------------- */

html, body {
    height: 100%;
}

header {
    position: relative;
    height: 160px;
    line-height: 170px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    header h1 {
        color: #ffffff;
        font-size: 20px;
        font-size: 1.25rem;
    }

@media only screen and (min-width: 768px) {
    header {
        line-height: 180px;
    }

        header h1 {
            font-size: 26px;
            font-size: 1.625rem;
        }
}

@media only screen and (min-width: 1024px) {
    header {
        line-height: 220px;
    }
}

.cd-items {
    padding: 1em 0;
}

@media only screen and (min-width: 768px) {
    .cd-items {
        padding: 2em 0 0;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-items {
        padding: 4em 0 0;
    }
}

.cd-item {
    position: relative;
    margin: 0 0 1em;
}

    .cd-item > img {
        display: block;
        width: 100%;
        /*}
.cd-quick-view{
	position:relative;
	z-index:9999*/
    }

@media only screen and (min-width: 768px) {
    .cd-item {
        width: 48%;
        float: left;
        margin: 0 4% 2em 0;
    }

        .cd-item:nth-child(2n) {
            margin-right: 0;
        }
}

@media only screen and (min-width: 1024px) {
    .cd-item {
        width: 22%;
        float: left;
        margin: 0 4% 2.8em 0;
    }

        .cd-item:nth-child(2n) {
            margin-right: 4%;
        }

        .cd-item:nth-child(4n) {
            margin-right: 0;
        }

        .cd-item.empty-box::after {
            /* box visible as placeholder when the .cd-quick-view zooms in */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #392c3f;
        }
}

.cd-trigger {
    position: absolute;
    height: 50px;
    line-height: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s, background-color 0.2s;
    -moz-transition: opacity 0.2s, background-color 0.2s;
    transition: opacity 0.2s, background-color 0.2s;
}

.no-touch .cd-trigger:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #23A42E;
}

@media only screen and (min-width: 1024px) {
    .cd-trigger {
        /* always visible on small devices */
        visibility: visible;
        opacity: 1;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-trigger {
        /* only visible on hover on big devices */
        opacity: 0;
    }
}

@media only screen and (min-width: 1170px) {
    .no-touch .cd-item:hover .cd-trigger {
        opacity: 1;
        color: #23A42E;
    }

    .touch .cd-item .cd-trigger {
        opacity: 1;
        /*color: #23A42E;*/
    }
}

.cd-quick-view {
    /* quick view non available on small devices */
    display: none;
    /*background-image: url('../img/item-3/item-6.jpg');
    no-repeat center 0;
    width: 600px;
    height: auto;*/
}

@media only screen and (min-width: 1024px) {
    .cd-quick-view {
        display: block;
        position: fixed;
        max-width: 900px;
        visibility: hidden;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: left, top, width;
        z-index: 9999;
    }

        .cd-quick-view:after {
            content: "";
            display: table;
            clear: both;
        }

        .cd-quick-view.is-visible {
            /* class added when user clicks on .cd-trigger */
            visibility: visible;
        }

        .cd-quick-view.animate-width {
            /* class added at the end of the first zoom-in animation */
            background-color: #ffffff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            -webkit-transition: box-shadow 0.3s;
            -moz-transition: box-shadow 0.3s;
            transition: box-shadow 0.3s;
        }
}

.cd-slider-wrapper {
    position: relative;
    display: inline-block;
    float: left;
}

    .cd-slider-wrapper:after {
        content: "";
        display: table;
        clear: both;
    }

.cd-slider {
    float: left;
}

    .cd-slider li {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

        .cd-slider li img {
            display: block;
            width: 100%;
            max-width: 400px;
        }

        .cd-slider li.selected {
            position: relative;
            z-index: 3;
        }

.add-content .cd-slider {
    margin-right: 3em;
}

.cd-slider-navigation {
    opacity: 0;
}

.add-content .cd-slider-navigation {
    opacity: 1;
}

.cd-slider-navigation li {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

    .cd-slider-navigation li:first-child {
        left: 0;
    }

    .cd-slider-navigation li:last-child {
        /* equal to the .cd-slider-wrapper margin-right */
        right: 3em;
    }

    .cd-slider-navigation li a {
        display: block;
        width: 40px;
        height: 50px;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        opacity: 0;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: opacity 0.2s, background 0.2s;
        -moz-transition: opacity 0.2s, background 0.2s;
        transition: opacity 0.2s, background 0.2s;
    }

        .cd-slider-navigation li a::before, .cd-slider-navigation li a::after {
            /* create arrows in CSS */
            position: absolute;
            top: 18px;
            left: 14px;
            display: inline-block;
            background: #2c343b;
            height: 3px;
            width: 12px;
        }

        .cd-slider-navigation li a::before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .cd-slider-navigation li a::after {
            -webkit-transform: translateY(7px) rotate(-45deg);
            -moz-transform: translateY(7px) rotate(-45deg);
            -ms-transform: translateY(7px) rotate(-45deg);
            -o-transform: translateY(7px) rotate(-45deg);
            transform: translateY(7px) rotate(-45deg);
        }

.add-content .cd-slider-navigation li a {
    opacity: .2;
}

.no-touch .cd-slider-navigation li a:hover {
    background: rgba(71, 55, 78, 0.8);
    opacity: 1;
}

.touch .cd-slider-navigation li a {
    opacity: 1;
}

.cd-slider-navigation li:first-child a::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cd-slider-navigation li:first-child a::after {
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.cd-item-info {
    position: absolute;
    padding: 3em 3em 3em 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s, visibility 0s;
    -moz-transition: opacity .3s, visibility 0s;
    transition: opacity .3s, visibility 0s;
}

    .cd-item-info h2 {
        font-size: 28px;
        font-size: 1.75rem;
    }

    .cd-item-info p {
        line-height: 1.6;
        margin: 1em 0;
        color: #67919c;
    }

    .cd-item-info .cd-item-action li {
        display: inline-block;
        margin-right: 1em;
    }

        .cd-item-info .cd-item-action li:first-child {
            margin-left: -4px;
        }

    .cd-item-info .add-to-cart {
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        border-radius: 0.25em;
        border: none;
        padding: .6em 1.2em;
        background-color: #f82f53;
        color: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-family: "PT Sans", sans-serif;
        font-size: 16px;
        font-size: 1rem;
        cursor: pointer;
    }

.add-content .cd-item-info {
    /* class added at the end of the width animation, used to show the content */
    position: relative;
    visibility: visible;
    opacity: 1;
}

    .add-content .cd-item-info h2 {
        -webkit-animation: cd-slide-in 0.3s;
        -moz-animation: cd-slide-in 0.3s;
        animation: cd-slide-in 0.3s;
    }

    .add-content .cd-item-info p {
        -webkit-animation: cd-slide-in 0.4s;
        -moz-animation: cd-slide-in 0.4s;
        animation: cd-slide-in 0.4s;
    }

    .add-content .cd-item-info .cd-item-action {
        -webkit-animation: cd-slide-in 0.5s;
        -moz-animation: cd-slide-in 0.5s;
        animation: cd-slide-in 0.5s;
    }

@-webkit-keyframes cd-slide-in {
    0% {
        -webkit-transform: translate3d(-40px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes cd-slide-in {
    0% {
        -moz-transform: translate3d(-40px, 0, 0);
    }

    100% {
        -moz-transform: translate3d(0, 0, 0);
    }
}

@keyframes cd-slide-in {
    0% {
        -webkit-transform: translate3d(-40px, 0, 0);
        -moz-transform: translate3d(-40px, 0, 0);
        -ms-transform: translate3d(-40px, 0, 0);
        -o-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.cd-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s 0s, visibility 0s .3s;
    -moz-transition: -moz-transform .3s 0s, visibility 0s .3s;
    transition: transform .3s 0s, visibility 0s .3s;
    z-index: 9999;
}

    .cd-close::before, .cd-close::after {
        /* close icon in css */
        position: absolute;
        top: 12px;
        left: 5px;
        display: inline-block;
        height: 4px;
        width: 20px;
        background: #47374e;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .cd-close::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .cd-close::after {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

.no-touch .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.add-content .cd-close {
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .3s 0s, visibility 0s 0s;
    transition: transform .3s 0s, visibility 0s 0s;
}

.quick-view-content {
    display: none;
    /*background-image: url('../img/item-3/item-4.jpg');*/
}


#cd-quick-view-coverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    opacity: 0;
    display: none;
}

    #cd-quick-view-coverlay.overlay_active {
        display: block;
        opacity: 1;
    }



/* Create three columns of equal width */
.columns_pricing {
    float: left;
    width: 23%;
    padding: 8px;
    margin-bottom: 50px;
}

.columns_pricing_atr {
    float: left;
    width: 4%;
    padding: 8px;
    /*margin-bottom: 15px;*/
}

/* Style the list */
.price_pricing {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price_pricing_atr {
    list-style-type: none;
    /*border: 1px solid #77AA45;*/
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
/* Add shadows on hover */
.price_pricing:hover {
    -moz-box-shadow: 0 0 20px #77AA45;
    -webkit-box-shadow: 0 0 20px #77AA45;
    box-shadow: 0 0 20px #77AA45;
}

/* Pricing header */
.price_pricing .header {
    background: url('../img/header2New.fw.png') no-repeat center 0;
    color: white;
    font-size: 12px;
}

/* List items */
.price_pricing li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.price_pricing_atr li {
    border-bottom: 1px solid #77AA45;
    padding: 20px 0;
    text-align: left;
    font-size: 12px;
}


/* Grey list item */
.price_pricing .grey {
    background-color: #eee;
    font-size: 20px;
}

/* The "Sign Up" button */
.button_pricing {
    /*background-color: #4CAF50;*/
    background: url('../img/header2.png') no-repeat center 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border-radius: 0.25em;
    border: none;
    padding: .6em 1.2em;
    /*background-color: #f82f53;*/
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 8px;
}

.w3-animate-fading {
    animation: fading 10s infinite
}


/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Open Sans", sans-serif;
    color: #2c343b;
    background-color: #f2f2f2;
}

a {
    color: #d44457;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #21272c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
    .cd-header {
        height: 70px;
        background-color: transparent;
    }
}

#cd-logo {
    float: left;
    margin: 13px 0 0 5%;
}

    #cd-logo img {
        display: block;
    }

@media only screen and (min-width: 768px) {
    #cd-logo {
        margin: 23px 0 0 5%;
    }
}


/*estilos para el logo*/
@media screen and (max-width: 487px) {
    .site-header .site-branding {
        background-image: url("../assets/AGL-logo128.fw.png") !important;
    }
}

@media screen and (min-width: 487px) and (max-width: 1079px) {
    .site-header .site-branding {
        background-image: url("../assets/AGLlogos.fw256.fw.png") !important;
    }
}

@media screen and (min-width: 1080px) {
    .site-header .site-branding {
        background-image: url("../assets/AGLlogos.fw.png") !important;
    }
}



.cd-primary-nav {
    /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../assets/cd-icon-menu.svg") no-repeat center center;
}

    .cd-primary-nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

        .cd-primary-nav ul.is-visible {
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            -webkit-transform: translateY(50px);
            -moz-transform: translateY(50px);
            -ms-transform: translateY(50px);
            -o-transform: translateY(50px);
            transform: translateY(50px);
        }

    .cd-primary-nav a {
        display: block;
        height: 50px;
        line-height: 50px;
        padding-left: 5%;
        background: #21272c;
        border-top: 1px solid #333c44;
        color: #ffffff;
    }

@media only screen and (min-width: 768px) {
    .cd-primary-nav {
        /* reset navigation values */
        width: auto;
        height: auto;
        background: none;
    }

        .cd-primary-nav ul {
            position: static;
            width: auto;
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
            line-height: 70px;
        }

            .cd-primary-nav ul.is-visible {
                -webkit-transform: translateY(0);
                -moz-transform: translateY(0);
                -ms-transform: translateY(0);
                -o-transform: translateY(0);
                transform: translateY(0);
            }

        .cd-primary-nav li {
            display: inline-block;
            margin-left: 1em;
        }

        .cd-primary-nav a {
            display: inline-block;
            height: auto;
            font-weight: 600;
            line-height: normal;
            background: transparent;
            padding: .6em 1em;
            border-top: none;
        }
}

/* -------------------------------- 

Slider

-------------------------------- */
.cd-hero {
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-hero-slider {
    position: relative;
    height: 360px;
    overflow: hidden;
}

    .cd-hero-slider li {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

        .cd-hero-slider li.selected {
            /* this is the visible slide */
            position: relative;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }

        .cd-hero-slider li.move-left {
            /* slide hidden on the left */
            -webkit-transform: translateX(-100%);
            -moz-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            -o-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
            /* the is-moving class is assigned to the slide which is moving outside the viewport */
            -webkit-transition: -webkit-transform 0.5s;
            -moz-transition: -moz-transform 0.5s;
            transition: transform 0.5s;
        }

@media only screen and (min-width: 768px) {
    .cd-hero-slider {
        height: 500px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-hero-slider {
        height: 680px;
    }
}

/* -------------------------------- 

Single slide style

-------------------------------- */
.cd-hero-slider li {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .cd-hero-slider li:first-of-type {
        background-color: #2c343b;
        background: url('../assets/HB_box_BG plate2.png');
        background-size: cover;
    }

    .cd-hero-slider li:nth-of-type(2) {
        background-color: #3d4952;
        background-image: url("../assets/bulbs1200x800.fw2.fw.png");
    }

    .cd-hero-slider li:nth-of-type(3) {
        background-color: #586775;
        background-image: url("../assets/flood1200x800..fw.png");
    }

    .cd-hero-slider li:nth-of-type(4) {
        background-color: #586775;
        background-image: url("../assets/DowmLight1200x800..fw.png");
    }

    .cd-hero-slider li:nth-of-type(5) {
        background-color: #586775;
        background-image: url("../assets/HighBay1200x800..fw.png");
    }

    .cd-hero-slider li:nth-of-type(6) {
        background-color: #2c343b;
        background-image: url('../assets/HB_box_BG plate2.png');
    }

    .cd-hero-slider li:nth-of-type(7) {
        background-color: #2c343b;
        background-image: url(../assets/img.jpg);
    }

.cd-hero-slider .cd-full-width,
.cd-hero-slider .cd-half-width {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    /* this padding is used to align the text */
    padding-top: 100px;
    text-align: center;
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.cd-hero-slider .cd-img-container {
    /* hide image on mobile device */
    display: none;
}

    .cd-hero-slider .cd-img-container img {
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

.cd-hero-slider .cd-bg-video-wrapper {
    /* hide video on mobile device */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .cd-hero-slider .cd-bg-video-wrapper video {
        /* you won't see this element in the html, but it will be injected using js */
        display: block;
        min-height: 100%;
        min-width: 100%;
        max-width: none;
        height: auto;
        width: auto;
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

.cd-hero-slider h2, .cd-hero-slider p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin: 0 auto 14px;
    color: #ffffff;
    width: 90%;
    max-width: 400px;
}

.cd-hero-slider h2 {
    font-size: 2.4rem;
}

.cd-hero-slider p {
    font-size: 20px;
    line-height: 1.4;
}

.cd-hero-slider .cd-btn {
    display: inline-block;
    padding: 1.2em 1.4em;
    margin-top: .4em;
    background-color: #57BF4E;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

    .cd-hero-slider .cd-btn.secondary {
        background-color: rgba(22, 26, 30, 0.8);
    }

    .cd-hero-slider .cd-btn:nth-of-type(2) {
        margin-left: 1em;
    }

.no-touch .cd-hero-slider .cd-btn:hover {
    background-color: #d44457;
}

.no-touch .cd-hero-slider .cd-btn.secondary:hover {
    background-color: #161a1e;
}

@media only screen and (min-width: 768px) {
    .cd-hero-slider li:nth-of-type(2) {
        /*background-image: none;*/
        background-image: url('../assets/BulbGreenBG.png');
    }

    .cd-hero-slider li:nth-of-type(3) {
        /*background-image: none;*/
        background-image: url('../assets/BulbGreenBG.png');
    }

    .cd-hero-slider li:nth-of-type(4) {
        /*background-image: none;*/
        background-image: url('../assets/BulbGreenBG.png');
    }

    .cd-hero-slider li:nth-of-type(5) {
        /*background-image: none;*/
        background-image: url('../assets/BulbGreenBG.png');
    }

    .cd-hero-slider li:nth-of-type(6) {
        background-image: none;
        /*background-image: url('../assets/BulbGreenBG.png');*/
    }

    /*.cd-hero-slider li:nth-of-type(7) {
        background-image: none;
        background-image: url('../assets/BulbGreenBG.png');
    }*/

    .cd-hero-slider .cd-full-width {
        width: 60%;
    }



    .cd-hero-slider .cd-half-width {
        padding-top: 100px;
    }

    .cd-hero-slider .cd-bg-video-wrapper {
        display: block;
    }

    .cd-hero-slider .cd-half-width {
        width: 45%;
    }

        .cd-hero-slider .cd-half-width:first-of-type {
            left: 5%;
        }

        .cd-hero-slider .cd-half-width:nth-of-type(2) {
            right: 5%;
            left: auto;
        }

    .cd-hero-slider .cd-img-container {
        display: block;
    }

    .cd-hero-slider h2, .cd-hero-slider p {
        max-width: 520px;
    }

    .cd-hero-slider h2 {
        font-size: 2.4em;
        font-weight: 300;
    }

    .cd-hero-slider .cd-btn {
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-hero-slider .cd-full-width,
    .cd-hero-slider .cd-half-width {
        padding-top: 220px;
    }

    .cd-hero-slider h2, .cd-hero-slider p {
        margin-bottom: 20px;
    }

    .cd-hero-slider h2 {
        font-size: 3.2em;
    }

    .cd-hero-slider p {
        font-size: 4rem;
    }
}

/* -------------------------------- 

Single slide animation

-------------------------------- */
@media only screen and (min-width: 768px) {
    .cd-hero-slider .cd-half-width {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -ms-transform: translateX(40px);
        -o-transform: translateX(40px);
        transform: translateX(40px);
    }

    .cd-hero-slider .move-left .cd-half-width {
        -webkit-transform: translateX(-40px);
        -moz-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        -o-transform: translateX(-40px);
        transform: translateX(-40px);
    }

    .cd-hero-slider .selected .cd-half-width {
        /* this is the visible slide */
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-hero-slider .is-moving .cd-half-width {
        /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
        -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
        -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
        transition: opacity 0s 0.5s, transform 0s 0.5s;
    }

    .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2),
    .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
        /* this is the selected slide - different animation if it's entering from left or right */
        -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
        -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
        transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    }

    .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type,
    .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
        /* this is the selected slide - different animation if it's entering from left or right */
        -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
        -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s;
        transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    }

    .cd-hero-slider .cd-full-width h2,
    .cd-hero-slider .cd-full-width p,
    .cd-hero-slider .cd-full-width .cd-btn {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    .cd-hero-slider .move-left .cd-full-width h2,
    .cd-hero-slider .move-left .cd-full-width p,
    .cd-hero-slider .move-left .cd-full-width .cd-btn {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    .cd-hero-slider .selected .cd-full-width h2,
    .cd-hero-slider .selected .cd-full-width p,
    .cd-hero-slider .selected .cd-full-width .cd-btn {
        /* this is the visible slide */
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-hero-slider li.is-moving .cd-full-width h2,
    .cd-hero-slider li.is-moving .cd-full-width p,
    .cd-hero-slider li.is-moving .cd-full-width .cd-btn {
        /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set opacity to 0 and translate to 100px/-100px */
        -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
        -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
        transition: opacity 0s 0.5s, transform 0s 0.5s;
    }

    .cd-hero-slider li.selected h2 {
        -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
        -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
        transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    }

    .cd-hero-slider li.selected p {
        -webkit-transition: opacity 0.4s 0.3s, -webkit-transform 0.5s 0.3s;
        -moz-transition: opacity 0.4s 0.3s, -moz-transform 0.5s 0.3s;
        transition: opacity 0.4s 0.3s, transform 0.5s 0.3s;
    }

    .cd-hero-slider li.selected .cd-btn {
        -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s, background-color 0.2s 0s;
        -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s, background-color 0.2s 0s;
        transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, background-color 0.2s 0s;
    }
}
/* -------------------------------- 

Slider navigation

-------------------------------- */
.cd-slider-nav {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    text-align: center;
    height: 55px;
    background-color: rgba(0, 1, 1, 0.5);
}

    .cd-slider-nav nav, .cd-slider-nav ul, .cd-slider-nav li, .cd-slider-nav a {
        height: 100%;
    }

    .cd-slider-nav nav {
        display: inline-block;
        position: relative;
    }

    .cd-slider-nav .cd-marker {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 100%;
        color: #57bf4e;
        background-color: #ffffff;
        box-shadow: inset 0 2px 0 currentColor;
        -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
        -moz-transition: -moz-transform 0.2s, box-shadow 0.2s;
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .cd-slider-nav .cd-marker.item-2 {
            -webkit-transform: translateX(100%);
            -moz-transform: translateX(100%);
            -ms-transform: translateX(100%);
            -o-transform: translateX(100%);
            transform: translateX(100%);
        }

        .cd-slider-nav .cd-marker.item-3 {
            -webkit-transform: translateX(200%);
            -moz-transform: translateX(200%);
            -ms-transform: translateX(200%);
            -o-transform: translateX(200%);
            transform: translateX(200%);
        }

        .cd-slider-nav .cd-marker.item-4 {
            -webkit-transform: translateX(300%);
            -moz-transform: translateX(300%);
            -ms-transform: translateX(300%);
            -o-transform: translateX(300%);
            transform: translateX(300%);
        }

        .cd-slider-nav .cd-marker.item-5 {
            -webkit-transform: translateX(400%);
            -moz-transform: translateX(400%);
            -ms-transform: translateX(400%);
            -o-transform: translateX(400%);
            transform: translateX(400%);
        }

        .cd-slider-nav .cd-marker.item-6 {
            -webkit-transform: translateX(500%);
            -moz-transform: translateX(500%);
            -ms-transform: translateX(500%);
            -o-transform: translateX(500%);
        }

    /*.cd-slider-nav .cd-marker.item-7 {
            -webkit-transform: translateX(600%);
            -moz-transform: translateX(600%);
            -ms-transform: translateX(600%);
            -o-transform: translateX(600%);
            transform: translateX(600%);
        }*/

    .cd-slider-nav ul::after {
        clear: both;
        content: "";
        display: table;
    }

    .cd-slider-nav li {
        display: inline-block;
        width: 60px;
        float: left;
    }

        .cd-slider-nav li.selected a {
            color: #57bf4e;
        }

.no-touch .cd-slider-nav li.selected a:hover {
    background-color: transparent;
}

.cd-slider-nav a {
    display: block;
    position: relative;
    padding-top: 35px;
    font-size: 1rem;
    font-weight: 700;
    color: #a8b4be;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

    .cd-slider-nav a::before {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        top: 8px;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        /*background: url(../assets/cd-icon-navigation.svg) no-repeat 0 0;*/
    }

.no-touch .cd-slider-nav a:hover {
    background-color: rgba(0, 1, 1, 0.5);
}

.cd-slider-nav li:first-of-type a::before {
    background-position: 0 0;
}

.cd-slider-nav li.selected:first-of-type a::before {
    background-position: 0 -24px;
}

.cd-slider-nav li:nth-of-type(2) a::before {
    background-position: -24px 0;
}

.cd-slider-nav li.selected:nth-of-type(2) a::before {
    background-position: -24px -24px;
}

.cd-slider-nav li:nth-of-type(3) a::before {
    background-position: -48px 0;
}

.cd-slider-nav li.selected:nth-of-type(3) a::before {
    background-position: -48px -24px;
}

.cd-slider-nav li:nth-of-type(4) a::before {
    background-position: -72px 0;
}

.cd-slider-nav li.selected:nth-of-type(4) a::before {
    background-position: -72px -24px;
}

.cd-slider-nav li:nth-of-type(5) a::before {
    background-position: -96px 0;
}

.cd-slider-nav li.selected:nth-of-type(5) a::before {
    background-position: -96px -24px;
}

.cd-slider-nav li:nth-of-type(6) a::before {
    background-position: -120px 0;
}

.cd-slider-nav li.selected:nth-of-type(6) a::before {
    background-position: -120px -24px;
}

/*.cd-slider-nav li:nth-of-type(7) a::before {
    background-position: -144px 0;
}

.cd-slider-nav li.selected:nth-of-type(7) a::before {
    background-position: -144px -24px;
}*/

@media only screen and (min-width: 768px) {
    .cd-slider-nav {
        height: 80px;
    }

        .cd-slider-nav .cd-marker,
        .cd-slider-nav li {
            width: 95px;
        }

        .cd-slider-nav a {
            padding-top: 48px;
            font-size: 1.1rem;
            text-transform: uppercase;
        }

            .cd-slider-nav a::before {
                top: 18px;
            }



    /* -------------------------------- 

Main content

-------------------------------- */
    .cd-main-content {
        width: 90%;
        max-width: 768px;
        margin: 0 auto;
        padding: 2em 0;
    }

        .cd-main-content p {
            font-size: 1.4rem;
            line-height: 1.8;
            color: #999999;
            margin: 2em 0;
        }

    @media only screen and (min-width: 1170px) {
        .cd-main-content {
            padding: 3em 0;
        }

            .cd-main-content p {
                font-size: 1.6rem;
            }
    }

    /* -------------------------------- 

Javascript disabled

-------------------------------- */
    .no-js .cd-hero-slider li {
        display: none;
    }

        .no-js .cd-hero-slider li.selected {
            display: block;
        }

    .no-js .cd-slider-nav {
        display: none;
    }

    /* -------------------------------- 
Slider navigation arrows
-------------------------------- */
    .cd-slider-arrows li {
        position: absolute;
        z-index: 3;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        height: 48px;
        width: 48px;
    }

        .cd-slider-arrows li a {
            display: block;
            height: 100%;
            overflow: hidden;
            text-indent: 100%;
            white-space: nowrap;
            color: transparent;
            background: url("../assets/cd-icon-arrows.svg") no-repeat 0 0;
            -webkit-transition: -webkit-transform 0.2s;
            -moz-transition: -moz-transform 0.2s;
            transition: transform 0.2s;
        }

    .no-touch .cd-slider-arrows li a:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .cd-slider-arrows li:last-of-type {
        left: 10px;
        right: auto;
    }

        .cd-slider-arrows li:last-of-type a {
            background-position: -48px 0;
        }

    #rcorners1 {
        border-radius: 25px;
        background: #363636;
        padding: 12px 20px 30px 20px;
        width: 340px;
        height: 270px;
    }



    #rcorners2 {
        border-radius: 25px;
        background: #363636;
        padding: 12px 20px 30px 20px;
        width: 360px;
        height: 290px;
    }



    #rcorners3 {
        border-radius: 25px;
        background: #363636;
        padding: 10px 10px 30px 30px;
        width: 340px;
        height: 270px;
    }

    #rcorners1 > .p0, #rcorners2 > .p0, #rcorners3 > .p0 {
        color: #CCCCCC;
        font-size: 32px;
    }

    #rcorners1 p, #rcorners2 p, #rcorners3 p  {
        text-align: left;
        margin: -5px;
        font-family: Acephimere;
    }

    .myfont {
        font-family: Acephimere;
    }

    #rcorners1 > .p1, #rcorners2 > .p1, #rcorners3 > .p1 {
        color: #CCCCCC;
        font-size: 40px;
    }

        #rcorners1 > .p2 {
            color: #fff;
            font-size: 50px;
            font-weight: bold;
        }

    #rcorners1 > .p3, #rcorners2 > .p3, #rcorners3 > .p3 {
        color: #fff;
        font-size: 40px;
    }

    #rcorners1 > .p4, #rcorners2 > .p4{
        color: #fff;
        font-size: 40px;
    }

    #rcorners3 > .p4 {
        color: #fff;
        font-size: 43px;
    }

    #rcorners1 > .p5, #rcorners2 > .p5, #rcorners3 > .p5  {
        color: #CCCCCC;
        font-size: 18px;
        margin-top: 8px;
    }


    #rcorners2 > .p2 {
        color: #fff;
        font-size: 68px;
        font-weight: bold;
    }

    #rcorners3 > .p2 {
        color: #fff;
        font-size: 64px;
        font-weight: bold;
    }

    #rcorners3 > .p6 {
        color: #fff;
        font-size: 30px;
        margin-top: 40px;
        text-align: right;
    }

    #rcorners3 > .p7 {
        color: #fff;
        font-size: 18px;
        text-align: right;
    }


    /*#rcorners1 {
        width: 200px;
        top: 50px;
        left: 50px;
        padding: 20px;
        background: black;
        color: white;
        border: 2px solid white;
        border-radius: 10px;
        opacity: 0.8;
    }*/
    #rcornersHB {
        border-radius: 25px;
        background: #363636;
        padding: 20px;
        width: 400px;
        height: 250px;
        /*background-image: url('assets/HighBayEnviroment.fw.png');*/
    }

    /*#rcorners2 {
        border-radius: 25px;
        padding: 20px;
        width: 400px;
        height: 300px;
    }*/

    /*#rcorners3 {
        border-radius: 25px;
        background: url(paper.gif);
        background-position: left top;
        background-repeat: repeat;
        padding: 15px;
        width: 200px;
        height: 150px;
    }*/
}
