* {
    box-sizing: border-box;
}

body {
    margin: 0;
    /*font-family: 'Lato';*/
    font-family: 'Lato';
    font-weight: 300;
    padding: 0;
    background: black;
    font-size: 16px;
}

/* layout */

a {
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 100px;
}

.link {
    color: #00aeef;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: background .5s;
}

.header--white {
    background: white;
}

.header .container {
    position: relative;
}

.header.active {
    background: black;
}

.logo {
    float: left;
    width: 25%;
}

.logo__link {
    display: block;
    width: 143px;
    height: 60px;
    background: url(../images/logo.svg) no-repeat center center;
}

.header--white .logo__link {
    background: url(../images/logo_b.svg) no-repeat center center;
}

.header.active .logo__link {
    background: url(../images/logo.svg) no-repeat center center;
}

.menu {
    padding: 20px 0;
    width: 75%;
    float: right;
    text-align: right;
}

.menu-items {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: inline-block;
}

.header--black .menu-item a, .menu-item a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    border-left: 1px solid white;
    display: inline-block;
    line-height: 12px;
    font-size: 14px;
}

.header--white .menu-item a {
    border-left: 1px solid black;
    color: black;
}

.header.active .menu-item a {
    border-left: 1px solid white;
    color: white;
}

.header.active .menu-item a:hover {
    color: #00aeef;
}

.header.active .menu-item.current-menu-item a {
    color: #00aeef;
}

.menu-item.current-menu-item a, .menu-item a:hover {
    color: #00aeef;
}

.menu-item a:first-child {
    border: none !important;
}

.header-top {
    position: absolute;
    top: -10px;
    right: 0;
    padding: 0 10px;
    font-size: 15px;
}

.header-langs {
    display: inline-block;
}

.header-lang {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding-left: 6px;
}

.header-item {
    text-decoration: none;
    display: inline-block;
}

.header-lang--other {
    opacity: 0;
}

.header-lang--current {
    background: url(../images/menu-arrow.svg) no-repeat center left;
    background-size: auto 12px;
    padding-left: 15px;
}

.header-lang--ma {
    border-left: 1px solid currentColor;
    margin-left: 5px;
}

.header-langs:hover .header-lang--other {
    opacity: 1;
}

.header--white .header-lang {
    color: black;
}

.header--white.active .header-lang {
    color: white;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

.clear, .clearfix {
    clear: both;
}

.slide-title {
    text-align: center;
    padding: 80px 0;
    color: #00aeef;
    text-transform: uppercase;
    font-size: 32px;
}

.slide-title--white {
    color: white;
}

img {
    display: block;
}

.wrapper {
    background-color: black;
    background-position: center top;
    background-repeat: no-repeat;
}

.wrapper--default {
    background-image: url(../images/cover.jpg);
}

.wrapper--technology {
    background-image: url(../images/covers/cover_technology.jpg);
}

.wrapper--news {
    background-image: url(../images/covers/cover_news.jpg);
}

.wrapper--products {
    background-image: url(../images/covers/cover_products.jpg);
}

.wrapper--product {
    background-image: url(../images/covers/cover_product.jpg);
}

.wrapper--segments {
    background-image: url(../images/covers/cover_segments.jpg);
}

.wrapper--segment {
    background-image: url(../images/covers/cover_segment.jpg);
}

.wrapper--article {
    background-image: url(../images/covers/cover_article.jpg);
}

.wrapper--about {
    background-image: url(../images/covers/cover_about.jpg);
}

.wrapper--financing {
    background-image: url(../images/covers/cover_financing.jpg);
}

.wrapper--contact {
    background-image: url(../images/covers/cover_contact.jpg);
}

.cover {
    padding-top: 200px;
    min-height: 500px;
    text-align: center;
    position: relative;
}

.cover__title {
    color: white;
    font-size: 48px;
    text-transform: uppercase;
    padding-bottom: 60px;
    position: relative;
    display: inline-block;
}

.cover__title::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00aeef;
}

.cover__content {
    color: #00aeef;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 36px;
    max-width: 800px;
    margin: 0 auto;
}

.cover__text {
    padding-top: 20px;
    width: 80%;
    margin: 0 auto;
    color: white;
    line-height: 150%;
}

