/* =============================================================================
   Mockups Designed by Freepik http://www.freepik.com
   ========================================================================== */

/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

body {
    line-height: 1;
    overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

nav ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

li {
    list-style: none
}

* {
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}

body {
    font-size: 16px;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.m-t-60 {
    margin-top: 60px;
    ;
}

#cover {
    width: 100vw;
    height: 100vh;
    background-color: #111111;
    background-image: url('../images/industry.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

#cover:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #111;
    opacity: .6;
    display: block;
    z-index: 1;
}

#cover.small {
    height: 400px;
}

#yt-wrap {
    position: absolute;
    left: 0;
    z-index: -99;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

#yt-wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
}

.slide-item {
    border: 1px solid white;
    box-sizing: border-box;
    padding: 20px 30px;
    cursor: pointer;
    transform: scale(.9);
    transition: all .2s;
    margin-bottom: 40px;
}

.slide-item:hover {
    transform: scale(.95);
    background-color: #111111;
    border-color: #111111;
}

.slide-item p {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.4em;
}

.header {
    padding: 10px 40px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    transition: all .4s;
    background-color: #111111;
    z-index: 99;
}

.header.sticky {
    top: 0;
}

.logo {
    height: 40px;
    width: auto;
    filter: grayscale(0%);
    padding-top: 17px;
    transition: all .4s;
}

.logo:hover {
    filter: grayscale(100%);
}

#close-menu {
    display: none;
}

.hamburger {
    display: none;
}

.menu-wrapper {
    width: 100%;
    max-width: 1024px;
}

.menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu__item--lang {
    padding-left: 20px;
    position: relative;
}

.menu__item--lang::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background-color: #ffffff;
    opacity: .5;
}

.menu__item a {
    color: #ffffff;
    text-transform: uppercase;
    opacity: .6;
    transition: all .4s;
    padding: 30px 0px;
    display: inline-flex;
    position: relative;
}

.menu__item a:hover,
.menu__item a.active {
    opacity: 1;
}

.menu__item a::before,
.menu__item a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

.menu__item a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

.menu__item a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.menu__item a.active::before,
.menu__item a.active::after,
.menu__item a:hover::before,
.menu__item a:hover::after,
.menu__item a:focus::before,
.menu__item a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.main-cover {
    z-index: 1;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 120px;
    box-sizing: border-box;
    color: #ffffff;
    font-weight: 300;
}

.main-cover--small {
    height: 400px;
}

.main-cover__header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
      display: flex;
  justify-content: center;
}

.main-cover__header h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 300;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .05em solid #ee263a; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 2s steps(30, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #ee263a; }
}

.owl-theme .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    bottom: 30px;
    z-index: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 19px;
    height: 19px;
    border-radius: 100%;
    line-height: 19px;
    outline: none;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -15px;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    margin-top: -3px;
    display: block;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -15px;
}


.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.logo-lead {
    margin-left: 20px;
    margin-bottom: 10px;
}

.heading {
    font-weight: 900;
}

.heading__intro {
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    display: block;
    width: 100%;
    margin-top: 15px;
}

.heading__1 {
    font-size: 3em;
    line-height: 1.2em;
    font-weight: 900;
}

.heading__2 {
    font-size: 3em;
    line-height: 1.2em;
    display: block;
    width: 100%;
}