.cover-boxes {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 174, 239, 0.2);
}

.cover-box {
    background: #00aeef;
    padding: 15px 30px;
}

.cover-box-t1 {
    color: white;
    font-size: 40px;
}

.cover-box-t2 {
    color: white;
    padding-top: 16px;
    text-transform: uppercase;
}

.cover-date {
    padding: 15px 30px;
    color: white;
    font-size: 20px;
}

.blackbox {
    background: black;
    height: 160px;
}

.whitebox {
    background: white;
    /*overflow: auto;*/
}

.spacer-wrapper {
    padding: 15px 0;
}

.spacer {
    height: 1px;
    width: 100%;
    background: gray;
    box-sizing: content-box;
}

.spacer--blue {
    background: #00aeef;
}

.content {
    padding: 80px 0;
}

.content h3 {
    margin: 0;
    padding-bottom: 15px;
}

.content p {
    margin: 0;
}

.button {
    display: inline-block;
    border: 1px solid #00aeef;
    color: #00aeef;
    text-transform: uppercase;
    font-family: 'Lato';
    padding: 15px 60px;
    font-weight: bold;
    text-decoration: none;
}

.button--small {
    padding: 10px 30px;
    font-size: 14px;
}

.button:hover {
    background: #00aeef;
    color: white;
}

.bbox {
    position: absolute;
    width: 40px;
    height: 40px;
    background: black;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
    padding-top: 4px;
}

.bbox--rb {
    bottom: 0;
    right: 0;
}

.bbox--blue {
    background: rgba(0,174,239, 1);
}

.bbox--bluea {
    background: rgba(0,174,239, 0.6);
}

.bbox--white {
    background: white;
}

.bbox--l0 {left: 0;}
.bbox--l1 {left: 40px;}
.bbox--l2 {left: 80px;}
.bbox--r0 {right: 0px;}
.bbox--r1 {right: 40px;}
.bbox--r2 {right: 80px;}
.bbox--t0 {top: 0px;}
.bbox--t1 {top: 40px;}
.bbox--t2 {top: 80px;}
.bbox--b0 {bottom: 0px;}
.bbox--b1 {bottom: 40px;}
.bbox--b2 {bottom: 80px;}

/* homepage */

.hp-slider {
    height: 600px;
    background: white;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hp-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.container--hp {
    height: 100%;
}

.hps-content {
    width: 50%;
    float: left;
    padding-top: 100px;
}

.hps-title {
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.hps-subtitle {
    font-size: 30px;
    text-transform: uppercase;
    color: #00aeef;
}

.hps-image-wrapper {
    width: 50%;
    float: left;
    height: 100%;
}

.hps-image {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hps-bulls {
    padding-top: 40px;
}

.hps-bull {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-radius: 50%;
    margin: 0 20px 0 0;
    float: left;
    background: white;
}

.hps-bull.active {
    background: transparent;
}

.hps-arrow--right, .hps-arrow--left, .hps-button-more {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 50%;
}

.hps-arrow--right {
    background-color: white;
    background-image: url(../images/arrow-right.png);
    bottom: 40px;
}

.hps-arrow--left {
    background-color: #00aeef;
    background-image: url(../images/arrow-left.png);
    bottom: 0px;
}

.hps-button-more {
    background-size: cover;
    background-image: url(../images/plist-plus.png);
    bottom: 80px;
    right: 40px;
}

.hp-technology {
    background: url(../images/hp-technology.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 80px;
}

.hp-technology-text {
    color: white;
    text-transform: uppercase;
    line-height: 150%;
    font-size: 20px;
    padding: 30px;
}

.hp-technology-cta {
    position: absolute;
    bottom: -40px;
    right: -40px;
}

.hp-technology-icon {
    background: white;
    height: 150px;
    margin: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60% 60%;
    display: block;
}

.cta {
    background: url(../images/plist-plus.png) no-repeat center center;
    width: 40px;
    height: 40px;
    background-size: cover;
    display: inline-block;
    transition: background .5s;
}

.cta--white {
    background-image: url(../images/cta-white.png);
}

.cta:hover, .cta.active {
    background-image: url(../images/plist-active.png);
}

.relative {
    position: relative;
}

/* boxes */

.boxes__item {
    display: block;
}

.boxes__item--technology {
    margin-bottom: 100px;
}

.boxes__item--1 {
    margin-top: 145px;
}

.box__item--news {
    margin: 20px 0;
}

.boxes__item__column {
    float: left;
    width: 50%;
    height: 400px;
    background: black;
    color: white;
    position: relative;
    background: linear-gradient(-45deg, black 0%,black 60%,#141a1d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.boxes__item__column--smaller {
    height: 290px;
}

.boxes__item__column--technology {
    height: 290px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80% 80%;
    background-color: white;
}

.boxes__item__column--white {
    background: white;
    color: #00aeef;
}


.boxes__item__column--right {
    float: right;
    background: linear-gradient(45deg, black 0%,black 60%,#141a1d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.box__text {
    padding: 80px 160px;
}

.box__text--smaller {
    padding: 15px;
}

.box__text--article {
    padding: 20px 60px;
}

.box__text__title {
    font-size: 28px;
    color: white;
    text-transform: uppercase;
    padding-bottom: 28px;
    font-weight: normal;
}

.box__text__title--blue {
    color: #00aeef;
}

.box__text__content {
    color: #00aeef;
    font-size: 20px;
}

.box__text--smaller .box__text__content {
    font-size: 16px;
}

.boxes__item__column--white .box__text__title {
    color: #00aeef;
}

.boxes__item__column--white .box__text__content {
    color: black;
}

/* roller */

.roller {}

.roller-item {
    width: calc(100% / 3);
    float: left;
    height: 200px;
    background: #00aeef;
    color: white;
}

.roller-item-column {
    width: 50%;
    height: 100%;
    float: left;
    min-height: 1px;
    position: relative;
}

.roller-item-inner {
    padding: 20px;
}

.roller-item-icon {
    margin: 0 auto;
    margin-top: 20px;
    width: 80px;
    height: 80px;
}

.roller-item-caption {
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
}

.roller-item-title {
    text-transform: uppercase;
}

.roller-item-more {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    color: white;
}

/* movie */

.movie {
    background: #00aeef;
    text-align: center;
    color: white;
    text-transform: uppercase;
}

.movie--hp {
    background: white;
    color: #00aeef;
    padding: 40px 0;
}

.movie--sprod {
    margin: 0;
    padding: 40px 0;
    background: none;
}

/* plist */

.plist {}

.plist__item {
    padding: 60px 0;
    border-bottom: 1px solid #002b3b;
    background: black;
}

.plist__item__title {
    color: white;
    font-size: 40px;
    text-transform: uppercase;
    padding-left: 80px;
    background: url(../images/plist-plus.png) no-repeat left center;
    background-size: 60px 60px;
    line-height: 60px;
    cursor: pointer;
}

.plist__item__title.active {
    background: url(../images/plist-minus-lighter.png) no-repeat left center;
    background-size: 60px 60px;
}

.plist__items {
    background: white;
    display: none;
}

.plist__items.active {
    /*display: block;*/
}

.plist-items-inner {
    padding: 40px 0;
}

.plist-categories {}

.plist-category-title {
    color: #00aeef;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding: 20px 0;
    cursor: pointer;
}

.plist-category-title.active, .plist-category-title:hover {
    background: #00aeef;
    color: white;
}

.product {
    float: left;
    width: 25%;
    padding: 40px 0;
    padding-right: 20px;
    transition: opacity .5s;
    text-decoration: none;
}

.product.nomatch {
    opacity: 0.1;
}

.product-title {
    color: #00aeef;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #00aeef;
    padding-bottom: 5px;
    font-weight: bold;
}

.product-frame {
    width: 100%;
    height: 200px;
    position: relative;
    background: white;
}

.product-image {
    padding-top: 20px;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.product-image--cover {
    object-fit: cover;
    padding: 0;
    width: 100%;
    height: 100%;
}

.product-description {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 174, 239, 0.9);
    width: 100%;
    height: 100%;
    padding: 20px;
    color: white;
    display: none;
}

.product-info {
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px 0;
}

.product-info-col {
    float: left;
    width: 50%;
    font-size: 13px;
}

.product-info-r1 {
    color: #00aeef;
}

.product-info-r2 {
    color: black;
}

.product-more {
    background: #00aeef;
    color: white;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

.product:hover .product-description {
    display: block;
}

/* single product */

.sprod {
    background: white;
}

.sprod-header {
    padding: 80px 0;
}

.sprod-image {
    display: block;
    margin: 0 auto;
}

.sprod-benefit {
    text-align: center;
}

.sprod-benefit-image {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.sprod-benefit-title {
    padding: 15px 0;
    color: #00aeef;
    text-transform: uppercase;
    width: 80%;
    margin: 0 auto;
}

.sprod-info {
    color: #00aeef;
    padding: 40px;
    line-height: 150%;
}

.sprod-tables {
    background: black url(../images/sprod-tables.jpg) no-repeat center top;
}

.sprod-tables-header {
    background: black;
}

.sprod-tables-header-item {
    color: #00aeef;
    padding: 20px 15px;
    text-transform: uppercase;
    cursor: pointer;
}

.sprod-tables-header-item:hover, .sprod-tables-header-item.active {
    color: white;
    background: #00aeef;
}

.sprod-tables-body {
}

.sprod-spec-table {
    padding: 40px 0;
    color: #00aeef;
    font-weight: normal;
    width: 50%;
    float: left;
}

.sprod-spec-table td {
    padding: 5px 0;
}

.sprod-spec-table tr td:nth-child(2) {
    color: white;
}

/* referential */

.ref-header-item {
    color: white;
    padding: 20px 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid #00aeef;
}

.ref-header-item:hover, .ref-header-item.active {
    color: white;
    background: #00aeef;
}

.ref-blue {
    color: #00aeef;
}

.ref-items {
    padding: 30px 0 60px 0;
}

.ref-solution {
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
}

.ref-row {
    color: white;
    padding: 20px 20px;
    border-bottom: 1px solid #00aeef;
}

.ref-image-wrapper {
    padding: 40px;
}

.ref-image {
    display: block;
    width: 100%;
    height: auto;
}

/* news */

.news-content {
    background: #00aeef;
    padding-top: 300px;
    margin-top: -300px;
}

.news-load-more {
    padding: 80px 0;
    text-align: center;
    color: white;
    text-decoration: underline;
    display: block;
}

/* footer */

.cf-wrapper {
    background: white;
    position: relative;
}

.cf-msg-wrapper {
    padding: 20px 0;
}

.cf-msg {
    text-align: center;
    padding: 20px;
    display: none;
}

.cf-msg--ok {
    background: #9cdc96;
}

.cf-msg--error {
    background: #ffc2c2;
}

.cf-label {

}

.cf-label {
    border: 1px solid #00aeef;
    display: block;
    width: 98%;
    box-sizing: border-box;
    padding: 14px 30px;
    outline: none;
    border-top: none;
}

.cf-label--textarea {
    width: 100%;
}

.cf-label:first-child {
    border-top: 1px solid #00aeef;
}

.cf-label-title {
    width: 20%;
    float: left;
    color: #00aeef;
    font-weight: bold;
}

.cf-input, .cf-textarea {
    display: block;
    line-height: 20px;
    font-size: 16px;
    width: 80%;
    float: left;
    border: none;
    outline: none;
    font-family: 'Lato';
    padding: 0;
    color: #00aeef;
    box-shadow: none;
}

.cf-input {
    height: 20px;
}

.cf-textarea {
    min-width: 80%;
    max-width: 80%;
    max-height: 216px;
    min-height: 216px;
}

.cf-submit {
    background: #00aeef;
    color: white;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    font-family: 'Lato';
    padding: 15px 60px;
    font-weight: bold;
    margin: 80px 0;
}

.footer {
    background: #00aeef;
    padding: 40px 0;
    color: white;
}

.footer-copy {
    text-transform: uppercase;
    font-size: 12px;
}

.footer-logo-link {
    display: block;
    float: right;
}

.footer-logo-image {
    width: 200px;
    height: 60px;
}

.footer-icon--youtube, .footer-icon--linkedin {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.footer-icon--youtube:hover, .footer-icon--linkedin:hover {
    background-color: #002b3b;
}

.footer-icon--youtube {
    background-image: url(../images/icons/ytb_white.svg);
}

.footer-icon--linkedin {
    background-image: url(../images/icons/lin_white.svg);
}

.footer-pp {
    text-transform: uppercase;
    font-size: 12px;
    color: white;
    padding-bottom: 20px;
    display: inline-block;
}

/* segment */

.segment-content {
    /*background: black url(../images/segment-detail.jpg) no-repeat center top;*/
    background: black url(../images/sprod-tables.jpg) no-repeat center top;
}

.segment-boxes {
    padding-bottom: 80px;
}

.segment-box {
    padding: 10px 20px 10px 0;
}

.segment-products-button {
    padding: 40px 0 40px 0;
    text-align: center;
}

.segment-leftcol ul {
    padding-left: 20px;
    margin: 0;
}

/* contact */

.contact-box {
    padding: 80px 0;
    color: white;
    text-align: left;
    padding-right: 40px;
    font-size: 18px;
}

.contact-box-title {
    color: #0579a6;
    border-bottom: 2px solid currentColor;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-box-white, .contact-box-white a {
    color: #afb0b0;
    text-decoration: none;
}

.contact-box-white a:hover {
    color: #afb0b0;
    text-decoration: underline;
}

.contact-box-blue, .contact-box-blue a {
    color: #0579a6;
    text-decoration: none;
}

.contact-box-blue a:hover {
    color: #0579a6;
    text-decoration: underline;
}

.contact-map {
    height: 700px;
}

.contact-branches {
    background: white;
    padding: 80px 0 80px 0;
}

.cbranch {
    padding: 20px;
    padding-left: 0;
}

.cbranch a {
    color: black;
    text-decoration: none;
}

.cbranch a:hover {
    color: black;
    text-decoration: underline;
}

.cbranch-title {
    color: #00aeef;
    text-transform: uppercase;
    font-weight: bold;
}

.cbranch-address {
    font-weight: normal;
    padding: 10px 0;
}

/* timeline */

.timeline {
    position: relative;
    margin-bottom: 80px;
}

.timeline-line {
    width: 2px;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/dot.png);
    background-repeat: repeat-y;
}

.t-item {
    width: 50%;
    float: left;
    margin-bottom: 100px;
    padding-right: 30px;
    position: relative;
}

.t-item-sq {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    padding-top: 10px;
}

.t-item-content {
    width: 200px;
    float: right;
    padding: 0 15px;
    text-align: right;
}

.t-item-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    float: right;
}

.t-item--right {
    float: right;
    padding-left: 30px;
}

.t-item--first {
    margin-top: 100px;
}

.t-item--second {
    margin-top: 200px;
}

.t-item--right .t-item-image {
    float: left;
}

.t-item--right .t-item-content {
    float: left;
    text-align: left;
}

.t-item--right .t-item-sq {
    right: auto;
    left: -10px;
}

/* article */

.article {
    padding: 80px 0;
    max-width: 700px;
    margin: 0 auto;
    font-weight: normal;
    line-height: 150%;
}

.article img {
    max-width: 100%;
    margin: 0 auto;
}

.article a {
    color: #00aeef;
    text-decoration: none;
}

.article a:hover {
    text-decoration: underline;
}

.article-share-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.article-share-icon--facebook {
    background-color: #3b5998;
    background-image: url(../images/icons/fb_white.svg);
}

.article-share-icon--linkedin {
    background-color: #0077b5;
    background-image: url(../images/icons/lin_white.svg);
}

.article-share-icon--youtube {
    background-color: #cc181e;
    background-image: url(../images/icons/ytb_white.svg);
}

/* events */

.events-content {
    margin-top: -100px;
}

.events-content .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.event-box {
    width: 350px;
}

.event-image {
    display: block;
    width: 100%;
    height: 300px;
    background: white;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.event-inner {
    background: black;
    padding: 20px 20px 20px 20px;
}

.event-title {
    font-size: 28px;
    color: white;
    text-transform: uppercase;
    padding-bottom: 28px;
}

.event-content {
    color: #00aeef;
    font-size: 20px;
}

.viewmore-set {
    display: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.popup-bg {
    background: white;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    max-width: 600px;
    position: relative;
    padding: 30px;
    color: white;
    background: #00aeef;
}