.heading__3 {
    font-size: 1.6em;
    line-height: 1.2em;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.lead {
    font-size: 1.2em;
    line-height: 1.6em;
    font-weight: 300;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.section {
    box-sizing: border-box;
    padding: 100px 0;
}

.section--first {
    margin-top: 0;
}

.section--no-pb {
    padding-bottom: 0;
}

.mockup-wrapper {
    text-align: left;
}

.mockup-wrapper::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/mockup.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left center;
}

.social-pages {
    margin-top: 60px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cta-button svg {
    height: 55px;
    width: 250px;
    fill: none;
    stroke-width: 5;
}

.cta-button--dark {
    color: #000000;
    transition: all .4s;
    margin: 0 auto;
}

.cta-button--dark--mobile {
    display: none;
}

.cta-button--dark:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-button--dark--grey:hover {
    background-color: transparent;
    color: #111111;
}

.cta-button--dark svg {
    width: 450px;
}

.cta-button svg .o1 {
    stroke: rgba(255, 255, 255, 0.2);
    fill: transparent;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.cta-button--dark svg .o1 {
    stroke: rgba(0, 0, 0, 0.2);
}

.cta-button svg .o2 {
    stroke: white;
    stroke-dasharray: 20 420;
    stroke-dashoffset: 20;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.cta-button--dark svg .o2 {
    stroke: #000000;
}

.cta-button span {
    position: absolute;
    margin: auto 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-button:hover .o2 {
    stroke-dashoffset: -420;
}


.cta-button--white {
    color: #ffffff;
}

.cta-button--lead {
    margin-top: 30px;
}

.section--header {
    position: relative;
}

.section--header p.lead {
    margin-bottom: 20px;
}

.section--header::after {
    content: '';
    width: 82px;
    height: 6px;
    display: block;
    margin: 0 auto;
    background-color: #eeeeee;
}

.section__grey {
    background-color: #f8fbfd;
}

.section__white {
    background-color: #ffffff;
}

.step {
    padding: 20px 40px;
    text-align: center;
    position: relative;
}

.step--arrow::before {
    content: "";
    display: block;
    background-image: url('../images/arrow.svg');
    background-size: cover;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 60px;
    left: -30px;
    transform: rotate(-90deg);
}

.steps {
    margin-top: 60px;
}

.step img {
    width: 100%;
    max-width: 120px;
    filter: grayscale(100%);
    transition: all .4s;
    height: 120px;
}

.step:hover img {
    filter: grayscale(0%);
}

.step p {
    margin-top: 20px;
    font-size: 1.2em;
    line-height: 1.4em;
    font-weight: 300;
}

.gallery {
    margin-top: 60px;
}

.gallery__item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery__image {
    width: auto;
    max-width: 200px;
    padding: 20px 0;
    filter: grayscale(100%);
    transition: all .4s;
}

.gallery__image:hover {
    filter: grayscale(0%);
}

.faq {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.faq__wrapper {
    position: relative;
}

.faq__wrapper::before {
    content: "?";
    display: block;
    font-size: 400px;
    position: absolute;
    top: 50px;
    left: 50px;
    opacity: .1;
    z-index: 0;
}

.faq__question {
    font-size: 1.4em;
    line-height: 1.6em;
}

.faq__answer {
    font-size: 1.2em;
    line-height: 1.4em;
    font-weight: 300;
    margin-top: 20px;
}

.benefits-list__header {
    margin-top: 60px;
    margin-bottom: 20px;
}

.benefits-list__item {
    font-weight: 300;
    font-size: 1em;
    line-height: 1.2em;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

.benefits-list__item::before {
    content: "";
    display: block;
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: left 0px top 23px;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 64px;
}

.specs-image img {
    width: auto;
    max-width: 100%;
}

.timeline-wrapper {
    margin-top: 60px;
}

.timeline {
    min-width: 300px;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column
}

.timeline p {
    font-size: 1em;
    line-height: 1.75em;
    border-top: 3px solid;
    -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#9c0000), to(#9c0000));
    -webkit-border-image: linear-gradient(to right, #9c0000 0%, #9c0000 100%);
    -o-border-image: linear-gradient(to right, #9c0000 0%, #9c0000 100%);
    border-image: -webkit-gradient(linear, left top, right top, from(#9c0000), to(#9c0000));
    border-image: linear-gradient(to right, #9c0000 0%, #9c0000 100%);
    border-image-slice: 1;
    border-width: 3px;
    margin: 0;
    padding: 40px;
    counter-increment: section;
    position: relative;
    color: #111111;
    font-weight: 300;
    font-size: 1em;
    box-sizing: border-box;
}

.timeline p:before {
    content: counter(section);
    position: absolute;
    border-radius: 50%;
    padding: 10px;
    height: 1.25em;
    width: 1.25em;
    background-color: #111111;
    text-align: center;
    line-height: 1.25em;
    color: #ffffff;
    font-size: 1em;
}

.timeline p:nth-of-type(odd) {
    border-right: 3px solid;
    border-left: 0px;
    padding-left: 0;
    border-bottom: 0px;
}

.timeline p:nth-of-type(odd):before {
    left: 100%;
    margin-left: -20px;
}

.timeline p:nth-of-type(even) {
    border-left: 3px solid;
    border-right: 0px;
    padding-right: 0;
    border-bottom: 0px;
}

.timeline p:nth-of-type(even):before {
    right: 100%;
    margin-right: -20px;
}

.timeline p:first-of-type {
    border-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.timeline p:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.timeline p strong {
    display: block;
    width: 100%;
    font-weight: 900;
    font-size: 1.4em;
}

.device-specs__spec {
    padding: 20px 40px;
}

.device-specs__spec h3 {
    margin-bottom: 20px;
}

.device-specs__spec ul li, ul.small-list li {
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.6em;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

ul.small-list {
    margin-top: 20px;
    text-align: left;
}

.device-specs__spec ul li::before, ul.small-list li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 5px;
}

.device-specs__spec ul li ul, ul.small-list li ul {
    margin-top: 5px;
}

.contact__data {
    margin-top: 60px;
}

.contact__telephone,
.contact__mailto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact__telephone--small,
.contact__mailto--small {
    align-items: flex-start;
    justify-content: left;
}

.contact__telephone {
    margin-bottom: 30px;
}

.contact__telephone--small {
    margin-bottom: 0px;
    margin-top: 20px;
}

.contact__telephone a,
.contact__mailto a {
    color: #111111;
    font-size: 2em;
    font-weight: 300;
    position: relative;
    padding: 25px;
    transition: all .4s;
}

.contact__telephone--small a,
.contact__mailto--small a {
    font-size: 1.1em;
    padding: 12px;
}

.contact__telephone a:before,
.contact__mailto a:before {
    content: "";
    width: 32px;
    height: 32px;
    display: block;
    background-image: url('../images/mailto.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 80px;
    opacity: 0;
    transition: all .4s;
}

.contact__telephone--small a:before,
.contact__mailto--small a:before {
    width: 20px;
    height: 20px;
}

.contact__telephone a:before {
    background-image: url('../images/phone.svg');
}

.contact__telephone a,
.contact__mailto a {
    padding-left: 60px;
}

.contact__telephone--small a:hover,
.contact__mailto--small a:hover {
    padding-left: 40px;
}

.contact__telephone a:before,
.contact__mailto a:before {
    left: 20px;
    opacity: 1;
}

.contact__telephone a:hover:before,
.contact__mailto a:hover:before {
    left: 10px;
    opacity: 1;
}

.contact__telephone--small a:before,
.contact__mailto--small a:before {
    left: 10px;
    opacity: 1;
}

.contact__telephone--small a:hover:before,
.contact__mailto--small a:hover:before {
    left: 5px;
    opacity: 1;
}

.contact-person {
    margin-top: 10px;
}

.contact-person__image {
    width: auto;
    max-width: 300px;
}

.copyrights {
    color: #cccccc;
}

.copyrights__image {
    margin-top: 30px;
    width: 100%;
    max-width: 150px;
}

.copyrights__image--social {
    height: 30px;
    width: 100%;
    margin: 30px 15px;
    width: auto;
    transform: scale(.8);
    transition: all .2s;
}

.copyrights__image--social:hover {
    transform: scale(1);
}

.contact-details {
    font-size: 1em;
    line-height: 1.4em;
    margin-top: 10px;
}

.contact-details--big {
    font-size: 1.2em;
    line-height: 1.6em;
}
   
.contact-details a {
    color: #E4002B;
}

.lead a,
.lead a:visited,
.article a,
.article a:visited,
.solution__content a,
.solution__content a:visited {
    color: #E4002B;
}

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

.contact-details a:hover {
    text-decoration: underline;
}

.feature {
    display: flex;
    flex-direction: column;
    padding: 40px;
    padding-bottom: 60px;
    padding-top: 0;
}

.feature__image {
    display: block;
    width: auto;
    max-width: 100px;
    height: 100px;
    margin: 30px auto;
    filter: grayscale(100%);
    transition: all .4s;
}

.feature__image:hover {
    filter: grayscale(0%);
}

.feature__image--fade:hover {
    margin-bottom: 20px;
}

.feature__description {
    font-size: 1.2em;
    text-align: center;
    font-weight: 300;
    box-sizing: border-box;
    padding 0 20px;
}

.feature__industry-image {
    display: block;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
    filter: grayscale(0%);
    transition: all .4s;
}

.features__industry {
    margin-top: 80px;
}

#map {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

#map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article p, .article ul li {
    font-size: 1.1em;
    line-height: 1.6em;
    font-weight: 300;
}

.article p {
    margin-top: 10px;
}

.article ul li {
    padding-left: 20px;
}

.count-box {
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.4em;
    margin-top: 30px;
    transition: all 1000ms linear;
}

.count-box--link {
    cursor: pointer;
}

.count-box__counter {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
}

.count-box__counter--before:before {
    content: "+";
    display: inline-block;
    font-weight: 300;
}

.solution {
    display: flex;
    align-items: center;
    align-content: center;
    font-weight: 300;
}

.solution__header {
    line-height: 44px;
}

.solution__content {
    font-size: 1.2em;
    line-height: 1.6em;
    margin-top: 20px;
}

.solution__text {
    padding-right: 40px;
}

.solution__reverse .solution__text {
    padding-right: .5rem;
    padding-left: 40px;
}
.solution__image {
    padding-left: 40px;
}
.solution__reverse .solution__image {
    padding-left: .5rem;
    padding-right: 40px;
}

.solution__image img {
    display: block;
    width: auto;
    max-width: 100%;
}

.cookie-info {
    margin-top: 40px;
    color: #cccccc;
    font-size: .8em;
}

.credits {
    margin-top: 40px;
}

.cookie-info a {
    color: #cccccc;
    text-decoration: none;
}

.cookie-info a:hover {
    text-decoration: underline;
}

#facebook-iframe {
    width: 100% !important;
    max-width: 1024px !important;
}

.clients-carousel .item {
    height: 120px;
    display: flex;
    align-items: center;
}

.news-carousel {
    display: block;
}

.news-item {
    text-align: center;
}

.news-item__header {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.2em;
    margin-top: 30px;
}

.news-item__date {
    font-weight: 300;
    margin-top: 20px;
    display: block;
}

.news-item__content {
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.4em;
    margin: 30px 0;
}

.news-item__more {
    color: #ffffff;
    background-color: #111111;
    text-decoration: none;
    padding: 12px 24px;
    box-sizing: border-box;
    display: inline-block;
}

p.article__date {
    font-weight: 300;
    font-size: .9em;
    margin-bottom: 40px;
}

p.last-news__date {
    font-weight: 300;
    font-size: .9em;
    line-height: 1.2em;
}

p.last-news__title {
    margin-top: 0px;
    font-size: 1em;
    color: #111111;
}

p.last-news__title a,
p.last-news__title a:visited {
    color: #111111;
    font-weight: 500;
}

p.last-news__title a:hover {
    text-decoration: underline;
}

.article__content {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.4em;
}

.news-carousel .owl-nav{
    position: absolute;
    top: 45%;
    width: 100%;
}
.news-carousel.owl-carousel .owl-nav button.owl-prev {
    float:left;
    margin-left: -30px;
 }
.news-carousel.owl-carousel .owl-nav button.owl-next {
    float:right;
    margin-right: -30px;
}
.news-carousel.owl-carousel .owl-prev span,
.news-carousel.owl-carousel .owl-next span {
    font-size: 3em;
    font-weight: 300;
}

.news-carousel.owl-carousel .owl-prev:hover span,
.news-carousel.owl-carousel .owl-next:hover span {
    color: #000000;
}
.heading__logo {
    width: auto;
    max-width: 300px;
    height: auto;
    display: block;
}

.heading__logo.heading__logo--tall {
    width: auto;
    max-width: none;
    height: auto;
    max-height: 120px;
    display: block;
}



@media screen and (max-width: 1200px) {
    .menu__item a {
        font-size: .8em;
    }

    .logo {
        height: 25px;
        padding-top: 24px;
    }
}

@media screen and (max-width: 1023px) {
    .mockup-wrapper {
        text-align: center;
    }

    .mockup-wrapper::after {
        position: relative;
        width: 100%;
        height: 450px;
        background-size: auto 100%;
        background-position: center center;
    }

    .step--arrow::before {
        transform: rotate(0deg);
        position: relative;
        left: 0;
        margin: 20px auto;
        top: -10px;
    }

    .logo {
        height: 30px;
        padding-top: 3px;
    }

    #top-menu {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100vw;
        background-color: #111111;
        display: flex;
        flex-direction: column;
        padding-bottom: 60px;
        z-index: 10;
        display: none;
        transition: all .4s;
    }

    #top-menu.show {
        display: flex;
    }

    #close-menu {
        position: fixed;
        color: #ffffff;
        top: 60px;
        right: 20px;
        z-index: 20;
        padding: 20px;
        cursor: pointer;
        display: none;
    }

    #close-menu.show {
        display: block;
    }

    #close-menu:hover {
        border: 1px solid #ffffff;
    }


    #top-menu li {
        display: block;
    }

    #top-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0 margin: 5px 0
    }


    .hamburger {
        width: 35px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: absolute;
        top: 17px;
        right: 20px;
    }

    .hamburger .line {
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background: #fff;
    }

    .hamburger .line:first-child,
    .hamburger .line:last-child {
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
    }

    .menu__item a {
        padding: 15px 0;
    }
    .menu__item--lang {
        padding-left: 0;
        position: relative;
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .menu__item--lang::before {
        top: 0;
        width: 100px;
        left: 0;
        right: 0;
        margin: auto;
        height: 1px;
    }


    .solution__text {
        padding-left: .5rem !important;
        padding-right: .5rem !important;
    }

    .solution__image {
        padding: 60px;
        box-sizing: border-box;
    }

    .main-cover__header h1 {
        font-size: 2em;
    }

.news-carousel.owl-carousel .owl-nav button.owl-prev {
    float:left;
    margin-left: -15px;
 }
.news-carousel.owl-carousel .owl-nav button.owl-next {
    float:right;
    margin-right: -15px;
}
}

@media screen and (max-width: 800px) {
    body {
        font-size: 14px;
    }

    .mockup-wrapper::after {
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }

    .contact__telephone--small a,
    .contact__mailto--small a {
        display: block;
        margin: 0 auto;
    }

    .slide-item {
        margin-bottom: 10px;
    }

    .main-cover__header {
        top: 35%;
    }
}

@media screen and (max-width: 600px) {
    .mockup-wrapper::after {
        display: none
    }

    .cta-button--dark {
        display: none;
    }

    .cta-button--dark--mobile {
        background-color: #27ae60;
        color: #ffffff;
        display: block;
        width: 100%;
        margin-top: 30px;
        padding: 24px 16px;
        font-size: 1.2em;
        line-height: 1.5em;
        font-weight: bold;
        box-sizing: border-box;
        transition: all .2s;
    }

    .cta-button--dark--mobile.cta-button--dark--grey {
        background-color: rgb(107, 107, 107);
    }

    .cta-button--dark--mobile.cta-button--dark--grey:hover {
        background-color: #aaa;
    }

    .contact__telephone a, .contact__mailto a {
        font-size: 1.6em;
    }

    #map {
        display: none;
    }

    .main-cover__header h1 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 400px) {
    .main-cover__header h1 {
        font-size: 1.2em;
    }  

    .slide-item p {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 340px) {

    .slide-item p {
        font-size: 1em;
    }
}

@media screen and (orientation:landscape) and (max-width: 1024px) {
    .mockup-wrapper::after, .logo-lead {
        display: none;
    }
}
